diff options
author | Manuel M T Chakravarty <chak@cse.unsw.edu.au> | 2006-10-19 16:58:40 +0000 |
---|---|---|
committer | Manuel M T Chakravarty <chak@cse.unsw.edu.au> | 2006-10-19 16:58:40 +0000 |
commit | f515d87a510f9cd3d416d83e95e6e0f0298f7d18 (patch) | |
tree | 5afb555b63323587f44bf5610af2aaadd83de681 /compiler/iface/LoadIface.lhs | |
parent | 6b3063e1d545e56d9c65f52a58459f5fce049128 (diff) | |
download | haskell-f515d87a510f9cd3d416d83e95e6e0f0298f7d18.tar.gz |
Fix show-iface for family instances & add debug ppr for type declarations
Diffstat (limited to 'compiler/iface/LoadIface.lhs')
-rw-r--r-- | compiler/iface/LoadIface.lhs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/iface/LoadIface.lhs b/compiler/iface/LoadIface.lhs index 0d9feb4f8d..9c89f18da9 100644 --- a/compiler/iface/LoadIface.lhs +++ b/compiler/iface/LoadIface.lhs @@ -555,6 +555,7 @@ pprModIface iface , pprFixities (mi_fixities iface) , vcat (map pprIfaceDecl (mi_decls iface)) , vcat (map ppr (mi_insts iface)) + , vcat (map ppr (mi_fam_insts iface)) , vcat (map ppr (mi_rules iface)) , pprDeprecs (mi_deprecs iface) ] |