diff options
Diffstat (limited to 'src/wast-parser-lexer-shared.h')
-rw-r--r-- | src/wast-parser-lexer-shared.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/wast-parser-lexer-shared.h b/src/wast-parser-lexer-shared.h index fa36bd4d..b7666b5d 100644 --- a/src/wast-parser-lexer-shared.h +++ b/src/wast-parser-lexer-shared.h @@ -42,11 +42,6 @@ struct TextList { TextListNode* last; }; -struct ModuleFieldList { - ModuleField* first; - ModuleField* last; -}; - union Token { /* terminals */ StringSlice text; @@ -81,7 +76,7 @@ union Token { Memory* memory; Module* module; ModuleField* module_field; - ModuleFieldList module_fields; + ModuleFieldList* module_fields; ScriptModule* script_module; Script* script; Table* table; |