Last active
July 11, 2018 02:11
-
-
Save NaelsonDouglas/7c2e510f05b1f11813d665fb3d0c5e13 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"EOF" : -1, | |
"TYPE_VALUE": 1, | |
"TYPE_INT": 2, | |
"TYPE_CHAR": 3, | |
"TYPE_FLOAT": 4, | |
"TYPE_VEC": 5, | |
"SMCL": 6, | |
"EPS": 7, | |
"ID": 8, | |
"CONST": 9, | |
"EXPR": 10, | |
"OPR_PM": 11, | |
"OPR_DM": 12, | |
"OPRLN": 13, | |
"OPRLR_EQ": 14, | |
"OPRLR_LGT": 15, | |
"OPRLR_LGTEQ": 16, | |
"FN_PRINT": 17, | |
"FN_READ": 18, | |
"DREAD": 19, | |
"BLK_IF": 20, | |
"BLK_ELS": 21, | |
"BLK_FOR": 22, | |
"BLK_WHILE": 23, | |
"COMMA": 24, | |
"O_BRCKT": 25, | |
"C_BRCKT": 26, | |
"O_C_BRCKT": 27, | |
"C_C_BRCKT": 28, | |
"O_PRTSIS": 29, | |
"C_PRTSIS": 30, | |
"OPR_ATR": 31, | |
"IDT_INT": 32, | |
"IDT_FLOAT": 33, | |
"IDT_CHAR": 34, | |
"IDT_STRING": 35, | |
"FN_MAIN": 36, | |
"VEC_IN": 37, | |
"LEX_ERR": 38, | |
"OPR_SUM": 39, | |
"OPR_SUB": 40, | |
"CTN": 41, | |
"PARAMS": 42, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment