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

Unified Diff: test/inspector/debugger/wasm-scripts.js

Issue 2594993002: [wasm] Rename wasm::LocalType to wasm::ValueType and kAst* to kWasm* (Closed)
Patch Set: Fix inspector tests 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
« no previous file with comments | « test/fuzzer/wasm-call.cc ('k') | test/inspector/debugger/wasm-source.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/inspector/debugger/wasm-scripts.js
diff --git a/test/inspector/debugger/wasm-scripts.js b/test/inspector/debugger/wasm-scripts.js
index 1516e14ff0a0166a027dd5ae6f06ad93a8c86aa1..d8084072f59e696fdffbaa40ae3b94d5dde4fe23 100644
--- a/test/inspector/debugger/wasm-scripts.js
+++ b/test/inspector/debugger/wasm-scripts.js
@@ -12,7 +12,7 @@ load('test/mjsunit/wasm/wasm-module-builder.js');
var builder = new WasmModuleBuilder();
builder.addFunction('nopFunction', kSig_v_v).addBody([kExprNop]);
builder.addFunction('main', kSig_v_v)
- .addBody([kExprBlock, kAstStmt, kExprI32Const, 2, kExprDrop, kExprEnd])
+ .addBody([kExprBlock, kWasmStmt, kExprI32Const, 2, kExprDrop, kExprEnd])
.exportAs('main');
var module_bytes = builder.toArray();
« no previous file with comments | « test/fuzzer/wasm-call.cc ('k') | test/inspector/debugger/wasm-source.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698