diff options
Diffstat (limited to 'src/tools/wasm-ctor-eval.cpp')
-rw-r--r-- | src/tools/wasm-ctor-eval.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/tools/wasm-ctor-eval.cpp b/src/tools/wasm-ctor-eval.cpp index 561b08cfc..d41094c67 100644 --- a/src/tools/wasm-ctor-eval.cpp +++ b/src/tools/wasm-ctor-eval.cpp @@ -73,6 +73,13 @@ public: return ModuleRunnerBase<EvallingModuleRunner>::visitGlobalGet(curr); } + + Flow visitTableSet(TableSet* curr) { + // TODO: Full dynamic table support. For now we stop evalling when we see a + // table.set. (To support this we need to track sets and add code to + // serialize them.) + throw FailToEvalException("table.set: TODO"); + } }; // Build an artificial `env` module based on a module's imports, so that the |