summaryrefslogtreecommitdiff
path: root/compiler/basicTypes/DataCon.lhs-boot
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/basicTypes/DataCon.lhs-boot')
-rw-r--r--compiler/basicTypes/DataCon.lhs-boot2
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/basicTypes/DataCon.lhs-boot b/compiler/basicTypes/DataCon.lhs-boot
index 08920ccf64..6d64828cb1 100644
--- a/compiler/basicTypes/DataCon.lhs-boot
+++ b/compiler/basicTypes/DataCon.lhs-boot
@@ -2,6 +2,7 @@
module DataCon where
import Name( Name, NamedThing )
import {-# SOURCE #-} TyCon( TyCon )
+import FieldLabel ( FieldLabel )
import Unique ( Uniquable )
import Outputable ( Outputable, OutputableBndr )
@@ -9,6 +10,7 @@ data DataCon
data DataConRep
dataConName :: DataCon -> Name
dataConTyCon :: DataCon -> TyCon
+dataConFieldLabels :: DataCon -> [FieldLabel]
isVanillaDataCon :: DataCon -> Bool
instance Eq DataCon