DelphiAST
DelphiAST copied to clipboard
Helper method calls on literals don't cause parser errors anymore
Helper methods can be called on String and Integer literals like this:
'test'.isEmpty; 4.ToString;
Right now DelphiAST fails with a parser error when it encounters lines like these.
With this PR DelphiAST will generate valid expression nodes.