DelphiAST icon indicating copy to clipboard operation
DelphiAST copied to clipboard

Helper method calls on literals don't cause parser errors anymore

Open Wosi opened this issue 7 years ago • 0 comments

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.

Wosi avatar Aug 22 '18 22:08 Wosi