forked from firefox-devtools/debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathselectors.js
More file actions
45 lines (42 loc) · 1.37 KB
/
selectors.js
File metadata and controls
45 lines (42 loc) · 1.37 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
// @flow
import * as expressions from "./reducers/expressions";
import * as sources from "./reducers/sources";
import * as pause from "./reducers/pause";
import * as debuggee from "./reducers/debuggee";
import * as breakpoints from "./reducers/breakpoints";
import * as pendingBreakpoints from "./reducers/pending-breakpoints";
import * as eventListeners from "./reducers/event-listeners";
import * as ui from "./reducers/ui";
import * as fileSearch from "./reducers/file-search";
import * as ast from "./reducers/ast";
import * as coverage from "./reducers/coverage";
import * as projectTextSearch from "./reducers/project-text-search";
import * as quickOpen from "./reducers/quick-open";
import * as sourceTree from "./reducers/source-tree";
import getBreakpointAtLocation from "./selectors/breakpointAtLocation";
import getInScopeLines from "./selectors/linesInScope";
import getVisibleBreakpoints from "./selectors/visibleBreakpoints";
import isSelectedFrameVisible from "./selectors/isSelectedFrameVisible";
/**
* @param object - location
*/
module.exports = {
...expressions,
...sources,
...pause,
...debuggee,
...breakpoints,
...pendingBreakpoints,
...eventListeners,
...ui,
...ast,
...coverage,
...fileSearch,
...projectTextSearch,
...quickOpen,
...sourceTree,
getBreakpointAtLocation,
getInScopeLines,
getVisibleBreakpoints,
isSelectedFrameVisible
};