Skip to content

Accept baseline with corrected parens #6076

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 12, 2015
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));