[project @ 1998-12-02 13:17:09 by simonm]
[ghc-hetmet.git] / ghc / compiler / basicTypes / FieldLabel.lhs
1 %
2 % (c) The AQUA Project, Glasgow University, 1996-1998
3 %
4 \section[FieldLabel]{The @FieldLabel@ type}
5
6 \begin{code}
7 module FieldLabel where
8
9 #include "HsVersions.h"
10
11 import {-# SOURCE #-}   Type( Type )    -- FieldLabel is compiled very early
12
13 import Name             ( Name{-instance Eq/Outputable-}, NamedThing(..), nameUnique )
14 import Outputable
15 import Unique           ( Uniquable(..) )
16 \end{code}
17
18 \begin{code}
19 data FieldLabel
20   = FieldLabel  Name            -- Also used as the Name of the field selector Id
21                 Type            -- Type of the field; may have free type variables that
22                                 -- are the tyvar of the constructor
23                                 -- e.g.  data T a = MkT { op1 :: a -> a, op2 :: a -> Int }
24                                 -- The type in the FieldLabel for op1 will be simply (a->a).
25
26                 FieldLabelTag   -- Indicates position within constructor
27                                 -- (starting with firstFieldLabelTag)
28                                 --
29                                 -- If the same field occurs in more than one constructor
30                                 -- then it'll have a separate FieldLabel on each occasion,
31                                 -- but with a single name (and presumably the same type!)
32
33 type FieldLabelTag = Int
34
35 mkFieldLabel = FieldLabel
36
37 firstFieldLabelTag :: FieldLabelTag
38 firstFieldLabelTag = 1
39
40 allFieldLabelTags :: [FieldLabelTag]
41 allFieldLabelTags = [firstFieldLabelTag..]
42
43 fieldLabelName (FieldLabel n _  _)   = n
44 fieldLabelType (FieldLabel _ ty _)   = ty
45 fieldLabelTag  (FieldLabel _ _  tag) = tag
46
47 instance Eq FieldLabel where
48     (FieldLabel n1 _ _) == (FieldLabel n2 _ _) = n1 == n2
49
50 instance Outputable FieldLabel where
51     ppr (FieldLabel n _ _) = ppr n
52
53 instance NamedThing FieldLabel where
54     getName (FieldLabel n _ _) = n
55
56 instance Uniquable FieldLabel where
57     getUnique (FieldLabel n _ _) = nameUnique n
58 \end{code}