test/nashorn/script/basic/JDK-8026248.js
author erikj
Tue, 12 Sep 2017 19:03:56 +0200
changeset 47217 72e3ae9a25eb
parent 47216 71c04702a3d5
permissions -rw-r--r--
8187444: Forest Consolidation: Make build work Reviewed-by: darcy, ihse Contributed-by: erik.joelsson@oracle.com, maurizio.cimadamore@oracle.com, sundararajan.athijegannathan@oracle.com, jonathan.gibbons@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
20930
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
     1
/*
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
     2
 * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
24778
2ff5d7041566 8044638: Tidy up Nashorn codebase for code standards
attila
parents: 20930
diff changeset
     4
 *
20930
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
     7
 * published by the Free Software Foundation.
24778
2ff5d7041566 8044638: Tidy up Nashorn codebase for code standards
attila
parents: 20930
diff changeset
     8
 *
20930
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    13
 * accompanied this code).
24778
2ff5d7041566 8044638: Tidy up Nashorn codebase for code standards
attila
parents: 20930
diff changeset
    14
 *
20930
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
24778
2ff5d7041566 8044638: Tidy up Nashorn codebase for code standards
attila
parents: 20930
diff changeset
    18
 *
20930
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    21
 * questions.
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    22
 */
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    23
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    24
/**
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    25
 * JDK-8026248: importClass has to be a varargs function
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    26
 *
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    27
 * @test
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    28
 * @run
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    29
 */
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    30
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    31
load('nashorn:mozilla_compat.js')
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    32
24778
2ff5d7041566 8044638: Tidy up Nashorn codebase for code standards
attila
parents: 20930
diff changeset
    33
importClass(java.io.File, java.io.InputStream)
20930
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    34
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    35
print(File)
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    36
print(InputStream)
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    37
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    38
importClass(java.util.Map, java.util.HashMap, java.io.PrintStream)
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    39
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    40
print(HashMap)
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    41
print(Map)
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    42
print(PrintStream)
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    43
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    44
importClass.call(this, java.util.Collections, java.util.List);
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    45
print(Collections)
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    46
print(List)
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    47
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    48
importClass.apply(this, [ java.util.Queue, java.math.BigInteger, java.math.BigDecimal ]);
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    49
print(Queue)
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    50
print(BigInteger)
b7c90012908b 8026248: importClass has to be a varargs function
sundar
parents:
diff changeset
    51
print(BigDecimal)