purescript-0.6.3: src/Language/PureScript/TypeClassDictionaries.hs
-----------------------------------------------------------------------------
--
-- Module : Language.PureScript.TypeClassDictionaries
-- Copyright : (c) 2014 Phil Freeman
-- License : MIT
--
-- Maintainer : Phil Freeman <paf31@cantab.net>
-- Stability : experimental
-- Portability :
--
-- |
--
-----------------------------------------------------------------------------
{-# LANGUAGE DeriveDataTypeable #-}
module Language.PureScript.TypeClassDictionaries where
import Data.Data
import Language.PureScript.Names
import Language.PureScript.Types
-- |
-- Data representing a type class dictionary which is in scope
--
data TypeClassDictionaryInScope
= TypeClassDictionaryInScope {
-- |
-- The identifier with which the dictionary can be accessed at runtime
--
tcdName :: Qualified Ident
-- |
-- The name of the type class to which this type class instance applies
--
, tcdClassName :: Qualified ProperName
-- |
-- The types to which this type class instance applies
--
, tcdInstanceTypes :: [Type]
-- |
-- Type class dependencies which must be satisfied to construct this dictionary
--
, tcdDependencies :: Maybe [Constraint]
-- |
-- The type of this dictionary
--
, tcdType :: TypeClassDictionaryType
-- |
-- Is this instance exported by its module?
--
, tcdExported :: Bool
} deriving (Show, Data, Typeable)
-- |
-- The type of a type class dictionary
--
data TypeClassDictionaryType
-- |
-- A regular type class dictionary
--
= TCDRegular
-- |
-- A type class dictionary which is an alias for an imported dictionary from another module
--
| TCDAlias (Qualified Ident) deriving (Show, Eq, Data, Typeable)
-- |
-- Find the original dictionary which a type class dictionary in scope refers to
--
canonicalizeDictionary :: TypeClassDictionaryInScope -> Qualified Ident
canonicalizeDictionary (TypeClassDictionaryInScope { tcdType = TCDRegular, tcdName = nm }) = nm
canonicalizeDictionary (TypeClassDictionaryInScope { tcdType = TCDAlias nm }) = nm