Files
babel/test/fixtures/transformation/es6-arrow-functions/this/expected.js
2015-01-22 07:44:36 +11:00

9 lines
106 B
JavaScript

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