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

Side by Side Diff: test/mjsunit/harmony/async-debug-step-in.js

Issue 2067503002: [debugger] fix stepping over await calls for ignition generators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@test
Patch Set: Created 4 years, 6 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
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-debug-as debug --allow-natives-syntax --harmony-async-await 5 // Flags: --expose-debug-as debug --allow-natives-syntax --harmony-async-await
6 // Flags: --no-ignition-generators
7 6
8 var Debug = debug.Debug; 7 var Debug = debug.Debug;
9 var step_count = 0; 8 var step_count = 0;
10 9
11 function listener(event, execState, eventData, data) { 10 function listener(event, execState, eventData, data) {
12 if (event != Debug.DebugEvent.Break) return; 11 if (event != Debug.DebugEvent.Break) return;
13 try { 12 try {
14 var line = execState.frame(0).sourceLineText(); 13 var line = execState.frame(0).sourceLineText();
15 print(line); 14 print(line);
16 var [match, expected_count, step] = /\/\/ B(\d) (\w+)$/.exec(line); 15 var [match, expected_count, step] = /\/\/ B(\d) (\w+)$/.exec(line);
(...skipping 26 matching lines...) Expand all
43 return a; // B8 StepIn 42 return a; // B8 StepIn
44 } // B9 Continue 43 } // B9 Continue
45 44
46 f().then(value => assertEquals(4, value)); 45 f().then(value => assertEquals(4, value));
47 46
48 late_resolve(3); 47 late_resolve(3);
49 48
50 %RunMicrotasks(); 49 %RunMicrotasks();
51 50
52 assertEquals(10, step_count); 51 assertEquals(10, step_count);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698