When using TH to splice expressions involving record field construction,
the parent datacon may not be in scope. We shouldn't panic about this,
because we will be renaming Exact RdrNames which don't require any
disambiguation.
Reviewers: austin, bgamari
Reviewed By: bgamari
Differential Revision: https://phabricator.haskell.org/D2321
GHC Trac Issues: #12130
Origin: upstream, https://git.haskell.org/ghc.git/commitdiff/
694e0f3a08030
Gbp-Pq: Name find-tycon-panic
find_tycon :: GlobalRdrEnv -> Name {- DataCon -} -> Maybe Name {- TyCon -}
-- Return the parent *type constructor* of the data constructor
-- (that is, the parent of the data constructor),
- -- or 'Nothing' if it is a pattern synonym.
+ -- or 'Nothing' if it is a pattern synonym or not in scope.
-- That's the parent to use for looking up record fields.
find_tycon env con
| Just (AConLike (RealDataCon dc)) <- wiredInNameTyThing_maybe con
ParentIs p -> Just p
_ -> Nothing
- | otherwise
- = pprPanic "find_tycon" (ppr con $$ ppr (lookupGRE_Name env con))
+ | otherwise = Nothing
+ -- This can happen if the datacon is not in scope
+ -- and we are in a TH splice (Trac #12130)
dup_flds :: [[RdrName]]
-- Each list represents a RdrName that occurred more than once