nashorn/test/script/basic/es6/for-let.js
author hannesw
Thu, 27 Nov 2014 16:42:53 +0100
changeset 27817 56f6161c3e55
parent 26377 028dad61662f
child 27977 42799be30dcd
permissions -rw-r--r--
8057980: let & const: remaining issues with lexical scoping Reviewed-by: lagergren, attila
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
26377
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
     1
/*
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
     2
 * Copyright (c) 2010, 2014, Oracle and/or its affiliates. All rights reserved.
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
     4
 * 
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
     7
 * published by the Free Software Foundation.
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
     8
 * 
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
    13
 * accompanied this code).
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
    14
 * 
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
    18
 * 
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
    21
 * questions.
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
    22
 */
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
    23
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
    24
/**
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
    25
 * JDK-8051889: Implement block scoping in symbol assignment and scope computation
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
    26
 *
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
    27
 * @test
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
    28
 * @run
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
    29
 * @option --language=es6 */
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
    30
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
    31
"use strict";
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
    32
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
    33
for (let i = 0; i < 10; i++) {
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
    34
    print(i);
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
    35
}
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
    36
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
    37
try {
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
    38
    print(i);
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
    39
} catch (e) {
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
    40
    print(e);
028dad61662f 8051889: Implement block scoping in symbol assignment and scope computation
hannesw
parents:
diff changeset
    41
}
27817
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    42
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    43
let a = [];
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    44
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    45
for (let i = 0; i < 10; i++) {
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    46
    a.push(function() { print(i); });
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    47
}
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    48
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    49
a.forEach(function(f) { f(); });
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    50
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    51
a = [];
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    52
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    53
for (let i = 0; i < 10; i++) {
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    54
    if (i == 5) {
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    55
        i = "foo";
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    56
    }
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    57
    a.push(function() { print(i); });
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    58
}
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    59
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    60
a.forEach(function(f) { f(); });
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    61
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    62
try {
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    63
    print(i);
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    64
} catch (e) {
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    65
    print(e);
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    66
}
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    67
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    68
a = [];
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    69
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    70
for (let i = 0; i < 20; i++) {
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    71
    if (i % 2 == 1) {
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    72
        i += 2;
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    73
        continue;
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    74
    }
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    75
    a.push(function() { print(i); });
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    76
}
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    77
56f6161c3e55 8057980: let & const: remaining issues with lexical scoping
hannesw
parents: 26377
diff changeset
    78
a.forEach(function(f) { f(); });