Skip to content
Snippets Groups Projects
Commit 623d2692 authored by Mikhail Glushenkov's avatar Mikhail Glushenkov
Browse files

Merge pull request #2831 from RyanGlScott/master

Add DeriveLift to Language.Haskell.Extension
parents 83cbe94e 56f9639d
No related branches found
No related tags found
No related merge requests found
...@@ -714,6 +714,11 @@ data KnownExtension = ...@@ -714,6 +714,11 @@ data KnownExtension =
-- * <http://www.haskell.org/ghc/docs/latest/html/users_guide/other-type-extensions.html#derive-any-class> -- * <http://www.haskell.org/ghc/docs/latest/html/users_guide/other-type-extensions.html#derive-any-class>
| DeriveAnyClass | DeriveAnyClass
-- | Enable @deriving@ for the 'Language.Haskell.TH.Syntax.Lift' class.
--
-- * <http://www.haskell.org/ghc/docs/latest/html/users_guide/deriving.html#deriving-lift>
| DeriveLift
deriving (Generic, Show, Read, Eq, Ord, Enum, Bounded, Typeable, Data) deriving (Generic, Show, Read, Eq, Ord, Enum, Bounded, Typeable, Data)
instance Binary KnownExtension instance Binary KnownExtension
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment