TypeScript/tests/baselines/reference/declFileClassWithStaticMethodReturningConstructor.types

13 lines
543 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/declFileClassWithStaticMethodReturningConstructor.ts ===
export class Enhancement {
2015-04-13 23:01:57 +02:00
>Enhancement : Enhancement, Symbol(Enhancement, Decl(declFileClassWithStaticMethodReturningConstructor.ts, 0, 0))
2014-08-15 23:33:16 +02:00
public static getType() {
2015-04-13 23:01:57 +02:00
>getType : () => typeof Enhancement, Symbol(Enhancement.getType, Decl(declFileClassWithStaticMethodReturningConstructor.ts, 1, 26))
2014-08-15 23:33:16 +02:00
return this;
2015-04-13 23:01:57 +02:00
>this : typeof Enhancement, Symbol(Enhancement, Decl(declFileClassWithStaticMethodReturningConstructor.ts, 0, 0))
2014-08-15 23:33:16 +02:00
}
}