TypeScript/tests/baselines/reference/commentBeforeStaticMethod1.types
2015-04-15 16:44:20 -07:00

15 lines
213 B
Plaintext

=== tests/cases/compiler/commentBeforeStaticMethod1.ts ===
class C {
>C : C
/**
* Returns bar
*/
public static foo(): string {
>foo : () => string
return "bar";
>"bar" : string
}
}