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
tree-sitter --version
No response
Both of these examples error in the parser:
($)(a, b) a $ b
($)(a, b) results in
($)(a, b)
(source_file ; [0, 0] - [1, 0] (call_expression ; [0, 0] - [0, 9] (tuple_expression ; [0, 0] - [0, 3] (ERROR)) ; [0, 1] - [0, 2] (argument_list ; [0, 3] - [0, 9] (identifier) ; [0, 4] - [0, 5] (identifier)))) ; [0, 7] - [0, 8]
and a $ b results in
a $ b
(source_file ; [0, 0] - [1, 0] (ERROR) ; [0, 0] - [0, 1] (interpolation_expression ; [0, 2] - [0, 5] (identifier))) ; [0, 4] - [0, 5]
($)(a, b) should probably be
(source_file ; [0, 0] - [1, 0] (call_expression ; [0, 0] - [0, 9] (parenthesized_expression ; [0, 0] - [0, 3] (operator)) ; [0, 1] - [0, 2] (argument_list ; [0, 3] - [0, 9] (identifier) ; [0, 4] - [0, 5] (identifier)))) ; [0, 7] - [0, 8]
and a $ b should probably be
(source_file ; [0, 0] - [1, 0] (binary_expression ; [0, 0] - [0, 5] (identifier) ; [0, 0] - [0, 1] (operator) ; [0, 2] - [0, 3] (identifier))) ; [0, 4] - [0, 5]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Did you check existing issues?
Tree-Sitter CLI Version, if relevant (output of
tree-sitter --version
)No response
Describe the bug
Both of these examples error in the parser:
Steps To Reproduce/Bad Parse Tree
($)(a, b)
results inand
a $ b
results inExpected Behavior/Parse Tree
($)(a, b)
should probably beand
a $ b
should probably beRepro
No response
The text was updated successfully, but these errors were encountered: