mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-06-27 04:48:33 -05:00
Accepted baselines.
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user