nashorn/test/script/basic/optimistic_assignment_check_type.js
author hannesw
Fri, 03 Feb 2017 13:28:00 +0100
changeset 43555 1bb10bccf057
parent 25828 077046a5d726
permissions -rw-r--r--
8173888: Test for JDK-8169481 causes stack overflows in parser tests Reviewed-by: jlaskey, sundar
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
24750
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
     1
/*
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
     2
 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
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: 24750
diff changeset
     4
 *
24750
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
     7
 * published by the Free Software Foundation.
24778
2ff5d7041566 8044638: Tidy up Nashorn codebase for code standards
attila
parents: 24750
diff changeset
     8
 *
24750
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    13
 * accompanied this code).
24778
2ff5d7041566 8044638: Tidy up Nashorn codebase for code standards
attila
parents: 24750
diff changeset
    14
 *
24750
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
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: 24750
diff changeset
    18
 *
24750
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    21
 * questions.
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    22
 */
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    23
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    24
/**
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    25
 * @test
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    26
 * @bug 8036987, 8037572
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    27
 * @summary Implement tests that checks static types in the compiled code
25828
077046a5d726 8044786: Some tests fail with non-optimistic compilation
attila
parents: 24778
diff changeset
    28
 * @option --optimistic-types=true
24750
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    29
 * @run
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    30
 */
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    31
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    32
var inspect = Java.type("jdk.nashorn.test.tools.StaticTypeInspector").inspect
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    33
var a = b = 3;
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    34
var c;
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    35
var x = { a: 2, b:1, c: 7, d: -1, e: 1}
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    36
var y = { a: undefined, b: undefined}
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    37
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    38
// Testing assignment operators
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    39
//-- Global variable
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    40
print(inspect(a=c, "global int assignment to global variable"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    41
print(inspect(a=b, "undefined assignment to global int"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    42
print(inspect(a=y.a, "global int assignment to undefined"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    43
print(inspect(a+=b, "undefined addition assignment to global int"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    44
print(inspect(b=b+b, "global int addition global int"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    45
print(inspect(b+= y.a, "global int addition assignment undefined"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    46
//--Local variable
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    47
print(inspect(x.a+= y.a, "local int addition assignment local undefined"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    48
print(inspect(x.b=y.a, "local int assignment to undefined"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    49
print(inspect(y.a+=y.a, "local undefined addition assignment local undefined"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    50
print(inspect(x.c-=x.d, "local int substraction assignment local int"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    51
print(inspect(x.c*=x.d, "local int multiplication assignment local int"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    52
print(inspect(x.c/=x.d, "local int division assignment local int"))
01ea334ab39a 8037572: Add more test cases to check static types
mnunez
parents:
diff changeset
    53
print(inspect(y.b=x.c, "local undefined assignment to local int"))
24778
2ff5d7041566 8044638: Tidy up Nashorn codebase for code standards
attila
parents: 24750
diff changeset
    54
print(inspect(y.c=x.c, "local boolean assignment to local int"))