TypeScript/tests/baselines/reference/commentsOnObjectLiteral1.js

16 lines
206 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [commentsOnObjectLiteral1.ts]
var Person = makeClass(
/**
@scope Person
*/
{
}
);
//// [commentsOnObjectLiteral1.js]
2015-01-23 00:58:00 +01:00
var Person = makeClass(
/**
@scope Person
*/
{});