summaryrefslogtreecommitdiff
path: root/docs/examples/plugintemplate/src/plugintemplate/standalone/PluginRunner.scala
blob: 934fe8c6611dd2d96a83816949ce25db3af46d94 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package plugintemplate.standalone

import scala.tools.nsc.{Global, Settings, SubComponent}
import scala.tools.nsc.reporters.{ConsoleReporter, Reporter}

/** This class is a compiler that will be used for running
 *  the plugin in standalone mode.
 */
class PluginRunner(settings: Settings, reporter: Reporter)
extends Global(settings, reporter) {
  def this(settings: Settings) = this(settings, new ConsoleReporter(settings))

  /* TODO: include AnnotationChecker
  println("adding annotationchecker...")
  addAnnotationChecker(new AnnotationChecker {
    def annotationsConform(tpe1: Type, tpe2: Type): Boolean = {
      def getAnnTpe(t: Type) = t match {
        case AnnotatedType(attrs, underlying, selfsym) =>
          attrs match {
            case x :: xs => Some(x.atp)
            case _ => None
          }
        case _ => None
      }
      val ta1 = getAnnTpe(tpe1)
      val ta2 = getAnnTpe(tpe2)
      ta1 == ta2
    }

    override def addAnnotations(tree: Tree, tpe: Type): Type = {
      //println("adding annot to "+ tree.symbol)
      tpe
    }
  })
  */

  /** The phases to be run.
   *
   *  @todo: Adapt to specific plugin implementation
   */
  override def phaseDescriptors: List[SubComponent] = List(
    analyzer.namerFactory,
    analyzer.typerFactory,
    superAccessors,
    pickler,
    refchecks) ::: TemplatePlugin.components(this)
}