diff options
Diffstat (limited to 'bootstrap/all.h')
| -rw-r--r-- | bootstrap/all.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bootstrap/all.h b/bootstrap/all.h index 720c7ea..bebdaf5 100644 --- a/bootstrap/all.h +++ b/bootstrap/all.h @@ -130,6 +130,8 @@ struct parser { struct toktree toks; const char *name; struct span span; + struct tok peektok; + bool have_peektok; int idx; bool tepl; } *curexpan; // macro expansions @@ -226,7 +228,7 @@ struct fn { }; struct macrocase { - bool variadic; + bool variadic, bodyarg; slice_t(const char *) params; struct toktree body; }; |