mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-07-20 22:19:49 +00:00
7624030fbf
- Bug 1055181 - CSS Filter Tooltip; r=pbrosset (327b035a7) - Bug 1137238 - Fix toolboxes when switching between apps in WebIDE. r=jryans (1a333bdfa) - Bug 1138939 - Notify when WebIDE has finished initializing so that Valence can register runtime scanners. r=ochameau (7fe61c384) - Don't let WebIDE break when trying to debug Chrome settings (bug 1134619). r=ochameau (4a18f048e) - fix imports since devtools are in a different path compared to FF (15c2a1e70) - port bits of Bug 916804 - Telemetry for WebIDE. (cf5b49ca7) - Bug 1042859 - Ignore host port when fetching cookies with the gcli cookie command. r=pbrosset (1e6217f76) - fix include path (6efaacd7a) - Bug 1128988 - runAt support for commands/converters; r=bgrins (bed6cb594) - Bug 1143027 - The performance tool tab highlights during a recording. r=vp (e1f310e2d) - missing pieces of Bug 1141817 - Followup to fix additional intermittents and Bug 1142748 - Fix the 'Protocol error (unknownError) (b27da36af) - Bug 1159480 - Pull out actor-specific logic from Performance Front. r=vp (9c253604b) - Bug 1156499 - Disable all non-profiler/fps components in the performance tools when in aurora, for 40.0 release. r=vp (041a0fa34) - Bug 1159052 - Performance recording should stop rendering and recording as soon as the recording stops. r=vp (2a9f093b4) - Bug 114187 - Add getBufferInfo to devtools profiler actor. r=fitzgen (00496e8e4) - Bug 1145187 - Implement polling for buffer status on performance actor facades. r=vp (ae2cbac27) - Bug 1082695 - Simplify the record start/stop time buttons, and more cleanly render the console.profile notifications during a console recording. r=vp (dfe9a9b26) - Bug 1160900 - Display buffer status while recording a profile. r=vp (c3d302a62) - Bug 1154115 - Add adapter that deduplicates old, undeduplicated profiles in the frontend. (r=jsantell,vporof) (aa1bd6769) - Bug 1160696 - Display MIRTypes in the JIT optimizations side pane as "Site : MIRType". (r=jsantell) (beccaed3d) - Bug 1154115 - Make the memory stuff in the performance devtool synthesize the new profiler JSON format. (r=jsantell) (685e3a576) - Bug 1154115 - Fix nsIProfiler xpcshell tests to use the new profiler JSON format. (r=me) (da2a18c89) - Bug 1151526 - Do not display optimization data for meta-platform frames in the profiler. r=vporof (d4cc514ca) - Bug 1154115 - Fix devtools tests to use the new profiler JSON format. (r=jsantell) (61a9064ce) - Bug 1126432: Set preference toggle to switch to new WebIDE project listing layout r=jryans (825831eeb) - Bug 1130084 - Avoid spurious connection errors even on success. r=past (1911930b6) - missing bits of Bug 1069552 - Add WebIDE scanner / runtime API. (773111b87) - Bug 1130084 - Allow runtimes to take infinite time to connect. r=past (a1482c500) - Bug 1025311 - Add telemetry for canvas debugger. r=vp,miker (d2f8d51f2) - Bug 1134778 - Consolidate usages of view sourcing in tools with a source-utils module. r=vp,jryans (1432dfac1) - Bug 1167230 - Use nsCString instead of std::string in FrameKey in the profiler. (r=mstange) (9a3d84b86) - Bug 1166492 - Handle huge strings in the profile JSON writer. (r=mstange) (3d6f90062) - Bug 1166492 - Remove dead code in the ProfileBuffer and ThreadProfile. (r=mstange) (cc8e81dd3) - Bug 1166492 - Return UniquePtr<char[]> from profiler_get_profile to avoid double copying. (r=mstange) (f9d58d5cf) - Bug 1167230 - Don't pack ProfileEntry on ARM. r=shu (b6f920dd3) - Bug 1168784 - Part 1: Fix the script merging profiles to handle new profiler JSON format. r=benwa (dd1008084) - Bug 1090949 - Add `nextTick()` to `lazyIframeIsLoaded()` in WebIDE tests. r=ochameau (94bf972da) - Bug 1143028 - Make AppMan reinitable; update tab list when sidebars disabled. r=past (1020f8306) - Bug 1146542 - Clean up and describe app-manager events. r=ochameau (cc4bcadf5) - Bug 1146542 - Restore tab list changes for non-sidebar case. r=ochameau (531b70e41) - Bug 1149820 - Restore WebIDE project auto select. r=ochameau (d0526612a) - Bug 1135018 - Move getjson from webide/ to shared/. r=jryans (9e405c1bf) - Bug 1135018 - Make devices.js use a CDN. r=ochameau (16adb49c4) - Bug 1090949 - Make WebIDE's Firefox OS Simulators configurable. r=ochameau (354331a6e) - Bug 1157201 - Prevent exception while hovering the rule-view. r=pbrosset (4ec81d85b)
527 lines
18 KiB
JavaScript
527 lines
18 KiB
JavaScript
/* 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/. */
|
|
"use strict";
|
|
|
|
/**
|
|
* Functions handling details about a single recorded animation frame snapshot
|
|
* (the calls list, rendering preview, thumbnails filmstrip etc.).
|
|
*/
|
|
let CallsListView = Heritage.extend(WidgetMethods, {
|
|
/**
|
|
* Initialization function, called when the tool is started.
|
|
*/
|
|
initialize: function() {
|
|
this.widget = new SideMenuWidget($("#calls-list"));
|
|
this._slider = $("#calls-slider");
|
|
this._searchbox = $("#calls-searchbox");
|
|
this._filmstrip = $("#snapshot-filmstrip");
|
|
|
|
this._onSelect = this._onSelect.bind(this);
|
|
this._onSlideMouseDown = this._onSlideMouseDown.bind(this);
|
|
this._onSlideMouseUp = this._onSlideMouseUp.bind(this);
|
|
this._onSlide = this._onSlide.bind(this);
|
|
this._onSearch = this._onSearch.bind(this);
|
|
this._onScroll = this._onScroll.bind(this);
|
|
this._onExpand = this._onExpand.bind(this);
|
|
this._onStackFileClick = this._onStackFileClick.bind(this);
|
|
this._onThumbnailClick = this._onThumbnailClick.bind(this);
|
|
|
|
this.widget.addEventListener("select", this._onSelect, false);
|
|
this._slider.addEventListener("mousedown", this._onSlideMouseDown, false);
|
|
this._slider.addEventListener("mouseup", this._onSlideMouseUp, false);
|
|
this._slider.addEventListener("change", this._onSlide, false);
|
|
this._searchbox.addEventListener("input", this._onSearch, false);
|
|
this._filmstrip.addEventListener("wheel", this._onScroll, false);
|
|
},
|
|
|
|
/**
|
|
* Destruction function, called when the tool is closed.
|
|
*/
|
|
destroy: function() {
|
|
this.widget.removeEventListener("select", this._onSelect, false);
|
|
this._slider.removeEventListener("mousedown", this._onSlideMouseDown, false);
|
|
this._slider.removeEventListener("mouseup", this._onSlideMouseUp, false);
|
|
this._slider.removeEventListener("change", this._onSlide, false);
|
|
this._searchbox.removeEventListener("input", this._onSearch, false);
|
|
this._filmstrip.removeEventListener("wheel", this._onScroll, false);
|
|
},
|
|
|
|
/**
|
|
* Populates this container with a list of function calls.
|
|
*
|
|
* @param array functionCalls
|
|
* A list of function call actors received from the backend.
|
|
*/
|
|
showCalls: function(functionCalls) {
|
|
this.empty();
|
|
|
|
for (let i = 0, len = functionCalls.length; i < len; i++) {
|
|
let call = functionCalls[i];
|
|
|
|
let view = document.createElement("vbox");
|
|
view.className = "call-item-view devtools-monospace";
|
|
view.setAttribute("flex", "1");
|
|
|
|
let contents = document.createElement("hbox");
|
|
contents.className = "call-item-contents";
|
|
contents.setAttribute("align", "center");
|
|
contents.addEventListener("dblclick", this._onExpand);
|
|
view.appendChild(contents);
|
|
|
|
let index = document.createElement("label");
|
|
index.className = "plain call-item-index";
|
|
index.setAttribute("flex", "1");
|
|
index.setAttribute("value", i + 1);
|
|
|
|
let gutter = document.createElement("hbox");
|
|
gutter.className = "call-item-gutter";
|
|
gutter.appendChild(index);
|
|
contents.appendChild(gutter);
|
|
|
|
// Not all function calls have a caller that was stringified (e.g.
|
|
// context calls have a "gl" or "ctx" caller preview).
|
|
if (call.callerPreview) {
|
|
let context = document.createElement("label");
|
|
context.className = "plain call-item-context";
|
|
context.setAttribute("value", call.callerPreview);
|
|
contents.appendChild(context);
|
|
|
|
let separator = document.createElement("label");
|
|
separator.className = "plain call-item-separator";
|
|
separator.setAttribute("value", ".");
|
|
contents.appendChild(separator);
|
|
}
|
|
|
|
let name = document.createElement("label");
|
|
name.className = "plain call-item-name";
|
|
name.setAttribute("value", call.name);
|
|
contents.appendChild(name);
|
|
|
|
let argsPreview = document.createElement("label");
|
|
argsPreview.className = "plain call-item-args";
|
|
argsPreview.setAttribute("crop", "end");
|
|
argsPreview.setAttribute("flex", "100");
|
|
// Getters and setters are displayed differently from regular methods.
|
|
if (call.type == CallWatcherFront.METHOD_FUNCTION) {
|
|
argsPreview.setAttribute("value", "(" + call.argsPreview + ")");
|
|
} else {
|
|
argsPreview.setAttribute("value", " = " + call.argsPreview);
|
|
}
|
|
contents.appendChild(argsPreview);
|
|
|
|
let location = document.createElement("label");
|
|
location.className = "plain call-item-location";
|
|
location.setAttribute("value", getFileName(call.file) + ":" + call.line);
|
|
location.setAttribute("crop", "start");
|
|
location.setAttribute("flex", "1");
|
|
location.addEventListener("mousedown", this._onExpand);
|
|
contents.appendChild(location);
|
|
|
|
// Append a function call item to this container.
|
|
this.push([view], {
|
|
staged: true,
|
|
attachment: {
|
|
actor: call
|
|
}
|
|
});
|
|
|
|
// Highlight certain calls that are probably more interesting than
|
|
// everything else, making it easier to quickly glance over them.
|
|
if (CanvasFront.DRAW_CALLS.has(call.name)) {
|
|
view.setAttribute("draw-call", "");
|
|
}
|
|
if (CanvasFront.INTERESTING_CALLS.has(call.name)) {
|
|
view.setAttribute("interesting-call", "");
|
|
}
|
|
}
|
|
|
|
// Flushes all the prepared function call items into this container.
|
|
this.commit();
|
|
window.emit(EVENTS.CALL_LIST_POPULATED);
|
|
|
|
// Resetting the function selection slider's value (shown in this
|
|
// container's toolbar) would trigger a selection event, which should be
|
|
// ignored in this case.
|
|
this._ignoreSliderChanges = true;
|
|
this._slider.value = 0;
|
|
this._slider.max = functionCalls.length - 1;
|
|
this._ignoreSliderChanges = false;
|
|
},
|
|
|
|
/**
|
|
* Displays an image in the rendering preview of this container, generated
|
|
* for the specified draw call in the recorded animation frame snapshot.
|
|
*
|
|
* @param array screenshot
|
|
* A single "snapshot-image" instance received from the backend.
|
|
*/
|
|
showScreenshot: function(screenshot) {
|
|
let { index, width, height, scaling, flipped, pixels } = screenshot;
|
|
|
|
let screenshotNode = $("#screenshot-image");
|
|
screenshotNode.setAttribute("flipped", flipped);
|
|
drawBackground("screenshot-rendering", width, height, pixels);
|
|
|
|
let dimensionsNode = $("#screenshot-dimensions");
|
|
let actualWidth = (width / scaling) | 0;
|
|
let actualHeight = (height / scaling) | 0;
|
|
dimensionsNode.setAttribute("value",
|
|
SHARED_L10N.getFormatStr("dimensions", actualWidth, actualHeight));
|
|
|
|
window.emit(EVENTS.CALL_SCREENSHOT_DISPLAYED);
|
|
},
|
|
|
|
/**
|
|
* Populates this container's footer with a list of thumbnails, one generated
|
|
* for each draw call in the recorded animation frame snapshot.
|
|
*
|
|
* @param array thumbnails
|
|
* An array of "snapshot-image" instances received from the backend.
|
|
*/
|
|
showThumbnails: function(thumbnails) {
|
|
while (this._filmstrip.hasChildNodes()) {
|
|
this._filmstrip.firstChild.remove();
|
|
}
|
|
for (let thumbnail of thumbnails) {
|
|
this.appendThumbnail(thumbnail);
|
|
}
|
|
|
|
window.emit(EVENTS.THUMBNAILS_DISPLAYED);
|
|
},
|
|
|
|
/**
|
|
* Displays an image in the thumbnails list of this container, generated
|
|
* for the specified draw call in the recorded animation frame snapshot.
|
|
*
|
|
* @param array thumbnail
|
|
* A single "snapshot-image" instance received from the backend.
|
|
*/
|
|
appendThumbnail: function(thumbnail) {
|
|
let { index, width, height, flipped, pixels } = thumbnail;
|
|
|
|
let thumbnailNode = document.createElementNS(HTML_NS, "canvas");
|
|
thumbnailNode.setAttribute("flipped", flipped);
|
|
thumbnailNode.width = Math.max(CanvasFront.THUMBNAIL_SIZE, width);
|
|
thumbnailNode.height = Math.max(CanvasFront.THUMBNAIL_SIZE, height);
|
|
drawImage(thumbnailNode, width, height, pixels, { centered: true });
|
|
|
|
thumbnailNode.className = "filmstrip-thumbnail";
|
|
thumbnailNode.onmousedown = e => this._onThumbnailClick(e, index);
|
|
thumbnailNode.setAttribute("index", index);
|
|
this._filmstrip.appendChild(thumbnailNode);
|
|
},
|
|
|
|
/**
|
|
* Sets the currently highlighted thumbnail in this container.
|
|
* A screenshot will always correlate to a thumbnail in the filmstrip,
|
|
* both being identified by the same 'index' of the context function call.
|
|
*
|
|
* @param number index
|
|
* The context function call's index.
|
|
*/
|
|
set highlightedThumbnail(index) {
|
|
let currHighlightedThumbnail = $(".filmstrip-thumbnail[index='" + index + "']");
|
|
if (currHighlightedThumbnail == null) {
|
|
return;
|
|
}
|
|
|
|
let prevIndex = this._highlightedThumbnailIndex
|
|
let prevHighlightedThumbnail = $(".filmstrip-thumbnail[index='" + prevIndex + "']");
|
|
if (prevHighlightedThumbnail) {
|
|
prevHighlightedThumbnail.removeAttribute("highlighted");
|
|
}
|
|
|
|
currHighlightedThumbnail.setAttribute("highlighted", "");
|
|
currHighlightedThumbnail.scrollIntoView();
|
|
this._highlightedThumbnailIndex = index;
|
|
},
|
|
|
|
/**
|
|
* Gets the currently highlighted thumbnail in this container.
|
|
* @return number
|
|
*/
|
|
get highlightedThumbnail() {
|
|
return this._highlightedThumbnailIndex;
|
|
},
|
|
|
|
/**
|
|
* The select listener for this container.
|
|
*/
|
|
_onSelect: function({ detail: callItem }) {
|
|
if (!callItem) {
|
|
return;
|
|
}
|
|
|
|
// Some of the stepping buttons don't make sense specifically while the
|
|
// last function call is selected.
|
|
if (this.selectedIndex == this.itemCount - 1) {
|
|
$("#resume").setAttribute("disabled", "true");
|
|
$("#step-over").setAttribute("disabled", "true");
|
|
$("#step-out").setAttribute("disabled", "true");
|
|
} else {
|
|
$("#resume").removeAttribute("disabled");
|
|
$("#step-over").removeAttribute("disabled");
|
|
$("#step-out").removeAttribute("disabled");
|
|
}
|
|
|
|
// Correlate the currently selected item with the function selection
|
|
// slider's value. Avoid triggering a redundant selection event.
|
|
this._ignoreSliderChanges = true;
|
|
this._slider.value = this.selectedIndex;
|
|
this._ignoreSliderChanges = false;
|
|
|
|
// Can't generate screenshots for function call actors loaded from disk.
|
|
// XXX: Bug 984844.
|
|
if (callItem.attachment.actor.isLoadedFromDisk) {
|
|
return;
|
|
}
|
|
|
|
// To keep continuous selection buttery smooth (for example, while pressing
|
|
// the DOWN key or moving the slider), only display the screenshot after
|
|
// any kind of user input stops.
|
|
setConditionalTimeout("screenshot-display", SCREENSHOT_DISPLAY_DELAY, () => {
|
|
return !this._isSliding;
|
|
}, () => {
|
|
let frameSnapshot = SnapshotsListView.selectedItem.attachment.actor
|
|
let functionCall = callItem.attachment.actor;
|
|
frameSnapshot.generateScreenshotFor(functionCall).then(screenshot => {
|
|
this.showScreenshot(screenshot);
|
|
this.highlightedThumbnail = screenshot.index;
|
|
}).catch(Cu.reportError);
|
|
});
|
|
},
|
|
|
|
/**
|
|
* The mousedown listener for the call selection slider.
|
|
*/
|
|
_onSlideMouseDown: function() {
|
|
this._isSliding = true;
|
|
},
|
|
|
|
/**
|
|
* The mouseup listener for the call selection slider.
|
|
*/
|
|
_onSlideMouseUp: function() {
|
|
this._isSliding = false;
|
|
},
|
|
|
|
/**
|
|
* The change listener for the call selection slider.
|
|
*/
|
|
_onSlide: function() {
|
|
// Avoid performing any operations when programatically changing the value.
|
|
if (this._ignoreSliderChanges) {
|
|
return;
|
|
}
|
|
let selectedFunctionCallIndex = this.selectedIndex = this._slider.value;
|
|
|
|
// While sliding, immediately show the most relevant thumbnail for a
|
|
// function call, for a nice diff-like animation effect between draws.
|
|
let thumbnails = SnapshotsListView.selectedItem.attachment.thumbnails;
|
|
let thumbnail = getThumbnailForCall(thumbnails, selectedFunctionCallIndex);
|
|
|
|
// Avoid drawing and highlighting if the selected function call has the
|
|
// same thumbnail as the last one.
|
|
if (thumbnail.index == this.highlightedThumbnail) {
|
|
return;
|
|
}
|
|
// If a thumbnail wasn't found (e.g. the backend avoids creating thumbnails
|
|
// when rendering offscreen), simply defer to the first available one.
|
|
if (thumbnail.index == -1) {
|
|
thumbnail = thumbnails[0];
|
|
}
|
|
|
|
let { index, width, height, flipped, pixels } = thumbnail;
|
|
this.highlightedThumbnail = index;
|
|
|
|
let screenshotNode = $("#screenshot-image");
|
|
screenshotNode.setAttribute("flipped", flipped);
|
|
drawBackground("screenshot-rendering", width, height, pixels);
|
|
},
|
|
|
|
/**
|
|
* The input listener for the calls searchbox.
|
|
*/
|
|
_onSearch: function(e) {
|
|
let lowerCaseSearchToken = this._searchbox.value.toLowerCase();
|
|
|
|
this.filterContents(e => {
|
|
let call = e.attachment.actor;
|
|
let name = call.name.toLowerCase();
|
|
let file = call.file.toLowerCase();
|
|
let line = call.line.toString().toLowerCase();
|
|
let args = call.argsPreview.toLowerCase();
|
|
|
|
return name.includes(lowerCaseSearchToken) ||
|
|
file.includes(lowerCaseSearchToken) ||
|
|
line.includes(lowerCaseSearchToken) ||
|
|
args.includes(lowerCaseSearchToken);
|
|
});
|
|
},
|
|
|
|
/**
|
|
* The wheel listener for the filmstrip that contains all the thumbnails.
|
|
*/
|
|
_onScroll: function(e) {
|
|
this._filmstrip.scrollLeft += e.deltaX;
|
|
},
|
|
|
|
/**
|
|
* The click/dblclick listener for an item or location url in this container.
|
|
* When expanding an item, it's corresponding call stack will be displayed.
|
|
*/
|
|
_onExpand: function(e) {
|
|
let callItem = this.getItemForElement(e.target);
|
|
let view = $(".call-item-view", callItem.target);
|
|
|
|
// If the call stack nodes were already created, simply re-show them
|
|
// or jump to the corresponding file and line in the Debugger if a
|
|
// location link was clicked.
|
|
if (view.hasAttribute("call-stack-populated")) {
|
|
let isExpanded = view.getAttribute("call-stack-expanded") == "true";
|
|
|
|
// If clicking on the location, jump to the Debugger.
|
|
if (e.target.classList.contains("call-item-location")) {
|
|
let { file, line } = callItem.attachment.actor;
|
|
this._viewSourceInDebugger(file, line);
|
|
return;
|
|
}
|
|
// Otherwise hide the call stack.
|
|
else {
|
|
view.setAttribute("call-stack-expanded", !isExpanded);
|
|
$(".call-item-stack", view).hidden = isExpanded;
|
|
return;
|
|
}
|
|
}
|
|
|
|
let list = document.createElement("vbox");
|
|
list.className = "call-item-stack";
|
|
view.setAttribute("call-stack-populated", "");
|
|
view.setAttribute("call-stack-expanded", "true");
|
|
view.appendChild(list);
|
|
|
|
/**
|
|
* Creates a function call nodes in this container for a stack.
|
|
*/
|
|
let display = stack => {
|
|
for (let i = 1; i < stack.length; i++) {
|
|
let call = stack[i];
|
|
|
|
let contents = document.createElement("hbox");
|
|
contents.className = "call-item-stack-fn";
|
|
contents.style.MozPaddingStart = (i * STACK_FUNC_INDENTATION) + "px";
|
|
|
|
let name = document.createElement("label");
|
|
name.className = "plain call-item-stack-fn-name";
|
|
name.setAttribute("value", "↳ " + call.name + "()");
|
|
contents.appendChild(name);
|
|
|
|
let spacer = document.createElement("spacer");
|
|
spacer.setAttribute("flex", "100");
|
|
contents.appendChild(spacer);
|
|
|
|
let location = document.createElement("label");
|
|
location.className = "plain call-item-stack-fn-location";
|
|
location.setAttribute("value", getFileName(call.file) + ":" + call.line);
|
|
location.setAttribute("crop", "start");
|
|
location.setAttribute("flex", "1");
|
|
location.addEventListener("mousedown", e => this._onStackFileClick(e, call));
|
|
contents.appendChild(location);
|
|
|
|
list.appendChild(contents);
|
|
}
|
|
|
|
window.emit(EVENTS.CALL_STACK_DISPLAYED);
|
|
};
|
|
|
|
// If this animation snapshot is loaded from disk, there are no corresponding
|
|
// backend actors available and the data is immediately available.
|
|
let functionCall = callItem.attachment.actor;
|
|
if (functionCall.isLoadedFromDisk) {
|
|
display(functionCall.stack);
|
|
}
|
|
// ..otherwise we need to request the function call stack from the backend.
|
|
else {
|
|
callItem.attachment.actor.getDetails().then(fn => display(fn.stack));
|
|
}
|
|
},
|
|
|
|
/**
|
|
* The click listener for a location link in the call stack.
|
|
*
|
|
* @param string file
|
|
* The url of the source owning the function.
|
|
* @param number line
|
|
* The line of the respective function.
|
|
*/
|
|
_onStackFileClick: function(e, { file, line }) {
|
|
this._viewSourceInDebugger(file, line);
|
|
},
|
|
|
|
/**
|
|
* The click listener for a thumbnail in the filmstrip.
|
|
*
|
|
* @param number index
|
|
* The function index in the recorded animation frame snapshot.
|
|
*/
|
|
_onThumbnailClick: function(e, index) {
|
|
this.selectedIndex = index;
|
|
},
|
|
|
|
/**
|
|
* The click listener for the "resume" button in this container's toolbar.
|
|
*/
|
|
_onResume: function() {
|
|
// Jump to the next draw call in the recorded animation frame snapshot.
|
|
let drawCall = getNextDrawCall(this.items, this.selectedItem);
|
|
if (drawCall) {
|
|
this.selectedItem = drawCall;
|
|
return;
|
|
}
|
|
|
|
// If there are no more draw calls, just jump to the last context call.
|
|
this._onStepOut();
|
|
},
|
|
|
|
/**
|
|
* The click listener for the "step over" button in this container's toolbar.
|
|
*/
|
|
_onStepOver: function() {
|
|
this.selectedIndex++;
|
|
},
|
|
|
|
/**
|
|
* The click listener for the "step in" button in this container's toolbar.
|
|
*/
|
|
_onStepIn: function() {
|
|
if (this.selectedIndex == -1) {
|
|
this._onResume();
|
|
return;
|
|
}
|
|
let callItem = this.selectedItem;
|
|
let { file, line } = callItem.attachment.actor;
|
|
this._viewSourceInDebugger(file, line);
|
|
},
|
|
|
|
/**
|
|
* The click listener for the "step out" button in this container's toolbar.
|
|
*/
|
|
_onStepOut: function() {
|
|
this.selectedIndex = this.itemCount - 1;
|
|
},
|
|
|
|
/**
|
|
* Opens the specified file and line in the debugger. Falls back to Firefox's View Source.
|
|
*/
|
|
_viewSourceInDebugger: function (file, line) {
|
|
gToolbox.viewSourceInDebugger(file, line).then(success => {
|
|
if (success) {
|
|
window.emit(EVENTS.SOURCE_SHOWN_IN_JS_DEBUGGER);
|
|
} else {
|
|
window.emit(EVENTS.SOURCE_NOT_FOUND_IN_JS_DEBUGGER);
|
|
}
|
|
});
|
|
}
|
|
});
|