ast.js |
|
982 |
breakpointAtLocation.js |
Finds a breakpoint at a location (line, column) of the
selected source.
This is useful for finding a breakpoint when the
user clicks in the gutter or on a token.
|
3518 |
breakpoints.js |
Gets the breakpoints on a line or within a range of lines
@param {Object} state
@param {Number} source
@param {Number|Object} lines - line or an object with a start and end range of lines
@returns {Array} breakpoints
|
2382 |
breakpointSources.js |
|
1914 |
event-listeners.js |
|
876 |
exceptions.js |
|
1923 |
expressions.js |
|
890 |
index.js |
|
1532 |
isLineInScope.js |
|
672 |
isSelectedFrameVisible.js |
Checks to if the selected frame's source is currently
selected.
|
1046 |
moz.build |
|
807 |
pause.js |
|
9568 |
pending-breakpoints.js |
|
690 |
quick-open.js |
|
449 |
source-actors.js |
Tells if a given Source Actor is registered in the redux store
@param {Object} state
@param {String} sourceActorId
Source Actor ID
@return {Boolean}
|
3778 |
source-blackbox.js |
|
782 |
sources-content.js |
|
1278 |
sources-tree.js |
Main selector to build the SourceTree,
but this is also the source of data for the QuickOpen dialog.
If no project directory root is set, this will return the thread items.
Otherwise this will return the items where we set the directory root.
|
4301 |
sources.js |
Return the "mapped" location for the currently selected location:
- When selecting a location in an original source, returns
the related location in the bundle source.
- When selecting a location in a bundle source, returns
the related location in the original source. This may return undefined
while we are still computing this information. (we need to query the asynchronous SourceMap service)
- Otherwise, when selecting a location in a source unrelated to source map
or a pretty printed source, returns null.
|
12472 |
tabs.js |
Gets the next tab to select when a tab closes. Heuristics:
1. if the selected tab is available, it remains selected
2. if it is gone, the next available tab to the left should be active
3. if the first tab is active and closed, select the second tab
|
2547 |
test |
|
|
threads.js |
Gets domain from the main thread url (without www prefix)
|
1677 |
tracer.js |
|
2465 |
ui.js |
|
2724 |
visibleBreakpoints.js |
Finds the breakpoints, which appear in the selected source.
|
1727 |
visibleColumnBreakpoints.js |
Retrieve the list of column breakpoints to be displayed.
This ignores lines without any breakpoint, but also lines with a single possible breakpoint.
So that we only return breakpoints where there is at least two possible breakpoint on a given line.
Also, this only consider lines currently visible in CodeMirror editor.
This method returns an array whose elements are objects having two attributes:
- breakpoint: A breakpoint object refering to a precise column location
- location: The location object in an active source where the breakpoint location matched.
This location may be the generated or original source based on the currently selected source type.
See `visibleColumnBreakpoints()` for the definition of arguments.
|
5445 |