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
tree-sitter 0.22.6
I found that some features broke some tests. We must not forget to fix this.
e83c91d breaks:
@@ -924,7 +924,10 @@ module.exports = grammar({ attribute: $ => prec(PREC.call, seq( field('object', $.primary_expression), '.', - field('attribute', $.identifier), + choice( + field('attribute', $.identifier), + seq($.string_start, $.string_content, $.string_end), + ), )),
3d7c53b breaks: 45. ✗ Lists
@@ -749,8 +765,7 @@ module.exports = grammar({ $.none, $.unary_operator, $.attribute, - $.subscript, - $.call, + choice(prec.dynamic(-1, $.subscript), prec.dynamic(1, $.call)), $.list, $.list_comprehension, $.dictionary, (edited)
tree-sitter test
All tests passed.
No response
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
)tree-sitter 0.22.6
Describe the bug
I found that some features broke some tests. We must not forget to fix this.
e83c91d breaks:
3d7c53b breaks:
45. ✗ Lists
Steps To Reproduce/Bad Parse Tree
tree-sitter test
Expected Behavior/Parse Tree
All tests passed.
Repro
No response
The text was updated successfully, but these errors were encountered: