aboutsummaryrefslogtreecommitdiff
path: root/compiler/src/dotty/tools/dotc/ast
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2016-11-09 18:55:28 +0100
committerMartin Odersky <odersky@gmail.com>2016-12-01 13:55:12 +0100
commit34690395dd86c9e31eb38f73df35a5ebaf3b2c80 (patch)
tree6eeee5cf20dde2ff1bfd9e988db94838d2894b6f /compiler/src/dotty/tools/dotc/ast
parentf1151d658ade02d6e838ab11d9d9700a89762558 (diff)
downloaddotty-34690395dd86c9e31eb38f73df35a5ebaf3b2c80.tar.gz
dotty-34690395dd86c9e31eb38f73df35a5ebaf3b2c80.tar.bz2
dotty-34690395dd86c9e31eb38f73df35a5ebaf3b2c80.zip
Clean up imports
Honor the new scheme where any explicit import of a root import will disable the root import.
Diffstat (limited to 'compiler/src/dotty/tools/dotc/ast')
-rw-r--r--compiler/src/dotty/tools/dotc/ast/Trees.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/src/dotty/tools/dotc/ast/Trees.scala b/compiler/src/dotty/tools/dotc/ast/Trees.scala
index 2801bcae2..c4b2b2122 100644
--- a/compiler/src/dotty/tools/dotc/ast/Trees.scala
+++ b/compiler/src/dotty/tools/dotc/ast/Trees.scala
@@ -32,7 +32,7 @@ object Trees {
/** Property key for trees with documentation strings attached */
val DocComment = new Property.Key[Comment]
- @sharable private var nextId = 0 // for debugging
+ @sharable private var nextId = 0 // for debugging
type LazyTree = AnyRef /* really: Tree | Lazy[Tree] */
type LazyTreeList = AnyRef /* really: List[Tree] | Lazy[List[Tree]] */