aboutsummaryrefslogblamecommitdiff
path: root/src/dotty/tools/dotc/core/Showable.scala
blob: 54a25506ac391061b4907a6048458d822e7f2fe4 (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                        
 
                                             


                


                                                       

 
package dotty.tools.dotc
package core

import Contexts._, util.Texts._, Decorators._

trait Showable {

  def toText(implicit ctx: Context): Text

  def show(implicit ctx: Context): String = toText.show

}