summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Script-getAllColumnOffsets-04.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/debug/Script-getAllColumnOffsets-04.js')
-rw-r--r--js/src/jit-test/tests/debug/Script-getAllColumnOffsets-04.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/debug/Script-getAllColumnOffsets-04.js b/js/src/jit-test/tests/debug/Script-getAllColumnOffsets-04.js
new file mode 100644
index 000000000..23a537f53
--- /dev/null
+++ b/js/src/jit-test/tests/debug/Script-getAllColumnOffsets-04.js
@@ -0,0 +1,20 @@
+// getColumnOffsets correctly places object properties.
+
+var global = newGlobal();
+Debugger(global).onDebuggerStatement = function (frame) {
+ var script = frame.eval("f").return.script;
+ script.getAllColumnOffsets().forEach(function (offset) {
+ script.setBreakpoint(offset.offset, {
+ hit: function (frame) {
+ assertEq(offset.lineNumber, 1);
+ global.log += offset.columnNumber + " ";
+ }
+ });
+ });
+};
+
+global.log = '';
+global.eval("function f(n){var o={a:1,b:2,c:3}} debugger;");
+global.f(3);
+// Should hit each property in the object.
+assertEq(global.log, "18 21 25 29 33 ");