We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example,
&IF LOOKUP("{&OPSYS}","MSDOS,WIN32":U) > 0 &THEN &SCOPED-DEFINE SLASH ~~~\ &ELSE &SCOPED-DEFINE SLASH / &ENDIF
Gets parsed as this:
Another example:
&if '{&name}' = '' &then &scoped-define name ttTable &endif define {&visibility} temp-table {&name} no-undo field something as int field something2 as char index something as primary unique something .
The text was updated successfully, but these errors were encountered:
Same thing for &GLOBAL and &GLOBAL-DEFINE:
&GLOBAL
&GLOBAL-DEFINE
&GLOBAL Main_index 49153 &GLOBAL-DEFINE MAX-EXPENSE 5000
both get parsed as errors.
Sorry, something went wrong.
Registered: usagi-coffee/tree-sitter-abl#88
I noticed &then changes to
&then
& then
That is probably related to this
@ccecvb yes, currently, the parser we use incorrectly understands preprocessor directives, so we are waiting for the fix on it.
eglekaz
No branches or pull requests
For example,
Gets parsed as this:
Another example:
The text was updated successfully, but these errors were encountered: