diff options
| author | 2023-05-27 14:36:23 +0200 | |
|---|---|---|
| committer | 2023-05-27 14:36:23 +0200 | |
| commit | 0f53520c5ee5f07ec2ba0361172fd72bd1456ad4 (patch) | |
| tree | 6ba8c3bb92dbe451ac7b36fabfa27021c79e1a45 /parse.h | |
| parent | 640a3dac2b18d037169af15dfd5502c386c7e828 (diff) | |
recursive descent -> precedence climbing parser
Diffstat (limited to 'parse.h')
| -rw-r--r-- | parse.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -35,12 +35,12 @@ enum toktag { /* single-character tokens' tag value is the character itself */ TKSETSUB, TKSETMUL, TKSETDIV, - TKSETMOD, + TKSETREM, TKSETIOR, TKSETXOR, TKSETAND, - TKSETSHR, TKSETSHL, + TKSETSHR, TKIDENT = 0x80, #define _(kw, stdc) TKW##kw, #include "keywords.def" |