| Index: src/wasm/wasm-module.h
|
| diff --git a/src/wasm/wasm-module.h b/src/wasm/wasm-module.h
|
| index ce01f56e04951b1e62b139c97f86365bce545f4b..d8e92b890b6f9e9616511af5aec83599bf97e94e 100644
|
| --- a/src/wasm/wasm-module.h
|
| +++ b/src/wasm/wasm-module.h
|
| @@ -359,9 +359,6 @@ std::ostream& operator<<(std::ostream& os, const WasmFunctionName& name);
|
| Handle<String> GetWasmFunctionName(Isolate* isolate, Handle<Object> instance,
|
| uint32_t func_index);
|
|
|
| -// Return the binary source bytes of a wasm module.
|
| -Handle<SeqOneByteString> GetWasmBytes(Handle<JSObject> wasm);
|
| -
|
| // Get the debug info associated with the given wasm object.
|
| // If no debug info exists yet, it is created automatically.
|
| Handle<WasmDebugInfo> GetDebugInfo(Handle<JSObject> wasm);
|
| @@ -376,9 +373,6 @@ int GetNumberOfFunctions(Handle<JSObject> wasm);
|
| // else.
|
| bool IsWasmInstance(Object* instance);
|
|
|
| -// Return the compiled module object for this WASM instance.
|
| -WasmCompiledModule* GetCompiledModule(Object* wasm_instance);
|
| -
|
| // Check whether the wasm module was generated from asm.js code.
|
| bool WasmIsAsmJs(Object* instance, Isolate* isolate);
|
|
|
|
|