TypeScript/tests/baselines/reference/functionWithDefaultParameterWithNoStatements14.types

23 lines
918 B
Plaintext
Raw Normal View History

=== tests/cases/compiler/functionWithDefaultParameterWithNoStatements14.ts ===
var v: any[];
2015-04-13 23:01:57 +02:00
>v : any[], Symbol(v, Decl(functionWithDefaultParameterWithNoStatements14.ts, 0, 3))
function foo(a = v[1 + 1]) { }
2015-04-13 23:01:57 +02:00
>foo : (a?: any) => void, Symbol(foo, Decl(functionWithDefaultParameterWithNoStatements14.ts, 0, 13))
>a : any, Symbol(a, Decl(functionWithDefaultParameterWithNoStatements14.ts, 2, 13))
>v[1 + 1] : any
2015-04-13 23:01:57 +02:00
>v : any[], Symbol(v, Decl(functionWithDefaultParameterWithNoStatements14.ts, 0, 3))
>1 + 1 : number
2015-04-13 21:36:11 +02:00
>1 : number
>1 : number
function bar(a = v[1 + 1]) {
2015-04-13 23:01:57 +02:00
>bar : (a?: any) => void, Symbol(bar, Decl(functionWithDefaultParameterWithNoStatements14.ts, 2, 30))
>a : any, Symbol(a, Decl(functionWithDefaultParameterWithNoStatements14.ts, 4, 13))
>v[1 + 1] : any
2015-04-13 23:01:57 +02:00
>v : any[], Symbol(v, Decl(functionWithDefaultParameterWithNoStatements14.ts, 0, 3))
>1 + 1 : number
2015-04-13 21:36:11 +02:00
>1 : number
>1 : number
}