aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/Denotations.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/Denotations.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/Denotations.scala')
-rw-r--r--src/dotty/tools/dotc/core/Denotations.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dotty/tools/dotc/core/Denotations.scala b/src/dotty/tools/dotc/core/Denotations.scala
index 66baeef55..e30e230b1 100644
--- a/src/dotty/tools/dotc/core/Denotations.scala
+++ b/src/dotty/tools/dotc/core/Denotations.scala
@@ -9,7 +9,7 @@ import Names.TypeName
import Symbols.NoSymbol
import Symbols._
import Types._, Periods._, Flags._, Transformers._
-import util.Texts._
+import printing.Texts._
import io.AbstractFile
import Decorators.SymbolIteratorDecorator
@@ -109,7 +109,7 @@ object Denotations {
*
* Then the denotation of `y` is `SingleDenotation(NoSymbol, A | B)`.
*/
- abstract class Denotation extends DotClass with Showable {
+ abstract class Denotation extends DotClass with printing.Showable {
/** The referencing symbol, exists only for non-overloaded denotations */
def symbol: Symbol