sundar@1505: /* sundar@1515: * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. sundar@1505: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. sundar@1505: * sundar@1505: * This code is free software; you can redistribute it and/or modify it sundar@1505: * under the terms of the GNU General Public License version 2 only, as sundar@1505: * published by the Free Software Foundation. sundar@1505: * sundar@1505: * This code is distributed in the hope that it will be useful, but WITHOUT sundar@1505: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or sundar@1505: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License sundar@1505: * version 2 for more details (a copy is included in the LICENSE file that sundar@1505: * accompanied this code). sundar@1505: * sundar@1505: * You should have received a copy of the GNU General Public License version sundar@1505: * 2 along with this work; if not, write to the Free Software Foundation, sundar@1505: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. sundar@1505: * sundar@1505: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA sundar@1505: * or visit www.oracle.com if you need additional information or have any sundar@1505: * questions. sundar@1505: */ sundar@1505: sundar@1505: /** sundar@1505: * JDK-8131039: after adding a function property to Object.prototype, JSON.parse with reviver function goes into infinite loop sundar@1505: * sundar@1505: * @test sundar@1505: * @run sundar@1505: */ sundar@1505: sundar@1505: Object.prototype.func = function() {} sundar@1505: sundar@1505: function identity(k, v) { return v }; sundar@1505: var obj = JSON.parse('{\"name\" : \"nashorn\"}', identity); sundar@1505: Assert.assertTrue(obj.name, "nashorn");