blob: 1a569ec2fe669052026b4dd4d9efaef49af94f32 (
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
|
function getx() {
return x;
}
function gety() {
return y;
}
function getz() {
return z;
}
function main() {
var proto = Object.getPrototypeOf(this);
Object.defineProperty(proto, "x", { value: 5});
// not-scripted getter
Object.defineProperty(proto, "y", { get: String });
// scripted getter
Object.defineProperty(proto, "z", { get: function () { return 7;} });
for (var i=0; i<20; i++) {
assertEq(getx(), 5);
assertEq(gety(), "");
assertEq(getz(), 7);
}
}
main();
|