Files
babel/test/fixtures/transformation/es6-arrow-functions/this/expected.js
2015-03-19 01:46:53 +11:00

10 lines
108 B
JavaScript

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