Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions tests/baselines/reference/superPropertyAccess_ES5.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ var MyBase = (function () {
configurable: true
});
return MyBase;
})();
}());
var MyDerived = (function (_super) {
__extends(MyDerived, _super);
function MyDerived() {
Expand All @@ -54,7 +54,7 @@ var MyDerived = (function (_super) {
var f2 = _super.prototype.value;
}
return MyDerived;
})(MyBase);
}(MyBase));
var d = new MyDerived();
var f3 = d.value;
var A = (function () {
Expand All @@ -67,7 +67,7 @@ var A = (function () {
configurable: true
});
return A;
})();
}());
var B = (function (_super) {
__extends(B, _super);
function B() {
Expand All @@ -81,4 +81,4 @@ var B = (function (_super) {
configurable: true
});
return B;
})(A);
}(A));