diff options
author | Ben Smith <binji@chromium.org> | 2020-02-28 17:08:32 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-28 17:08:32 -0800 |
commit | 2d5bdb4a3a1bf8541dda300ffc2d35ffd9d4f84b (patch) | |
tree | 37ae07bfac508745bb6d020df8860029300448bc /src/resolve-names.cc | |
parent | 02aa62e015e3eff5a50bad5d94d9a7d98f4e9d89 (diff) | |
download | wabt-2d5bdb4a3a1bf8541dda300ffc2d35ffd9d4f84b.tar.gz wabt-2d5bdb4a3a1bf8541dda300ffc2d35ffd9d4f84b.tar.bz2 wabt-2d5bdb4a3a1bf8541dda300ffc2d35ffd9d4f84b.zip |
Add TypeEntry, base class for type section entries (#1349)
The type section currently only has one form: functions. With the GC
proposal, at least two more forms are added: struct and array. To
facilitate this:
* Rename FuncTypeModuleField -> TypeModuleField
* Rename Module::func_types -> Module::types
* Rename func_type_bindings -> type_bindings
* TypeEntry is added as a base class of FuncType
* TypeModuleField stores a unique_ptr to a TypeEntry
Diffstat (limited to 'src/resolve-names.cc')
-rw-r--r-- | src/resolve-names.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/resolve-names.cc b/src/resolve-names.cc index 6391e2af..2dff2a62 100644 --- a/src/resolve-names.cc +++ b/src/resolve-names.cc @@ -186,7 +186,7 @@ void NameResolver::ResolveGlobalVar(Var* var) { } void NameResolver::ResolveFuncTypeVar(Var* var) { - ResolveVar(¤t_module_->func_type_bindings, var, "function type"); + ResolveVar(¤t_module_->type_bindings, var, "type"); } void NameResolver::ResolveTableVar(Var* var) { @@ -477,7 +477,7 @@ Result NameResolver::VisitModule(Module* module) { CheckDuplicateBindings(&module->elem_segment_bindings, "elem"); CheckDuplicateBindings(&module->func_bindings, "function"); CheckDuplicateBindings(&module->global_bindings, "global"); - CheckDuplicateBindings(&module->func_type_bindings, "function type"); + CheckDuplicateBindings(&module->type_bindings, "type"); CheckDuplicateBindings(&module->table_bindings, "table"); CheckDuplicateBindings(&module->memory_bindings, "memory"); CheckDuplicateBindings(&module->event_bindings, "event"); |