purescript-0.9.1: src/Language/PureScript/CoreFn/Meta.hs
-- |
-- 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, Read, 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, Read, Eq)