sundar@1406: /* sundar@1482: * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. sundar@1406: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. sundar@1482: * sundar@1406: * This code is free software; you can redistribute it and/or modify it sundar@1406: * under the terms of the GNU General Public License version 2 only, as sundar@1406: * published by the Free Software Foundation. sundar@1482: * sundar@1406: * This code is distributed in the hope that it will be useful, but WITHOUT sundar@1406: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or sundar@1406: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License sundar@1406: * version 2 for more details (a copy is included in the LICENSE file that sundar@1406: * accompanied this code). sundar@1482: * sundar@1406: * You should have received a copy of the GNU General Public License version sundar@1406: * 2 along with this work; if not, write to the Free Software Foundation, sundar@1406: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. sundar@1482: * sundar@1406: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA sundar@1406: * or visit www.oracle.com if you need additional information or have any sundar@1406: * questions. sundar@1406: */ sundar@1406: sundar@1406: /** sundar@1406: * JDK-8087211: Indirect evals should be strict with -strict option sundar@1406: * Make sure without -strict option, indirect evals are not strict. sundar@1406: * sundar@1406: * @test sundar@1406: * @run sundar@1406: */ sundar@1406: sundar@1406: var global = this; sundar@1406: sundar@1406: // indirect eval call. sundar@1406: global.eval("x = 34;"); sundar@1406: sundar@1406: function teststrict() { sundar@1406: "use strict"; sundar@1406: // strict caller, indirect eval. sundar@1406: global.eval('public = 1;'); sundar@1406: } sundar@1406: sundar@1406: teststrict(); sundar@1406: sundar@1406: function testnonstrict() { sundar@1406: // non strict caller, indirect eval. sundar@1406: global.eval('public = 1;'); sundar@1406: } sundar@1406: sundar@1406: testnonstrict();