forked from facebook/hermes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
break-clear.js
34 lines (30 loc) · 881 Bytes
/
break-clear.js
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
// 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 %s < %s.debug | %FileCheck --match-full-lines %s
// REQUIRES: debugger
print('break-clear');
// CHECK-LABEL: break-clear
function foo() {
print('first');
print('second');
print('third');
}
function bar() {
debugger;
foo();
}
bar();
// CHECK-NEXT: Break on 'debugger' statement in bar: {{.*}}:19:3
// CHECK-NEXT: Set breakpoint 1 at {{.+}}:13:3
// CHECK-NEXT: Set breakpoint 2 at {{.+}}:14:3
// CHECK-NEXT: Set breakpoint 3 at {{.+}}:15:3
// CHECK-NEXT: Continuing execution
// CHECK-NEXT: Break on breakpoint 1 in foo: {{.*}}:13:3
// CHECK-NEXT: Deleted all breakpoints
// CHECK-NEXT: Continuing execution
// CHECK-NEXT: first
// CHECK-NEXT: second
// CHECK-NEXT: third