blob: 1e47211460ce4c0fb31184b30c7436ade9002188 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{-
(c) The University of Glasgow 2006
(c) The GRASP/AQUA Project, Glasgow University, 1992-1998
-}
module GHC.Tc.TyCl.Instance ( tcInstDecls1 ) where
import GHC.Hs
import GHC.Tc.Types
import GHC.Tc.Utils.Env( InstInfo )
import GHC.Tc.Deriv
-- We need this because of the mutual recursion
-- between GHC.Tc.TyCl and GHC.Tc.TyCl.Instance
tcInstDecls1 :: [LInstDecl GhcRn]
-> TcM (TcGblEnv, [InstInfo GhcRn], [DerivInfo])
|