Yannick Loiseau

Results 29 issues of Yannick Loiseau

It would be nice for a module to be able to expose (export) some or all public functions defined in an other module. For instance, given ```golo module some.Module function...

feature
backlog

# On curry and partialization reflections on the idea suggested in https://github.com/eclipse/golo-lang/issues/326#issuecomment-169293658 ## What we have ### Manual partialization ``` golo function add = |a, b, c| -> a +...

feature
question
backlog
for-reference

Currently, setters, e.g. `void setFoo(Object v)`, can be called as builder properties, as if the method `ThisObject foo(Object v)` were defined, thus allowing a fluent chaining of setter methods (behavior...

feature
backlog

It would be nice to be able to call java functions (Single Abstract Method instances and `FunctionalInterface` instances) with the golo syntax; for instance: ```golo let comp = java.util.Comparator.reverseOrder() comp("foo",...

feature
backlog

The `golo new` command could generate more files to help initialize a new golo project matching the common practices. For instances: - [ ] `CHANGELOG.md` file stub - [ ]...

backlog
tooling

When a java class defines a method (static or not) using varargs, we can't call it from golo with an array, unless the type is `Object`. For instance, given ```java...

bug

The module `gololang.JSON` leverage `json-simple` to ease the conversion of native golo objects to and from JSON. However, `union`objects are not covered.

improvement

It would be nice if golo `struct` and `union` types could be serializable.

feature
newcomer

When making a frozen copy of a frozen struct, a real shalow copy (new instance) is created, then frozen. Since the instance is already frozen, and thus immutable, the instance...

improvement
newcomer

I don't know how easy it would be, but creating a JAR with only the runtime dependencies would allows to create a more lightweight “uberjar/fatjar” of a golo application. AFAICT,...

backlog
tooling