1 2 3 4 5 6 7 8 9 10 11
|
//// [tests/cases/compiler/functionWithDefaultParameterWithNoStatements7.ts] ////
=== functionWithDefaultParameterWithNoStatements7.ts ===
function foo(a = false) { }
>foo : Symbol(foo, Decl(functionWithDefaultParameterWithNoStatements7.ts, 0, 0))
>a : Symbol(a, Decl(functionWithDefaultParameterWithNoStatements7.ts, 0, 13))
function bar(a = false) {
>bar : Symbol(bar, Decl(functionWithDefaultParameterWithNoStatements7.ts, 0, 27))
>a : Symbol(a, Decl(functionWithDefaultParameterWithNoStatements7.ts, 2, 13))
}
|