TypeScript/tests/baselines/reference/sourceMap-FileWithComments.js
2014-08-14 06:53:37 -07:00

72 lines
1.6 KiB
JavaScript

//// [sourceMap-FileWithComments.ts]
// Interface
interface IPoint {
getDist(): number;
}
// Module
module Shapes {
// Class
export class Point implements IPoint {
// Constructor
constructor(public x: number, public y: number) { }
// Instance member
getDist() { return Math.sqrt(this.x * this.x + this.y * this.y); }
// Static member
static origin = new Point(0, 0);
}
// Variable comment after class
var a = 10;
export function foo() {
}
/** comment after function
* this is another comment
*/
var b = 10;
}
/** Local Variable */
var p: IPoint = new Shapes.Point(3, 4);
var dist = p.getDist();
//// [sourceMap-FileWithComments.js]
// Module
var Shapes;
(function (Shapes) {
// Class
var Point = (function () {
// Constructor
function Point(x, y) {
this.x = x;
this.y = y;
}
// Instance member
Point.prototype.getDist = function () {
return Math.sqrt(this.x * this.x + this.y * this.y);
};
// Static member
Point.origin = new Point(0, 0);
return Point;
})();
Shapes.Point = Point;
// Variable comment after class
var a = 10;
function foo() {
}
Shapes.foo = foo;
/** comment after function
* this is another comment
*/
var b = 10;
})(Shapes || (Shapes = {}));
/** Local Variable */
var p = new Shapes.Point(3, 4);
var dist = p.getDist();
//# sourceMappingURL=sourceMap-FileWithComments.js.map