我有一个实用程序类,其中包含许多方法,我希望在我的DSL中提供这些方法。是否可以在没有明确列出每个方法的情况下在GDSL中描述该行为?
换句话说,我想在GDSL中描述用我实现的编译定制器:
def configuration = new CompilerConfiguration()
def imports = new ImportCustomizer()
imports.addStaticStars(AClassWithAnAwfulLotOfStaticMethods.class.name)
configuration.addCompilationCustomizers(imports)