summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/pic/watch2.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/pic/watch2.js')
-rw-r--r--js/src/jit-test/tests/pic/watch2.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/js/src/jit-test/tests/pic/watch2.js b/js/src/jit-test/tests/pic/watch2.js
deleted file mode 100644
index fb3e29617..000000000
--- a/js/src/jit-test/tests/pic/watch2.js
+++ /dev/null
@@ -1,8 +0,0 @@
-// assignments to watched properties via ++ must not be cached
-var obj = {x: 0};
-var hits = 0;
-obj.watch("x", function (id, oldval, newval) { hits++; return newval; });
-for (var i = 0; i < 10; i++)
- obj.x++;
-assertEq(hits, 10);
-