{-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE TypeSynonymInstances #-} -- | The internal FFI module. module Fay.FFI (Fay ,Nullable (..) ,Defined (..) ,Ptr ,Automatic ,ffi) where import Data.String (IsString) import Fay.Types import Prelude (error) -- | Values that may be null -- Nullable x decodes to x, Null decodes to null. data Nullable a = Nullable a | Null -- | Values that may be undefined -- Defined x encodes to x, Undefined decodes to undefined. -- An undefined property in a record will be removed when encoding. data Defined a = Defined a | Undefined -- | Do not serialize the specified type. This is useful for, e.g. -- -- > foo :: String -> String -- > foo = ffi "%1" -- -- This would normally serialize and unserialize the string, for no -- reason, in this case. Instead: -- -- > foo :: Ptr String -> Ptr String -- -- Will just give an identity function. type Ptr a = a -- | The opposite of "Ptr". Serialize the specified polymorphic type. -- -- > foo :: Automatic a -> String -- type Automatic a = a -- | Declare a foreign action. ffi :: IsString s => s -- ^ The foreign value. -> a -- ^ Bottom. ffi = error "Fay.FFI.ffi: Used foreign function outside a JS engine context."