nashorn/test/script/basic/JDK-8026137.js
changeset 24751 ccbd9cd3f720
parent 20928 3ff39d5c8c08
child 24778 2ff5d7041566
--- a/nashorn/test/script/basic/JDK-8026137.js	Mon May 05 14:17:20 2014 +0200
+++ b/nashorn/test/script/basic/JDK-8026137.js	Tue May 13 11:30:40 2014 +0200
@@ -30,7 +30,9 @@
  */
 
 try {
-    (function f() { Object.defineProperty({},"x",{get: function(){return {valueOf:function(){throw 0}}}}).x - Object.defineProperty({},"x",{get: function(){throw 1}}).x })()
+    (function f() { 
+        Object.defineProperty({},"x",{get: function(){return {valueOf:function(){throw 0}}}}).x - 
+        Object.defineProperty({},"x",{get: function(){throw 1}}).x })()
 } 
 catch (e) {
     print(e);