!7
html {
new L l;
for (Class c : allMainClasses()) {
S s = className(c);
pcall {
RuntimeException e = cast callOpt(c, 'asRuntimeException, new Exception);
}
if (e != null) s += ", " + firstFileNameFromStackTrace(e.getStackTrace());
l.add(s);
}
ret ul_htmlEncode(l);
}