249250251252253254255256257258259
return export; } private boolean isExportedClosure(MethodDoc md) { ClassDoc clz = md.containingClass(); for (AnnotationDesc a : clz.annotations()) { String aname = a.annotationType().name(); if (aname.equals("ExportClosure")) { return true; }
247248249250251252253254255256257