-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
22 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,26 @@ | ||
{-# LANGUAGE MultiParamTypeClasses #-} | ||
{-# LANGUAGE MultiParamTypeClasses,CPP #-} | ||
module Insomnia.ValueConstructor where | ||
|
||
#if MIN_VERSION_base(4,7,0) | ||
#else | ||
import Data.Typeable (Typeable) | ||
#endif | ||
import Unbound.Generics.LocallyNameless (Alpha) | ||
|
||
data ValueConstructor | ||
|
||
data ConstructorDef | ||
|
||
instance Show ConstructorDef | ||
#if MIN_VERSION_base(4,7,0) | ||
#else | ||
instance Typeable ConstructorDef | ||
#endif | ||
instance Alpha ConstructorDef | ||
|
||
instance Show ValueConstructor | ||
#if MIN_VERSION_base(4,7,0) | ||
#else | ||
instance Typeable ValueConstructor | ||
#endif | ||
instance Alpha ValueConstructor |