1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
//// [tests/cases/compiler/declarationEmitDetachedComment2.ts] ////
//// [test1.ts]
/*! Copyright 2015 MyCompany Inc. */
/**
* Hello class
*/
class Hello {
}
//// [test2.ts]
/* A comment at the top of the file. */
/**
* Hi class
*/
class Hi {
}
//// [test3.ts]
// A one-line comment at the top of the file.
/**
* Hola class
*/
class Hola {
}
//// [test1.js]
/*! Copyright 2015 MyCompany Inc. */
var Hello = (function () {
function Hello() {
}
return Hello;
}());
//// [test2.js]
var Hi = (function () {
function Hi() {
}
return Hi;
}());
//// [test3.js]
var Hola = (function () {
function Hola() {
}
return Hola;
}());
//// [test1.d.ts]
/*! Copyright 2015 MyCompany Inc. */
declare class Hello {
}
//// [test2.d.ts]
declare class Hi {
}
//// [test3.d.ts]
declare class Hola {
}
|