614615616617618619620621622623624
Type type = _type; while(type != null) { if (type instanceof Module) { URL url = ((Module)type).getAddress().getURL(); if (url != null) { return new AnyURL(url); } } type = type.getParent(); } return UNDEFINED;