| Index: src/wasm/wasm-module.h
|
| diff --git a/src/wasm/wasm-module.h b/src/wasm/wasm-module.h
|
| index 4a9faf0b000f63efbdabf051d0afbd4ee7a789d6..8d131878964f8c15495d743defbbffcd42841b5c 100644
|
| --- a/src/wasm/wasm-module.h
|
| +++ b/src/wasm/wasm-module.h
|
| @@ -236,17 +236,15 @@ struct WasmModuleInstance {
|
| mem_start(nullptr),
|
| mem_size(0),
|
| globals_start(nullptr) {}
|
| + void PopulateExportTable(const std::vector<Handle<Code>>& compiled_functions,
|
| + const std::vector<uint16_t>& functions);
|
| };
|
|
|
| -// forward declaration.
|
| -class WasmLinker;
|
| -
|
| // Interface provided to the decoder/graph builder which contains only
|
| // minimal information about the globals, functions, and function tables.
|
| struct ModuleEnv {
|
| const WasmModule* module;
|
| WasmModuleInstance* instance;
|
| - WasmLinker* linker;
|
| ModuleOrigin origin;
|
|
|
| bool IsValidGlobal(uint32_t index) {
|
|
|