ddc-core-salt-0.3.2.1: DDC/Core/Salt/Profile.hs
-- | Language profile for Disciple Core Salt.
module DDC.Core.Salt.Profile
( profile
, lexModuleString
, lexExpString)
where
import DDC.Core.Salt.Env
import DDC.Core.Salt.Name
import DDC.Core.Fragment
import DDC.Core.Lexer
import DDC.Data.Token
import qualified DDC.Type.Env as Env
-- | Language profile for Disciple Core Salt.
profile :: Profile Name
profile
= Profile
{ profileName = "Salt"
, profileFeatures = features
, profilePrimDataDefs = primDataDefs
, profilePrimSupers = Env.empty
, profilePrimKinds = primKindEnv
, profilePrimTypes = primTypeEnv
, profileTypeIsUnboxed = typeIsUnboxed }
-- | The Salt fragment doesn't support many features.
-- No nested functions, no partial application and so on.
features :: Features
features = zeroFeatures
{ featuresFunctionalEffects = True
, featuresFunctionalClosures = True
, featuresDebruijnBinders = True
, featuresUnusedBindings = True }
-- | Lex a string to tokens, using primitive names.
lexModuleString
:: String -- ^ Source file name.
-> Int -- ^ Starting line number.
-> String -- ^ String to parse.
-> [Token (Tok Name)]
lexModuleString sourceName lineStart str
= map rn $ lexModuleWithOffside sourceName lineStart str
where rn (Token strTok sp)
= case renameTok readName strTok of
Just t' -> Token t' sp
Nothing -> Token (KJunk "lexical error") sp
-- | Lex a string to tokens, using primitive names.
lexExpString
:: String -- ^ Source file name.
-> Int -- ^ Starting line number.
-> String -- ^ String to parse.
-> [Token (Tok Name)]
lexExpString sourceName lineStart str
= map rn $ lexExp sourceName lineStart str
where rn (Token strTok sp)
= case renameTok readName strTok of
Just t' -> Token t' sp
Nothing -> Token (KJunk "lexical error") sp