Give identifier and int ast types

This commit is contained in:
Jeong YunWon 2023-05-10 19:17:11 +09:00
parent d495cd9129
commit 455bcc01a0
88 changed files with 3288 additions and 2300 deletions

View file

@ -17,9 +17,9 @@ TABSIZE = 4
AUTO_GEN_MESSAGE = "// File automatically generated by {}.\n\n"
builtin_type_mapping = {
"identifier": "Ident",
"identifier": "Identifier",
"string": "String",
"int": "u32",
"int": "Int",
"constant": "Constant",
}
assert builtin_type_mapping.keys() == asdl.builtin_types