summaryrefslogtreecommitdiff
path: root/test/files/neg/t7494-before-parser/ThePlugin.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/t7494-before-parser/ThePlugin.scala')
-rw-r--r--test/files/neg/t7494-before-parser/ThePlugin.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/neg/t7494-before-parser/ThePlugin.scala b/test/files/neg/t7494-before-parser/ThePlugin.scala
index 7ca896650d..8714a55dc4 100644
--- a/test/files/neg/t7494-before-parser/ThePlugin.scala
+++ b/test/files/neg/t7494-before-parser/ThePlugin.scala
@@ -12,7 +12,7 @@ class ThePlugin(val global: Global) extends Plugin {
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
@@ -21,9 +21,9 @@ class ThePlugin(val global: Global) extends Plugin {
val phaseName = ThePlugin.this.name
- def newPhase(prev: Phase) = new ThePhase(prev)
+ def newPhase(prev: Phase) = new ThePhase(prev)
}
-
+
private class ThePhase(prev: Phase) extends Phase(prev) {
def name = ThePlugin.this.name
def run {}