aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/Scopes.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2013-05-14 12:22:35 +0200
committerMartin Odersky <odersky@gmail.com>2013-05-14 12:22:35 +0200
commitfec318dedaa10bf7ffaebd7aaf4a99e05ac0312a (patch)
tree8d5f9560806325c922eceb847f5c13b096aa7013 /src/dotty/tools/dotc/core/Scopes.scala
parentb866c49bde62ee8ee52358dee746db64741b5891 (diff)
downloaddotty-fec318dedaa10bf7ffaebd7aaf4a99e05ac0312a.tar.gz
dotty-fec318dedaa10bf7ffaebd7aaf4a99e05ac0312a.tar.bz2
dotty-fec318dedaa10bf7ffaebd7aaf4a99e05ac0312a.zip
Refactored Printers, Showable and Text into new package dotc.printing.
Diffstat (limited to 'src/dotty/tools/dotc/core/Scopes.scala')
-rw-r--r--src/dotty/tools/dotc/core/Scopes.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dotty/tools/dotc/core/Scopes.scala b/src/dotty/tools/dotc/core/Scopes.scala
index 6bcfc6f6a..426d5a51a 100644
--- a/src/dotty/tools/dotc/core/Scopes.scala
+++ b/src/dotty/tools/dotc/core/Scopes.scala
@@ -12,7 +12,7 @@ import Periods._
import Decorators._
import Contexts._
import Denotations._
-import util.Texts._
+import printing.Texts._
import SymDenotations.NoDenotation
object Scopes {
@@ -49,7 +49,7 @@ object Scopes {
* or to delete them. These methods are provided by subclass
* MutableScope.
*/
- abstract class Scope extends Showable with Iterable[Symbol] {
+ abstract class Scope extends printing.Showable with Iterable[Symbol] {
/** The last scope-entry from which all others are reachable via `prev` */
private[dotc] def lastEntry: ScopeEntry