summaryrefslogblamecommitdiff
path: root/src/compiler/scala/tools/nsc/Settings.scala
blob: ca99ddf27a298e4a161e2c572db9e4d4a6303d74 (plain) (tree)
1
2
3
4
5
6
7
8
9
                            
                                

                          
 
                       
 
                               
 


                                                                          
                                    
 
/* NSC -- new Scala compiler
 * Copyright 2005-2011 LAMP/EPFL
 * @author  Martin Odersky
 */

package scala.tools.nsc

import settings.MutableSettings

/** A compatibility stub.
 */
class Settings(errorFn: String => Unit) extends MutableSettings(errorFn) {
  def this() = this(Console.println)
}