scala.tools.nsc.ConsoleWriter.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scala-compiler Show documentation
Show all versions of scala-compiler Show documentation
Compiler for the SubScript extension of the Scala Programming Language
The newest version!
/* NSC -- new Scala compiler
* Copyright 2006-2013 LAMP/EPFL
* @author Martin Odersky
*/
package scala.tools.nsc
import java.io.Writer
/** A Writer that writes onto the Scala Console.
*
* @author Lex Spoon
* @version 1.0
*/
class ConsoleWriter extends Writer {
def close() = flush()
def flush() = Console.flush()
def write(cbuf: Array[Char], off: Int, len: Int) {
if (len > 0)
write(new String(cbuf.slice(off, off+len)))
}
override def write(str: String) { Console.print(str) }
}