java.lang.String [] entries = rex.getResolverRegistry().listEntries(sloc.getURI());
IListWriter w = values.listWriter();
for(java.lang.String entry : entries){
w.append(values.string(entry));
}
return w.done();
} catch(FileNotFoundException e){
throw RuntimeExceptionFactory.pathNotFound(sloc, null, null);
} catch (IOException e) {
throw RuntimeExceptionFactory.io(values.string(e.getMessage()), null, null);
}