summaryrefslogtreecommitdiff
path: root/test/files/neg/plugin-before-parser/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/files/neg/plugin-before-parser/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/files/neg/plugin-before-parser/src/ThePlugin.scala')
-rw-r--r--test/files/neg/plugin-before-parser/src/ThePlugin.scala32
1 files changed, 0 insertions, 32 deletions
diff --git a/test/files/neg/plugin-before-parser/src/ThePlugin.scala b/test/files/neg/plugin-before-parser/src/ThePlugin.scala
deleted file mode 100644
index 8714a55dc4..0000000000
--- a/test/files/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 {}
- }
-}
-