TypeScript/tests/baselines/reference/sourceMapValidationClassWithDefaultConstructor.js
2014-07-12 17:30:19 -07:00

15 lines
398 B
TypeScript

//// [sourceMapValidationClassWithDefaultConstructor.ts]
class Greeter {
public a = 10;
public nameA = "Ten";
}
//// [sourceMapValidationClassWithDefaultConstructor.js]
var Greeter = (function () {
function Greeter() {
this.a = 10;
this.nameA = "Ten";
}
return Greeter;
})();
//# sourceMappingURL=sourceMapValidationClassWithDefaultConstructor.js.map