/**
  * Print <b>return</b> on a line, by itself.
  *
  * @param out Where to print.
  * @param depth How much indentation to use while printing.
  */
 @Override
 public void printOn(PrintStream out, int depth) {
   Indentable.printIndentOn(out, depth);
   out.println("return ");
 }