Merge pull request #4266 from charliermarsh/charlie/comments

Implement Tok::Comment
This commit is contained in:
Jim Fasarakis-Hilliard 2022-11-07 23:20:15 +02:00 committed by GitHub
commit 54af02c20c
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,
}
}