Agda-2.4.0.2: A dependently typed functional programming language and proof assistant

Safe HaskellNone
LanguageHaskell98

Agda.TypeChecking.Monad.State

Contents

Description

Lenses for TCState and more.

Synopsis

Documentation

resetState :: TCM () Source

Resets the non-persistent part of the type checking state.

resetAllState :: TCM () Source

Resets all of the type checking state.

Keep only Benchmark information.

localTCState :: TCM a -> TCM a Source

Restore TCState after performing subcomputation.

In contrast to localState, the Benchmark info from the subcomputation is saved.

Lens for persistent state

Scope

getScope :: TCM ScopeInfo Source

Get the current scope.

setScope :: ScopeInfo -> TCM () Source

Set the current scope.

modifyScope :: (ScopeInfo -> ScopeInfo) -> TCM () Source

Modify the current scope.

withScope :: ScopeInfo -> TCM a -> TCM (a, ScopeInfo) Source

Run a computation in a local scope.

withScope_ :: ScopeInfo -> TCM a -> TCM a Source

Same as withScope, but discard the scope from the computation.

localScope :: TCM a -> TCM a Source

Discard any changes to the scope by a computation.

notInScope :: QName -> TCM a Source

Scope error.

printScope :: String -> Int -> String -> TCM () Source

Debug print the scope.

Top level module

setTopLevelModule :: QName -> TCM () Source

Set the top-level module. This affects the global module id of freshly generated names.

withTopLevelModule :: QName -> TCM a -> TCM a Source

Use a different top-level module for a computation. Used when generating names for imported modules.

Haskell imports

addHaskellImport :: String -> TCM () Source

Tell the compiler to import the given Haskell module.

getHaskellImports :: TCM (Set String) Source

Get the Haskell imports.

Interaction output callback

Pattern synonyms

Benchmark

getBenchmark :: TCM Benchmark Source

Lens getter for Benchmark from TCM.

modifyBenchmark :: (Benchmark -> Benchmark) -> TCM () Source

Lens modify for Benchmark.

freshTCM :: TCM a -> TCM (Either TCErr a) Source

Run a fresh instance of the TCM (with initial state). Benchmark info is preserved.