diff options
author | Camil Staps | 2017-07-30 09:17:44 +0200 |
---|---|---|
committer | Camil Staps | 2017-07-30 09:17:44 +0200 |
commit | ebde44b28b551f670c9e5c4c038d03e94bfbb1d2 (patch) | |
tree | 7d021edb338a4fc6210a38fb2d3f0dafdda85ec2 /Sil/Util/Printer.icl | |
parent | Force logical order of output in cli (diff) |
Reorganise: make Position a field in Syntax types
Diffstat (limited to 'Sil/Util/Printer.icl')
-rw-r--r-- | Sil/Util/Printer.icl | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Sil/Util/Printer.icl b/Sil/Util/Printer.icl index 2a028b6..bcb3c84 100644 --- a/Sil/Util/Printer.icl +++ b/Sil/Util/Printer.icl @@ -34,9 +34,6 @@ instance toString PrintState where toString st = {'\t' \\ _ <- [1..st.indent]} instance PrettyPrinter String where print _ s = s -instance PrettyPrinter (Positioned a) | PrettyPrinter a -where print st p = print st $ fromPositioned p - instance PrettyPrinter [Token] where print st [] = "" |