From df1139ee182f049113965f1cada035babca344e7 Mon Sep 17 00:00:00 2001 From: Philipp Haller Date: Tue, 5 Jan 2010 16:57:30 +0000 Subject: Moved plugin neg tests to pending. No review. --- .../plugin-rightafter-terminal/src/ThePlugin.scala | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 test/pending/neg/plugin-rightafter-terminal/src/ThePlugin.scala (limited to 'test/pending/neg/plugin-rightafter-terminal/src') diff --git a/test/pending/neg/plugin-rightafter-terminal/src/ThePlugin.scala b/test/pending/neg/plugin-rightafter-terminal/src/ThePlugin.scala new file mode 100644 index 0000000000..47dd06ec8a --- /dev/null +++ b/test/pending/neg/plugin-rightafter-terminal/src/ThePlugin.scala @@ -0,0 +1,32 @@ +package scala.test.plugins + +import scala.tools.nsc +import nsc.Global +import nsc.Phase +import nsc.plugins.Plugin +import nsc.plugins.PluginComponent + +class ThePlugin(val global: Global) extends Plugin { + import global._ + + val name = "rightafterterminal" + val description = "Declares one plugin that wants to be right after the terminal phase" + val components = List[PluginComponent](thePhase) + + private object thePhase extends PluginComponent { + val global = ThePlugin.this.global + + val runsAfter = List[String]() + override val runsRightAfter = Some("terminal") + + val phaseName = ThePlugin.this.name + + def newPhase(prev: Phase) = new ThePhase(prev) + } + + private class ThePhase(prev: Phase) extends Phase(prev) { + def name = ThePlugin.this.name + def run {} + } +} + -- cgit v1.2.3