RunStaticAna.hs revision 3c6e3a9b93e3e56b038f42c7acc30e53c1f0d624
{- |
Module : $Header$
Copyright : (c) Christian Maeder and Uni Bremen 2002-2003
Licence : similar to LGPL, see HetCATS/LICENCE.txt or LIZENZ.txt
Maintainer : hets@tzi.de
Stability : experimental
Portability : portable
make static analysis checkable by RunParsers
-}
module CASL.RunStaticAna where
import CASL.StaticAna
import CASL.Sign
import Common.AnnoState
import Common.AS_Annotation
import Common.GlobalAnnotations
import Common.Result
import Common.Lib.State
import CASL.Parse_AS_Basic
import CASL.AS_Basic_CASL
localAnalysis :: GlobalAnnos -> BASIC_SPEC () () ()
-> Result (BASIC_SPEC () () ())
localAnalysis ga bs =
let (newBs, sig) = runState (ana_BASIC_SPEC (const id)
(const id) ga bs)
$ emptySign ()
in Result (envDiags sig) $ Just newBs
runAna :: GlobalAnnos -> AParser (Result (BASIC_SPEC () () ()))
runAna ga =
do b <- basicSpec []
return $ localAnalysis ga b
localAna :: GlobalAnnos -> BASIC_SPEC () () () -> Result (Sign () ())
localAna ga bs =
let Result ds (Just (_newBs, difSig, _accSig, _sents)) =
basicAnalysis (const id) (const id) (bs, emptySign () , ga)
es = filter ((<= Error) . diagKind) ds
in Result es $ Just difSig
getSign :: GlobalAnnos -> AParser (Result (Sign () ()))
getSign ga =
do b <- basicSpec []
return $ localAna ga b
props :: GlobalAnnos -> BASIC_SPEC () () () -> Result [Named (FORMULA ())]
props ga bs =
let Result ds (Just (_newBs, _difSig, _accSig, sents)) =
basicAnalysis (const id) (const id) (bs, emptySign (), ga)
es = filter ((<= Error) . diagKind) ds
in Result es $ Just sents
getProps :: GlobalAnnos -> AParser (Result [Named (FORMULA ())])
getProps ga =
do b <- basicSpec []
return $ props ga b