-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
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
Wrong cstNode data when using colon newlines #214
Labels
bug
Something isn't working
Comments
The lexer performs a bunch of manipulation when it encounters a line splitter: bbj-language-server/bbj-vscode/src/language/bbj-lexer.ts Lines 10 to 35 in 5f4cf23
This results in the lexer processing different text than what is actually contained in the document. |
dhuebner
added a commit
that referenced
this issue
Dec 6, 2024
dhuebner
added a commit
that referenced
this issue
Dec 6, 2024
dhuebner
added a commit
that referenced
this issue
Dec 16, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Following example:
An error is reported on line break after
then
saying "Symbolic label reference may not contain whitespace." which is wrong.The
SymbolicLabelRef
CST node text returnsoto *
but should return*NEXT
The text was updated successfully, but these errors were encountered: