30 lines
536 B
JavaScript
30 lines
536 B
JavaScript
function foo() {
|
|
var _this = this;
|
|
|
|
arr.map(function (x) {
|
|
babelHelpers.newArrowCheck(this, _this);
|
|
return x * x;
|
|
}.bind(this));
|
|
|
|
var f = function f(x, y) {
|
|
babelHelpers.newArrowCheck(this, _this);
|
|
return x * y;
|
|
}.bind(this);
|
|
|
|
(function () {
|
|
var _this2 = this;
|
|
|
|
return function () {
|
|
babelHelpers.newArrowCheck(this, _this2);
|
|
return this;
|
|
}.bind(this);
|
|
})();
|
|
|
|
return {
|
|
g: function g() {
|
|
babelHelpers.newArrowCheck(this, _this);
|
|
return this;
|
|
}.bind(this)
|
|
};
|
|
}
|