1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514
|
=== tests/cases/conformance/types/literal/stringEnumLiteralTypes3.ts ===
const enum Choice { Unknown = "", Yes = "yes", No = "no" };
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>Unknown : Symbol(Choice.Unknown, Decl(stringEnumLiteralTypes3.ts, 0, 19))
>Yes : Symbol(Choice.Yes, Decl(stringEnumLiteralTypes3.ts, 0, 33))
>No : Symbol(Choice.No, Decl(stringEnumLiteralTypes3.ts, 0, 46))
type Yes = Choice.Yes;
>Yes : Symbol(Yes, Decl(stringEnumLiteralTypes3.ts, 0, 59))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>Yes : Symbol(Choice.Yes, Decl(stringEnumLiteralTypes3.ts, 0, 33))
type YesNo = Choice.Yes | Choice.No;
>YesNo : Symbol(YesNo, Decl(stringEnumLiteralTypes3.ts, 2, 22))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>Yes : Symbol(Choice.Yes, Decl(stringEnumLiteralTypes3.ts, 0, 33))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>No : Symbol(Choice.No, Decl(stringEnumLiteralTypes3.ts, 0, 46))
type NoYes = Choice.No | Choice.Yes;
>NoYes : Symbol(NoYes, Decl(stringEnumLiteralTypes3.ts, 3, 36))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>No : Symbol(Choice.No, Decl(stringEnumLiteralTypes3.ts, 0, 46))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>Yes : Symbol(Choice.Yes, Decl(stringEnumLiteralTypes3.ts, 0, 33))
type UnknownYesNo = Choice.Unknown | Choice.Yes | Choice.No;
>UnknownYesNo : Symbol(UnknownYesNo, Decl(stringEnumLiteralTypes3.ts, 4, 36))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>Unknown : Symbol(Choice.Unknown, Decl(stringEnumLiteralTypes3.ts, 0, 19))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>Yes : Symbol(Choice.Yes, Decl(stringEnumLiteralTypes3.ts, 0, 33))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>No : Symbol(Choice.No, Decl(stringEnumLiteralTypes3.ts, 0, 46))
function f1(a: Yes, b: YesNo, c: UnknownYesNo, d: Choice) {
>f1 : Symbol(f1, Decl(stringEnumLiteralTypes3.ts, 5, 60))
>a : Symbol(a, Decl(stringEnumLiteralTypes3.ts, 7, 12))
>Yes : Symbol(Yes, Decl(stringEnumLiteralTypes3.ts, 0, 59))
>b : Symbol(b, Decl(stringEnumLiteralTypes3.ts, 7, 19))
>YesNo : Symbol(YesNo, Decl(stringEnumLiteralTypes3.ts, 2, 22))
>c : Symbol(c, Decl(stringEnumLiteralTypes3.ts, 7, 29))
>UnknownYesNo : Symbol(UnknownYesNo, Decl(stringEnumLiteralTypes3.ts, 4, 36))
>d : Symbol(d, Decl(stringEnumLiteralTypes3.ts, 7, 46))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
a = a;
>a : Symbol(a, Decl(stringEnumLiteralTypes3.ts, 7, 12))
>a : Symbol(a, Decl(stringEnumLiteralTypes3.ts, 7, 12))
a = b;
>a : Symbol(a, Decl(stringEnumLiteralTypes3.ts, 7, 12))
>b : Symbol(b, Decl(stringEnumLiteralTypes3.ts, 7, 19))
a = c;
>a : Symbol(a, Decl(stringEnumLiteralTypes3.ts, 7, 12))
>c : Symbol(c, Decl(stringEnumLiteralTypes3.ts, 7, 29))
a = d;
>a : Symbol(a, Decl(stringEnumLiteralTypes3.ts, 7, 12))
>d : Symbol(d, Decl(stringEnumLiteralTypes3.ts, 7, 46))
}
function f2(a: Yes, b: YesNo, c: UnknownYesNo, d: Choice) {
>f2 : Symbol(f2, Decl(stringEnumLiteralTypes3.ts, 12, 1))
>a : Symbol(a, Decl(stringEnumLiteralTypes3.ts, 14, 12))
>Yes : Symbol(Yes, Decl(stringEnumLiteralTypes3.ts, 0, 59))
>b : Symbol(b, Decl(stringEnumLiteralTypes3.ts, 14, 19))
>YesNo : Symbol(YesNo, Decl(stringEnumLiteralTypes3.ts, 2, 22))
>c : Symbol(c, Decl(stringEnumLiteralTypes3.ts, 14, 29))
>UnknownYesNo : Symbol(UnknownYesNo, Decl(stringEnumLiteralTypes3.ts, 4, 36))
>d : Symbol(d, Decl(stringEnumLiteralTypes3.ts, 14, 46))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
b = a;
>b : Symbol(b, Decl(stringEnumLiteralTypes3.ts, 14, 19))
>a : Symbol(a, Decl(stringEnumLiteralTypes3.ts, 14, 12))
b = b;
>b : Symbol(b, Decl(stringEnumLiteralTypes3.ts, 14, 19))
>b : Symbol(b, Decl(stringEnumLiteralTypes3.ts, 14, 19))
b = c;
>b : Symbol(b, Decl(stringEnumLiteralTypes3.ts, 14, 19))
>c : Symbol(c, Decl(stringEnumLiteralTypes3.ts, 14, 29))
b = d;
>b : Symbol(b, Decl(stringEnumLiteralTypes3.ts, 14, 19))
>d : Symbol(d, Decl(stringEnumLiteralTypes3.ts, 14, 46))
}
function f3(a: Yes, b: YesNo, c: UnknownYesNo, d: Choice) {
>f3 : Symbol(f3, Decl(stringEnumLiteralTypes3.ts, 19, 1))
>a : Symbol(a, Decl(stringEnumLiteralTypes3.ts, 21, 12))
>Yes : Symbol(Yes, Decl(stringEnumLiteralTypes3.ts, 0, 59))
>b : Symbol(b, Decl(stringEnumLiteralTypes3.ts, 21, 19))
>YesNo : Symbol(YesNo, Decl(stringEnumLiteralTypes3.ts, 2, 22))
>c : Symbol(c, Decl(stringEnumLiteralTypes3.ts, 21, 29))
>UnknownYesNo : Symbol(UnknownYesNo, Decl(stringEnumLiteralTypes3.ts, 4, 36))
>d : Symbol(d, Decl(stringEnumLiteralTypes3.ts, 21, 46))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
c = a;
>c : Symbol(c, Decl(stringEnumLiteralTypes3.ts, 21, 29))
>a : Symbol(a, Decl(stringEnumLiteralTypes3.ts, 21, 12))
c = b;
>c : Symbol(c, Decl(stringEnumLiteralTypes3.ts, 21, 29))
>b : Symbol(b, Decl(stringEnumLiteralTypes3.ts, 21, 19))
c = c;
>c : Symbol(c, Decl(stringEnumLiteralTypes3.ts, 21, 29))
>c : Symbol(c, Decl(stringEnumLiteralTypes3.ts, 21, 29))
c = d;
>c : Symbol(c, Decl(stringEnumLiteralTypes3.ts, 21, 29))
>d : Symbol(d, Decl(stringEnumLiteralTypes3.ts, 21, 46))
}
function f4(a: Yes, b: YesNo, c: UnknownYesNo, d: Choice) {
>f4 : Symbol(f4, Decl(stringEnumLiteralTypes3.ts, 26, 1))
>a : Symbol(a, Decl(stringEnumLiteralTypes3.ts, 28, 12))
>Yes : Symbol(Yes, Decl(stringEnumLiteralTypes3.ts, 0, 59))
>b : Symbol(b, Decl(stringEnumLiteralTypes3.ts, 28, 19))
>YesNo : Symbol(YesNo, Decl(stringEnumLiteralTypes3.ts, 2, 22))
>c : Symbol(c, Decl(stringEnumLiteralTypes3.ts, 28, 29))
>UnknownYesNo : Symbol(UnknownYesNo, Decl(stringEnumLiteralTypes3.ts, 4, 36))
>d : Symbol(d, Decl(stringEnumLiteralTypes3.ts, 28, 46))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
d = a;
>d : Symbol(d, Decl(stringEnumLiteralTypes3.ts, 28, 46))
>a : Symbol(a, Decl(stringEnumLiteralTypes3.ts, 28, 12))
d = b;
>d : Symbol(d, Decl(stringEnumLiteralTypes3.ts, 28, 46))
>b : Symbol(b, Decl(stringEnumLiteralTypes3.ts, 28, 19))
d = c;
>d : Symbol(d, Decl(stringEnumLiteralTypes3.ts, 28, 46))
>c : Symbol(c, Decl(stringEnumLiteralTypes3.ts, 28, 29))
d = d;
>d : Symbol(d, Decl(stringEnumLiteralTypes3.ts, 28, 46))
>d : Symbol(d, Decl(stringEnumLiteralTypes3.ts, 28, 46))
}
function f5(a: Yes, b: YesNo, c: UnknownYesNo, d: Choice) {
>f5 : Symbol(f5, Decl(stringEnumLiteralTypes3.ts, 33, 1))
>a : Symbol(a, Decl(stringEnumLiteralTypes3.ts, 35, 12))
>Yes : Symbol(Yes, Decl(stringEnumLiteralTypes3.ts, 0, 59))
>b : Symbol(b, Decl(stringEnumLiteralTypes3.ts, 35, 19))
>YesNo : Symbol(YesNo, Decl(stringEnumLiteralTypes3.ts, 2, 22))
>c : Symbol(c, Decl(stringEnumLiteralTypes3.ts, 35, 29))
>UnknownYesNo : Symbol(UnknownYesNo, Decl(stringEnumLiteralTypes3.ts, 4, 36))
>d : Symbol(d, Decl(stringEnumLiteralTypes3.ts, 35, 46))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
a = Choice.Unknown;
>a : Symbol(a, Decl(stringEnumLiteralTypes3.ts, 35, 12))
>Choice.Unknown : Symbol(Choice.Unknown, Decl(stringEnumLiteralTypes3.ts, 0, 19))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>Unknown : Symbol(Choice.Unknown, Decl(stringEnumLiteralTypes3.ts, 0, 19))
a = Choice.Yes;
>a : Symbol(a, Decl(stringEnumLiteralTypes3.ts, 35, 12))
>Choice.Yes : Symbol(Choice.Yes, Decl(stringEnumLiteralTypes3.ts, 0, 33))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>Yes : Symbol(Choice.Yes, Decl(stringEnumLiteralTypes3.ts, 0, 33))
a = Choice.No;
>a : Symbol(a, Decl(stringEnumLiteralTypes3.ts, 35, 12))
>Choice.No : Symbol(Choice.No, Decl(stringEnumLiteralTypes3.ts, 0, 46))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>No : Symbol(Choice.No, Decl(stringEnumLiteralTypes3.ts, 0, 46))
b = Choice.Unknown;
>b : Symbol(b, Decl(stringEnumLiteralTypes3.ts, 35, 19))
>Choice.Unknown : Symbol(Choice.Unknown, Decl(stringEnumLiteralTypes3.ts, 0, 19))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>Unknown : Symbol(Choice.Unknown, Decl(stringEnumLiteralTypes3.ts, 0, 19))
b = Choice.Yes;
>b : Symbol(b, Decl(stringEnumLiteralTypes3.ts, 35, 19))
>Choice.Yes : Symbol(Choice.Yes, Decl(stringEnumLiteralTypes3.ts, 0, 33))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>Yes : Symbol(Choice.Yes, Decl(stringEnumLiteralTypes3.ts, 0, 33))
b = Choice.No;
>b : Symbol(b, Decl(stringEnumLiteralTypes3.ts, 35, 19))
>Choice.No : Symbol(Choice.No, Decl(stringEnumLiteralTypes3.ts, 0, 46))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>No : Symbol(Choice.No, Decl(stringEnumLiteralTypes3.ts, 0, 46))
c = Choice.Unknown;
>c : Symbol(c, Decl(stringEnumLiteralTypes3.ts, 35, 29))
>Choice.Unknown : Symbol(Choice.Unknown, Decl(stringEnumLiteralTypes3.ts, 0, 19))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>Unknown : Symbol(Choice.Unknown, Decl(stringEnumLiteralTypes3.ts, 0, 19))
c = Choice.Yes;
>c : Symbol(c, Decl(stringEnumLiteralTypes3.ts, 35, 29))
>Choice.Yes : Symbol(Choice.Yes, Decl(stringEnumLiteralTypes3.ts, 0, 33))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>Yes : Symbol(Choice.Yes, Decl(stringEnumLiteralTypes3.ts, 0, 33))
c = Choice.No;
>c : Symbol(c, Decl(stringEnumLiteralTypes3.ts, 35, 29))
>Choice.No : Symbol(Choice.No, Decl(stringEnumLiteralTypes3.ts, 0, 46))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>No : Symbol(Choice.No, Decl(stringEnumLiteralTypes3.ts, 0, 46))
d = Choice.Unknown;
>d : Symbol(d, Decl(stringEnumLiteralTypes3.ts, 35, 46))
>Choice.Unknown : Symbol(Choice.Unknown, Decl(stringEnumLiteralTypes3.ts, 0, 19))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>Unknown : Symbol(Choice.Unknown, Decl(stringEnumLiteralTypes3.ts, 0, 19))
d = Choice.Yes;
>d : Symbol(d, Decl(stringEnumLiteralTypes3.ts, 35, 46))
>Choice.Yes : Symbol(Choice.Yes, Decl(stringEnumLiteralTypes3.ts, 0, 33))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>Yes : Symbol(Choice.Yes, Decl(stringEnumLiteralTypes3.ts, 0, 33))
d = Choice.No;
>d : Symbol(d, Decl(stringEnumLiteralTypes3.ts, 35, 46))
>Choice.No : Symbol(Choice.No, Decl(stringEnumLiteralTypes3.ts, 0, 46))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>No : Symbol(Choice.No, Decl(stringEnumLiteralTypes3.ts, 0, 46))
}
function f6(a: Yes, b: YesNo, c: UnknownYesNo, d: Choice) {
>f6 : Symbol(f6, Decl(stringEnumLiteralTypes3.ts, 48, 1))
>a : Symbol(a, Decl(stringEnumLiteralTypes3.ts, 50, 12))
>Yes : Symbol(Yes, Decl(stringEnumLiteralTypes3.ts, 0, 59))
>b : Symbol(b, Decl(stringEnumLiteralTypes3.ts, 50, 19))
>YesNo : Symbol(YesNo, Decl(stringEnumLiteralTypes3.ts, 2, 22))
>c : Symbol(c, Decl(stringEnumLiteralTypes3.ts, 50, 29))
>UnknownYesNo : Symbol(UnknownYesNo, Decl(stringEnumLiteralTypes3.ts, 4, 36))
>d : Symbol(d, Decl(stringEnumLiteralTypes3.ts, 50, 46))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
a === Choice.Unknown;
>a : Symbol(a, Decl(stringEnumLiteralTypes3.ts, 50, 12))
>Choice.Unknown : Symbol(Choice.Unknown, Decl(stringEnumLiteralTypes3.ts, 0, 19))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>Unknown : Symbol(Choice.Unknown, Decl(stringEnumLiteralTypes3.ts, 0, 19))
a === Choice.Yes;
>a : Symbol(a, Decl(stringEnumLiteralTypes3.ts, 50, 12))
>Choice.Yes : Symbol(Choice.Yes, Decl(stringEnumLiteralTypes3.ts, 0, 33))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>Yes : Symbol(Choice.Yes, Decl(stringEnumLiteralTypes3.ts, 0, 33))
a === Choice.No;
>a : Symbol(a, Decl(stringEnumLiteralTypes3.ts, 50, 12))
>Choice.No : Symbol(Choice.No, Decl(stringEnumLiteralTypes3.ts, 0, 46))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>No : Symbol(Choice.No, Decl(stringEnumLiteralTypes3.ts, 0, 46))
b === Choice.Unknown;
>b : Symbol(b, Decl(stringEnumLiteralTypes3.ts, 50, 19))
>Choice.Unknown : Symbol(Choice.Unknown, Decl(stringEnumLiteralTypes3.ts, 0, 19))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>Unknown : Symbol(Choice.Unknown, Decl(stringEnumLiteralTypes3.ts, 0, 19))
b === Choice.Yes;
>b : Symbol(b, Decl(stringEnumLiteralTypes3.ts, 50, 19))
>Choice.Yes : Symbol(Choice.Yes, Decl(stringEnumLiteralTypes3.ts, 0, 33))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>Yes : Symbol(Choice.Yes, Decl(stringEnumLiteralTypes3.ts, 0, 33))
b === Choice.No;
>b : Symbol(b, Decl(stringEnumLiteralTypes3.ts, 50, 19))
>Choice.No : Symbol(Choice.No, Decl(stringEnumLiteralTypes3.ts, 0, 46))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>No : Symbol(Choice.No, Decl(stringEnumLiteralTypes3.ts, 0, 46))
c === Choice.Unknown;
>c : Symbol(c, Decl(stringEnumLiteralTypes3.ts, 50, 29))
>Choice.Unknown : Symbol(Choice.Unknown, Decl(stringEnumLiteralTypes3.ts, 0, 19))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>Unknown : Symbol(Choice.Unknown, Decl(stringEnumLiteralTypes3.ts, 0, 19))
c === Choice.Yes;
>c : Symbol(c, Decl(stringEnumLiteralTypes3.ts, 50, 29))
>Choice.Yes : Symbol(Choice.Yes, Decl(stringEnumLiteralTypes3.ts, 0, 33))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>Yes : Symbol(Choice.Yes, Decl(stringEnumLiteralTypes3.ts, 0, 33))
c === Choice.No;
>c : Symbol(c, Decl(stringEnumLiteralTypes3.ts, 50, 29))
>Choice.No : Symbol(Choice.No, Decl(stringEnumLiteralTypes3.ts, 0, 46))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>No : Symbol(Choice.No, Decl(stringEnumLiteralTypes3.ts, 0, 46))
d === Choice.Unknown;
>d : Symbol(d, Decl(stringEnumLiteralTypes3.ts, 50, 46))
>Choice.Unknown : Symbol(Choice.Unknown, Decl(stringEnumLiteralTypes3.ts, 0, 19))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>Unknown : Symbol(Choice.Unknown, Decl(stringEnumLiteralTypes3.ts, 0, 19))
d === Choice.Yes;
>d : Symbol(d, Decl(stringEnumLiteralTypes3.ts, 50, 46))
>Choice.Yes : Symbol(Choice.Yes, Decl(stringEnumLiteralTypes3.ts, 0, 33))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>Yes : Symbol(Choice.Yes, Decl(stringEnumLiteralTypes3.ts, 0, 33))
d === Choice.No;
>d : Symbol(d, Decl(stringEnumLiteralTypes3.ts, 50, 46))
>Choice.No : Symbol(Choice.No, Decl(stringEnumLiteralTypes3.ts, 0, 46))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>No : Symbol(Choice.No, Decl(stringEnumLiteralTypes3.ts, 0, 46))
}
function f7(a: Yes, b: YesNo, c: UnknownYesNo, d: Choice) {
>f7 : Symbol(f7, Decl(stringEnumLiteralTypes3.ts, 63, 1))
>a : Symbol(a, Decl(stringEnumLiteralTypes3.ts, 65, 12))
>Yes : Symbol(Yes, Decl(stringEnumLiteralTypes3.ts, 0, 59))
>b : Symbol(b, Decl(stringEnumLiteralTypes3.ts, 65, 19))
>YesNo : Symbol(YesNo, Decl(stringEnumLiteralTypes3.ts, 2, 22))
>c : Symbol(c, Decl(stringEnumLiteralTypes3.ts, 65, 29))
>UnknownYesNo : Symbol(UnknownYesNo, Decl(stringEnumLiteralTypes3.ts, 4, 36))
>d : Symbol(d, Decl(stringEnumLiteralTypes3.ts, 65, 46))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
a === a;
>a : Symbol(a, Decl(stringEnumLiteralTypes3.ts, 65, 12))
>a : Symbol(a, Decl(stringEnumLiteralTypes3.ts, 65, 12))
a === b;
>a : Symbol(a, Decl(stringEnumLiteralTypes3.ts, 65, 12))
>b : Symbol(b, Decl(stringEnumLiteralTypes3.ts, 65, 19))
a === c;
>a : Symbol(a, Decl(stringEnumLiteralTypes3.ts, 65, 12))
>c : Symbol(c, Decl(stringEnumLiteralTypes3.ts, 65, 29))
a === d;
>a : Symbol(a, Decl(stringEnumLiteralTypes3.ts, 65, 12))
>d : Symbol(d, Decl(stringEnumLiteralTypes3.ts, 65, 46))
b === a;
>b : Symbol(b, Decl(stringEnumLiteralTypes3.ts, 65, 19))
>a : Symbol(a, Decl(stringEnumLiteralTypes3.ts, 65, 12))
b === b;
>b : Symbol(b, Decl(stringEnumLiteralTypes3.ts, 65, 19))
>b : Symbol(b, Decl(stringEnumLiteralTypes3.ts, 65, 19))
b === c;
>b : Symbol(b, Decl(stringEnumLiteralTypes3.ts, 65, 19))
>c : Symbol(c, Decl(stringEnumLiteralTypes3.ts, 65, 29))
b === d;
>b : Symbol(b, Decl(stringEnumLiteralTypes3.ts, 65, 19))
>d : Symbol(d, Decl(stringEnumLiteralTypes3.ts, 65, 46))
c === a;
>c : Symbol(c, Decl(stringEnumLiteralTypes3.ts, 65, 29))
>a : Symbol(a, Decl(stringEnumLiteralTypes3.ts, 65, 12))
c === b;
>c : Symbol(c, Decl(stringEnumLiteralTypes3.ts, 65, 29))
>b : Symbol(b, Decl(stringEnumLiteralTypes3.ts, 65, 19))
c === c;
>c : Symbol(c, Decl(stringEnumLiteralTypes3.ts, 65, 29))
>c : Symbol(c, Decl(stringEnumLiteralTypes3.ts, 65, 29))
c === d;
>c : Symbol(c, Decl(stringEnumLiteralTypes3.ts, 65, 29))
>d : Symbol(d, Decl(stringEnumLiteralTypes3.ts, 65, 46))
d === a;
>d : Symbol(d, Decl(stringEnumLiteralTypes3.ts, 65, 46))
>a : Symbol(a, Decl(stringEnumLiteralTypes3.ts, 65, 12))
d === b;
>d : Symbol(d, Decl(stringEnumLiteralTypes3.ts, 65, 46))
>b : Symbol(b, Decl(stringEnumLiteralTypes3.ts, 65, 19))
d === c;
>d : Symbol(d, Decl(stringEnumLiteralTypes3.ts, 65, 46))
>c : Symbol(c, Decl(stringEnumLiteralTypes3.ts, 65, 29))
d === d;
>d : Symbol(d, Decl(stringEnumLiteralTypes3.ts, 65, 46))
>d : Symbol(d, Decl(stringEnumLiteralTypes3.ts, 65, 46))
}
function f10(x: Yes): Yes {
>f10 : Symbol(f10, Decl(stringEnumLiteralTypes3.ts, 82, 1))
>x : Symbol(x, Decl(stringEnumLiteralTypes3.ts, 84, 13))
>Yes : Symbol(Yes, Decl(stringEnumLiteralTypes3.ts, 0, 59))
>Yes : Symbol(Yes, Decl(stringEnumLiteralTypes3.ts, 0, 59))
switch (x) {
>x : Symbol(x, Decl(stringEnumLiteralTypes3.ts, 84, 13))
case Choice.Unknown: return x;
>Choice.Unknown : Symbol(Choice.Unknown, Decl(stringEnumLiteralTypes3.ts, 0, 19))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>Unknown : Symbol(Choice.Unknown, Decl(stringEnumLiteralTypes3.ts, 0, 19))
>x : Symbol(x, Decl(stringEnumLiteralTypes3.ts, 84, 13))
case Choice.Yes: return x;
>Choice.Yes : Symbol(Choice.Yes, Decl(stringEnumLiteralTypes3.ts, 0, 33))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>Yes : Symbol(Choice.Yes, Decl(stringEnumLiteralTypes3.ts, 0, 33))
>x : Symbol(x, Decl(stringEnumLiteralTypes3.ts, 84, 13))
case Choice.No: return x;
>Choice.No : Symbol(Choice.No, Decl(stringEnumLiteralTypes3.ts, 0, 46))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>No : Symbol(Choice.No, Decl(stringEnumLiteralTypes3.ts, 0, 46))
>x : Symbol(x, Decl(stringEnumLiteralTypes3.ts, 84, 13))
}
return x;
>x : Symbol(x, Decl(stringEnumLiteralTypes3.ts, 84, 13))
}
function f11(x: YesNo): YesNo {
>f11 : Symbol(f11, Decl(stringEnumLiteralTypes3.ts, 91, 1))
>x : Symbol(x, Decl(stringEnumLiteralTypes3.ts, 93, 13))
>YesNo : Symbol(YesNo, Decl(stringEnumLiteralTypes3.ts, 2, 22))
>YesNo : Symbol(YesNo, Decl(stringEnumLiteralTypes3.ts, 2, 22))
switch (x) {
>x : Symbol(x, Decl(stringEnumLiteralTypes3.ts, 93, 13))
case Choice.Unknown: return x;
>Choice.Unknown : Symbol(Choice.Unknown, Decl(stringEnumLiteralTypes3.ts, 0, 19))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>Unknown : Symbol(Choice.Unknown, Decl(stringEnumLiteralTypes3.ts, 0, 19))
>x : Symbol(x, Decl(stringEnumLiteralTypes3.ts, 93, 13))
case Choice.Yes: return x;
>Choice.Yes : Symbol(Choice.Yes, Decl(stringEnumLiteralTypes3.ts, 0, 33))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>Yes : Symbol(Choice.Yes, Decl(stringEnumLiteralTypes3.ts, 0, 33))
>x : Symbol(x, Decl(stringEnumLiteralTypes3.ts, 93, 13))
case Choice.No: return x;
>Choice.No : Symbol(Choice.No, Decl(stringEnumLiteralTypes3.ts, 0, 46))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>No : Symbol(Choice.No, Decl(stringEnumLiteralTypes3.ts, 0, 46))
>x : Symbol(x, Decl(stringEnumLiteralTypes3.ts, 93, 13))
}
return x;
>x : Symbol(x, Decl(stringEnumLiteralTypes3.ts, 93, 13))
}
function f12(x: UnknownYesNo): UnknownYesNo {
>f12 : Symbol(f12, Decl(stringEnumLiteralTypes3.ts, 100, 1))
>x : Symbol(x, Decl(stringEnumLiteralTypes3.ts, 102, 13))
>UnknownYesNo : Symbol(UnknownYesNo, Decl(stringEnumLiteralTypes3.ts, 4, 36))
>UnknownYesNo : Symbol(UnknownYesNo, Decl(stringEnumLiteralTypes3.ts, 4, 36))
switch (x) {
>x : Symbol(x, Decl(stringEnumLiteralTypes3.ts, 102, 13))
case Choice.Unknown: return x;
>Choice.Unknown : Symbol(Choice.Unknown, Decl(stringEnumLiteralTypes3.ts, 0, 19))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>Unknown : Symbol(Choice.Unknown, Decl(stringEnumLiteralTypes3.ts, 0, 19))
>x : Symbol(x, Decl(stringEnumLiteralTypes3.ts, 102, 13))
case Choice.Yes: return x;
>Choice.Yes : Symbol(Choice.Yes, Decl(stringEnumLiteralTypes3.ts, 0, 33))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>Yes : Symbol(Choice.Yes, Decl(stringEnumLiteralTypes3.ts, 0, 33))
>x : Symbol(x, Decl(stringEnumLiteralTypes3.ts, 102, 13))
case Choice.No: return x;
>Choice.No : Symbol(Choice.No, Decl(stringEnumLiteralTypes3.ts, 0, 46))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>No : Symbol(Choice.No, Decl(stringEnumLiteralTypes3.ts, 0, 46))
>x : Symbol(x, Decl(stringEnumLiteralTypes3.ts, 102, 13))
}
return x;
>x : Symbol(x, Decl(stringEnumLiteralTypes3.ts, 102, 13))
}
function f13(x: Choice): Choice {
>f13 : Symbol(f13, Decl(stringEnumLiteralTypes3.ts, 109, 1))
>x : Symbol(x, Decl(stringEnumLiteralTypes3.ts, 111, 13))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
switch (x) {
>x : Symbol(x, Decl(stringEnumLiteralTypes3.ts, 111, 13))
case Choice.Unknown: return x;
>Choice.Unknown : Symbol(Choice.Unknown, Decl(stringEnumLiteralTypes3.ts, 0, 19))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>Unknown : Symbol(Choice.Unknown, Decl(stringEnumLiteralTypes3.ts, 0, 19))
>x : Symbol(x, Decl(stringEnumLiteralTypes3.ts, 111, 13))
case Choice.Yes: return x;
>Choice.Yes : Symbol(Choice.Yes, Decl(stringEnumLiteralTypes3.ts, 0, 33))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>Yes : Symbol(Choice.Yes, Decl(stringEnumLiteralTypes3.ts, 0, 33))
>x : Symbol(x, Decl(stringEnumLiteralTypes3.ts, 111, 13))
case Choice.No: return x;
>Choice.No : Symbol(Choice.No, Decl(stringEnumLiteralTypes3.ts, 0, 46))
>Choice : Symbol(Choice, Decl(stringEnumLiteralTypes3.ts, 0, 0))
>No : Symbol(Choice.No, Decl(stringEnumLiteralTypes3.ts, 0, 46))
>x : Symbol(x, Decl(stringEnumLiteralTypes3.ts, 111, 13))
}
return x;
>x : Symbol(x, Decl(stringEnumLiteralTypes3.ts, 111, 13))
}
|