purescript-ast-0.1.0.0: src/Language/PureScript/AST/Literals.hs
-- |
-- The core functional representation for literal values.
--
module Language.PureScript.AST.Literals where
import Prelude.Compat
import Language.PureScript.PSString (PSString)
-- |
-- Data type for literal values. Parameterised so it can be used for Exprs and
-- Binders.
--
data Literal a
-- |
-- A numeric literal
--
= NumericLiteral (Either Integer Double)
-- |
-- A string literal
--
| StringLiteral PSString
-- |
-- A character literal
--
| CharLiteral Char
-- |
-- A boolean literal
--
| BooleanLiteral Bool
-- |
-- An array literal
--
| ArrayLiteral [a]
-- |
-- An object literal
--
| ObjectLiteral [(PSString, a)]
deriving (Eq, Ord, Show, Functor)