forked from facebook/hermes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenable-disable.js
More file actions
44 lines (39 loc) · 1.16 KB
/
enable-disable.js
File metadata and controls
44 lines (39 loc) · 1.16 KB
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
39
40
41
42
43
44
/**
* 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('enable disable');
// CHECK-LABEL: enable disable
function foo() {
print('first');
print('second');
}
debugger;
foo();
debugger;
foo();
debugger;
foo();
// CHECK-NEXT: Break on 'debugger' statement in global: {{.*}}:19:1
// CHECK-NEXT: Set breakpoint 1 at {{.*}}:15:3
// CHECK-NEXT: Continuing execution
// CHECK-NEXT: Break on breakpoint 1 in foo: {{.*}}:15:3
// CHECK-NEXT: Continuing execution
// CHECK-NEXT: first
// CHECK-NEXT: second
// CHECK-NEXT: Break on 'debugger' statement in global: {{.*}}:21:1
// CHECK-NEXT: Disabled breakpoint 1
// CHECK-NEXT: Continuing execution
// CHECK-NEXT: first
// CHECK-NEXT: second
// CHECK-NEXT: Break on 'debugger' statement in global: {{.*}}:23:1
// CHECK-NEXT: Enabled breakpoint 1
// CHECK-NEXT: Continuing execution
// CHECK-NEXT: Break on breakpoint 1 in foo: {{.*}}:15:3
// CHECK-NEXT: Continuing execution
// CHECK-NEXT: first
// CHECK-NEXT: second