debugger fix for #1707
This commit is contained in:
parent
39fec6003e
commit
43cb4ec76b
@ -768,7 +768,8 @@ function Interface(stdin, stdout, args) {
|
|||||||
// Copy all prototype methods in repl context
|
// Copy all prototype methods in repl context
|
||||||
// Setup them as getters if possible
|
// Setup them as getters if possible
|
||||||
for (var i in proto) {
|
for (var i in proto) {
|
||||||
if (proto.hasOwnProperty(i) && ignored.indexOf(i) === -1) {
|
if (Object.prototype.hasOwnProperty.call(proto, i) &&
|
||||||
|
ignored.indexOf(i) === -1) {
|
||||||
defineProperty(i, i);
|
defineProperty(i, i);
|
||||||
if (shortcut[i]) defineProperty(shortcut[i], i);
|
if (shortcut[i]) defineProperty(shortcut[i], i);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user