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

Side by Side Diff: test/inspector/debugger/return-break-locations.js

Issue 2758483002: [debugger] tuned StepNext and StepOut at return position (Closed)
Patch Set: more tests 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
OLDNEW
(Empty)
1 // Copyright 2017 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 InspectorTest.log('Return break locations within function');
6
7 InspectorTest.addScript(`
8 function fib(x) {
9 if (x < 0) return;
10 if (x === 0) return 1;
11 if (x === 1) return fib(0);
12 return x > 2 ? fib(x - 1) + fib(x - 2) : fib(1) + fib(0);
13 }
14 `);
15
16 InspectorTest.runAsyncTestSuite([
17 async function testTailCall() {
18 var scriptPromise = Protocol.Debugger.onceScriptParsed();
19 Protocol.Debugger.enable();
20 var scriptId = (await scriptPromise).params.scriptId;
21 var locations = (await Protocol.Debugger.getPossibleBreakpoints({
22 start: { lineNumber: 0, columnNumber: 0, scriptId }
23 })).result.locations;
24 InspectorTest.logMessage(locations.filter(location => location.type === 'ret urn'));
25 }
26 ]);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698