blob: 7c2015cc333d3839e8f9d9a8ec2465aa6585ed90 (
plain)
1
2
3
4
5
6
|
module GHC.HsToCore.Binds where
import GHC.HsToCore.Monad ( DsM )
import GHC.Core ( CoreExpr )
import GHC.Tc.Types.Evidence (HsWrapper)
dsHsWrapper :: HsWrapper -> ((CoreExpr -> CoreExpr) -> DsM a) -> DsM a
|