----------------------------------------------------------------------------- -- -- Module : Language.PureScript.Kinds -- Copyright : (c) Phil Freeman 2013 -- License : MIT -- -- Maintainer : Phil Freeman -- Stability : experimental -- Portability : -- -- | -- ----------------------------------------------------------------------------- {-# LANGUAGE DeriveDataTypeable #-} module Language.PureScript.Kinds where import Data.Data data Kind = KUnknown Int | Star | Row | FunKind Kind Kind deriving (Show, Eq, Data, Typeable)