TypeScript/tests/cases/compiler/commentsOnStaticMembers.ts
2014-07-12 17:30:19 -07:00

21 lines
No EOL
391 B
TypeScript

// @comments: true
class test {
/**
* p1 comment appears in output
*/
public static p1: string = "";
/**
* p2 comment does not appear in output
*/
public static p2: string;
/**
* p3 comment appears in output
*/
private static p3: string = "";
/**
* p4 comment does not appear in output
*/
private static p4: string;
}