Add parsing of type alias statements

This commit is contained in:
Zanie 2023-07-17 09:12:24 -05:00
parent 6980037ad9
commit f96642aac4
9 changed files with 18961 additions and 18164 deletions

View file

@ -154,6 +154,7 @@ fn gen_phf(out_dir: &Path) {
.entry("raise", "Tok::Raise")
.entry("return", "Tok::Return")
.entry("try", "Tok::Try")
.entry("type", "Tok::Type")
.entry("while", "Tok::While")
.entry("with", "Tok::With")
.entry("yield", "Tok::Yield")