Index: src/wasm/wasm-module.h |
diff --git a/src/wasm/wasm-module.h b/src/wasm/wasm-module.h |
index 71156ad1096770bdd2b90a31e22b773d1131de99..5da428c0368b0c548d1191a6264f42a050d3a44e 100644 |
--- a/src/wasm/wasm-module.h |
+++ b/src/wasm/wasm-module.h |
@@ -9,6 +9,8 @@ |
#include "src/api.h" |
#include "src/handles.h" |
+#include "src/parsing/preparse-data.h" |
+ |
#include "src/wasm/wasm-opcodes.h" |
#include "src/wasm/wasm-result.h" |
@@ -396,6 +398,9 @@ Handle<FixedArray> BuildFunctionTable(Isolate* isolate, uint32_t index, |
void PopulateFunctionTable(Handle<FixedArray> table, uint32_t table_size, |
const std::vector<Handle<Code>>* code_table); |
+Handle<JSObject> CreateCompiledModuleObject(Isolate* isolate, |
+ Handle<FixedArray> compiled_module); |
+ |
namespace testing { |
// Decode, verify, and run the function labeled "main" in the |