summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/transform/TypingTransformers.scala
diff options
context:
space:
mode:
authorIulian Dragos <jaguarul@gmail.com>2006-11-07 12:56:53 +0000
committerIulian Dragos <jaguarul@gmail.com>2006-11-07 12:56:53 +0000
commit5c2004c0740fc2bf31bbd752891d646823437aed (patch)
tree8a09367cc1b4df41cb7fc40574a3f38564b2eb90 /src/compiler/scala/tools/nsc/transform/TypingTransformers.scala
parent84089c19ec1707d3fa3e37c6218cb990013d4066 (diff)
downloadscala-5c2004c0740fc2bf31bbd752891d646823437aed.tar.gz
scala-5c2004c0740fc2bf31bbd752891d646823437aed.tar.bz2
scala-5c2004c0740fc2bf31bbd752891d646823437aed.zip
Fixed bug #799: the super accessors were iterat...
Fixed bug #799: the super accessors were iterating over class parents, which is not necessary.
Diffstat (limited to 'src/compiler/scala/tools/nsc/transform/TypingTransformers.scala')
-rw-r--r--src/compiler/scala/tools/nsc/transform/TypingTransformers.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/transform/TypingTransformers.scala b/src/compiler/scala/tools/nsc/transform/TypingTransformers.scala
index c5ff08a548..b16c8aed13 100644
--- a/src/compiler/scala/tools/nsc/transform/TypingTransformers.scala
+++ b/src/compiler/scala/tools/nsc/transform/TypingTransformers.scala
@@ -19,7 +19,7 @@ trait TypingTransformers {
abstract class TypingTransformer(unit: CompilationUnit) extends Transformer {
var localTyper: analyzer.Typer = analyzer.newTyper(
analyzer.rootContext(unit, EmptyTree, true))
- private var curTree: Tree = _
+ protected var curTree: Tree = _
/** a typer for each enclosing class */
var typers: Map[Symbol, analyzer.Typer] = new HashMap