diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/wasm/wasm-emscripten.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/wasm/wasm-emscripten.cpp b/src/wasm/wasm-emscripten.cpp index 2e1aac0a3..460af19c2 100644 --- a/src/wasm/wasm-emscripten.cpp +++ b/src/wasm/wasm-emscripten.cpp @@ -1288,15 +1288,6 @@ std::string EmscriptenGlueGenerator::generateEmscriptenMetadata( meta << "\n ],\n"; if (!wasm.exports.empty()) { - meta << " \"implementedFunctions\": ["; - commaFirst = true; - for (const auto& ex : wasm.exports) { - if (ex->kind == ExternalKind::Function) { - meta << nextElement() << "\"_" << ex->name.str << '"'; - } - } - meta << "\n ],\n"; - meta << " \"exports\": ["; commaFirst = true; for (const auto& ex : wasm.exports) { |