Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
101 changes: 51 additions & 50 deletions eudplib/epscript/cpp/parser/epparser.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,53 +30,54 @@
#define SEMICOLON 30
#define IMPORT 31
#define NAME 32
#define AS 33
#define COLON 34
#define FUNCTION 35
#define RPAREN 36
#define OBJECT 37
#define LBRACKET 38
#define VAR 39
#define RBRACKET 40
#define NUMBER 41
#define RSQBRACKET 42
#define SUBSCRIPT 43
#define KILLS 44
#define MEMBER 45
#define STRING 46
#define FUNCCALL 47
#define L2V 48
#define MAPSTRING 49
#define UNIT 50
#define SWITCH 51
#define LOCATION 52
#define STATTXTTBL 53
#define VARRAY 54
#define LIST 55
#define STATIC 56
#define CONST 57
#define INC 58
#define DEC 59
#define IADD 60
#define ISUB 61
#define IMUL 62
#define IDIV 63
#define IMOD 64
#define ILSH 65
#define IRSH 66
#define IBND 67
#define IBOR 68
#define IBXR 69
#define ONCE 70
#define IF 71
#define SWITCHCASE 72
#define CASE 73
#define DEFAULT 74
#define WHILE 75
#define FOR 76
#define FOREACH 77
#define CONTINUE 78
#define BREAK 79
#define RETURN 80
#define CONDITIONNAME 81
#define ACTIONNAME 82
#define TRGCONST 33
#define AS 34
#define COLON 35
#define FUNCTION 36
#define RPAREN 37
#define OBJECT 38
#define LBRACKET 39
#define VAR 40
#define RBRACKET 41
#define NUMBER 42
#define RSQBRACKET 43
#define SUBSCRIPT 44
#define KILLS 45
#define MEMBER 46
#define STRING 47
#define FUNCCALL 48
#define L2V 49
#define MAPSTRING 50
#define UNIT 51
#define SWITCH 52
#define LOCATION 53
#define STATTXTTBL 54
#define VARRAY 55
#define LIST 56
#define STATIC 57
#define CONST 58
#define INC 59
#define DEC 60
#define IADD 61
#define ISUB 62
#define IMUL 63
#define IDIV 64
#define IMOD 65
#define ILSH 66
#define IRSH 67
#define IBND 68
#define IBOR 69
#define IBXR 70
#define ONCE 71
#define IF 72
#define SWITCHCASE 73
#define CASE 74
#define DEFAULT 75
#define WHILE 76
#define FOR 77
#define FOREACH 78
#define CONTINUE 79
#define BREAK 80
#define RETURN 81
#define CONDITIONNAME 82
#define ACTIONNAME 83
Loading