summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/pic/watch2a.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/pic/watch2a.js')
-rw-r--r--js/src/jit-test/tests/pic/watch2a.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/js/src/jit-test/tests/pic/watch2a.js b/js/src/jit-test/tests/pic/watch2a.js
deleted file mode 100644
index ce3294ba3..000000000
--- a/js/src/jit-test/tests/pic/watch2a.js
+++ /dev/null
@@ -1,18 +0,0 @@
-// assignments to watched properties via ++ 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++;
- }
-})();
-assertEq(hits, 5);
-