Skip to content

Commit

Permalink
Fix r-a lexer support for raw lifetimes
Browse files Browse the repository at this point in the history
  • Loading branch information
compiler-errors committed Jun 14, 2024
1 parent aeba0f5 commit 0129478
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/tools/rust-analyzer/crates/parser/src/lexed_str.rs
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ impl<'a> Converter<'a> {
}
LIFETIME_IDENT
}
rustc_lexer::TokenKind::RawLifetime => LIFETIME_IDENT,

rustc_lexer::TokenKind::Semi => T![;],
rustc_lexer::TokenKind::Comma => T![,],
Expand Down

0 comments on commit 0129478

Please sign in to comment.