summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Environment-getVariable-11.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/debug/Environment-getVariable-11.js')
-rw-r--r--js/src/jit-test/tests/debug/Environment-getVariable-11.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/debug/Environment-getVariable-11.js b/js/src/jit-test/tests/debug/Environment-getVariable-11.js
new file mode 100644
index 0000000000..23dcdc5fe8
--- /dev/null
+++ b/js/src/jit-test/tests/debug/Environment-getVariable-11.js
@@ -0,0 +1,15 @@
+// The value returned by getVariable can be a Debugger.Object.
+
+var g = newGlobal({newCompartment: true});
+var dbg = new Debugger;
+var gw = dbg.addDebuggee(g);
+var hits = 0;
+dbg.onDebuggerStatement = function (frame) {
+ var a = frame.environment.parent.getVariable('Math');
+ assertEq(a instanceof Debugger.Object, true);
+ var b = gw.getOwnPropertyDescriptor('Math').value;
+ assertEq(a, b);
+ hits++;
+};
+g.eval("debugger;");
+assertEq(hits, 1);