summaryrefslogtreecommitdiff
path: root/test/disabled/neg/plugin-before-parser/src/ThePlugin.scala
diff options
context:
space:
mode:
authornielsen <nielsen@epfl.ch>2009-05-11 10:25:16 +0000
committernielsen <nielsen@epfl.ch>2009-05-11 10:25:16 +0000
commita79ee73df180206eb9d17b643a92dee4e7ce5beb (patch)
tree167d259d6a5e9d58d5b7c5cf6a289e50e03b3313 /test/disabled/neg/plugin-before-parser/src/ThePlugin.scala
parent931d2d43cdaf37ae644ad5b2ff23d26d4d05498d (diff)
downloadscala-a79ee73df180206eb9d17b643a92dee4e7ce5beb.tar.gz
scala-a79ee73df180206eb9d17b643a92dee4e7ce5beb.tar.bz2
scala-a79ee73df180206eb9d17b643a92dee4e7ce5beb.zip
Rebuild all plugin tests and moved them back to...
Rebuild all plugin tests and moved them back to the working test cases
Diffstat (limited to 'test/disabled/neg/plugin-before-parser/src/ThePlugin.scala')
-rw-r--r--test/disabled/neg/plugin-before-parser/src/ThePlugin.scala32
1 files changed, 0 insertions, 32 deletions
diff --git a/test/disabled/neg/plugin-before-parser/src/ThePlugin.scala b/test/disabled/neg/plugin-before-parser/src/ThePlugin.scala
deleted file mode 100644
index 8714a55dc4..0000000000
--- a/test/disabled/neg/plugin-before-parser/src/ThePlugin.scala
+++ /dev/null
@@ -1,32 +0,0 @@
-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 = "beforeparser"
- val description = "Declares one plugin that wants to be before the parser phase"
- val components = List[PluginComponent](thePhase)
-
- private object thePhase extends PluginComponent {
- val global = ThePlugin.this.global
-
- val runsAfter = List[String]()
- override val runsBefore = List[String]("parser")
-
- 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 {}
- }
-}
-