diff options
| author | gingerBill <bill@gingerbill.org> | 2023-05-29 23:17:06 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2023-05-29 23:17:06 +0100 |
| commit | 97490c6445cb3ba85f470e64e6ed6d24394c421a (patch) | |
| tree | 0830f019734c96afd14faf81a7f05ee88021c66f /src/parser.hpp | |
| parent | 1247d36a12b9a0043fda0f73f164bd7fa5dc3897 (diff) | |
Basic support for `#reverse for in` on normal arrays
Diffstat (limited to 'src/parser.hpp')
| -rw-r--r-- | src/parser.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/parser.hpp b/src/parser.hpp index d4883f287..6ba4ef6d6 100644 --- a/src/parser.hpp +++ b/src/parser.hpp @@ -529,6 +529,7 @@ AST_KIND(_ComplexStmtBegin, "", bool) \ Token in_token; \ Ast *expr; \ Ast *body; \ + bool reverse; \ }) \ AST_KIND(UnrollRangeStmt, "#unroll range statement", struct { \ Scope *scope; \ |