X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=compiler%2Ftypecheck%2FTcRules.lhs;h=3ee95cf4a28109d8ec3039be942ca80bcf99b4dd;hb=029c4588e6e022aa15e465cc67082378d4ee2bea;hp=db7c805caa8036a7d148a60ca510d0b818cf7e5c;hpb=ad94d40948668032189ad22a0ad741ac1f645f50;p=ghc-hetmet.git diff --git a/compiler/typecheck/TcRules.lhs b/compiler/typecheck/TcRules.lhs index db7c805..3ee95cf 100644 --- a/compiler/typecheck/TcRules.lhs +++ b/compiler/typecheck/TcRules.lhs @@ -10,13 +10,11 @@ TcRules: Typechecking transformation rules -- The above warning supression flag is a temporary kludge. -- While working on this module you are encouraged to remove it and fix -- any warnings in the module. See --- http://hackage.haskell.org/trac/ghc/wiki/CodingStyle#Warnings +-- http://hackage.haskell.org/trac/ghc/wiki/Commentary/CodingStyle#Warnings -- for details module TcRules ( tcRules ) where -#include "HsVersions.h" - import HsSyn import TcRnMonad import TcSimplify @@ -30,29 +28,29 @@ import Id import Name import SrcLoc import Outputable +import FastString \end{code} \begin{code} tcRules :: [LRuleDecl Name] -> TcM [LRuleDecl TcId] -tcRules decls = mappM (wrapLocM tcRule) decls +tcRules decls = mapM (wrapLocM tcRule) decls tcRule :: RuleDecl Name -> TcM (RuleDecl TcId) tcRule (HsRule name act vars lhs fv_lhs rhs fv_rhs) - = addErrCtxt (ruleCtxt name) $ - traceTc (ptext SLIT("---- Rule ------") - <+> ppr name) `thenM_` - newFlexiTyVarTy openTypeKind `thenM` \ rule_ty -> + = addErrCtxt (ruleCtxt name) $ do + traceTc (ptext (sLit "---- Rule ------") <+> ppr name) + rule_ty <- newFlexiTyVarTy openTypeKind -- Deal with the tyvars mentioned in signatures - tcRuleBndrs vars (\ ids -> + (ids, lhs', rhs', lhs_lie, rhs_lie) <- + tcRuleBndrs vars $ \ ids -> do -- Now LHS and RHS - getLIE (tcMonoExpr lhs rule_ty) `thenM` \ (lhs', lhs_lie) -> - getLIE (tcMonoExpr rhs rule_ty) `thenM` \ (rhs', rhs_lie) -> - returnM (ids, lhs', rhs', lhs_lie, rhs_lie) - ) `thenM` \ (ids, lhs', rhs', lhs_lie, rhs_lie) -> + (lhs', lhs_lie) <- getLIE (tcMonoExpr lhs rule_ty) + (rhs', rhs_lie) <- getLIE (tcMonoExpr rhs rule_ty) + return (ids, lhs', rhs', lhs_lie, rhs_lie) -- Check that LHS has no overloading at all - tcSimplifyRuleLhs lhs_lie `thenM` \ (lhs_dicts, lhs_binds) -> + (lhs_dicts, lhs_binds) <- tcSimplifyRuleLhs lhs_lie -- Gather the template variables and tyvars let @@ -79,18 +77,18 @@ tcRule (HsRule name act vars lhs fv_lhs rhs fv_rhs) -- during zonking (see TcHsSyn.zonkRule) -- forall_tvs = tyVarsOfTypes (rule_ty : map idType tpl_ids) - in + -- RHS can be a bit more lenient. In particular, -- we let constant dictionaries etc float outwards -- -- NB: tcSimplifyInferCheck zonks the forall_tvs, and -- knocks out any that are constrained by the environment - getInstLoc (SigOrigin (RuleSkol name)) `thenM` \ loc -> - tcSimplifyInferCheck loc - forall_tvs - lhs_dicts rhs_lie `thenM` \ (forall_tvs1, rhs_binds) -> + loc <- getInstLoc (SigOrigin (RuleSkol name)) + (forall_tvs1, rhs_binds) <- tcSimplifyInferCheck loc + forall_tvs + lhs_dicts rhs_lie - returnM (HsRule name act + return (HsRule name act (map (RuleBndr . noLoc) (forall_tvs1 ++ tpl_ids)) -- yuk (mkHsDictLet lhs_binds lhs') fv_lhs (mkHsDictLet rhs_binds rhs') fv_rhs) @@ -115,7 +113,7 @@ tcRuleBndrs (RuleBndrSig var rn_ty : vars) thing_inside tcExtendIdEnv [id] $ tcRuleBndrs vars (\ids -> thing_inside (id:ids)) } -ruleCtxt name = ptext SLIT("When checking the transformation rule") <+> +ruleCtxt name = ptext (sLit "When checking the transformation rule") <+> doubleQuotes (ftext name) \end{code}