module Data.Derive.TopDown (
module Data.Derive.TopDown.Standalone
, module Data.Derive.TopDown.Instance
, module Data.Derive.TopDown.TH
, module Data.Derive.TopDown.CxtGen
#if __GLASGOW_HASKELL__ >= 802
, stock, anyclass, newtype_
, DerivStrategy(StockStrategy, AnyclassStrategy, NewtypeStrategy)
#endif
)
where
#if __GLASGOW_HASKELL__ >= 802
import Language.Haskell.TH.Syntax
#endif
import Data.Derive.TopDown.Standalone
import Data.Derive.TopDown.Instance
import Data.Derive.TopDown.TH
import Data.Derive.TopDown.CxtGen
#if __GLASGOW_HASKELL__ >= 802
stock, anyclass, newtype_ :: DerivStrategy
stock :: DerivStrategy
stock = DerivStrategy
StockStrategy
anyclass :: DerivStrategy
anyclass = DerivStrategy
AnyclassStrategy
newtype_ :: DerivStrategy
newtype_ = DerivStrategy
NewtypeStrategy
#endif