TypeScript/tests/baselines/reference/functionCall17.js

19 lines
337 B
JavaScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [functionCall17.ts]
function foo(a:string, b?:string, c?:number, ...d:number[]){}
foo('foo', 1);
foo('foo');
foo();
foo(1, 'bar');
foo('foo', 1, 3);
foo('foo', 'bar', 3, 4);
//// [functionCall17.js]
function foo(a, b, c) { }
2014-07-13 01:04:16 +02:00
foo('foo', 1);
foo('foo');
foo();
foo(1, 'bar');
foo('foo', 1, 3);
foo('foo', 'bar', 3, 4);