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
The grammar does not handle string interpolation
Grammar does not handle string interpolation preventing properly highlighting variables inside the string
For example this expression
$y = "hello $x[0]";
Generates a tree like this, notice the right node is just a string
(expression_statement (binary_expression left: (variable) right: (string)))
I expect to be able to highlight variables inside of a string
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
The grammar does not handle string interpolation
Requirements
To Reproduce
Grammar does not handle string interpolation preventing properly highlighting variables inside the string
For example this expression
Generates a tree like this, notice the right node is just a string
Expected behavior
I expect to be able to highlight variables inside of a string
The text was updated successfully, but these errors were encountered: