summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/pic/watch1a.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/pic/watch1a.js')
-rw-r--r--js/src/jit-test/tests/pic/watch1a.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/pic/watch1a.js b/js/src/jit-test/tests/pic/watch1a.js
new file mode 100644
index 000000000..4b404f507
--- /dev/null
+++ b/js/src/jit-test/tests/pic/watch1a.js
@@ -0,0 +1,17 @@
+// assignments to watched objects must not be traced
+var hits = 0;
+function counter(id, oldval, newval) {
+ hits++;
+ return newval;
+}
+
+(function () {
+ var obj = {x: 0, y: 0};
+ var a = ['x', 'y'];
+ obj.watch('z', counter);
+ for (var i = 0; i < 14; i++) {
+ obj.watch(a[+(i > 8)], counter);
+ obj.y = i;
+ }
+})();
+assertEq(hits, 5);