Accepted baselines.

This commit is contained in:
Daniel Rosenwasser 2016-11-12 02:56:42 -08:00
parent 2f6ba0876c
commit 03ac7ccee4

View file

@ -25,9 +25,8 @@ var A = (function () {
var B = (function (_super) {
__extends(B, _super);
function B(text) {
return
// this is subclass constructor
_super.call(this, text) || this;
return _super.call(this, text) || this;
}
return B;
}(A));