summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/NoPhase.scala
blob: 010c778910c0a0be631d0cacfc91020b664dbfcf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
/* NSC -- new Scala compiler
 * Copyright 2007-2009 LAMP/EPFL
 * @author  Martin Odersky
 */
// $Id$

package scala.tools.nsc

object NoPhase extends Phase(null) {
  def name = "<no phase>"
  def run { throw new Error("NoPhase.run") }
}