Hey,
i've started to use Xtend some days, and it is awesome!
But i need some help, i'm using latest Xtend Release with Eclipse Juno on my MacBook.
And If I have a class with some functions which have the same Name, the Eclipse can't show me what other parameter this Function can have.
Example Java:
class X{
public function Y(){}
public function Y(int i){}
public function Y(int x, int y){}
}
And if try to use this class with Xtend I dont get any hints what other Parameters the function "Y" could use... its kinda slowing me down with the xtend fun :)
Are there no parameter hints oder am I just using the wrong shortcuts?
Best Regards,
Eugen