test/script/basic/es6/lexical-toplevel-redeclare.js

changeset 1105
c3a510b73875
equal deleted inserted replaced
1104:c22dd9ae7ff0 1105:c3a510b73875
1 /*
2 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
23
24 /**
25 * JDK-8057691: Nashorn: let & const declarations are not shared between scripts
26 *
27 * @test
28 * @run
29 * @option -scripting
30 * @option --language=es6
31 */
32
33 load(__DIR__ + "lexical-toplevel-def.js");
34
35 var global = this;
36
37 function tryIt (code) {
38 try {
39 eval(code)
40 } catch (e) {
41 print(String(e).replace(/\\/g, "/"))
42 }
43 }
44
45 function loadScript(script) {
46 print(script);
47 try {
48 load(__DIR__ + script);
49 } catch (e) {
50 print(String(e).replace(/\\/g, "/"));
51 }
52 print(VAR);
53 print(LET);
54 print(CONST);
55 print(FUNC);
56 print(GLOBAL);
57 print(global.VAR);
58 print(global.LET);
59 print(global.CONST);
60 print(global.FUNC);
61 print(global.GLOBAL);
62 try {
63 print(SHOULD_NOT_EXIST);
64 } catch (e) {
65 print(String(e).replace(/\\/g, "/"));
66 }
67 print(global.SHOULD_NOT_EXIST);
68 print(Object);
69 print(global.Object);
70 print();
71 }
72
73 loadScript("lexical-toplevel-redeclare-var-on-let.js");
74 loadScript("lexical-toplevel-redeclare-func-on-let.js");
75 loadScript("lexical-toplevel-redeclare-let-on-var.js");
76 loadScript("lexical-toplevel-redeclare-let-on-func.js");
77 loadScript("lexical-toplevel-redeclare-let-on-builtin.js");
78 loadScript("lexical-toplevel-redeclare-let-on-global.js");

mercurial