diff options
Diffstat (limited to 'src/wast-parser.h')
-rw-r--r-- | src/wast-parser.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wast-parser.h b/src/wast-parser.h index 2894bfb2..f2e0b102 100644 --- a/src/wast-parser.h +++ b/src/wast-parser.h @@ -120,7 +120,8 @@ class WastParser { Result ParseTextList(std::vector<uint8_t>* out_data); bool ParseTextListOpt(std::vector<uint8_t>* out_data); Result ParseVarList(VarVector* out_var_list); - bool ParseVarListOpt(VarVector* out_var_list); + Result ParseElemExprVarList(ElemExprVector* out_list); + bool ParseElemExprVarListOpt(ElemExprVector* out_list); Result ParseValueType(Type* out_type); Result ParseValueTypeList(TypeVector* out_type_list); Result ParseRefType(Type* out_type); |