//for wild imports, we must get the global completions with __all__ filtered
//wild imports: recursively go and get those completions and see if any matches it.
for (int i = 0; i < wildImportedModules.length; i++) {
IToken name = wildImportedModules[i];
IModule mod = getModule(name.getAsRelativeImport(module.getName()), state.getNature(), false); //relative (for wild imports this is ok... only a module can be used in wild imports)
if (mod == null) {
mod = getModule(name.getOriginalRep(), state.getNature(), false); //absolute
}
if (mod != null) {
state.checkFindModuleCompletionsMemory(mod, state.getActivationToken());
IToken[] completionsForModule = getCompletionsForModule(mod, state);