tree-sitter / tree-sitter-rust

Rust grammar for tree-sitter
MIT License
353 stars 100 forks source link

Fix range parsing #127

Closed resolritter closed 2 years ago

resolritter commented 2 years ago

Problem: https://github.com/tree-sitter/tree-sitter-rust/pull/100 solved https://github.com/tree-sitter/tree-sitter-rust/issues/86 but then it introduced collateral issues such as https://github.com/tree-sitter/tree-sitter-rust/issues/107 and https://github.com/tree-sitter/tree-sitter-rust/issues/121. Those breakages were not caught because we didn't have tests for them.

Solution:

maxbrunsfeld commented 2 years ago

Really nice work @resolritter, and thanks for spending some time to merge PRs @aryx.

narpfel commented 2 years ago

Thanks!