Require func_type (not func) for func import. (#79)
This commit is contained in:
parent
654426b147
commit
86bbd96a33
|
@ -195,7 +195,7 @@ pub fn validate_module(module: Module) -> Result<ValidatedModule, Error> {
|
||||||
for import in import_section.entries() {
|
for import in import_section.entries() {
|
||||||
match *import.external() {
|
match *import.external() {
|
||||||
External::Function(function_type_index) => {
|
External::Function(function_type_index) => {
|
||||||
context.require_function(function_type_index)?;
|
context.require_function_type(function_type_index)?;
|
||||||
}
|
}
|
||||||
External::Global(ref global_type) => {
|
External::Global(ref global_type) => {
|
||||||
if global_type.is_mutable() {
|
if global_type.is_mutable() {
|
||||||
|
|
Loading…
Reference in New Issue