diff options
Diffstat (limited to 'hsm-core/Hsm/Core/Serial.hs')
-rw-r--r-- | hsm-core/Hsm/Core/Serial.hs | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/hsm-core/Hsm/Core/Serial.hs b/hsm-core/Hsm/Core/Serial.hs index 9a4d2b7..7c607ff 100644 --- a/hsm-core/Hsm/Core/Serial.hs +++ b/hsm-core/Hsm/Core/Serial.hs @@ -2,21 +2,22 @@ module Hsm.Core.Serial ( makeSerial - ) where + ) +where import GHC.Num (integerFromInt) import Language.Haskell.TH - ( Body(NormalB) - , Clause(Clause) - , Con(NormalC) - , Dec(DataD, FunD, SigD) - , DerivClause(DerivClause) - , Exp(LitE) - , Lit(IntegerL) + ( Body (NormalB) + , Clause (Clause) + , Con (NormalC) + , Dec (DataD, FunD, SigD) + , DerivClause (DerivClause) + , Exp (LitE) + , Lit (IntegerL) , Name - , Pat(ConP) + , Pat (ConP) , Q - , Type(AppT, ArrowT, ConT) + , Type (AppT, ArrowT, ConT) , mkName ) |