TypeScript/tests/baselines/reference/es6-sourcemap-amd.js

25 lines
334 B
JavaScript
Raw Normal View History

2014-10-11 21:52:42 +02:00
//// [es6-sourcemap-amd.ts]
class A
{
constructor ()
{
}
public B()
{
return 42;
}
}
//// [es6-sourcemap-amd.js]
var A = (function () {
function A() {
}
A.prototype.B = function () {
return 42;
};
return A;
})();
//# sourceMappingURL=es6-sourcemap-amd.js.map