diff options
| author | gingerBill <bill@gingerbill.org> | 2018-08-14 17:07:56 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2018-08-14 17:07:56 +0100 |
| commit | acc010cba5df63b38704245254e721187335a7b2 (patch) | |
| tree | 2b92d291e6c3804f6e5cc177c5ed0443798d1f8d /src/parser.hpp | |
| parent | 89f4e7a8dbed4272f85f10568a542697aa3b38f8 (diff) | |
Add `bit_set` type
Diffstat (limited to 'src/parser.hpp')
| -rw-r--r-- | src/parser.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/parser.hpp b/src/parser.hpp index 88d727b33..83a6ba425 100644 --- a/src/parser.hpp +++ b/src/parser.hpp @@ -480,6 +480,10 @@ AST_KIND(_TypeBegin, "", bool) \ Array<Ast *> fields; /* FieldValue with : */ \ Ast * align; \ }) \ + AST_KIND(BitSetType, "bit set type", struct { \ + Token token; \ + Ast * base_type; \ + }) \ AST_KIND(MapType, "map type", struct { \ Token token; \ Ast *count; \ |