Add full-lexer feature (#36)

This commit is contained in:
Jeong, YunWon 2023-05-16 02:21:34 +09:00 committed by GitHub
parent dd4cc25227
commit 27e3873dc2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 1216 additions and 1188 deletions

View file

@ -1743,6 +1743,6 @@ extern {
name => token::Tok::Name { name: <String> },
"\n" => token::Tok::Newline,
";" => token::Tok::Semi,
"#" => token::Tok::Comment(_),
// "#" => token::Tok::Comment(_),
}
}