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

Unified Diff: test/mjsunit/wasm/verify-function-simple.js

Issue 1770383002: [wasm] Rename _WASMEXP_ object to Wasm. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 9 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-function-basic-errors.js ('k') | test/mjsunit/wasm/verify-module-basic-errors.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/wasm/verify-function-simple.js
diff --git a/test/mjsunit/wasm/verify-function-simple.js b/test/mjsunit/wasm/verify-function-simple.js
index ef87d0e136429f8121c1e8ce4c6e16c26e3296e8..aa5c67683eb16ad38c210c8c97e54122ffab74ae 100644
--- a/test/mjsunit/wasm/verify-function-simple.js
+++ b/test/mjsunit/wasm/verify-function-simple.js
@@ -13,7 +13,7 @@ try {
kExprNop // body
);
- _WASMEXP_.verifyFunction(data);
+ Wasm.verifyFunction(data);
print("ok");
} catch (e) {
assertTrue(false);
@@ -28,7 +28,7 @@ try {
kExprBlock, 2, kExprNop, kExprNop // body
);
- _WASMEXP_.verifyFunction(data);
+ Wasm.verifyFunction(data);
print("not ok");
} catch (e) {
print("ok: " + e);
« no previous file with comments | « test/mjsunit/wasm/verify-function-basic-errors.js ('k') | test/mjsunit/wasm/verify-module-basic-errors.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698