summaryrefslogtreecommitdiff
path: root/test/pending/neg/plugin-multiple-rafter/src/ThePlugin.scala
diff options
context:
space:
mode:
authorPhilipp Haller <hallerp@gmail.com>2010-01-05 16:57:30 +0000
committerPhilipp Haller <hallerp@gmail.com>2010-01-05 16:57:30 +0000
commitdf1139ee182f049113965f1cada035babca344e7 (patch)
treebf80aa731d580b04aa07bdcaa7f2f80cad191d2b /test/pending/neg/plugin-multiple-rafter/src/ThePlugin.scala
parentbdf13aaa1d535b7b941dc707b78f7ab5ddf8d04d (diff)
downloadscala-df1139ee182f049113965f1cada035babca344e7.tar.gz
scala-df1139ee182f049113965f1cada035babca344e7.tar.bz2
scala-df1139ee182f049113965f1cada035babca344e7.zip
Moved plugin neg tests to pending. No review.
Diffstat (limited to 'test/pending/neg/plugin-multiple-rafter/src/ThePlugin.scala')
-rw-r--r--test/pending/neg/plugin-multiple-rafter/src/ThePlugin.scala31
1 files changed, 31 insertions, 0 deletions
diff --git a/test/pending/neg/plugin-multiple-rafter/src/ThePlugin.scala b/test/pending/neg/plugin-multiple-rafter/src/ThePlugin.scala
new file mode 100644
index 0000000000..4c761517c1
--- /dev/null
+++ b/test/pending/neg/plugin-multiple-rafter/src/ThePlugin.scala
@@ -0,0 +1,31 @@
+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 = "multi-rafter"
+ val description = ""
+ val components = List[PluginComponent](thePhase)
+
+ private object thePhase extends PluginComponent {
+ val global = ThePlugin.this.global
+
+ val runsAfter = List[String]()
+ override val runsRightAfter = Some("explicitouter")
+ 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 {}
+ }
+}
+