TypeScript/tests/baselines/reference/commentBeforeStaticMethod1.types

15 lines
213 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/commentBeforeStaticMethod1.ts ===
class C {
>C : C
2014-08-15 23:33:16 +02:00
/**
* Returns bar
*/
public static foo(): string {
>foo : () => string
2014-08-15 23:33:16 +02:00
return "bar";
2015-04-13 21:36:11 +02:00
>"bar" : string
2014-08-15 23:33:16 +02:00
}
}