summaryrefslogtreecommitdiff
path: root/src/GF/Printing/PrintParser.hs
diff options
context:
space:
mode:
authorpeb <unknown>2005-03-29 10:17:53 +0000
committerpeb <unknown>2005-03-29 10:17:53 +0000
commit67aa6e7a81d8d22ff8409ed59fab7bacde2312a6 (patch)
tree1759bd8e1b314e2b98ffb0a6116e2a1fb515908d /src/GF/Printing/PrintParser.hs
parentccf6017b030fcefd5964979f1b6d55e722616ef7 (diff)
"Committed_by_peb"
Diffstat (limited to 'src/GF/Printing/PrintParser.hs')
-rw-r--r--src/GF/Printing/PrintParser.hs8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/GF/Printing/PrintParser.hs b/src/GF/Printing/PrintParser.hs
index 3971f0a40..0869bf685 100644
--- a/src/GF/Printing/PrintParser.hs
+++ b/src/GF/Printing/PrintParser.hs
@@ -5,9 +5,9 @@
-- Stability : (stable)
-- Portability : (portable)
--
--- > CVS $Date: 2005/03/21 14:17:44 $
+-- > CVS $Date: 2005/03/29 11:17:56 $
-- > CVS $Author: peb $
--- > CVS $Revision: 1.1 $
+-- > CVS $Revision: 1.2 $
--
-- Pretty-printing of parser objects
-----------------------------------------------------------------------------
@@ -69,6 +69,10 @@ instance Print Int where
instance Print Integer where
prt = show
+instance Print a => Print (Maybe a) where
+ prt (Just a) = "!" ++ prt a
+ prt Nothing = "Nothing"
+
instance Print a => Print (Err a) where
prt (Ok a) = prt a
prt (Bad str) = str