Yannick Loiseau
Yannick Loiseau
I think we'll need to fix this by small steps, since like @Artpej said it's a big one, linked to several other issues
Some cases are fixed by previous PRs, but I'm not sure we cover all corner cases.
So where are we? To summarize (feel free to edit this comment to add cases and details): - Declaring golo functions and augmentations: - [x] two functions with the same...
While we are at it, another idea than can fall in this part... What about autocurry? :smile: For instance, given ``` golo function foo = |a| -> a + 1...
Hum… interesting. So this approach could even take place at compile time, (e.g. in `SugarExpansionVisitor`) by replacing ``` golo let g = f(?, 0, ?) ``` by ``` golo let...
Could you be more precise?
The `FunctionCallSupport` refactoring is in the pipe… :smile:
Thanks to the Java/Golo integration, you can use standard java reflection features, and third parties libraries should also work. `Predefined.fun` may be enough in some cases. Some of the (undocumented)...
Probably a duplicate of #341 (see https://github.com/eclipse/golo-lang/projects/2)
It's a matter of style and personal preference. However, there are some elements to take into account. From my point of view, it mainly depends on what you want to...