mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-13 22:06:56 +00:00
Remove uneeded todo in lexer
This commit is contained in:
parent
184665ff9b
commit
4dbf71d332
1 changed files with 1 additions and 1 deletions
|
@ -160,7 +160,7 @@ fn next_token_inner(c: char, ptr: &mut Ptr) -> SyntaxKind {
|
||||||
// if we find one, then this is an invalid character literal
|
// if we find one, then this is an invalid character literal
|
||||||
if ptr.at('\'') {
|
if ptr.at('\'') {
|
||||||
ptr.bump();
|
ptr.bump();
|
||||||
return CHAR; // TODO: error reporting
|
return CHAR;
|
||||||
}
|
}
|
||||||
LIFETIME
|
LIFETIME
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue