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
|
//// [tests/cases/compiler/overloadsWithComputedNames.ts] ////
=== overloadsWithComputedNames.ts ===
// https://github.com/microsoft/TypeScript/issues/52329
class Person {
>Person : Person
["B"](a: number): string;
>["B"] : (a: number) => string
>"B" : "B"
>a : number
["A"](a: string|number): number | string {
>["A"] : (a: string | number) => number | string
>"A" : "A"
>a : string | number
return 0;
>0 : 0
}
}
let p = new Person();
>p : Person
>new Person() : Person
>Person : typeof Person
p.A(0)
>p.A(0) : string | number
>p.A : (a: string | number) => string | number
>p : Person
>A : (a: string | number) => string | number
>0 : 0
p.B(0)
>p.B(0) : string
>p.B : (a: number) => string
>p : Person
>B : (a: number) => string
>0 : 0
// https://github.com/microsoft/TypeScript/issues/17345
class C {
>C : C
["foo"](): void
>["foo"] : { (): void; (): number; }
>"foo" : "foo"
["bar"](): void;
>["bar"] : () => void
>"bar" : "bar"
["foo"]() {
>["foo"] : { (): void; (): number; }
>"foo" : "foo"
return 0;
>0 : 0
}
}
declare const uniqueSym: unique symbol;
>uniqueSym : unique symbol
declare const uniqueSym2: unique symbol;
>uniqueSym2 : unique symbol
declare const sym: symbol;
>sym : symbol
declare const strUnion: 'foo' | 'bar';
>strUnion : "foo" | "bar"
class C1 {
>C1 : C1
[sym](): void; // should error
>[sym] : () => void
>sym : symbol
[uniqueSym2](): void; // should error
>[uniqueSym2] : () => void
>uniqueSym2 : unique symbol
[uniqueSym](): void;
>[uniqueSym] : () => void
>uniqueSym : unique symbol
[uniqueSym]() { }
>[uniqueSym] : () => void
>uniqueSym : unique symbol
}
interface I1 {
[sym](): void; // should error
>[sym] : () => void
>sym : symbol
[uniqueSym2](): void;
>[uniqueSym2] : () => void
>uniqueSym2 : unique symbol
[uniqueSym](): void;
>[uniqueSym] : { (): void; (): void; }
>uniqueSym : unique symbol
[uniqueSym](): void;
>[uniqueSym] : { (): void; (): void; }
>uniqueSym : unique symbol
}
class C2 {
>C2 : C2
[strUnion](): void; // should error
>[strUnion] : () => void
>strUnion : "foo" | "bar"
[strUnion]() { }
>[strUnion] : () => void
>strUnion : "foo" | "bar"
}
class I2 {
>I2 : I2
[strUnion](): void; // should error
>[strUnion] : () => void
>strUnion : "foo" | "bar"
[strUnion]() { }
>[strUnion] : () => void
>strUnion : "foo" | "bar"
}
class C3 {
>C3 : C3
[1](): void; // should error
>[1] : () => void
>1 : 1
[2](): void;
>[2] : () => void
>2 : 2
[2]() { }
>[2] : () => void
>2 : 2
}
interface I3 {
[1](): void;
>[1] : () => void
>1 : 1
[2](): void;
>[2] : { (): void; (): void; }
>2 : 2
[2](): void;
>[2] : { (): void; (): void; }
>2 : 2
}
|