TypeScript/tests/baselines/reference/commentOnInterface1.js

21 lines
317 B
TypeScript
Raw Normal View History

//// [tests/cases/compiler/commentOnInterface1.ts] ////
//// [a.ts]
2014-07-13 01:04:16 +02:00
/*! Keep this pinned comment */
interface I {
}
// Don't keep this comment.
interface I2 {
}
//// [b.ts]
///<reference path='a.ts'/>
interface I3 {
2014-07-13 01:04:16 +02:00
}
//// [a.js]
/*! Keep this pinned comment */
//// [b.js]
///<reference path='a.ts'/>