nashorn/test/script/nosecurity/treeapi/forin.js
author hannesw
Wed, 27 Apr 2016 15:50:33 +0200
changeset 37732 3673fec68d16
parent 34973 78e005830b24
permissions -rw-r--r--
8134503: support ES6 parsing in Nashorn Reviewed-by: jlaskey, sundar, mhaupt Contributed-by: andreas.woess@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
29543
4d9f8f8b69a4 8068306: Tests for AST presentation Nashorn Parser API
slugovoy
parents:
diff changeset
     1
/*
34973
78e005830b24 8146888: Wrong license headers in test files
hannesw
parents: 29543
diff changeset
     2
 * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
78e005830b24 8146888: Wrong license headers in test files
hannesw
parents: 29543
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
29543
4d9f8f8b69a4 8068306: Tests for AST presentation Nashorn Parser API
slugovoy
parents:
diff changeset
     4
 *
34973
78e005830b24 8146888: Wrong license headers in test files
hannesw
parents: 29543
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
78e005830b24 8146888: Wrong license headers in test files
hannesw
parents: 29543
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
78e005830b24 8146888: Wrong license headers in test files
hannesw
parents: 29543
diff changeset
     7
 * published by the Free Software Foundation.
29543
4d9f8f8b69a4 8068306: Tests for AST presentation Nashorn Parser API
slugovoy
parents:
diff changeset
     8
 *
34973
78e005830b24 8146888: Wrong license headers in test files
hannesw
parents: 29543
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
78e005830b24 8146888: Wrong license headers in test files
hannesw
parents: 29543
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
78e005830b24 8146888: Wrong license headers in test files
hannesw
parents: 29543
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
78e005830b24 8146888: Wrong license headers in test files
hannesw
parents: 29543
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
78e005830b24 8146888: Wrong license headers in test files
hannesw
parents: 29543
diff changeset
    13
 * accompanied this code).
29543
4d9f8f8b69a4 8068306: Tests for AST presentation Nashorn Parser API
slugovoy
parents:
diff changeset
    14
 *
34973
78e005830b24 8146888: Wrong license headers in test files
hannesw
parents: 29543
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
78e005830b24 8146888: Wrong license headers in test files
hannesw
parents: 29543
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
78e005830b24 8146888: Wrong license headers in test files
hannesw
parents: 29543
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
29543
4d9f8f8b69a4 8068306: Tests for AST presentation Nashorn Parser API
slugovoy
parents:
diff changeset
    18
 *
34973
78e005830b24 8146888: Wrong license headers in test files
hannesw
parents: 29543
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
78e005830b24 8146888: Wrong license headers in test files
hannesw
parents: 29543
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
29543
4d9f8f8b69a4 8068306: Tests for AST presentation Nashorn Parser API
slugovoy
parents:
diff changeset
    21
 * questions.
4d9f8f8b69a4 8068306: Tests for AST presentation Nashorn Parser API
slugovoy
parents:
diff changeset
    22
 */
4d9f8f8b69a4 8068306: Tests for AST presentation Nashorn Parser API
slugovoy
parents:
diff changeset
    23
4d9f8f8b69a4 8068306: Tests for AST presentation Nashorn Parser API
slugovoy
parents:
diff changeset
    24
/**
4d9f8f8b69a4 8068306: Tests for AST presentation Nashorn Parser API
slugovoy
parents:
diff changeset
    25
 * Tests to check representation for-in loop tree.
4d9f8f8b69a4 8068306: Tests for AST presentation Nashorn Parser API
slugovoy
parents:
diff changeset
    26
 *
4d9f8f8b69a4 8068306: Tests for AST presentation Nashorn Parser API
slugovoy
parents:
diff changeset
    27
 * @test
4d9f8f8b69a4 8068306: Tests for AST presentation Nashorn Parser API
slugovoy
parents:
diff changeset
    28
 * @bug 8068306
4d9f8f8b69a4 8068306: Tests for AST presentation Nashorn Parser API
slugovoy
parents:
diff changeset
    29
 * @option -scripting
4d9f8f8b69a4 8068306: Tests for AST presentation Nashorn Parser API
slugovoy
parents:
diff changeset
    30
 * @run
4d9f8f8b69a4 8068306: Tests for AST presentation Nashorn Parser API
slugovoy
parents:
diff changeset
    31
 */
4d9f8f8b69a4 8068306: Tests for AST presentation Nashorn Parser API
slugovoy
parents:
diff changeset
    32
4d9f8f8b69a4 8068306: Tests for AST presentation Nashorn Parser API
slugovoy
parents:
diff changeset
    33
load(__DIR__ + "utils.js")
4d9f8f8b69a4 8068306: Tests for AST presentation Nashorn Parser API
slugovoy
parents:
diff changeset
    34
4d9f8f8b69a4 8068306: Tests for AST presentation Nashorn Parser API
slugovoy
parents:
diff changeset
    35
4d9f8f8b69a4 8068306: Tests for AST presentation Nashorn Parser API
slugovoy
parents:
diff changeset
    36
var code = <<EOF
4d9f8f8b69a4 8068306: Tests for AST presentation Nashorn Parser API
slugovoy
parents:
diff changeset
    37
4d9f8f8b69a4 8068306: Tests for AST presentation Nashorn Parser API
slugovoy
parents:
diff changeset
    38
for (i in obj) {}
4d9f8f8b69a4 8068306: Tests for AST presentation Nashorn Parser API
slugovoy
parents:
diff changeset
    39
for (var i in obj) {}
4d9f8f8b69a4 8068306: Tests for AST presentation Nashorn Parser API
slugovoy
parents:
diff changeset
    40
[].forEach(function(i, v){})
4d9f8f8b69a4 8068306: Tests for AST presentation Nashorn Parser API
slugovoy
parents:
diff changeset
    41
4d9f8f8b69a4 8068306: Tests for AST presentation Nashorn Parser API
slugovoy
parents:
diff changeset
    42
EOF
4d9f8f8b69a4 8068306: Tests for AST presentation Nashorn Parser API
slugovoy
parents:
diff changeset
    43
4d9f8f8b69a4 8068306: Tests for AST presentation Nashorn Parser API
slugovoy
parents:
diff changeset
    44
parse("forinloop.js", code, "-nse", new (Java.extend(visitor, {
4d9f8f8b69a4 8068306: Tests for AST presentation Nashorn Parser API
slugovoy
parents:
diff changeset
    45
    visitForInLoop : function (node, obj) {
4d9f8f8b69a4 8068306: Tests for AST presentation Nashorn Parser API
slugovoy
parents:
diff changeset
    46
        obj.push(convert(node))
4d9f8f8b69a4 8068306: Tests for AST presentation Nashorn Parser API
slugovoy
parents:
diff changeset
    47
    }
34973
78e005830b24 8146888: Wrong license headers in test files
hannesw
parents: 29543
diff changeset
    48
})))