Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(12)

Unified Diff: test/mjsunit/wasm/unicode-validation.js

Issue 2591753002: [wasm] Implement correct 2-level namespace for imports. (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: test/mjsunit/wasm/unicode-validation.js
diff --git a/test/mjsunit/wasm/unicode-validation.js b/test/mjsunit/wasm/unicode-validation.js
index 29d1f73d947411268c7799fb35777ddeed4b9571..2dd2d00bceb47ec22094e804a8c922459008d088 100644
--- a/test/mjsunit/wasm/unicode-validation.js
+++ b/test/mjsunit/wasm/unicode-validation.js
@@ -45,7 +45,7 @@ function checkImportsAndExports(imported_module_name, imported_function_name,
internal_function_name, exported_function_name, shouldThrow) {
var builder = new WasmModuleBuilder();
- builder.addImportWithModule(imported_module_name, imported_function_name,
+ builder.addImport(imported_module_name, imported_function_name,
kSig_v_v);
builder.addFunction(internal_function_name, kSig_v_v)

Powered by Google App Engine
This is Rietveld 408576698