[commit: ghc] wip/T8776: Honor Op_PrintExplicitForalls setting in pprIfaceForAllPart (a819a19)
git at git.haskell.org
git at git.haskell.org
Fri Mar 14 13:35:54 UTC 2014
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/T8776
Link : http://ghc.haskell.org/trac/ghc/changeset/a819a19d5956bd9712bc044b42ac64a1c437b7d2/ghc
>---------------------------------------------------------------
commit a819a19d5956bd9712bc044b42ac64a1c437b7d2
Author: Dr. ERDI Gergo <gergo at erdi.hu>
Date: Fri Mar 14 19:50:15 2014 +0800
Honor Op_PrintExplicitForalls setting in pprIfaceForAllPart
>---------------------------------------------------------------
a819a19d5956bd9712bc044b42ac64a1c437b7d2
compiler/iface/IfaceType.lhs | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/compiler/iface/IfaceType.lhs b/compiler/iface/IfaceType.lhs
index 8c1791a..e4a789f 100644
--- a/compiler/iface/IfaceType.lhs
+++ b/compiler/iface/IfaceType.lhs
@@ -31,6 +31,8 @@ module IfaceType (
) where
import Coercion
+import TcType
+import DynFlags
import TypeRep hiding( maybeParen )
import Unique( hasKey )
import TyCon
@@ -248,7 +250,7 @@ ppr_ty ctxt_prec ty@(IfaceForAllTy _ _)
where
(tvs, theta, tau) = splitIfaceSigmaTy ty
- -------------------
+-------------------
-- needs to handle type contexts and coercion contexts, hence the
-- generality
pprIfaceForAllPart :: Outputable a => [IfaceTvBndr] -> [a] -> SDoc -> SDoc
@@ -256,7 +258,10 @@ pprIfaceForAllPart tvs ctxt doc
= sep [ppr_tvs, pprIfaceContextArr ctxt, doc]
where
ppr_tvs | null tvs = empty
- | otherwise = ptext (sLit "forall") <+> pprIfaceTvBndrs tvs <> dot
+ | otherwise = sdocWithDynFlags $ \ dflags ->
+ if gopt Opt_PrintExplicitForalls dflags
+ then ptext (sLit "forall") <+> pprIfaceTvBndrs tvs <> dot
+ else empty
-------------------
ppr_tc_app :: (Int -> a -> SDoc) -> Int -> IfaceTyCon -> [a] -> SDoc
More information about the ghc-commits
mailing list