Accepted baselines.

This commit is contained in:
Daniel Rosenwasser
2016-09-03 00:31:09 -07:00
parent 86088d0e7e
commit dd27139f39
4 changed files with 4 additions and 4 deletions

View File

@@ -102,8 +102,8 @@ var Bar = (function () {
var Foo = (function (_super) {
__extends(Foo, _super);
function Foo(x, y, z) {
var _this = _super.call(this, x) || this;
if (z === void 0) { z = 0; }
var _this = _super.call(this, x) || this;
_this.y = y;
_this.z = z;
_this.gar = 0;

View File

@@ -161,8 +161,8 @@ var C1 = (function () {
var C2 = (function (_super) {
__extends(C2, _super);
function C2(v2) {
var _this = _super.call(this, v2) || this;
if (v2 === void 0) { v2 = 6; }
var _this = _super.call(this, v2) || this;
return _this;
}
return C2;

View File

@@ -41,10 +41,10 @@ var Q = (function (_super) {
__extends(Q, _super);
// Super is not allowed in constructor args
function Q(z, zz, zzz) {
var _this = _super.call(this) || this;
if (z === void 0) { z = _super.; }
if (zz === void 0) { zz = _super.; }
if (zzz === void 0) { zzz = function () { return _super.; }; }
var _this = _super.call(this) || this;
_this.z = z;
_this.xx = _super.prototype.;
return _this;

View File

@@ -27,8 +27,8 @@ var B = (function () {
var C = (function (_super) {
__extends(C, _super);
function C(a) {
var _this;
if (a === void 0) { a = _super.foo.call(_this); }
var _this;
return _this;
}
return C;