[Git][ghc/ghc][master] Refactoring: Use bindSigTyVarsFV in rnMethodBinds
Marge Bot
gitlab at gitlab.haskell.org
Wed May 6 08:44:07 UTC 2020
Marge Bot pushed to branch master at Glasgow Haskell Compiler / GHC
Commits:
9afd9251 by Ryan Scott at 2020-05-06T04:43:58-04:00
Refactoring: Use bindSigTyVarsFV in rnMethodBinds
`rnMethodBinds` was explicitly using `xoptM` to determine if
`ScopedTypeVariables` is enabled before bringing type variables
bound by the class/instance header into scope. However, this `xoptM`
logic is already performed by the `bindSigTyVarsFV` function. This
patch uses `bindSigTyVarsFV` in `rnMethodBinds` to reduce the number
of places where we need to consult if `ScopedTypeVariables` is on.
This is purely refactoring, and there should be no user-visible
change in behavior.
- - - - -
1 changed file:
- compiler/GHC/Rename/Bind.hs
Changes:
=====================================
compiler/GHC/Rename/Bind.hs
=====================================
@@ -869,8 +869,7 @@ rnMethodBinds is_cls_decl cls ktv_names binds sigs
-- Rename the bindings RHSs. Again there's an issue about whether the
-- type variables from the class/instance head are in scope.
-- Answer no in Haskell 2010, but yes if you have -XScopedTypeVariables
- ; scoped_tvs <- xoptM LangExt.ScopedTypeVariables
- ; (binds'', bind_fvs) <- maybe_extend_tyvar_env scoped_tvs $
+ ; (binds'', bind_fvs) <- bindSigTyVarsFV ktv_names $
do { binds_w_dus <- mapBagM (rnLBind (mkScopedTvFn other_sigs')) binds'
; let bind_fvs = foldr (\(_,_,fv1) fv2 -> fv1 `plusFV` fv2)
emptyFVs binds_w_dus
@@ -878,12 +877,6 @@ rnMethodBinds is_cls_decl cls ktv_names binds sigs
; return ( binds'', spec_inst_prags' ++ other_sigs'
, sig_fvs `plusFV` sip_fvs `plusFV` bind_fvs) }
- where
- -- For the method bindings in class and instance decls, we extend
- -- the type variable environment iff -XScopedTypeVariables
- maybe_extend_tyvar_env scoped_tvs thing_inside
- | scoped_tvs = extendTyVarEnvFVRn ktv_names thing_inside
- | otherwise = thing_inside
rnMethodBindLHS :: Bool -> Name
-> LHsBindLR GhcPs GhcPs
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/9afd92512b41cf6c6de3a17b474d8d4bb01158c3
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/9afd92512b41cf6c6de3a17b474d8d4bb01158c3
You're receiving this email because of your account on gitlab.haskell.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/ghc-commits/attachments/20200506/6872cd6b/attachment.html>
More information about the ghc-commits
mailing list