TypeScript/tests/baselines/reference/emitDefaultParametersFunctionES6.js
2015-02-06 18:45:09 -08:00

12 lines
359 B
JavaScript

//// [emitDefaultParametersFunctionES6.ts]
function foo(x: string, y = 10) { }
function baz(x: string, y = 5, ...rest) { }
function bar(y = 10) { }
function bar1(y = 10, ...rest) { }
//// [emitDefaultParametersFunctionES6.js]
function foo(x, y = 10) { }
function baz(x, y = 5, ...rest) { }
function bar(y = 10) { }
function bar1(y = 10, ...rest) { }