Agda
Safe HaskellNone
LanguageHaskell2010

Agda.Interaction.Imports

Description

This module deals with finding imported modules and loading their interface files.

Synopsis

Documentation

data Mode Source #

Is the aim to type-check the top-level module, or only to scope-check it?

Instances

Instances details
Show Mode Source # 
Instance details

Defined in Agda.Interaction.Imports

Methods

showsPrec :: Int -> Mode -> ShowS #

show :: Mode -> String #

showList :: [Mode] -> ShowS #

Eq Mode Source # 
Instance details

Defined in Agda.Interaction.Imports

Methods

(==) :: Mode -> Mode -> Bool #

(/=) :: Mode -> Mode -> Bool #

pattern ScopeCheck :: Mode Source #

pattern TypeCheck :: Mode Source #

data CheckResult where Source #

The result and associated parameters of a type-checked file, when invoked directly via interaction or a backend. Note that the constructor is not exported.

Bundled Patterns

pattern CheckResult :: Interface -> Set TCWarning -> ModuleCheckMode -> Source -> CheckResult

Flattened unidirectional pattern for CheckResult for destructuring inside the ModuleInfo field.

data Source Source #

The decorated source code.

Constructors

Source 

Fields

scopeCheckImport :: TopLevelModuleName -> TCM (ModuleName, Map ModuleName Scope) Source #

Scope checks the given module, generating an interface or retrieving an existing one. Returns the module name and exported scope from the interface.

parseSource :: SourceFile -> TCM Source Source #

Parses a source file and prepares the Source record.

typeCheckMain Source #

Arguments

:: Mode

Should the file be type-checked, or only scope-checked?

-> Source

The decorated source code.

-> TCM CheckResult 

Type checks the main file of the interaction. This could be the file loaded in the interacting editor (emacs), or the file passed on the command line.

First, the primitive modules are imported. Then, getInterface is called to do the main work.

If the Mode is ScopeCheck, then type-checking is not performed, only scope-checking. (This may include type-checking of imported modules.) In this case the generated, partial interface is not stored in the state (stDecodedModules). Note, however, that if the file has already been type-checked, then a complete interface is returned.

getNonMainInterface Source #

Arguments

:: TopLevelModuleName 
-> Maybe Source

Optional: the source code and some information about the source code.

-> TCM Interface 

Tries to return the interface associated to the given (imported) module. The time stamp of the relevant interface file is also returned. Calls itself recursively for the imports of the given module. May type check the module. An error is raised if a warning is encountered.

Do not use this for the main file, use typeCheckMain instead.

getNonMainModuleInfo Source #

Arguments

:: TopLevelModuleName 
-> Maybe Source

Optional: the source code and some information about the source code.

-> TCM ModuleInfo 

getInterface Source #

Arguments

:: TopLevelModuleName 
-> MainInterface 
-> Maybe Source

Optional: the source code and some information about the source code.

-> TCM ModuleInfo 

A more precise variant of getNonMainInterface. If warnings are encountered then they are returned instead of being turned into errors.

importPrimitiveModules :: TCM () Source #

Import the primitive modules (unless --no-load-primitives).

raiseNonFatalErrors Source #

Arguments

:: (HasOptions m, MonadTCError m) 
=> CheckResult

E.g. obtained from typeCheckMain.

-> m () 

If checking produced non-benign warnings, error out.

readInterface :: InterfaceFile -> TCM (Maybe Interface) Source #

Read interface file corresponding to a module.