I have a utility class with an awful lot of methods that I would like to make available in my DSL. Is it possible to describe that behaviour in GDSL without listing every method explicitly?
In other words, I would like to describe in GDSL what with compilation customizer I achieved with this:
def configuration = new CompilerConfiguration()
def imports = new ImportCustomizer()
imports.addStaticStars(AClassWithAnAwfulLotOfStaticMethods.class.name)
configuration.addCompilationCustomizers(imports)