forked from purescript/purescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMeta.hs
More file actions
42 lines (38 loc) · 830 Bytes
/
Meta.hs
File metadata and controls
42 lines (38 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
-- |
-- Metadata annotations for core functional representation
--
module Language.PureScript.CoreFn.Meta where
import Prelude.Compat
import Language.PureScript.Names
-- |
-- Metadata annotations
--
data Meta
-- |
-- The contained value is a data constructor
--
= IsConstructor ConstructorType [Ident]
-- |
-- The contained value is a newtype
--
| IsNewtype
-- |
-- The contained value is a typeclass dictionary constructor
--
| IsTypeClassConstructor
-- |
-- The contained reference is for a foreign member
--
| IsForeign deriving (Show, Eq)
-- |
-- Data constructor metadata
--
data ConstructorType
-- |
-- The constructor is for a type with a single construcor
--
= ProductType
-- |
-- The constructor is for a type with multiple construcors
--
| SumType deriving (Show, Eq)