blob: 48ea9bf87964d923accf92f53f20e447b822c7ad (
plain)
1
2
3
4
5
6
7
8
9
10
|
// getVariable sees properties inherited from a with-object's prototype chain.
var g = newGlobal();
var dbg = Debugger(g);
var v;
dbg.onDebuggerStatement = function (frame) {
v = frame.environment.getVariable("x");
};
g.eval("var x = 1; { let x = 2; with (Object.create({x: 3})) { debugger; } }");
assertEq(v, 3);
|