jdk-24/nashorn/test/script/basic/objects.js.EXPECTED
Jim Laskey 98762d6ee0 8005403: Open-source Nashorn
Co-authored-by: Akhil Arora <akhil.arora@oracle.com>
Co-authored-by: Andreas Woess <andreas.woess@jku.at>
Co-authored-by: Attila Szegedi <attila.szegedi@oracle.com>
Co-authored-by: Hannes Wallnoefer <hannes.wallnoefer@oracle.com>
Co-authored-by: Henry Jen <henry.jen@oracle.com>
Co-authored-by: Marcus Lagergren <marcus.lagergren@oracle.com>
Co-authored-by: Pavel Semenov <pavel.semenov@oracle.com>
Co-authored-by: Pavel Stepanov <pavel.stepanov@oracle.com>
Co-authored-by: Petr Hejl <petr.hejl@oracle.com>
Co-authored-by: Petr Pisl <petr.pisl@oracle.com>
Co-authored-by: Sundararajan Athijegannathan <sundararajan.athijegannathan@oracle.com>
Reviewed-by: attila, hannesw, lagergren, sundar
2012-12-21 16:36:24 -04:00

47 lines
1.1 KiB
Plaintext

sundar
Sundararajan
own properties of 'obj':
0 -> foo
1 -> bar
has own 'foo'? true
has own 'xyz'? false
'foo' enumerable? true
'bar' enumerable? true
foo is writable? true
foo is configurable? true
foo is enumerable? true
foo's value = 44
foo's get = undefined
foo's set = undefined
bar is writable? true
bar is configurable? true
bar is enumerable? true
bar's value = orcl
bar's get = undefined
bar's set = undefined
func is writable? true
func is configurable? true
func is enumerable? true
func's value = function() { print("myfunc"); }
func's get = undefined
func's set = undefined
abc is writable? undefined
abc is configurable? true
abc is enumerable? true
abc's value = undefined
abc's get = abc() { return "abc"; }
abc's set = undefined
xyz is writable? undefined
xyz is configurable? true
xyz is enumerable? true
xyz's value = undefined
xyz's get = undefined
xyz's set = xyz(val) { print(val); }
hey is writable? undefined
hey is configurable? true
hey is enumerable? true
hey's value = undefined
hey's get = hey() { return "hey"; }
hey's set = hey(val) { print(val); }
undefined