test/script/basic/objects.js.EXPECTED

changeset 615
fb091f9052a6
parent 3
da1e581c933b
child 952
6d5471a497fb
equal deleted inserted replaced
614:1c154cee43d9 615:fb091f9052a6
27 func's set = undefined 27 func's set = undefined
28 abc is writable? undefined 28 abc is writable? undefined
29 abc is configurable? true 29 abc is configurable? true
30 abc is enumerable? true 30 abc is enumerable? true
31 abc's value = undefined 31 abc's value = undefined
32 abc's get = abc() { return "abc"; } 32 abc's get = get abc() { return "abc"; }
33 abc's set = undefined 33 abc's set = undefined
34 xyz is writable? undefined 34 xyz is writable? undefined
35 xyz is configurable? true 35 xyz is configurable? true
36 xyz is enumerable? true 36 xyz is enumerable? true
37 xyz's value = undefined 37 xyz's value = undefined
38 xyz's get = undefined 38 xyz's get = undefined
39 xyz's set = xyz(val) { print(val); } 39 xyz's set = set xyz(val) { print(val); }
40 hey is writable? undefined 40 hey is writable? undefined
41 hey is configurable? true 41 hey is configurable? true
42 hey is enumerable? true 42 hey is enumerable? true
43 hey's value = undefined 43 hey's value = undefined
44 hey's get = hey() { return "hey"; } 44 hey's get = get hey() { return "hey"; }
45 hey's set = hey(val) { print(val); } 45 hey's set = set hey(val) { print(val); }
46 undefined 46 undefined

mercurial