nashorn/test/script/basic/JDK-8062799.js.EXPECTED
author hannesw
Mon, 14 Dec 2015 14:27:46 +0100
changeset 34732 6605efbe8447
parent 27524 f34b84c9f880
permissions -rw-r--r--
8144020: Remove long as an internal numeric type Reviewed-by: attila, sundar, lagergren
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