在 firefox developer 66.0b1(禁用所有扩展)中,“invoke getter”功能在调试器面板中不起作用,但在监视表达式面板中起作用。
我创建了一个文件 script.js 并包含在同一文件夹中的 index.html 中,以进行如下测试:
var obj = {
key1: "hello",
key2: "world",
get world() {
return this.key1 + ' ' + this.key2;
}
};
console.log(obj);
console.log('done');
我在 line 设置断点console.log('done');
。当我开始调试时,我在调试器面板中单击“调用 getter”(>> 按钮),但没有任何反应。
它适用于手表表达式面板:
这个功能还没有完成还是我的firefox安装坏了?