summaryrefslogtreecommitdiffstats
path: root/js/src/tests/js1_8_5/extensions/regress-604781-1.js
blob: a7c43f95d223f6502b760d318b14954c93cf275d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Any copyright is dedicated to the Public Domain.
// http://creativecommons.org/licenses/publicdomain/

var watcherCount, setterCount;
function watcher(id, oldval, newval) { watcherCount++; return newval; }
function setter(newval) { setterCount++; }

var p = { set x(v) { setter(v); } };
p.watch('x', watcher);

watcherCount = setterCount = 0;
p.x = 2;
assertEq(setterCount, 1);
assertEq(watcherCount, 1);

var o = Object.defineProperty({}, 'x', { set:setter, enumerable:true, configurable:true });
o.watch('x', watcher);

watcherCount = setterCount = 0;
o.x = 2;
assertEq(setterCount, 1);
assertEq(watcherCount, 1);

reportCompare(0, 0, 'ok');