| 123456789101112131415161718192021 |
- #define INCLUDE 1
- #define STRING 2
- #define NAME 3
- #define CURLY_OPEN 4
- #define CURLY_CLOSE 5
- #define ROUND_OPEN 6
- #define ROUND_CLOSE 7
- #define SEMICOLON 8
- #define ARROW 9
- #define IF 10
- #define FOREACH 11
- #define AS 12
- #define COLON 13
- #define ELIF 14
- #define ELSE 15
- #define DOT 16
- #define COMMA 17
- #define BRACKET_OPEN 18
- #define BRACKET_CLOSE 19
- #define PROCESS 20
- #define TEMPLATE 21
|