add assignability tracing

This commit is contained in:
2024-08-14 14:05:59 +00:00
parent a116c24e8a
commit f11ff0693b
6 changed files with 161 additions and 119 deletions

View File

@ -76,5 +76,5 @@ fragment ESC : '\\n'| '\\"' | '\\\\';
// Whitespace and comments
WS: [ \t\r\n]+ -> skip;
LINE_COMMENT : '//' .*? '\r'? '\n' -> skip;
LINE_COMMENT : '//' .*? '\r'? ('\n'|EOF) -> skip;
BLOCK_COMMENT: '/*' .*? '*/' -> skip;