nashorn/test/script/basic/JDK-8062799.js.EXPECTED
author hannesw
Fri, 03 Feb 2017 13:28:00 +0100
changeset 43555 1bb10bccf057
parent 34732 6605efbe8447
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:
27524
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
     1
b || b: boolean
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
     2
b || i: boolean
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
     3
b || d: boolean
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
     4
b || o: boolean
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
     5
i || b: int
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
     6
i || i: int
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
     7
i || d: double
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
     8
i || o: int
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
     9
d || b: double
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    10
d || i: double
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    11
d || d: double
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    12
d || o: double
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    13
o || b: object
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    14
o || i: object
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    15
o || d: object
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    16
o || o: object
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    17
b && b: boolean
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    18
b && i: int
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    19
b && d: double
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    20
b && o: object
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    21
i && b: boolean
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    22
i && i: int
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    23
i && d: double
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    24
i && o: object
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    25
d && b: boolean
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    26
d && i: double
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    27
d && d: double
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    28
d && o: object
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    29
o && b: boolean
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    30
o && i: int
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    31
o && d: double
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    32
o && o: object