blob: adf7a51432579cd87badfec4ecaf83faf717d19c [file] [log] [blame]
Ben Murdoch61f157c2016-09-16 13:49:30 +01001// 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
3// found in the LICENSE file.
4
5// Flags: --expose-debug-as debug --allow-natives-syntax --harmony-async-await
6
7var Debug = debug.Debug;
8var step_count = 0;
9
10function listener(event, execState, eventData, data) {
11 if (event != Debug.DebugEvent.Break) return;
12 try {
13 var line = execState.frame(0).sourceLineText();
14 print(line);
15 var [match, expected_count, step] = /\/\/ B(\d) (\w+)$/.exec(line);
16 assertEquals(step_count++, parseInt(expected_count));
17 if (step != "Continue") execState.prepareStep(Debug.StepAction[step]);
18 } catch (e) {
19 print(e, e.stack);
20 quit(1);
21 }
22}
23
24Debug.setListener(listener);
25
26var late_resolve;
27
28function g() {
29 return new Promise( // B4 StepOut
30 function(res, rej) {
31 late_resolve = res;
32 }
33 );
34}
35
36async function f1() {
37 var a = 1;
38 debugger; // B0 StepNext
39 a += // B1 StepNext
40 await // B6 StepNext
41 f2(); // B2 StepIn
42 return a; // B7 StepNext
43} // B8 Continue
44
45async function f2() {
46 var b =
47 await // B5 StepOut
48 g(); // B3 StepIn
49 return b;
50}
51
52f1();
53
54late_resolve(3);
55
56%RunMicrotasks();
57
58assertEquals(9, step_count);