parser fails on $IFDEF statement without spaces #5
Labels
bug
Something isn't working
grammar
Issue is related to Delphi grammar and needs to be fixed in ANTLR
pull requests invited
There are no current plans to address the issue, but we would be happy if someone supplies a PR
The parser fails on this line of code:
s := {$ifdef CPUx64}'64'{$else}'32'{$endif};
Adding spaces serves as a workaround:
s := {$ifdef CPUx64} '64' {$else} '32' {$endif};
The text was updated successfully, but these errors were encountered: