Bug 1582303 - Fix formatting in Scopes panel for array items with watchpoints. r=jlast

Differential Revision: https://phabricator.services.mozilla.com/D48083

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Miriam 2019-10-07 20:40:32 +00:00
Родитель bf03e4a42e
Коммит 63bd47c3e2
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -793,7 +793,8 @@ const proto = {
if ("value" in desc) {
retval.writable = desc.writable;
retval.value = this.hooks.createValueGrip(desc.value);
} else if (this._originalDescriptors.has(name)) {
} else if (this._originalDescriptors.has(name.toString())) {
name = name.toString();
const watchpointType = this._originalDescriptors.get(name).watchpointType;
desc = this._originalDescriptors.get(name).desc;
retval.value = this.hooks.createValueGrip(