File file = new File(runtime.getOutputDirectory(), name);
printer = new Printer(new PrintWriter(runtime.getWriter(file)));
}
protected void printDocumentation(Module m) {
Comment c = m.documentation;
// Make sure we have something to print.
if (! verbose || null == c || c.text.isEmpty()) {
return;
}