TypeScript/tests/baselines/reference/arguments.types
2015-04-13 14:29:37 -07:00

11 lines
271 B
Plaintext

=== tests/cases/compiler/arguments.ts ===
function f() {
>f : () => void, Symbol(f, Decl(arguments.ts, 0, 0))
var x=arguments[12];
>x : any, Symbol(x, Decl(arguments.ts, 1, 7))
>arguments[12] : any
>arguments : IArguments, Symbol(arguments)
>12 : number
}