forked from facebook/hermes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlazy-break-nested.js
More file actions
38 lines (32 loc) · 980 Bytes
/
Copy pathlazy-break-nested.js
File metadata and controls
38 lines (32 loc) · 980 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
// RUN: %hdb --lazy %s < %s.debug | %FileCheck --match-full-lines %s
// REQUIRES: debugger
function foo() {
print('foo called');
function bar() {
print('bar called');
}
function baz() {
print('baz called');
}
bar();
baz();
}
debugger;
foo();
// CHECK: Break on 'debugger' statement in global: {{.*}}:25:1
// CHECK-NEXT: Set breakpoint 1 at {{.*}}:15:5
// CHECK-NEXT: Set breakpoint 2 at {{.*}}:18:5
// CHECK-NEXT: Continuing execution
// CHECK-NEXT: foo called
// CHECK-NEXT: Break on breakpoint 1 in bar: {{.*}}lazy-break-nested.js[{{[0-9]+}}]:15:5
// CHECK-NEXT: Continuing execution
// CHECK-NEXT: bar called
// CHECK-NEXT: Break on breakpoint 2 in baz: {{.*}}lazy-break-nested.js[{{[0-9]+}}]:18:5
// CHECK-NEXT: Continuing execution
// CHECK-NEXT: baz called