aboutsummaryrefslogtreecommitdiff
path: root/Sil/Util/Printer.dcl
blob: d0685cb27710eb3cc1a49f978c50e1d244de6948 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
definition module Sil.Util.Printer

from StdOverloaded import class toString, class zero

from Sil.Parse import :: Token
from Sil.Syntax import :: Program, :: Function, :: CodeBlock,
	:: Initialisation, :: Statement

:: PrintState

instance zero PrintState

class PrettyPrinter t where
	print :: PrintState t -> String

instance PrettyPrinter String
instance PrettyPrinter [Token]
instance PrettyPrinter Program
instance PrettyPrinter Function
instance PrettyPrinter CodeBlock
instance PrettyPrinter Initialisation
instance PrettyPrinter Statement

printersperse :: a [b] -> String | toString a & toString b