tree-sitter / tree-sitter-rust

Rust grammar for tree-sitter

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Raw identifiers break the parsing completely

MoritzKn opened this issue · comments

Rust has so called Raw identifiers.

They look like this:

let r#let = 12;
println!("the var let ()", r#let);

This breaks the parsing completely for me.

Screenshot 2021-01-13 at 21 53 47

This has been fixed for quite a while. A while ago, Atom was upgraded to use a recent tree-sitter-rust with the fix. I'm not sure what their release schedule is though.

Ahhh okay, my bad for not verifying this properly, sorry.

No problem!