sundar@716: /* sundar@716: * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved. sundar@716: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. attila@962: * sundar@716: * This code is free software; you can redistribute it and/or modify it sundar@716: * under the terms of the GNU General Public License version 2 only, as sundar@716: * published by the Free Software Foundation. attila@962: * sundar@716: * This code is distributed in the hope that it will be useful, but WITHOUT sundar@716: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or sundar@716: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License sundar@716: * version 2 for more details (a copy is included in the LICENSE file that sundar@716: * accompanied this code). attila@962: * sundar@716: * You should have received a copy of the GNU General Public License version sundar@716: * 2 along with this work; if not, write to the Free Software Foundation, sundar@716: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. attila@962: * sundar@716: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA sundar@716: * or visit www.oracle.com if you need additional information or have any sundar@716: * questions. sundar@716: */ sundar@716: sundar@716: /** sundar@716: * Try to bind properties of StaticClass representing Class. sundar@716: * sundar@716: * @test sundar@717: * @bug JDK-8032943: Improve reflection in Nashorn sundar@716: */ sundar@716: sundar@716: sundar@716: var obj = {} sundar@716: sundar@716: try { sundar@716: Object.bindProperties(obj, Java.type("java.lang.Class")); sundar@716: fail("SecurityException should have been thrown"); sundar@716: } catch (e) { sundar@716: if (! (e instanceof java.lang.SecurityException)) { sundar@716: fail("SecurityException expected, got " + e); sundar@716: } sundar@716: }