1 2 3 4 5 6 7 8 9 10 11 12
|
=== tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments11.ts ===
function f(arguments) {
>f : Symbol(f, Decl(emitArrowFunctionWhenUsingArguments11.ts, 0, 0))
>arguments : Symbol(arguments, Decl(emitArrowFunctionWhenUsingArguments11.ts, 0, 11))
var _arguments = 10;
>_arguments : Symbol(_arguments, Decl(emitArrowFunctionWhenUsingArguments11.ts, 1, 7))
var a = () => () => arguments;
>a : Symbol(a, Decl(emitArrowFunctionWhenUsingArguments11.ts, 2, 7))
>arguments : Symbol(arguments)
}
|