From 381c0260ff919a9d9e3da93ac820726276bed64a Mon Sep 17 00:00:00 2001 From: Yui Date: Fri, 8 Apr 2016 11:30:08 -0700 Subject: [PATCH] Accept correct baseline (#7967) --- tests/baselines/reference/superInObjectLiterals_ES5.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/baselines/reference/superInObjectLiterals_ES5.js b/tests/baselines/reference/superInObjectLiterals_ES5.js index f701ca7df7b..5d1fed24b4f 100644 --- a/tests/baselines/reference/superInObjectLiterals_ES5.js +++ b/tests/baselines/reference/superInObjectLiterals_ES5.js @@ -65,6 +65,7 @@ var __extends = (this && this.__extends) || function (d, b) { function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; +var _this = this; var obj = { __proto__: { method: function () { @@ -87,7 +88,7 @@ var obj = { _super.method.call(this); }, p3: function () { - _super.method.call(this); + _super.method.call(_this); } }; var A = (function () {