swc/crates/swc_ecma_parser/tests/tsc/asyncArrowFunctionCapturesArguments_es6.ts

9 lines
166 B
TypeScript

// @target: ES6
// @noEmitHelpers: true
class C {
method() {
function other() {}
var fn = async () => await other.apply(this, arguments);
}
}