summaryrefslogtreecommitdiff
path: root/test/pending/neg/plugin-rightafter-terminal/src
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-rightafter-terminal/src
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-rightafter-terminal/src')
-rw-r--r--test/pending/neg/plugin-rightafter-terminal/src/ThePlugin.scala32
1 files changed, 32 insertions, 0 deletions
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 {}
+ }
+}
+