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. --- .../neg/plugin-before-parser/src/ThePlugin.scala | 32 ---------------------- 1 file changed, 32 deletions(-) delete mode 100644 test/files/neg/plugin-before-parser/src/ThePlugin.scala (limited to 'test/files/neg/plugin-before-parser/src/ThePlugin.scala') 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 {} - } -} - -- cgit v1.2.3