nashorn/test/script/basic/objects.js.EXPECTED
changeset 20938 e92d8249f60c
parent 16147 e63b63819133
--- a/nashorn/test/script/basic/objects.js.EXPECTED	Fri Oct 11 10:56:08 2013 +0200
+++ b/nashorn/test/script/basic/objects.js.EXPECTED	Fri Oct 11 11:15:59 2013 +0200
@@ -29,18 +29,18 @@
 abc is configurable? true
 abc is enumerable? true
 abc's value = undefined
-abc's get = abc() { return "abc"; }
+abc's get = 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); }
+xyz's set = 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); }
+hey's get = get hey() { return "hey"; }
+hey's set = set hey(val) { print(val); }
 undefined