aboutsummaryrefslogtreecommitdiff
path: root/Sil/Util/Printer.dcl
blob: 1d8fc5c3e89518fddea34bc6dfe8f1cfaeec50ea (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
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, :: Type, :: Application, :: Literal

:: PrintState

instance zero PrintState

class PrettyPrinter t where
	print :: PrintState t -> 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