Mypal/js/src/jit-test/tests/pic/watch3.js

8 lines
218 B
JavaScript

// assignment to watched global properties must not be cached
x = 0;
var hits = 0;
this.watch("x", function (id, oldval, newval) { hits++; return newval; });
for (var i = 0; i < 10; i++)
x = i;
assertEq(hits, 10);