TypeScript/tests/baselines/reference/emitArrowFunctionWhenUsingArguments11_ES6.types

17 lines
417 B
Plaintext
Raw Normal View History

2015-04-16 22:08:57 +02:00
=== tests/cases/conformance/es6/arrowFunction/emitArrowFunctionWhenUsingArguments11_ES6.ts ===
function f(arguments) {
>f : (arguments: any) => void
>arguments : any
var _arguments = 10;
>_arguments : number
>10 : number
var a = () => () => arguments;
>a : () => () => IArguments
>() => () => arguments : () => () => IArguments
>() => arguments : () => IArguments
>arguments : IArguments
}