nashorn/test/script/basic/JDK-8062799.js.EXPECTED
author martin
Wed, 10 Dec 2014 09:23:00 -0800
changeset 28057 1a47ceecdba5
parent 27524 f34b84c9f880
child 34732 6605efbe8447
permissions -rw-r--r--
8065804: JEP 171: Clarifications/corrections for fence intrinsics Reviewed-by: dholmes, shade, dl, psandoz
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 || l: boolean
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
     4
b || d: boolean
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
     5
b || o: boolean
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
     6
i || b: int
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
     7
i || i: int
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
     8
i || l: long
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
     9
i || d: double
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    10
i || o: int
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    11
l || b: long
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    12
l || i: long
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    13
l || l: long
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    14
l || d: double
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    15
l || o: long
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    16
d || b: double
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    17
d || i: double
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    18
d || l: double
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    19
d || d: double
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    20
d || o: double
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    21
o || b: object
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    22
o || i: object
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    23
o || l: object
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    24
o || d: object
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    25
o || o: object
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    26
b && b: boolean
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    27
b && i: int
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    28
b && l: long
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    29
b && d: double
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    30
b && o: object
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    31
i && b: boolean
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    32
i && i: int
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    33
i && l: long
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    34
i && d: double
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    35
i && o: object
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    36
l && b: boolean
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    37
l && i: long
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    38
l && l: long
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    39
l && d: double
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    40
l && o: object
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    41
d && b: boolean
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    42
d && i: double
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    43
d && l: double
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    44
d && d: double
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    45
d && o: object
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    46
o && b: boolean
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    47
o && i: int
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    48
o && l: long
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    49
o && d: double
f34b84c9f880 8062799: Binary logical expressions can have numeric types
attila
parents:
diff changeset
    50
o && o: object