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
|
=== tests/cases/compiler/indexerConstraints2.ts ===
class A { a: number; }
>A : A
>a : number
class B extends A { b: number; }
>B : B
>A : A
>b : number
// Inheritance
class F {
>F : F
[s: string]: B
>s : string
}
class G extends F {
>G : G
>F : F
[n: number]: A
>n : number
}
// Other way
class H {
>H : H
[n: number]: A
>n : number
}
class I extends H {
>I : I
>H : H
[s: string]: B
>s : string
}
// With hidden indexer
class J {
>J : J
[n: number]: {}
>n : number
}
class K extends J {
>K : K
>J : J
[n: number]: A;
>n : number
[s: string]: B;
>s : string
}
type AliasedNumber = number;
>AliasedNumber : number
interface L {
[n: AliasedNumber]: A;
>n : number
}
type AliasedString = string;
>AliasedString : string
interface M {
[s: AliasedString]: A;
>s : string
}
type AliasedBoolean = boolean;
>AliasedBoolean : boolean
interface N {
[b: AliasedBoolean]: A;
>b : boolean
}
type IndexableUnion = "foo" | "bar";
>IndexableUnion : "foo" | "bar"
interface O {
[u: IndexableUnion]: A;
>u : IndexableUnion
}
type NonIndexableUnion = boolean | {};
>NonIndexableUnion : boolean | {}
interface P {
[u: NonIndexableUnion]: A;
>u : NonIndexableUnion
}
type NonIndexableUnion2 = string | number;
>NonIndexableUnion2 : string | number
interface Q {
[u: NonIndexableUnion2]: A;
>u : NonIndexableUnion2
}
type NonIndexableUnion3 = "foo" | 42;
>NonIndexableUnion3 : "foo" | 42
interface R {
[u: NonIndexableUnion3]: A;
>u : NonIndexableUnion3
}
interface S {
[u: "foo" | "bar"]: A;
>u : "foo" | "bar"
}
type Key = string;
>Key : string
interface T {
[key: Key]
>key : string
}
|