mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 889838 - Silent exception when inspecting debugger variables on old actors. r=past
This commit is contained in:
parent
edeb7caf7a
commit
f92fd1bb9e
@ -123,7 +123,9 @@ VariablesViewController.prototype = {
|
|||||||
let deferred = Promise.defer();
|
let deferred = Promise.defer();
|
||||||
|
|
||||||
this._getGripClient(aGrip).getPrototypeAndProperties(aResponse => {
|
this._getGripClient(aGrip).getPrototypeAndProperties(aResponse => {
|
||||||
let { ownProperties, prototype, safeGetterValues } = aResponse;
|
let { ownProperties, prototype } = aResponse;
|
||||||
|
// safeGetterValues is new and isn't necessary defined on old actors
|
||||||
|
let safeGetterValues = aResponse.safeGetterValues || {};
|
||||||
let sortable = VariablesView.isSortable(aGrip.class);
|
let sortable = VariablesView.isSortable(aGrip.class);
|
||||||
|
|
||||||
// Merge the safe getter values into one object such that we can use it
|
// Merge the safe getter values into one object such that we can use it
|
||||||
|
Loading…
Reference in New Issue
Block a user