TypeScript/tests/baselines/reference/declFileClassWithStaticMethodReturningConstructor.types

12 lines
534 B
Text

=== tests/cases/compiler/declFileClassWithStaticMethodReturningConstructor.ts ===
export class Enhancement {
>Enhancement : Enhancement, Symbol(Enhancement,Decl(declFileClassWithStaticMethodReturningConstructor.ts,0,0))
public static getType() {
>getType : () => typeof Enhancement, Symbol(Enhancement.getType,Decl(declFileClassWithStaticMethodReturningConstructor.ts,1,26))
return this;
>this : typeof Enhancement, Symbol(Enhancement,Decl(declFileClassWithStaticMethodReturningConstructor.ts,0,0))
}
}