Assign mvarId := sorry
Equations
- One or more equations did not get rendered due to their size.
Equations
- Lean.Elab.goalsToMessageData goals = Lean.MessageData.joinSep (List.map Lean.MessageData.ofGoal goals) (Lean.toMessageData "\n\n")
- elaborator : Name
Declaration name of the executing elaborator, used by
mkTacticInfo
to persist it in the info tree - recover : Bool
If
true
, enable "error recovery" in some tactics. For example,cases
tactic admits unsolved alternatives whenrecover == true
. The combinatorwithoutRecover <tac>
disables "error recovery" while executing<tac>
. This is useful for tactics such asfirst | ... | ...
.
The tactic monad, which extends the term elaboration monad TermElabM
with state that contains the
current goals (Lean.Elab.Tactic.State
, accessible via MonadStateOf
) and local information about
the current tactic's name and whether error recovery is enabled (Lean.Elab.Tactic.Context
,
accessible via MonadReaderOf
).
Equations
A tactic is a function from syntax to an action in the tactic monad.
A given tactic syntax kind may have multiple Tactic
s associated with it, all of which will be
attempted until one succeeds.
Equations
Equations
- One or more equations did not get rendered due to their size.
Equations
- Lean.Elab.Tactic.instInhabitedTacticM = { default := fun (x : Lean.Elab.Tactic.Context) (x : ST.Ref IO.RealWorld Lean.Elab.Tactic.State) => default }
Returns the list of goals. Goals may or may not already be assigned.
Equations
- Lean.Elab.Tactic.getGoals = do let __do_lift ← get pure __do_lift.goals
Equations
- Lean.Elab.Tactic.setGoals mvarIds = modify fun (x : Lean.Elab.Tactic.State) => { goals := mvarIds }
Equations
- Lean.Elab.Tactic.pruneSolvedGoals = do let gs ← Lean.Elab.Tactic.getGoals let gs ← List.filterM (fun (g : Lean.MVarId) => not <$> g.isAssigned) gs Lean.Elab.Tactic.setGoals gs
Equations
- Lean.Elab.Tactic.saveState = do let __do_lift ← liftM Lean.Elab.Term.saveState let __do_lift_1 ← get pure { term := __do_lift, tactic := __do_lift_1 }
Like Meta.withRestoreOrSaveFull
for TermElabM
, but also takes a tacSnap?
that
- when running
act
, is set asContext.tacSnap?
- otherwise (i.e. on restore) is used to update the new snapshot promise to the old task's
value.
This extra restore step is necessary because while
reusableResult?
can be used to replay any effects onState
,Context.tacSnap?
is not part of it but changed via anIO
side effect, so it needs to be replayed separately.
We use an explicit parameter instead of accessing Context.tacSnap?
directly because this prevents
withRestoreOrSaveFull
and withReader
from being used in the wrong order.
Equations
- One or more equations did not get rendered due to their size.
Equations
- Lean.Elab.Tactic.getCurrMacroScope = do let __do_lift ← readThe Lean.Core.Context pure __do_lift.currMacroScope
Equations
- Lean.Elab.Tactic.getMainModule = do let __do_lift ← Lean.getEnv pure __do_lift.mainModule
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- Lean.Elab.Tactic.mkInitialTacticInfo stx = do let mctxBefore ← Lean.getMCtx let goalsBefore ← Lean.Elab.Tactic.getUnsolvedGoals pure (Lean.Elab.Tactic.mkTacticInfo mctxBefore goalsBefore stx)
Equations
- Lean.Elab.Tactic.withTacticInfoContext stx x = do let __do_lift ← Lean.Elab.Tactic.mkInitialTacticInfo stx Lean.Elab.withInfoContext x __do_lift
Important: we must define evalTactic
before we define
the instance MonadExcept
for TacticM
since it backtracks the state including error messages,
and this is bad when rethrowing the exception at the catch
block in these methods.
We marked these places with a (*)
in these methods.
Auxiliary datastructure for capturing exceptions at evalTactic
.
- exception : Exception
- state : SavedState
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- Lean.Elab.Tactic.throwNoGoalsToBeSolved = Lean.throwError (Lean.toMessageData "no goals to be solved")
Equations
- One or more equations did not get rendered due to their size.
Runs x
with only the first unsolved goal as the goal.
Fails if there are no goal to be solved.
Equations
- One or more equations did not get rendered due to their size.
Runs tactic
with only the first unsolved goal as the goal, and expects it leave no goals.
Fails if there are no goal to be solved.
Equations
- Lean.Elab.Tactic.focusAndDone tactic = Lean.Elab.Tactic.focus do let a ← tactic Lean.Elab.Tactic.done pure a
Equations
- Lean.Elab.Tactic.instMonadBacktrackSavedStateTacticM = { saveState := Lean.Elab.Tactic.saveState, restoreState := fun (b : Lean.Elab.Tactic.SavedState) => b.restore }
Non-backtracking try
/catch
.
Equations
- Lean.Elab.Tactic.tryCatch x h = tryCatch x fun (ex : Lean.Exception) => h ex
Backtracking try
/catch
. This is used for the MonadExcept
instance for TacticM
.
Equations
- Lean.Elab.Tactic.tryCatchRestore x h = do let b ← Lean.saveState tryCatch x fun (ex : Lean.Exception) => do b.restore h ex
Equations
- Lean.Elab.Tactic.instMonadExceptExceptionTacticM = { throw := fun {α : Type} => throw, tryCatch := fun {α : Type} => Lean.Elab.Tactic.tryCatchRestore }
Execute x
with error recovery disabled
Equations
- Lean.Elab.Tactic.withoutRecover x = withReader (fun (ctx : Lean.Elab.Tactic.Context) => { elaborator := ctx.elaborator, recover := false }) x
Equations
- Lean.Elab.Tactic.orElse x y = tryCatch (Lean.Elab.Tactic.withoutRecover x) fun (x : Lean.Exception) => y ()
Equations
- Lean.Elab.Tactic.instOrElseTacticM = { orElse := Lean.Elab.Tactic.orElse }
Equations
- One or more equations did not get rendered due to their size.
Save the current tactic state for a token stx
.
This method is a no-op if stx
has no position information.
We use this method to save the tactic state at punctuation such as ;
Equations
Adapt a syntax transformation to a regular tactic evaluator.
Equations
- Lean.Elab.Tactic.adaptExpander exp stx = do let stx' ← exp stx Lean.Elab.Tactic.withMacroExpansion stx stx' (Lean.Elab.Tactic.evalTactic stx')
Add the given goal to the front of the current list of goals.
Equations
- Lean.Elab.Tactic.pushGoal mvarId = modify fun (s : Lean.Elab.Tactic.State) => { goals := mvarId :: s.goals }
Add the given goals to the front of the current list of goals.
Equations
- Lean.Elab.Tactic.pushGoals mvarIds = modify fun (s : Lean.Elab.Tactic.State) => { goals := mvarIds ++ s.goals }
Add the given goals at the end of the current list of goals.
Equations
- Lean.Elab.Tactic.appendGoals mvarIds = modify fun (s : Lean.Elab.Tactic.State) => { goals := s.goals ++ mvarIds }
Discard the first goal and replace it by the given list of goals,
keeping the other goals. This is used in conjunction with getMainGoal
.
Contract: between getMainGoal
and replaceMainGoal
, nothing manipulates the goal list.
See also Lean.Elab.Tactic.popMainGoal
and Lean.Elab.Tactic.pushGoal
/Lean.Elab.Tactic.pushGoal
for another interface.
Equations
- One or more equations did not get rendered due to their size.
Return the first goal.
Equations
- Lean.Elab.Tactic.getMainGoal = do let __do_lift ← Lean.Elab.Tactic.getGoals Lean.Elab.Tactic.getMainGoal.loop __do_lift
Equations
- One or more equations did not get rendered due to their size.
- Lean.Elab.Tactic.getMainGoal.loop [] = Lean.Elab.Tactic.throwNoGoalsToBeSolved
Return the first goal, and remove it from the goal list.
See also: Lean.Elab.Tactic.pushGoal
and Lean.Elab.Tactic.pushGoals
.
Equations
- Lean.Elab.Tactic.popMainGoal = do let mvarId ← Lean.Elab.Tactic.getMainGoal Lean.Elab.Tactic.replaceMainGoal [] pure mvarId
Return the main goal metavariable declaration.
Equations
- Lean.Elab.Tactic.getMainDecl = do let __do_lift ← Lean.Elab.Tactic.getMainGoal liftM __do_lift.getDecl
Return the main goal tag.
Equations
- Lean.Elab.Tactic.getMainTag = do let __do_lift ← Lean.Elab.Tactic.getMainDecl pure __do_lift.userName
Return expected type for the main goal.
Equations
- Lean.Elab.Tactic.getMainTarget = do let __do_lift ← Lean.Elab.Tactic.getMainDecl Lean.instantiateMVars __do_lift.type
Execute x
using the main goal local context and instances
Equations
- Lean.Elab.Tactic.withMainContext x = do let __do_lift ← Lean.Elab.Tactic.getMainGoal __do_lift.withContext x
Like evalTacticAt
, but without restoring the goal list or pruning solved goals.
Useful when these tasks are already being done in an outer loop.
Equations
- Lean.Elab.Tactic.evalTacticAtRaw tac mvarId = do Lean.Elab.Tactic.setGoals [mvarId] Lean.Elab.Tactic.evalTactic tac Lean.Elab.Tactic.getGoals
Equations
- One or more equations did not get rendered due to their size.
Closes main goal using the given expression.
If checkUnassigned == true
, then val
must not contain unassigned metavariables.
Returns true
if val
was successfully used to close the goal.
Equations
- One or more equations did not get rendered due to their size.
Equations
- Lean.Elab.Tactic.liftMetaMAtMain x = Lean.Elab.Tactic.withMainContext do let __do_lift ← Lean.Elab.Tactic.getMainGoal liftM (x __do_lift)
Get the mvarid of the main goal, run the given tactic
,
then set the new goals to be the resulting goal list.
Equations
- Lean.Elab.Tactic.liftMetaTactic tactic = Lean.Elab.Tactic.liftMetaTacticAux fun (mvarId : Lean.MVarId) => do let gs ← tactic mvarId pure ((), gs)
Analogue of liftMetaTactic
for tactics that do not return any goals.
Equations
- Lean.Elab.Tactic.liftMetaFinishingTactic tac = Lean.Elab.Tactic.liftMetaTactic fun (g : Lean.MVarId) => do tac g pure []
Equations
- Lean.Elab.Tactic.tryTactic? tactic = tryCatch (do let __do_lift ← tactic pure (some __do_lift)) fun (x : Lean.Exception) => pure none
Equations
- Lean.Elab.Tactic.tryTactic tactic = tryCatch (do discard tactic pure true) fun (x : Lean.Exception) => pure false
Use parentTag
to tag untagged goals at newGoals
.
If there are multiple new untagged goals, they are named using <parentTag>.<newSuffix>_<idx>
where idx > 0
.
If there is only one new untagged goal, then we just use parentTag
Equations
- One or more equations did not get rendered due to their size.
Use position of => $body
for error messages.
If there is a line break before body
, the message will be displayed on =>
only,
but the "full range" for the info view will still include body
.
Equations
- Lean.Elab.Tactic.withCaseRef arrow body x = Lean.withRef (Lean.mkNullNode #[arrow, body]) x