[Git][ghc/ghc][wip/T25647] Add comment to clarify implementation details for wildcards in family instances
Patrick (@soulomoon)
gitlab at gitlab.haskell.org
Wed Mar 5 14:24:05 UTC 2025
Patrick pushed to branch wip/T25647 at Glasgow Haskell Compiler / GHC
Commits:
f8b64564 by Patrick at 2025-03-05T22:23:56+08:00
Add comment to clarify implementation details for wildcards in family instances
- - - - -
1 changed file:
- compiler/GHC/Tc/Gen/HsType.hs
Changes:
=====================================
compiler/GHC/Tc/Gen/HsType.hs
=====================================
@@ -2261,12 +2261,13 @@ tcAnonWildCardOcc is_extra (TcTyMode { mode_holes = Just (hole_lvl, hole_mode) }
HM_FamPat _ -> fsLit "_"
HM_VTA -> fsLit "w"
HM_TyAppPat -> fsLit "_"
+
+ -- see Note [Implementation tweak for wildCards in family instances]
mk_wc_details = case hole_mode of
HM_FamPat FreeArg -> newTyVarMetaVarDetailsAtLevel
HM_FamPat ClassArg -> newTauTvDetailsAtLevel
HM_FamPat SigArg -> newTauTvDetailsAtLevel
_ -> newTauTvDetailsAtLevel
- -- see Note [Implementation tweak for wildCards in family instances]
emit_holes = case hole_mode of
HM_Sig -> True
HM_FamPat _ -> False
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/f8b64564d411b8e688884257e7ddf100b0ed6aa6
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/f8b64564d411b8e688884257e7ddf100b0ed6aa6
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/20250305/00ccf8e1/attachment.html>
More information about the ghc-commits
mailing list