Changeset 26 for src/Pretty.hs

Show
Ignore:
Timestamp:
02/14/05 06:02:18 (4 years ago)
Author:
autrijus
svk:copy_cache_prev:
1041
Message:

* snapshot during monadic refactoring

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/Pretty.hs

    r25 r26  
    2727    pretty (Val (VError msg (NonTerm pos))) = "Syntax error at " ++ (show pos) ++ msg 
    2828    pretty x = show x 
     29 
     30instance Pretty Env where 
     31    pretty x = "{ " ++ (pretty $ envBody x) ++ " }" 
    2932 
    3033instance Pretty Val where