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

Side by Side Diff: test/inspector/debugger/wasm-source.js

Issue 2713023004: [inspector] added reconnect method for tests (Closed)
Patch Set: rebased Created 3 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 unified diff | Download patch
« no previous file with comments | « test/inspector/debugger/wasm-scripts.js ('k') | test/inspector/debugger/wasm-stack.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 the V8 project authors. All rights reserved. 1 // Copyright 2016 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Flags: --expose-wasm 5 // Flags: --expose-wasm
6 6
7 load('test/mjsunit/wasm/wasm-constants.js'); 7 utils.load('test/mjsunit/wasm/wasm-constants.js');
8 load('test/mjsunit/wasm/wasm-module-builder.js'); 8 utils.load('test/mjsunit/wasm/wasm-module-builder.js');
9 9
10 var builder = new WasmModuleBuilder(); 10 var builder = new WasmModuleBuilder();
11 11
12 var imported_idx = builder.addImport("xxx", "func", kSig_v_v); 12 var imported_idx = builder.addImport("xxx", "func", kSig_v_v);
13 13
14 var call_imported_idx = builder.addFunction("call_func", kSig_v_v) 14 var call_imported_idx = builder.addFunction("call_func", kSig_v_v)
15 .addBody([kExprCallFunction, imported_idx]) 15 .addBody([kExprCallFunction, imported_idx])
16 .index; 16 .index;
17 17
18 var sig_index = builder.addType(kSig_v_v); 18 var sig_index = builder.addType(kSig_v_v);
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 .getScriptSource({scriptId: frames[frameId].location.scriptId}) 70 .getScriptSource({scriptId: frames[frameId].location.scriptId})
71 .then(dumpSourceLine.bind(null, frameId)) 71 .then(dumpSourceLine.bind(null, frameId))
72 .then(() => next(frameId + 1)); 72 .then(() => next(frameId + 1));
73 } 73 }
74 function finished() { 74 function finished() {
75 InspectorTest.log('Finished.'); 75 InspectorTest.log('Finished.');
76 InspectorTest.completeTest(); 76 InspectorTest.completeTest();
77 } 77 }
78 next(0).then(finished); 78 next(0).then(finished);
79 } 79 }
OLDNEW
« no previous file with comments | « test/inspector/debugger/wasm-scripts.js ('k') | test/inspector/debugger/wasm-stack.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698