static L acc_classLoaders() { ret acc_classLoaders(AccessController.getContext()); } static L acc_classLoaders(AccessControlContext context) { ProtectionDomain[] domains = (ProtectionDomain[]) call(context, 'getContext); ret map(domains, func(ProtectionDomain d) -> ClassLoader { d.getClassLoader() }); }