Implement Tok::Comment

This commit is contained in:
Charlie Marsh 2022-11-06 20:43:41 -05:00
parent a5b59f3c9d
commit b6c230f3ca
4 changed files with 23 additions and 9 deletions

View file

@ -1414,5 +1414,6 @@ extern {
name => lexer::Tok::Name { name: <String> },
"\n" => lexer::Tok::Newline,
";" => lexer::Tok::Semi,
"#" => lexer::Tok::Comment,
}
}