TypeScript/tests/baselines/reference/arguments.types

11 lines
271 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/arguments.ts ===
function f() {
2015-04-13 23:01:57 +02:00
>f : () => void, Symbol(f, Decl(arguments.ts, 0, 0))
2014-08-15 23:33:16 +02:00
var x=arguments[12];
2015-04-13 23:01:57 +02:00
>x : any, Symbol(x, Decl(arguments.ts, 1, 7))
2014-08-15 23:33:16 +02:00
>arguments[12] : any
>arguments : IArguments, Symbol(arguments)
2015-04-13 21:36:11 +02:00
>12 : number
2014-08-15 23:33:16 +02:00
}