| Index: src/runtime/runtime-internal.cc
|
| diff --git a/src/runtime/runtime-internal.cc b/src/runtime/runtime-internal.cc
|
| index 802893c79fb2132ae96fcafdb263b891c42fb0aa..21a3735c17ee275d385a8e1f6b9bf9064f211a51 100644
|
| --- a/src/runtime/runtime-internal.cc
|
| +++ b/src/runtime/runtime-internal.cc
|
| @@ -633,7 +633,7 @@ RUNTIME_FUNCTION(Runtime_IsWasmObject) {
|
| DCHECK_EQ(1, args.length());
|
| CONVERT_ARG_CHECKED(Object, object, 0);
|
| bool is_wasm_object =
|
| - object->IsJSObject() && wasm::IsWasmObject(JSObject::cast(object));
|
| + object->IsJSObject() && wasm::IsWasmModule(JSObject::cast(object));
|
| return *isolate->factory()->ToBoolean(is_wasm_object);
|
| }
|
|
|
|
|