Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Instances For
Equations
- Lean.Elab.Tactic.isCheckpointableTactic arg = let kind := Lean.Syntax.getKind arg; pure (kind == `Lean.Parser.Tactic.save)
Instances For
Takes a sepByIndent tactic "; "
, and inserts checkpoint
blocks for save
tactics.
Input:
a
b
save
c
d
save
e
Output:
checkpoint
a
b
save
checkpoint
c
d
save
e
Equations
- One or more equations did not get rendered due to their size.
Instances For
Evaluate `sepByIndent tactic "; "
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Lean.Elab.Tactic.evalRotateLeft stx = let n := Lean.Elab.Tactic.getOptRotation stx[1]; do let __do_lift ← Lean.Elab.Tactic.getGoals Lean.Elab.Tactic.setGoals (List.rotateLeft __do_lift n)
Instances For
Equations
- Lean.Elab.Tactic.evalRotateRight stx = let n := Lean.Elab.Tactic.getOptRotation stx[1]; do let __do_lift ← Lean.Elab.Tactic.getGoals Lean.Elab.Tactic.setGoals (List.rotateRight __do_lift n)
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Instances For
Equations
Instances For
Equations
Instances For
Equations
- Lean.Elab.Tactic.evalUnknown stx = do let __do_lift ← Lean.Elab.Tactic.getGoals Lean.Elab.addCompletionInfo (Lean.Elab.CompletionInfo.tactic stx __do_lift)
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Lean.Elab.Tactic.evalAssumption x = Lean.Elab.Tactic.liftMetaTactic fun (mvarId : Lean.MVarId) => Lean.Meta.withAssignableSyntheticOpaque do Lean.MVarId.assumption mvarId pure []
Instances For
Equations
- Lean.Elab.Tactic.evalContradiction x = Lean.Elab.Tactic.liftMetaTactic fun (mvarId : Lean.MVarId) => do Lean.MVarId.contradiction mvarId pure []
Instances For
Equations
- Lean.Elab.Tactic.evalRefl x = Lean.Elab.Tactic.liftMetaTactic fun (mvarId : Lean.MVarId) => do Lean.MVarId.refl mvarId pure []
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
def
Lean.Elab.Tactic.evalIntro.introStep
(ref : Option Lean.Syntax)
(n : Lake.Name)
(typeStx? : optParam (Option Lean.Syntax) none)
:
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
def
Lean.Elab.Tactic.forEachVar
(hs : Array Lean.Syntax)
(tac : Lean.MVarId → Lean.FVarId → Lean.MetaM Lean.MVarId)
:
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Lean.Elab.Tactic.evalSubstVars x = Lean.Elab.Tactic.liftMetaTactic fun (mvarId : Lean.MVarId) => do let __do_lift ← Lean.Meta.substVars mvarId pure [__do_lift]
Instances For
Equations
Instances For
def
Lean.Elab.Tactic.renameInaccessibles
(mvarId : Lean.MVarId)
(hs : Lean.TSyntaxArray `Lean.binderIdent)
:
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Lean.Elab.Tactic.evalSleep stx = match Lean.Syntax.isNatLit? stx[1] with | none => Lean.Elab.throwIllFormedSyntax | some ms => liftM (IO.sleep (Nat.toUInt32 ms))
Instances For
Equations
- Lean.Elab.Tactic.evalLeft _stx = Lean.Elab.Tactic.liftMetaTactic fun (g : Lean.MVarId) => Lean.MVarId.nthConstructor `left 0 (some 2) g
Instances For
Equations
- Lean.Elab.Tactic.evalRight _stx = Lean.Elab.Tactic.liftMetaTactic fun (g : Lean.MVarId) => Lean.MVarId.nthConstructor `right 1 (some 2) g
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.