|
| 1 | +=== tests/cases/conformance/types/typeAliases/circularTypeAliasForUnionWithInterface.ts === |
| 2 | +var v0: T0; |
| 3 | +>v0 : Symbol(v0, Decl(circularTypeAliasForUnionWithInterface.ts, 0, 3)) |
| 4 | +>T0 : Symbol(T0, Decl(circularTypeAliasForUnionWithInterface.ts, 0, 11)) |
| 5 | + |
| 6 | +type T0 = string | I0; |
| 7 | +>T0 : Symbol(T0, Decl(circularTypeAliasForUnionWithInterface.ts, 0, 11)) |
| 8 | +>I0 : Symbol(I0, Decl(circularTypeAliasForUnionWithInterface.ts, 1, 22)) |
| 9 | + |
| 10 | +interface I0 { |
| 11 | +>I0 : Symbol(I0, Decl(circularTypeAliasForUnionWithInterface.ts, 1, 22)) |
| 12 | + |
| 13 | + x: T0; |
| 14 | +>x : Symbol(x, Decl(circularTypeAliasForUnionWithInterface.ts, 2, 14)) |
| 15 | +>T0 : Symbol(T0, Decl(circularTypeAliasForUnionWithInterface.ts, 0, 11)) |
| 16 | +} |
| 17 | + |
| 18 | +var v1: T1; |
| 19 | +>v1 : Symbol(v1, Decl(circularTypeAliasForUnionWithInterface.ts, 6, 3)) |
| 20 | +>T1 : Symbol(T1, Decl(circularTypeAliasForUnionWithInterface.ts, 6, 11)) |
| 21 | + |
| 22 | +type T1 = string | I1; |
| 23 | +>T1 : Symbol(T1, Decl(circularTypeAliasForUnionWithInterface.ts, 6, 11)) |
| 24 | +>I1 : Symbol(I1, Decl(circularTypeAliasForUnionWithInterface.ts, 7, 22)) |
| 25 | + |
| 26 | +interface I1 { |
| 27 | +>I1 : Symbol(I1, Decl(circularTypeAliasForUnionWithInterface.ts, 7, 22)) |
| 28 | + |
| 29 | + (): T1; |
| 30 | +>T1 : Symbol(T1, Decl(circularTypeAliasForUnionWithInterface.ts, 6, 11)) |
| 31 | +} |
| 32 | + |
| 33 | +var v2: T2; |
| 34 | +>v2 : Symbol(v2, Decl(circularTypeAliasForUnionWithInterface.ts, 12, 3)) |
| 35 | +>T2 : Symbol(T2, Decl(circularTypeAliasForUnionWithInterface.ts, 12, 11)) |
| 36 | + |
| 37 | +type T2 = string | I2; |
| 38 | +>T2 : Symbol(T2, Decl(circularTypeAliasForUnionWithInterface.ts, 12, 11)) |
| 39 | +>I2 : Symbol(I2, Decl(circularTypeAliasForUnionWithInterface.ts, 13, 22)) |
| 40 | + |
| 41 | +interface I2 { |
| 42 | +>I2 : Symbol(I2, Decl(circularTypeAliasForUnionWithInterface.ts, 13, 22)) |
| 43 | + |
| 44 | + new (): T2; |
| 45 | +>T2 : Symbol(T2, Decl(circularTypeAliasForUnionWithInterface.ts, 12, 11)) |
| 46 | +} |
| 47 | + |
| 48 | +var v3: T3; |
| 49 | +>v3 : Symbol(v3, Decl(circularTypeAliasForUnionWithInterface.ts, 18, 3)) |
| 50 | +>T3 : Symbol(T3, Decl(circularTypeAliasForUnionWithInterface.ts, 18, 11)) |
| 51 | + |
| 52 | +type T3 = string | I3; |
| 53 | +>T3 : Symbol(T3, Decl(circularTypeAliasForUnionWithInterface.ts, 18, 11)) |
| 54 | +>I3 : Symbol(I3, Decl(circularTypeAliasForUnionWithInterface.ts, 19, 22)) |
| 55 | + |
| 56 | +interface I3 { |
| 57 | +>I3 : Symbol(I3, Decl(circularTypeAliasForUnionWithInterface.ts, 19, 22)) |
| 58 | + |
| 59 | + [x: number]: T3; |
| 60 | +>x : Symbol(x, Decl(circularTypeAliasForUnionWithInterface.ts, 21, 5)) |
| 61 | +>T3 : Symbol(T3, Decl(circularTypeAliasForUnionWithInterface.ts, 18, 11)) |
| 62 | +} |
| 63 | + |
| 64 | +var v4: T4; |
| 65 | +>v4 : Symbol(v4, Decl(circularTypeAliasForUnionWithInterface.ts, 24, 3)) |
| 66 | +>T4 : Symbol(T4, Decl(circularTypeAliasForUnionWithInterface.ts, 24, 11)) |
| 67 | + |
| 68 | +type T4 = string | I4; |
| 69 | +>T4 : Symbol(T4, Decl(circularTypeAliasForUnionWithInterface.ts, 24, 11)) |
| 70 | +>I4 : Symbol(I4, Decl(circularTypeAliasForUnionWithInterface.ts, 25, 22)) |
| 71 | + |
| 72 | +interface I4 { |
| 73 | +>I4 : Symbol(I4, Decl(circularTypeAliasForUnionWithInterface.ts, 25, 22)) |
| 74 | + |
| 75 | + [x: string]: T4; |
| 76 | +>x : Symbol(x, Decl(circularTypeAliasForUnionWithInterface.ts, 27, 5)) |
| 77 | +>T4 : Symbol(T4, Decl(circularTypeAliasForUnionWithInterface.ts, 24, 11)) |
| 78 | +} |
| 79 | + |
0 commit comments