TypeScript/tests/baselines/reference/functionWithDefaultParameterWithNoStatements16.symbols
2015-04-15 16:44:20 -07:00

14 lines
733 B
Text

=== tests/cases/compiler/functionWithDefaultParameterWithNoStatements16.ts ===
var v: any[];
>v : Symbol(v, Decl(functionWithDefaultParameterWithNoStatements16.ts, 0, 3))
function foo(a = bar()) { }
>foo : Symbol(foo, Decl(functionWithDefaultParameterWithNoStatements16.ts, 0, 13))
>a : Symbol(a, Decl(functionWithDefaultParameterWithNoStatements16.ts, 2, 13))
>bar : Symbol(bar, Decl(functionWithDefaultParameterWithNoStatements16.ts, 2, 27))
function bar(a = foo()) {
>bar : Symbol(bar, Decl(functionWithDefaultParameterWithNoStatements16.ts, 2, 27))
>a : Symbol(a, Decl(functionWithDefaultParameterWithNoStatements16.ts, 4, 13))
>foo : Symbol(foo, Decl(functionWithDefaultParameterWithNoStatements16.ts, 0, 13))
}