Remove uneeded todo in lexer

This commit is contained in:
DJMcNab 2018-12-21 22:41:09 +00:00
parent 184665ff9b
commit 4dbf71d332

View File

@ -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 ptr.at('\'') {
ptr.bump();
return CHAR; // TODO: error reporting
return CHAR;
}
LIFETIME
} else {