Re: [Vala] Named arguments support

2012-09-16 Thread Luca Bruno
On Sat, Sep 1, 2012 at 6:46 PM, Ivo Kosir wrote: > Hi everyone, > > When I make a simple method with default arguments, and try to put named > arguments like this: > > void bar () { > foo(c: 121); > } > void foo (int a = 5, int b = 5) {} > > valac outputs me an error: "Named arguments are not

[Vala] Named arguments support

2012-09-16 Thread Ivo Kosir
Hi everyone, When I make a simple method with default arguments, and try to put named arguments like this: void bar () {     foo(c: 121); } void foo (int a = 5, int b = 5) {} valac outputs me an error: "Named arguments are not supported yet", does this mean it will be supported any time soon?