To get into writing a Scala compiler plug-in I'm trying to work through Writing Scala Compiler Plugins on scala-lang.org. In my Component I'm implementing newPhase like this:
def newPhase(prev: nsc.Phase) = new ClassDetectionPhase(prev) // IntelliJ build error
final class ClassDetectionPhase(prev: nsc.Phase) extends StdPhase(prev) {
override def name = ClassDetection.this.name
def apply(unit: CompilationUnit) {
}
}
I can compile this on the SBT console. However, IntelliJ IDEA says ClassDetectionPhase is not known to be a subclass of nsc.Phase. Digging into the SubComponent.class file where StdPhase is defined, I find SubComponent highlighted again:
package scala.tools.nsc
abstract class SubComponent() extends java.lang.Object {
// ...
abstract class StdPhase(prev : scala.tools.nsc.Phase) extends scala.tools.nsc.SubComponent.global.GlobalPhase { // SubComponent highlighted here
// ...
}
// ...
}
The error seems strage to me, as this line is within SubComponent class:
Cannot resolve symbol SubComponent
The IDEA Project is generated via SBT's gen-idea command and builds fine on the SBT console. Does anybody have an idea what is missing for IDEA?
