Changeset 26 for src/Pretty.hs
- Timestamp:
- 02/14/05 06:02:18 (4 years ago)
- svk:copy_cache_prev:
- 1041
- Files:
-
- 1 modified
-
src/Pretty.hs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Pretty.hs
r25 r26 27 27 pretty (Val (VError msg (NonTerm pos))) = "Syntax error at " ++ (show pos) ++ msg 28 28 pretty x = show x 29 30 instance Pretty Env where 31 pretty x = "{ " ++ (pretty $ envBody x) ++ " }" 29 32 30 33 instance Pretty Val where
