Author Topic: Tag parsing a Pascal source ignores all symbols after encountering a subrange  (Read 2511 times)

RSanford

  • Community Member
  • Posts: 11
  • Hero Points: 1
When using v18.0.0.5 64-bit to edit a Pascal source file, the tag parser skips all the remaining symbols after encountering a subrange type.
For example, in the following snippet all the definitions after specific_source_def are ignored by the tag parser:

generic_source_def = (computer, operator, remote);
specific_source_def = computer..operator;



Dennis

  • Senior Community Member
  • Posts: 3955
  • Hero Points: 515
We are treating "operator" as a keyword because of Delphi pascal.  That's why the parser gets lost.

I can put in a workaround for this.