TypeScript/tests/baselines/reference/functionWithDefaultParameterWithNoStatements7.js

10 lines
217 B
JavaScript

//// [functionWithDefaultParameterWithNoStatements7.ts]
function foo(a = false) { }
function bar(a = false) {
}
//// [functionWithDefaultParameterWithNoStatements7.js]
function foo(a) { }
function bar(a) {
}