Files
babel/packages/babel-plugin-transform-es2015-arrow-functions/test/fixtures/arrow-functions/this/expected.js

8 lines
92 B
JavaScript

function b() {
var _this = this;
var t = function (x) {
return _this.x + x;
};
}