26 lines
641 B
Haskell
26 lines
641 B
Haskell
module Env where
|
|
|
|
import Code (Interp (..))
|
|
import Control.Monad.IO.Class
|
|
import Control.Monad.Trans.State.Lazy
|
|
import qualified IR
|
|
import qualified Operators
|
|
import System.Console.Haskeline
|
|
|
|
type PrlgEnv a = StateT Code.Interp (InputT IO) a
|
|
|
|
withStrTable :: (IR.StrTable -> (IR.StrTable, a)) -> PrlgEnv a
|
|
withStrTable f = do
|
|
st <- gets strtable
|
|
let (st', x) = f st
|
|
modify (\s -> s {strtable = st'})
|
|
return x
|
|
|
|
findStruct :: String -> Int -> PrlgEnv IR.Id
|
|
findStruct str arity = do
|
|
stri <- findAtom str
|
|
return IR.Id {IR.str = stri, IR.arity = arity}
|
|
|
|
findAtom :: String -> PrlgEnv Int
|
|
findAtom = withStrTable . flip IR.strtablize
|