mirror of
https://github.com/github/semantic.git
synced 2024-11-28 18:23:44 +03:00
66 lines
2.1 KiB
Haskell
66 lines
2.1 KiB
Haskell
{-# LANGUAGE TypeOperators #-}
|
|
module Control.Abstract.Evaluator.Spec
|
|
( spec
|
|
, SpecEff(..)
|
|
) where
|
|
|
|
import Analysis.Abstract.Evaluating (evaluating)
|
|
import Control.Abstract
|
|
import Data.Abstract.Module
|
|
import qualified Data.Abstract.Number as Number
|
|
import Data.Abstract.Package
|
|
import Data.Abstract.Value as Value
|
|
import Data.Algebra
|
|
import Data.Bifunctor (first)
|
|
import Data.Functor.Const
|
|
import Data.Sum
|
|
import SpecHelpers hiding (reassociate)
|
|
|
|
spec :: Spec
|
|
spec = parallel $ do
|
|
it "constructs integers" $ do
|
|
(_, expected) <- evaluate (box (integer 123))
|
|
expected `shouldBe` Right (Value.Integer (Number.Integer 123))
|
|
|
|
it "calls functions" $ do
|
|
(_, expected) <- evaluate $ do
|
|
identity <- closure [name "x"] lowerBound (variable (name "x"))
|
|
call identity [box (integer 123)]
|
|
expected `shouldBe` Right (Value.Integer (Number.Integer 123))
|
|
|
|
evaluate
|
|
= runM
|
|
. evaluating @_ @Precise @Val
|
|
. runReader (PackageInfo (name "test") Nothing mempty)
|
|
. runReader (ModuleInfo "test/Control/Abstract/Evaluator/Spec.hs")
|
|
. fmap reassociate
|
|
. runValueError
|
|
. runEnvironmentError
|
|
. runAddressError
|
|
. runAllocator
|
|
. (>>= deref . snd)
|
|
. runEnv lowerBound
|
|
. runReturn
|
|
. runLoopControl
|
|
|
|
reassociate :: Either (SomeExc exc1) (Either (SomeExc exc2) (Either (SomeExc exc3) result)) -> Either (SomeExc (Sum '[exc3, exc2, exc1])) result
|
|
reassociate = mergeExcs . mergeExcs . mergeExcs . Right
|
|
|
|
type Val = Value Precise SpecEff
|
|
newtype SpecEff a = SpecEff
|
|
{ runSpecEff :: Eff '[ LoopControl Precise
|
|
, Return Precise
|
|
, Env Precise
|
|
, Allocator Precise Val
|
|
, Resumable (AddressError Precise Val)
|
|
, Resumable (EnvironmentError Precise)
|
|
, Resumable (ValueError Precise SpecEff)
|
|
, Reader ModuleInfo
|
|
, Reader PackageInfo
|
|
, Fresh
|
|
, State (Heap Precise Latest Val)
|
|
, State (ModuleTable (Maybe (Environment Precise, Precise)))
|
|
, Lift IO
|
|
] a
|
|
}
|