TypeScript/tests/baselines/reference/commentsOnStaticMembers.js
2014-08-14 06:31:00 -07:00

37 lines
672 B
JavaScript

//// [commentsOnStaticMembers.ts]
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;
}
//// [commentsOnStaticMembers.js]
var test = (function () {
function test() {
}
/**
* p1 comment appears in output
*/
test.p1 = "";
/**
* p3 comment appears in output
*/
test.p3 = "";
return test;
})();