| Index: src/wasm/wasm-objects.h
|
| diff --git a/src/wasm/wasm-objects.h b/src/wasm/wasm-objects.h
|
| index d18c165e4a88c0751a43fa3b16763988a8b9afdf..1440e13e786272d943569d31daf5f17208ff6718 100644
|
| --- a/src/wasm/wasm-objects.h
|
| +++ b/src/wasm/wasm-objects.h
|
| @@ -181,8 +181,8 @@ class WasmSharedModuleData : public FixedArray {
|
| // Check whether this module was generated from asm.js source.
|
| bool is_asm_js();
|
|
|
| - // Recreate the ModuleWrapper from the module bytes after deserialization.
|
| - static void RecreateModuleWrapper(Isolate*, Handle<WasmSharedModuleData>);
|
| + static void ReinitializeAfterDeserialization(Isolate*,
|
| + Handle<WasmSharedModuleData>);
|
|
|
| static void AddBreakpoint(Handle<WasmSharedModuleData>, int position,
|
| Handle<Object> break_point_object);
|
| @@ -320,9 +320,8 @@ class WasmCompiledModule : public FixedArray {
|
|
|
| void PrintInstancesChain();
|
|
|
| - // Recreate the ModuleWrapper from the module bytes after deserialization.
|
| - static void RecreateModuleWrapper(Isolate* isolate,
|
| - Handle<WasmCompiledModule> compiled_module);
|
| + static void ReinitializeAfterDeserialization(Isolate*,
|
| + Handle<WasmCompiledModule>);
|
|
|
| // Get the function name of the function identified by the given index.
|
| // Returns a null handle if the function is unnamed or the name is not a valid
|
|
|