forked from firefox-devtools/debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBreakpointAction.js
More file actions
71 lines (66 loc) · 1.63 KB
/
Copy pathBreakpointAction.js
File metadata and controls
71 lines (66 loc) · 1.63 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at <http://mozilla.org/MPL/2.0/>. */
// @flow
import type { Breakpoint, Location } from "../../types";
import type { PromiseAction } from "../utils/middleware/promise";
type AddBreakpointResult = {
previousLocation: Location,
breakpoint: Breakpoint
};
export type BreakpointAction =
| PromiseAction<
{|
+type: "ADD_BREAKPOINT",
+breakpoint: Breakpoint,
+condition?: string
|},
AddBreakpointResult
>
| PromiseAction<{|
+type: "REMOVE_BREAKPOINT",
+breakpoint: Breakpoint,
+disabled: boolean
|}>
// for simulating a successful server request
| {|
+type: "REMOVE_BREAKPOINT",
+breakpoint: Breakpoint,
+status: "done"
|}
| {|
+type: "SET_BREAKPOINT_CONDITION",
+breakpoint: Breakpoint
|}
| PromiseAction<{|
+type: "TOGGLE_BREAKPOINTS",
+shouldDisableBreakpoints: boolean
|}>
| {|
+type: "SYNC_BREAKPOINT",
+breakpoint: ?Breakpoint,
+previousLocation: Location
|}
| PromiseAction<
{|
+type: "ENABLE_BREAKPOINT",
+breakpoint: Breakpoint
|},
AddBreakpointResult
>
| {|
+type: "DISABLE_BREAKPOINT",
+breakpoint: Breakpoint
|}
| {|
+type: "DISABLE_ALL_BREAKPOINTS",
+breakpoints: Breakpoint[]
|}
| {|
+type: "ENABLE_ALL_BREAKPOINTS",
+breakpoints: Breakpoint[]
|}
| {|
+type: "REMAP_BREAKPOINTS",
+breakpoints: Breakpoint[]
|};