TypeScript/tests/baselines/reference/classAbstractMethodWithImplementation.js
2015-06-19 15:45:18 -07:00

13 lines
257 B
TypeScript

//// [classAbstractMethodWithImplementation.ts]
abstract class A {
abstract foo() {}
}
//// [classAbstractMethodWithImplementation.js]
var A = (function () {
function A() {
}
A.prototype.foo = function () { };
return A;
})();