summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/compiler/scala/tools/nsc/ast/Trees.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/compiler/scala/tools/nsc/ast/Trees.scala b/src/compiler/scala/tools/nsc/ast/Trees.scala
index 69dd2a2bd1..fa96b0da11 100644
--- a/src/compiler/scala/tools/nsc/ast/Trees.scala
+++ b/src/compiler/scala/tools/nsc/ast/Trees.scala
@@ -139,13 +139,13 @@ trait Trees requires Global {
}
}
- // bq: I moved this classes here from TreeBrowsers, otherwise cannot used *sealed* optimization
- /** Pseudo tree class, so that all JTree nodes are treated uniformly */
+
+ /** Pseudo tree class needed in TreeBrowsers, so that all JTree nodes are treated uniformly */
case class ProgramTree(units: List[UnitTree]) extends Tree {
override def toString(): String = "Program"
}
- /** Pseudo tree class, so that all JTree nodes are treated uniformly */
+ /** Pseudo tree class needed in TreeBrowsers, so that all JTree nodes are treated uniformly */
case class UnitTree(unit: CompilationUnit) extends Tree {
override def toString(): String = unit.toString()
}