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
|
=== tests/cases/conformance/classes/propertyMemberDeclarations/staticPropertyNameConflicts.ts ===
// name
class StaticName {
>StaticName : StaticName
static name: number; // error
>name : number
name: string; // ok
>name : string
}
class StaticNameFn {
>StaticNameFn : StaticNameFn
static name() {} // error
>name : () => void
name() {} // ok
>name : () => void
}
// length
class StaticLength {
>StaticLength : StaticLength
static length: number; // error
>length : number
length: string; // ok
>length : string
}
class StaticLengthFn {
>StaticLengthFn : StaticLengthFn
static length() {} // error
>length : () => void
length() {} // ok
>length : () => void
}
// prototype
class StaticPrototype {
>StaticPrototype : StaticPrototype
static prototype: number; // error
>prototype : StaticPrototype
prototype: string; // ok
>prototype : string
}
class StaticPrototypeFn {
>StaticPrototypeFn : StaticPrototypeFn
static prototype() {} // error
>prototype : () => void
prototype() {} // ok
>prototype : () => void
}
// caller
class StaticCaller {
>StaticCaller : StaticCaller
static caller: number; // error
>caller : number
caller: string; // ok
>caller : string
}
class StaticCallerFn {
>StaticCallerFn : StaticCallerFn
static caller() {} // error
>caller : () => void
caller() {} // ok
>caller : () => void
}
// arguments
class StaticArguments {
>StaticArguments : StaticArguments
static arguments: number; // error
>arguments : number
arguments: string; // ok
>arguments : string
}
class StaticArgumentsFn {
>StaticArgumentsFn : StaticArgumentsFn
static arguments() {} // error
>arguments : () => void
arguments() {} // ok
>arguments : () => void
}
// === Static properties on anonymous classes ===
// name
var StaticName_Anonymous = class {
>StaticName_Anonymous : typeof StaticName_Anonymous
>class { static name: number; // error name: string; // ok} : typeof StaticName_Anonymous
static name: number; // error
>name : number
name: string; // ok
>name : string
}
var StaticNameFn_Anonymous = class {
>StaticNameFn_Anonymous : typeof StaticNameFn_Anonymous
>class { static name() {} // error name() {} // ok} : typeof StaticNameFn_Anonymous
static name() {} // error
>name : () => void
name() {} // ok
>name : () => void
}
// length
var StaticLength_Anonymous = class {
>StaticLength_Anonymous : typeof StaticLength_Anonymous
>class { static length: number; // error length: string; // ok} : typeof StaticLength_Anonymous
static length: number; // error
>length : number
length: string; // ok
>length : string
}
var StaticLengthFn_Anonymous = class {
>StaticLengthFn_Anonymous : typeof StaticLengthFn_Anonymous
>class { static length() {} // error length() {} // ok} : typeof StaticLengthFn_Anonymous
static length() {} // error
>length : () => void
length() {} // ok
>length : () => void
}
// prototype
var StaticPrototype_Anonymous = class {
>StaticPrototype_Anonymous : typeof StaticPrototype_Anonymous
>class { static prototype: number; // error prototype: string; // ok} : typeof StaticPrototype_Anonymous
static prototype: number; // error
>prototype : StaticPrototype_Anonymous
prototype: string; // ok
>prototype : string
}
var StaticPrototypeFn_Anonymous = class {
>StaticPrototypeFn_Anonymous : typeof StaticPrototypeFn_Anonymous
>class { static prototype() {} // error prototype() {} // ok} : typeof StaticPrototypeFn_Anonymous
static prototype() {} // error
>prototype : () => void
prototype() {} // ok
>prototype : () => void
}
// caller
var StaticCaller_Anonymous = class {
>StaticCaller_Anonymous : typeof StaticCaller_Anonymous
>class { static caller: number; // error caller: string; // ok} : typeof StaticCaller_Anonymous
static caller: number; // error
>caller : number
caller: string; // ok
>caller : string
}
var StaticCallerFn_Anonymous = class {
>StaticCallerFn_Anonymous : typeof StaticCallerFn_Anonymous
>class { static caller() {} // error caller() {} // ok} : typeof StaticCallerFn_Anonymous
static caller() {} // error
>caller : () => void
caller() {} // ok
>caller : () => void
}
// arguments
var StaticArguments_Anonymous = class {
>StaticArguments_Anonymous : typeof StaticArguments_Anonymous
>class { static arguments: number; // error arguments: string; // ok} : typeof StaticArguments_Anonymous
static arguments: number; // error
>arguments : number
arguments: string; // ok
>arguments : string
}
var StaticArgumentsFn_Anonymous = class {
>StaticArgumentsFn_Anonymous : typeof StaticArgumentsFn_Anonymous
>class { static arguments() {} // error arguments() {} // ok} : typeof StaticArgumentsFn_Anonymous
static arguments() {} // error
>arguments : () => void
arguments() {} // ok
>arguments : () => void
}
// === Static properties on default exported classes ===
// name
module TestOnDefaultExportedClass_1 {
>TestOnDefaultExportedClass_1 : typeof TestOnDefaultExportedClass_1
class StaticName {
>StaticName : StaticName
static name: number; // error
>name : number
name: string; // ok
>name : string
}
}
module TestOnDefaultExportedClass_2 {
>TestOnDefaultExportedClass_2 : typeof TestOnDefaultExportedClass_2
class StaticNameFn {
>StaticNameFn : StaticNameFn
static name() {} // error
>name : () => void
name() {} // ok
>name : () => void
}
}
// length
module TestOnDefaultExportedClass_3 {
>TestOnDefaultExportedClass_3 : typeof TestOnDefaultExportedClass_3
export default class StaticLength {
>StaticLength : StaticLength
static length: number; // error
>length : number
length: string; // ok
>length : string
}
}
module TestOnDefaultExportedClass_4 {
>TestOnDefaultExportedClass_4 : typeof TestOnDefaultExportedClass_4
export default class StaticLengthFn {
>StaticLengthFn : StaticLengthFn
static length() {} // error
>length : () => void
length() {} // ok
>length : () => void
}
}
// prototype
module TestOnDefaultExportedClass_5 {
>TestOnDefaultExportedClass_5 : typeof TestOnDefaultExportedClass_5
export default class StaticPrototype {
>StaticPrototype : StaticPrototype
static prototype: number; // error
>prototype : StaticPrototype
prototype: string; // ok
>prototype : string
}
}
module TestOnDefaultExportedClass_6 {
>TestOnDefaultExportedClass_6 : typeof TestOnDefaultExportedClass_6
export default class StaticPrototypeFn {
>StaticPrototypeFn : StaticPrototypeFn
static prototype() {} // error
>prototype : () => void
prototype() {} // ok
>prototype : () => void
}
}
// caller
module TestOnDefaultExportedClass_7 {
>TestOnDefaultExportedClass_7 : typeof TestOnDefaultExportedClass_7
export default class StaticCaller {
>StaticCaller : StaticCaller
static caller: number; // error
>caller : number
caller: string; // ok
>caller : string
}
}
module TestOnDefaultExportedClass_8 {
>TestOnDefaultExportedClass_8 : typeof TestOnDefaultExportedClass_8
export default class StaticCallerFn {
>StaticCallerFn : StaticCallerFn
static caller() {} // error
>caller : () => void
caller() {} // ok
>caller : () => void
}
}
// arguments
module TestOnDefaultExportedClass_9 {
>TestOnDefaultExportedClass_9 : typeof TestOnDefaultExportedClass_9
export default class StaticArguments {
>StaticArguments : StaticArguments
static arguments: number; // error
>arguments : number
arguments: string; // ok
>arguments : string
}
}
module TestOnDefaultExportedClass_10 {
>TestOnDefaultExportedClass_10 : typeof TestOnDefaultExportedClass_10
export default class StaticArgumentsFn {
>StaticArgumentsFn : StaticArgumentsFn
static arguments() {} // error
>arguments : () => void
arguments() {} // ok
>arguments : () => void
}
}
|