mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-29 06:23:25 +00:00
Fix tools
This commit is contained in:
parent
1b9b8e1684
commit
8851e4fa39
1 changed files with 7 additions and 0 deletions
|
@ -198,6 +198,13 @@ impl<'a> Converter<'a> {
|
||||||
}
|
}
|
||||||
LIFETIME_IDENT
|
LIFETIME_IDENT
|
||||||
}
|
}
|
||||||
|
rustc_lexer::TokenKind::UnknownPrefixLifetime => {
|
||||||
|
err = "Unknown lifetime prefix";
|
||||||
|
LIFETIME_IDENT
|
||||||
|
}
|
||||||
|
rustc_lexer::TokenKind::RawLifetime => {
|
||||||
|
LIFETIME_IDENT
|
||||||
|
}
|
||||||
|
|
||||||
rustc_lexer::TokenKind::Semi => T![;],
|
rustc_lexer::TokenKind::Semi => T![;],
|
||||||
rustc_lexer::TokenKind::Comma => T![,],
|
rustc_lexer::TokenKind::Comma => T![,],
|
||||||
|
|
Loading…
Reference in a new issue