@@ -20,7 +20,7 @@ function f1(x: Color | string) {
20
20
if (typeof x === "number") {
21
21
>typeof x === "number" : boolean
22
22
> : ^^^^^^^
23
- >typeof x : "string " | "number " | "bigint " | "boolean " | "symbol " | "undefined " | "object " | "function "
23
+ >typeof x : "bigint " | "boolean " | "function " | "number " | "object " | "string " | "symbol " | "undefined "
24
24
> : ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
25
25
>x : string | Color
26
26
> : ^^^^^^^^^^^^^^
@@ -53,15 +53,15 @@ function f1(x: Color | string) {
53
53
function f2(x: Color | string | string[]) {
54
54
>f2 : (x: Color | string | string[]) => void
55
55
> : ^ ^^ ^^^^^^^^^
56
- >x : string | Color | string[]
56
+ >x : string | string[] | Color
57
57
> : ^^^^^^^^^^^^^^^^^^^^^^^^^
58
58
59
59
if (typeof x === "object") {
60
60
>typeof x === "object" : boolean
61
61
> : ^^^^^^^
62
- >typeof x : "string " | "number " | "bigint " | "boolean " | "symbol " | "undefined " | "object " | "function "
62
+ >typeof x : "bigint " | "boolean " | "function " | "number " | "object " | "string " | "symbol " | "undefined "
63
63
> : ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
64
- >x : string | Color | string[]
64
+ >x : string | string[] | Color
65
65
> : ^^^^^^^^^^^^^^^^^^^^^^^^^
66
66
>"object" : "object"
67
67
> : ^^^^^^^^
@@ -79,9 +79,9 @@ function f2(x: Color | string | string[]) {
79
79
if (typeof x === "number") {
80
80
>typeof x === "number" : boolean
81
81
> : ^^^^^^^
82
- >typeof x : "string " | "number " | "bigint " | "boolean " | "symbol " | "undefined " | "object " | "function "
82
+ >typeof x : "bigint " | "boolean " | "function " | "number " | "object " | "string " | "symbol " | "undefined "
83
83
> : ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
84
- >x : string | Color | string[]
84
+ >x : string | string[] | Color
85
85
> : ^^^^^^^^^^^^^^^^^^^^^^^^^
86
86
>"number" : "number"
87
87
> : ^^^^^^^^
@@ -110,9 +110,9 @@ function f2(x: Color | string | string[]) {
110
110
if (typeof x === "string") {
111
111
>typeof x === "string" : boolean
112
112
> : ^^^^^^^
113
- >typeof x : "string " | "number " | "bigint " | "boolean " | "symbol " | "undefined " | "object " | "function "
113
+ >typeof x : "bigint " | "boolean " | "function " | "number " | "object " | "string " | "symbol " | "undefined "
114
114
> : ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
115
- >x : string | Color | string[]
115
+ >x : string | string[] | Color
116
116
> : ^^^^^^^^^^^^^^^^^^^^^^^^^
117
117
>"string" : "string"
118
118
> : ^^^^^^^^
@@ -129,13 +129,13 @@ function f2(x: Color | string | string[]) {
129
129
}
130
130
else {
131
131
var b = x;
132
- >b : Color | string[]
132
+ >b : string[] | Color
133
133
> : ^^^^^^^^^^^^^^^^
134
- >x : Color | string[]
134
+ >x : string[] | Color
135
135
> : ^^^^^^^^^^^^^^^^
136
136
137
137
var b: Color | string[];
138
- >b : Color | string[]
138
+ >b : string[] | Color
139
139
> : ^^^^^^^^^^^^^^^^
140
140
}
141
141
}
0 commit comments