nashorn/test/script/basic/boolean_arithmetic.js.EXPECTED
author hannesw
Fri, 03 Feb 2017 13:28:00 +0100
changeset 43555 1bb10bccf057
parent 24751 ccbd9cd3f720
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:
24751
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
     1
+
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
     2
f, f: 0
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
     3
f, t: 1
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
     4
t, f: 1
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
     5
t, t: 2
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
     6
-
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
     7
f, f: 0
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
     8
f, t: -1
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
     9
t, f: 1
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    10
t, t: 0
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    11
*
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    12
f, f: 0
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    13
f, t: 0
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    14
t, f: 0
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    15
t, t: 1
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    16
/
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    17
f, f: NaN
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    18
f, t: 0
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    19
t, f: Infinity
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    20
t, t: 1
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    21
<<
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    22
f, f: 0
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    23
f, t: 0
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    24
t, f: 1
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    25
t, t: 2
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    26
>>
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    27
f, f: 0
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    28
f, t: 0
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    29
t, f: 1
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    30
t, t: 0
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    31
>>>
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    32
f, f: 0
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    33
f, t: 0
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    34
t, f: 1
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    35
t, t: 0
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    36
|
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    37
f, f: 0
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    38
f, t: 1
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    39
t, f: 1
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    40
t, t: 1
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    41
&
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    42
f, f: 0
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    43
f, t: 0
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    44
t, f: 0
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    45
t, t: 1
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    46
^
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    47
f, f: 0
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    48
f, t: 1
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    49
t, f: 1
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    50
t, t: 0
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    51
~
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    52
f: -1
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    53
t: -2
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    54
+
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    55
f: 0
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    56
t: 1
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    57
-
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    58
f: 0
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    59
t: -1
ccbd9cd3f720 8042118: Separate types from symbols
attila
parents:
diff changeset
    60
1/-f: -Infinity