1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
=== tests/cases/compiler/functionCall12.ts ===
function foo(a:string, b?:number, c?:string){}
>foo : (a: string, b?: number, c?: string) => void
>a : string
>b : number
>c : string
foo('foo', 1);
>foo('foo', 1) : void
>foo : (a: string, b?: number, c?: string) => void
>'foo' : "foo"
>1 : 1
foo('foo');
>foo('foo') : void
>foo : (a: string, b?: number, c?: string) => void
>'foo' : "foo"
foo();
>foo() : void
>foo : (a: string, b?: number, c?: string) => void
foo(1, 'bar');
>foo(1, 'bar') : void
>foo : (a: string, b?: number, c?: string) => void
>1 : 1
>'bar' : "bar"
foo('foo', 1, 'bar');
>foo('foo', 1, 'bar') : void
>foo : (a: string, b?: number, c?: string) => void
>'foo' : "foo"
>1 : 1
>'bar' : "bar"
foo('foo', 1, 3);
>foo('foo', 1, 3) : void
>foo : (a: string, b?: number, c?: string) => void
>'foo' : "foo"
>1 : 1
>3 : 3
|