Safe Haskell | None |
---|---|
Language | Haskell2010 |
Synopsis
- data CommandState = CommandState {}
- type OldInteractionScopes = Map InteractionId ScopeInfo
- initCommandState :: CommandQueue -> CommandState
- type CommandM = StateT CommandState TCM
- data Command' a
- type Command = Command' IOTCM
- data CommandQueue = CommandQueue {}
- type Interaction = Interaction' Range
- data Interaction' range
- = Cmd_load FilePath [String]
- | Cmd_compile CompilerBackend FilePath [String]
- | Cmd_constraints
- | Cmd_metas
- | Cmd_show_module_contents_toplevel Rewrite String
- | Cmd_search_about_toplevel Rewrite String
- | Cmd_solveAll Rewrite
- | Cmd_solveOne Rewrite InteractionId range String
- | Cmd_autoOne InteractionId range String
- | Cmd_autoAll
- | Cmd_infer_toplevel Rewrite String
- | Cmd_compute_toplevel ComputeMode String
- | Cmd_load_highlighting_info FilePath
- | Cmd_tokenHighlighting FilePath Remove
- | Cmd_highlight InteractionId range String
- | ShowImplicitArgs Bool
- | ToggleImplicitArgs
- | Cmd_give UseForce InteractionId range String
- | Cmd_refine InteractionId range String
- | Cmd_intro Bool InteractionId range String
- | Cmd_refine_or_intro Bool InteractionId range String
- | Cmd_context Rewrite InteractionId range String
- | Cmd_helper_function Rewrite InteractionId range String
- | Cmd_infer Rewrite InteractionId range String
- | Cmd_goal_type Rewrite InteractionId range String
- | Cmd_elaborate_give Rewrite InteractionId range String
- | Cmd_goal_type_context Rewrite InteractionId range String
- | Cmd_goal_type_context_infer Rewrite InteractionId range String
- | Cmd_goal_type_context_check Rewrite InteractionId range String
- | Cmd_show_module_contents Rewrite InteractionId range String
- | Cmd_make_case InteractionId range String
- | Cmd_compute ComputeMode InteractionId range String
- | Cmd_why_in_scope InteractionId range String
- | Cmd_why_in_scope_toplevel String
- | Cmd_show_version
- | Cmd_abort
- | Cmd_exit
- type IOTCM = IOTCM' Range
- data IOTCM' range = IOTCM FilePath HighlightingLevel HighlightingMethod (Interaction' range)
- data Remove
- type Parse a = ExceptT String (StateT String Identity) a
- readsToParse :: String -> (String -> Maybe (a, String)) -> Parse a
- parseToReadsPrec :: Parse a -> Int -> String -> [(a, String)]
- exact :: String -> Parse ()
- readParse :: Read a => Parse a
- parens' :: Parse a -> Parse a
- data CompilerBackend
- data Rewrite
- data ComputeMode
- data UseForce
- data OutputForm a b = OutputForm Range [ProblemId] (OutputConstraint a b)
- data OutputConstraint a b
- = OfType b a
- | CmpInType Comparison a b b
- | CmpElim [Polarity] a [b] [b]
- | JustType b
- | CmpTypes Comparison b b
- | CmpLevels Comparison b b
- | CmpTeles Comparison b b
- | JustSort b
- | CmpSorts Comparison b b
- | Guard (OutputConstraint a b) ProblemId
- | Assign b a
- | TypedAssign b a a
- | PostponedCheckArgs b [a] a a
- | IsEmptyType a
- | SizeLtSat a
- | FindInstanceOF b a [(a, a)]
- | PTSInstance b b
- | PostponedCheckFunDef QName a
- data OutputConstraint' a b = OfType' {}
- data OutputContextEntry name ty val
- = ContextVar name ty
- | ContextLet name ty val
Documentation
data CommandState Source #
Auxiliary state of an interactive computation.
CommandState | |
|
Instances
ToJSON CommandState | |
Defined in Agda.Interaction.JSONTop toJSON :: CommandState -> Value toEncoding :: CommandState -> Encoding toJSONList :: [CommandState] -> Value toEncodingList :: [CommandState] -> Encoding | |
EncodeTCM CommandState Source # | |
Defined in Agda.Interaction.JSONTop encodeTCM :: CommandState -> TCM Value Source # |
initCommandState :: CommandQueue -> CommandState Source #
Initial auxiliary interaction state
type CommandM = StateT CommandState TCM Source #
Monad for computing answers to interactive commands.
CommandM
is TCM
extended with state CommandState
.
A generalised command type.
data CommandQueue Source #
Command queues.
CommandQueue | |
|
type Interaction = Interaction' Range Source #
An interactive computation.
data Interaction' range Source #
Cmd_load FilePath [String] |
|
Cmd_compile CompilerBackend FilePath [String] |
|
Cmd_constraints | |
Cmd_metas | Show unsolved metas. If there are no unsolved metas but unsolved constraints show those instead. |
Cmd_show_module_contents_toplevel Rewrite String | Shows all the top-level names in the given module, along with their types. Uses the top-level scope. |
Cmd_search_about_toplevel Rewrite String | Shows all the top-level names in scope which mention all the given identifiers in their type. |
Cmd_solveAll Rewrite | Solve (all goals / the goal at point) whose values are determined by the constraints. |
Cmd_solveOne Rewrite InteractionId range String | |
Cmd_autoOne InteractionId range String | Solve (all goals / the goal at point) by using Auto. |
Cmd_autoAll | |
Cmd_infer_toplevel Rewrite String | Parse the given expression (as if it were defined at the top-level of the current module) and infer its type. |
Cmd_compute_toplevel ComputeMode String | Parse and type check the given expression (as if it were defined at the top-level of the current module) and normalise it. |
Cmd_load_highlighting_info FilePath |
If the module does not exist, or its module name is malformed or cannot be determined, or the module has not already been visited, or the cached info is out of date, then no highlighting information is printed. This command is used to load syntax highlighting information when a new file is opened, and it would probably be annoying if jumping to the definition of an identifier reset the proof state, so this command tries not to do that. One result of this is that the command uses the current include directories, whatever they happen to be. |
Cmd_tokenHighlighting FilePath Remove | Tells Agda to compute token-based highlighting information for the file. This command works even if the file's module name does not match its location in the file system, or if the file is not scope-correct. Furthermore no file names are put in the generated output. Thus it is fine to put source code into a temporary file before calling this command. However, the file extension should be correct. If the second argument is |
Cmd_highlight InteractionId range String | Tells Agda to compute highlighting information for the expression just spliced into an interaction point. |
ShowImplicitArgs Bool | Tells Agda whether or not to show implicit arguments. |
ToggleImplicitArgs | Toggle display of implicit arguments. |
Cmd_give UseForce InteractionId range String | Goal commands If the range is |
Cmd_refine InteractionId range String | |
Cmd_intro Bool InteractionId range String | |
Cmd_refine_or_intro Bool InteractionId range String | |
Cmd_context Rewrite InteractionId range String | |
Cmd_helper_function Rewrite InteractionId range String | |
Cmd_infer Rewrite InteractionId range String | |
Cmd_goal_type Rewrite InteractionId range String | |
Cmd_elaborate_give Rewrite InteractionId range String | Grabs the current goal's type and checks the expression in the hole against it. Returns the elaborated term. |
Cmd_goal_type_context Rewrite InteractionId range String | Displays the current goal and context. |
Cmd_goal_type_context_infer Rewrite InteractionId range String | Displays the current goal and context and infers the type of an expression. |
Cmd_goal_type_context_check Rewrite InteractionId range String | Grabs the current goal's type and checks the expression in the hole against it. |
Cmd_show_module_contents Rewrite InteractionId range String | Shows all the top-level names in the given module, along with their types. Uses the scope of the given goal. |
Cmd_make_case InteractionId range String | |
Cmd_compute ComputeMode InteractionId range String | |
Cmd_why_in_scope InteractionId range String | |
Cmd_why_in_scope_toplevel String | |
Cmd_show_version | Displays version of the running Agda |
Cmd_abort | Abort the current computation. Does nothing if no computation is in progress. |
Cmd_exit | Exit the program. |
Instances
Instances
Functor IOTCM' Source # | |
Foldable IOTCM' Source # | |
Defined in Agda.Interaction.Base fold :: Monoid m => IOTCM' m -> m # foldMap :: Monoid m => (a -> m) -> IOTCM' a -> m # foldMap' :: Monoid m => (a -> m) -> IOTCM' a -> m # foldr :: (a -> b -> b) -> b -> IOTCM' a -> b # foldr' :: (a -> b -> b) -> b -> IOTCM' a -> b # foldl :: (b -> a -> b) -> b -> IOTCM' a -> b # foldl' :: (b -> a -> b) -> b -> IOTCM' a -> b # foldr1 :: (a -> a -> a) -> IOTCM' a -> a # foldl1 :: (a -> a -> a) -> IOTCM' a -> a # elem :: Eq a => a -> IOTCM' a -> Bool # maximum :: Ord a => IOTCM' a -> a # minimum :: Ord a => IOTCM' a -> a # | |
Traversable IOTCM' Source # | |
Read range => Read (IOTCM' range) Source # | |
Show range => Show (IOTCM' range) Source # | |
Used to indicate whether something should be removed or not.
data CompilerBackend Source #
Available backends.
Instances
Eq CompilerBackend Source # | |
Defined in Agda.Interaction.Base (==) :: CompilerBackend -> CompilerBackend -> Bool # (/=) :: CompilerBackend -> CompilerBackend -> Bool # | |
Read CompilerBackend Source # | |
Defined in Agda.Interaction.Base | |
Show CompilerBackend Source # | |
Defined in Agda.Interaction.Base showsPrec :: Int -> CompilerBackend -> ShowS # show :: CompilerBackend -> String # showList :: [CompilerBackend] -> ShowS # |
Instances
Read Rewrite Source # | |
Show Rewrite Source # | |
ToJSON Rewrite | |
Defined in Agda.Interaction.JSONTop toEncoding :: Rewrite -> Encoding toJSONList :: [Rewrite] -> Value toEncodingList :: [Rewrite] -> Encoding | |
EncodeTCM Rewrite Source # | |
data ComputeMode Source #
Instances
Eq ComputeMode Source # | |
Defined in Agda.Interaction.Base (==) :: ComputeMode -> ComputeMode -> Bool # (/=) :: ComputeMode -> ComputeMode -> Bool # | |
Read ComputeMode Source # | |
Defined in Agda.Interaction.Base readsPrec :: Int -> ReadS ComputeMode # readList :: ReadS [ComputeMode] # readPrec :: ReadPrec ComputeMode # readListPrec :: ReadPrec [ComputeMode] # | |
Show ComputeMode Source # | |
Defined in Agda.Interaction.Base showsPrec :: Int -> ComputeMode -> ShowS # show :: ComputeMode -> String # showList :: [ComputeMode] -> ShowS # | |
ToJSON ComputeMode | |
Defined in Agda.Interaction.JSONTop toJSON :: ComputeMode -> Value toEncoding :: ComputeMode -> Encoding toJSONList :: [ComputeMode] -> Value toEncodingList :: [ComputeMode] -> Encoding | |
EncodeTCM ComputeMode Source # | |
Defined in Agda.Interaction.JSONTop encodeTCM :: ComputeMode -> TCM Value Source # |
WithForce | Ignore additional checks, like termination/positivity... |
WithoutForce | Don't ignore any checks. |
data OutputForm a b Source #
OutputForm Range [ProblemId] (OutputConstraint a b) |
Instances
data OutputConstraint a b Source #
OfType b a | |
CmpInType Comparison a b b | |
CmpElim [Polarity] a [b] [b] | |
JustType b | |
CmpTypes Comparison b b | |
CmpLevels Comparison b b | |
CmpTeles Comparison b b | |
JustSort b | |
CmpSorts Comparison b b | |
Guard (OutputConstraint a b) ProblemId | |
Assign b a | |
TypedAssign b a a | |
PostponedCheckArgs b [a] a a | |
IsEmptyType a | |
SizeLtSat a | |
FindInstanceOF b a [(a, a)] | |
PTSInstance b b | |
PostponedCheckFunDef QName a |
Instances
data OutputConstraint' a b Source #
A subset of OutputConstraint
.
Instances
(Pretty a, Pretty b) => Pretty (OutputConstraint' a b) Source # | |
Defined in Agda.Interaction.BasicOps pretty :: OutputConstraint' a b -> Doc Source # prettyPrec :: Int -> OutputConstraint' a b -> Doc Source # prettyList :: [OutputConstraint' a b] -> Doc Source # | |
(ToConcrete a c, ToConcrete b d) => ToConcrete (OutputConstraint' a b) (OutputConstraint' c d) Source # | |
Defined in Agda.Interaction.BasicOps toConcrete :: OutputConstraint' a b -> AbsToCon (OutputConstraint' c d) Source # bindToConcrete :: OutputConstraint' a b -> (OutputConstraint' c d -> AbsToCon b0) -> AbsToCon b0 Source # |
data OutputContextEntry name ty val Source #
ContextVar name ty | |
ContextLet name ty val |
Orphan instances
Read AbsolutePath Source # | |
readsPrec :: Int -> ReadS AbsolutePath # readList :: ReadS [AbsolutePath] # | |
Read InteractionId Source # | |
readsPrec :: Int -> ReadS InteractionId # readList :: ReadS [InteractionId] # | |
Read a => Read (Range' a) Source # | Note that the grammar implemented by this instance does not necessarily match the current representation of ranges. |
Read a => Read (Interval' a) Source # | |
Read a => Read (Position' a) Source # | |