diff options
| author | gingerBill <bill@gingerbill.org> | 2019-08-31 20:13:28 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2019-08-31 20:13:28 +0100 |
| commit | b9d3129fb3a4ba7ef49cea69d086a7f705819f2e (patch) | |
| tree | d985a8be38dc2bbf05ea13d13e700ab5074b87ed /src/parser.hpp | |
| parent | b311540b1672129e87a7249650a19cf11d2fccef (diff) | |
`where` clauses for procedure literals
Diffstat (limited to 'src/parser.hpp')
| -rw-r--r-- | src/parser.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/parser.hpp b/src/parser.hpp index 32398592e..26536fe56 100644 --- a/src/parser.hpp +++ b/src/parser.hpp @@ -229,6 +229,8 @@ enum StmtAllowFlag { Ast *body; \ u64 tags; \ ProcInlining inlining; \ + Token where_token; \ + Array<Ast *> where_clauses; \ }) \ AST_KIND(CompoundLit, "compound literal", struct { \ Ast *type; \ |