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

                       


                                         
                    

                                                                                 

                                                     







                                                                                    
 
/* NSC -- new Scala compiler
 * Copyright 2007-2012 LAMP/EPFL
 * @author Lex Spoon
 * Updated by Anders Bach Nielsen
 */

package scala.tools.nsc
package plugins

/** A component that is part of a Plugin.
 *
 * @author Lex Spoon
 * @version 1.1, 2009/1/2
 * Updated 2009/1/2 by Anders Bach Nielsen: Added features to implement SIP 00002
 */
abstract class PluginComponent extends SubComponent {

  /** Internal flag to tell external from internal phases */
  final override val internal = false

  /** Phases supplied by plugins should not have give the runsRightAfter constraint,
   * but can override it */
  val runsRightAfter: Option[String] = None

}