TypeScript/tests/baselines/reference/commentsOnObjectLiteral1.js
2015-01-22 15:58:00 -08:00

16 lines
206 B
TypeScript

//// [commentsOnObjectLiteral1.ts]
var Person = makeClass(
/**
@scope Person
*/
{
}
);
//// [commentsOnObjectLiteral1.js]
var Person = makeClass(
/**
@scope Person
*/
{});