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

Unified Diff: test/mjsunit/wasm/wasm-object-api.js

Issue 1577803002: [wasm] Rename the WASM object to _WASMEXP_. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 11 months 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
« no previous file with comments | « test/mjsunit/wasm/verify-module-basic-errors.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/wasm/wasm-object-api.js
diff --git a/test/mjsunit/wasm/wasm-object-api.js b/test/mjsunit/wasm/wasm-object-api.js
index 60ad446db42bc9758400b0de19a457b14c9af8f5..1dfbb6522e410c5d8475de964a1e5fec2a6ff4db 100644
--- a/test/mjsunit/wasm/wasm-object-api.js
+++ b/test/mjsunit/wasm/wasm-object-api.js
@@ -4,8 +4,8 @@
// Flags: --expose-wasm
-assertFalse(undefined === WASM);
-assertFalse(undefined == WASM);
-assertEquals("function", typeof WASM.verifyModule);
-assertEquals("function", typeof WASM.verifyFunction);
-assertEquals("function", typeof WASM.compileRun);
+assertFalse(undefined === _WASMEXP_);
+assertFalse(undefined == _WASMEXP_);
+assertEquals("function", typeof _WASMEXP_.verifyModule);
+assertEquals("function", typeof _WASMEXP_.verifyFunction);
+assertEquals("function", typeof _WASMEXP_.compileRun);
« no previous file with comments | « test/mjsunit/wasm/verify-module-basic-errors.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698