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

9 lines
169 B
TypeScript

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