diff --git a/stage0/src/Init/Data/Nat/Basic.lean b/stage0/src/Init/Data/Nat/Basic.lean index eeda5f150d..1eda5d32f5 100644 --- a/stage0/src/Init/Data/Nat/Basic.lean +++ b/stage0/src/Init/Data/Nat/Basic.lean @@ -126,6 +126,12 @@ protected theorem right_distrib (n m k : Nat) : (n + m) * k = n * k + m * k := have h₄ : n * k + k * m = n * k + m * k := Nat.mul_comm m k ▸ rfl ((h₁.trans h₂).trans h₃).trans h₄ +protected theorem mul_add (n m k : Nat) : n * (m + k) = n * m + n * k := + Nat.left_distrib n m k + +protected theorem add_mul (n m k : Nat) : (n + m) * k = n * k + m * k := + Nat.right_distrib n m k + protected theorem mul_assoc : ∀ (n m k : Nat), (n * m) * k = n * (m * k) | n, m, 0 => rfl | n, m, succ k => @@ -190,6 +196,18 @@ protected theorem lt_of_lt_of_le {n m k : Nat} : n < m → m ≤ k → n < k := protected theorem lt_of_lt_of_eq {n m k : Nat} : n < m → m = k → n < k := fun h₁ h₂ => h₂ ▸ h₁ +instance : Trans (. < . : Nat → Nat → Prop) (. < . : Nat → Nat → Prop) (. < . : Nat → Nat → Prop) where + trans := Nat.lt_trans + +instance : Trans (. ≤ . : Nat → Nat → Prop) (. ≤ . : Nat → Nat → Prop) (. ≤ . : Nat → Nat → Prop) where + trans := Nat.le_trans + +instance : Trans (. < . : Nat → Nat → Prop) (. ≤ . : Nat → Nat → Prop) (. < . : Nat → Nat → Prop) where + trans := Nat.lt_of_lt_of_le + +instance : Trans (. ≤ . : Nat → Nat → Prop) (. < . : Nat → Nat → Prop) (. < . : Nat → Nat → Prop) where + trans := Nat.lt_of_le_of_lt + protected theorem le_of_eq {n m : Nat} (p : n = m) : n ≤ m := p ▸ Nat.le_refl n diff --git a/stage0/src/Init/Notation.lean b/stage0/src/Init/Notation.lean index 5855919d40..fced6a3275 100644 --- a/stage0/src/Init/Notation.lean +++ b/stage0/src/Init/Notation.lean @@ -281,6 +281,8 @@ syntax (name := constructor) "constructor" : tactic syntax (name := case) "case " ident (ident <|> "_")* " => " tacticSeq : tactic /-- `allGoals tac` runs `tac` on each goal, concatenating the resulting goals, if any. -/ syntax (name := allGoals) "allGoals " tacticSeq : tactic +/-- `anyGoals tac` applies the tactic `tac` to every goal, and succeeds if at least one application succeeds. -/ +syntax (name := anyGoals) "anyGoals " tacticSeq : tactic /-- `focus tac` focuses on the main goal, suppressing all other goals, and runs `tac` on it. Usually `· tac`, which enforces that the goal is closed by `tac`, should be preferred. -/ @@ -386,6 +388,8 @@ syntax (name := cases) "cases " casesTarget,+ (" using " ident)? (inductionAlts) syntax (name := existsIntro) "exists " term : tactic +/-- `renameI x_1 ... x_n` renames the last `n` inaccessible names using the given names. -/ +syntax (name := renameI) "renameI " (colGt (ident <|> "_"))+ : tactic syntax "repeat " tacticSeq : tactic macro_rules diff --git a/stage0/src/Init/NotationExtra.lean b/stage0/src/Init/NotationExtra.lean index 16820bd6bb..2a3c1758c0 100644 --- a/stage0/src/Init/NotationExtra.lean +++ b/stage0/src/Init/NotationExtra.lean @@ -93,6 +93,14 @@ macro "Σ'" xs:explicitBinders ", " b:term : term => expandExplicitBinders ``PSi macro:35 xs:bracketedExplicitBinders " × " b:term:35 : term => expandBrackedBinders ``Sigma xs b macro:35 xs:bracketedExplicitBinders " ×' " b:term:35 : term => expandBrackedBinders ``PSigma xs b +-- enforce indentation of calc steps so we know when to stop parsing them +syntax calcStep := colGe term " := " withPosition(term) +syntax "calc " withPosition(calcStep+) : term + +macro_rules + | `(calc $p:term := $h:term) => `(($h : $p)) + | `(calc $p:term := $h:term $rest:calcStep*) => ``(trans ($h : $p) (calc $rest:calcStep*)) + @[appUnexpander Unit.unit] def unexpandUnit : Lean.PrettyPrinter.Unexpander | `($(_)) => `(()) | _ => throw () diff --git a/stage0/src/Init/Prelude.lean b/stage0/src/Init/Prelude.lean index 88a7fed1e0..0da74dcb9f 100644 --- a/stage0/src/Init/Prelude.lean +++ b/stage0/src/Init/Prelude.lean @@ -380,6 +380,18 @@ class LT (α : Type u) where lt : α → α → Prop @[inline] def min [LE α] [DecidableRel (@LE.le α _)] (a b : α) : α := ite (LE.le a b) a b +/-- Transitive chaining of proofs, used e.g. by `calc`. -/ +class Trans (r : α → β → Prop) (s : β → γ → Prop) (t : outParam (α → γ → Prop)) where + trans : r a b → s b c → t a c + +export Trans (trans) + +instance (r : α → γ → Prop) : Trans Eq r r where + trans heq h' := heq ▸ h' + +instance (r : α → β → Prop) : Trans r Eq r where + trans h' heq := heq ▸ h' + class HAdd (α : Type u) (β : Type v) (γ : outParam (Type w)) where hAdd : α → β → γ diff --git a/stage0/src/Lean/Elab/Binders.lean b/stage0/src/Lean/Elab/Binders.lean index 55b8bcedd2..7cbcca7433 100644 --- a/stage0/src/Lean/Elab/Binders.lean +++ b/stage0/src/Lean/Elab/Binders.lean @@ -107,25 +107,24 @@ private def matchBinder (stx : Syntax) : TermElabM (Array BinderView) := do if k == ``Lean.Parser.Term.simpleBinder then -- binderIdent+ >> optType let ids ← getBinderIds stx[0] - let type := expandOptType (mkNullNode ids) stx[1] - ids.mapM fun id => do pure { id := (← expandBinderIdent id), type := type, bi := BinderInfo.default } + let optType := stx[1] + ids.mapM fun id => do pure { id := (← expandBinderIdent id), type := expandOptType id optType, bi := BinderInfo.default } else if k == ``Lean.Parser.Term.explicitBinder then -- `(` binderIdent+ binderType (binderDefault <|> binderTactic)? `)` let ids ← getBinderIds stx[1] - let type := expandBinderType (mkNullNode ids) stx[2] + let type := stx[2] let optModifier := stx[3] - let type ← expandBinderModifier type optModifier - ids.mapM fun id => do pure { id := (← expandBinderIdent id), type := type, bi := BinderInfo.default } + ids.mapM fun id => do pure { id := (← expandBinderIdent id), type := (← expandBinderModifier (expandBinderType id type) optModifier), bi := BinderInfo.default } else if k == ``Lean.Parser.Term.implicitBinder then -- `{` binderIdent+ binderType `}` let ids ← getBinderIds stx[1] - let type := expandBinderType (mkNullNode ids) stx[2] - ids.mapM fun id => do pure { id := (← expandBinderIdent id), type := type, bi := BinderInfo.implicit } + let type := stx[2] + ids.mapM fun id => do pure { id := (← expandBinderIdent id), type := expandBinderType id type, bi := BinderInfo.implicit } else if k == ``Lean.Parser.Term.strictImplicitBinder then -- `⦃` binderIdent+ binderType `⦄` let ids ← getBinderIds stx[1] - let type := expandBinderType (mkNullNode ids) stx[2] - ids.mapM fun id => do pure { id := (← expandBinderIdent id), type := type, bi := BinderInfo.strictImplicit } + let type := stx[2] + ids.mapM fun id => do pure { id := (← expandBinderIdent id), type := expandBinderType id type, bi := BinderInfo.strictImplicit } else if k == ``Lean.Parser.Term.instBinder then -- `[` optIdent type `]` let id ← expandOptIdent stx[1] diff --git a/stage0/src/Lean/Elab/DefView.lean b/stage0/src/Lean/Elab/DefView.lean index 3c6ae9e450..b4d3287563 100644 --- a/stage0/src/Lean/Elab/DefView.lean +++ b/stage0/src/Lean/Elab/DefView.lean @@ -16,7 +16,7 @@ namespace Lean.Elab inductive DefKind where | «def» | «theorem» | «example» | «opaque» | «abbrev» - deriving Inhabited + deriving Inhabited, BEq def DefKind.isTheorem : DefKind → Bool | «theorem» => true diff --git a/stage0/src/Lean/Elab/MutualDef.lean b/stage0/src/Lean/Elab/MutualDef.lean index 1b9c8417af..c3058eed59 100644 --- a/stage0/src/Lean/Elab/MutualDef.lean +++ b/stage0/src/Lean/Elab/MutualDef.lean @@ -74,6 +74,29 @@ private def check (prevHeaders : Array DefViewElabHeader) (newHeader : DefViewEl private def registerFailedToInferDefTypeInfo (type : Expr) (ref : Syntax) : TermElabM Unit := registerCustomErrorIfMVar type ref "failed to infer definition type" +/-- + Return `some [b, c]` if the given `views` are representing a declaration of the form + ``` + constant a b c : Nat + ``` -/ +private def isMultiConstant? (views : Array DefView) : Option (List Name) := + if views.size == 1 && + views[0].kind == DefKind.opaque && + views[0].binders.getArgs.size > 0 && + views[0].binders.getArgs.all (·.getKind == ``Parser.Term.simpleBinder) then + some <| (views[0].binders.getArgs.toList.map (fun stx => stx[0].getArgs.toList.map (·.getId))).join + else + none + +private def getPendindMVarErrorMessage (views : Array DefView) : String := + match isMultiConstant? views with + | some ids => + let idsStr := ", ".intercalate <| ids.map fun id => s!"`{id}`" + let paramsStr := ", ".intercalate <| ids.map fun id => s!"`({id} : _)`" + s!"\nrecall that you cannot declare multiple constants in a single declaration. The identifier(s) {idsStr} are being interpreted as parameters {paramsStr}" + | none => + "\nwhen the resulting type of a declaration is explicitly provided, all holes (e.g., `_`) in the header are resolved before the declaration body is processed" + private def elabHeaders (views : Array DefView) : TermElabM (Array DefViewElabHeader) := do let mut headers := #[] for view in views do @@ -103,7 +126,7 @@ private def elabHeaders (views : Array DefView) : TermElabM (Array DefViewElabHe if view.type?.isSome then let pendingMVarIds ← getMVars type discard <| logUnassignedUsingErrorInfos pendingMVarIds <| - m!"\nwhen the resulting type of a declaration is explicitly provided, all holes (e.g., `_`) in the header are resolved before the declaration body is processed" + getPendindMVarErrorMessage views let newHeader := { ref := view.ref, modifiers := view.modifiers, diff --git a/stage0/src/Lean/Elab/Tactic/BuiltinTactic.lean b/stage0/src/Lean/Elab/Tactic/BuiltinTactic.lean index dce1830c2b..f50c63ea72 100644 --- a/stage0/src/Lean/Elab/Tactic/BuiltinTactic.lean +++ b/stage0/src/Lean/Elab/Tactic/BuiltinTactic.lean @@ -84,6 +84,23 @@ private def getOptRotation (stx : Syntax) : Nat := mvarIdsNew := mvarIdsNew.push mvarId setGoals mvarIdsNew.toList +@[builtinTactic Parser.Tactic.anyGoals] def evalAnyGoals : Tactic := fun stx => do + let mvarIds ← getGoals + let mut mvarIdsNew := #[] + let mut succeeded := false + for mvarId in mvarIds do + unless (← isExprMVarAssigned mvarId) do + setGoals [mvarId] + try + evalTactic stx[1] + mvarIdsNew := mvarIdsNew ++ (← getUnsolvedGoals) + succeeded := true + catch _ => + mvarIdsNew := mvarIdsNew.push mvarId + unless succeeded do + throwError "failed on all goals" + setGoals mvarIdsNew.toList + @[builtinTactic tacticSeq] def evalTacticSeq : Tactic := fun stx => evalTactic stx[0] @@ -198,36 +215,40 @@ private def findTag? (mvarIds : List MVarId) (tag : Name) : TacticM (Option MVar | some mvarId => return mvarId | none => mvarIds.findM? fun mvarId => return tag.isPrefixOf (← getMVarDecl mvarId).userName +def renameInaccessibles (mvarId : MVarId) (hs : Array Syntax) : TacticM MVarId := do + if hs.isEmpty then + return mvarId + else + let mvarDecl ← getMVarDecl mvarId + let mut lctx := mvarDecl.lctx + let mut hs := hs + let n := lctx.numIndices + for i in [:n] do + let j := n - i - 1 + match lctx.getAt? j with + | none => pure () + | some localDecl => + if localDecl.userName.hasMacroScopes then + let h := hs.back + if h.isIdent then + let newName := h.getId + lctx := lctx.setUserName localDecl.fvarId newName + hs := hs.pop + if hs.isEmpty then + break + unless hs.isEmpty do + logError m!"too many variable names provided" + let mvarNew ← mkFreshExprMVarAt lctx mvarDecl.localInstances mvarDecl.type MetavarKind.syntheticOpaque mvarDecl.userName + assignExprMVar mvarId mvarNew + return mvarNew.mvarId! + @[builtinTactic «case»] def evalCase : Tactic | stx@`(tactic| case $tag $hs* =>%$arr $tac:tacticSeq) => do let tag := tag.getId let gs ← getUnsolvedGoals let some g ← findTag? gs tag | throwError "tag not found" let gs := gs.erase g - let mut g := g - unless hs.isEmpty do - let mvarDecl ← getMVarDecl g - let mut lctx := mvarDecl.lctx - let mut hs := hs - let n := lctx.numIndices - for i in [:n] do - let j := n - i - 1 - match lctx.getAt? j with - | none => pure () - | some localDecl => - if localDecl.userName.hasMacroScopes then - let h := hs.back - if h.isIdent then - let newName := h.getId - lctx := lctx.setUserName localDecl.fvarId newName - hs := hs.pop - if hs.isEmpty then - break - unless hs.isEmpty do - logError m!"too many variable names provided at 'case'" - let mvarNew ← mkFreshExprMVarAt lctx mvarDecl.localInstances mvarDecl.type MetavarKind.syntheticOpaque mvarDecl.userName - assignExprMVar g mvarNew - g := mvarNew.mvarId! + let g ← renameInaccessibles g hs setGoals [g] let savedTag ← getMVarTag g setMVarTag g Name.anonymous @@ -240,6 +261,10 @@ private def findTag? (mvarIds : List MVarId) (tag : Name) : TacticM (Option MVar setGoals gs | _ => throwUnsupportedSyntax +@[builtinTactic «renameI»] def evalRenameInaccessibles : Tactic + | stx@`(tactic| renameI $hs*) => do replaceMainGoal [← renameInaccessibles (← getMainGoal) hs] + | _ => throwUnsupportedSyntax + @[builtinTactic «first»] partial def evalFirst : Tactic := fun stx => do let tacs := stx[1].getArgs if tacs.isEmpty then throwUnsupportedSyntax diff --git a/stage0/src/Lean/Elab/Tactic/ElabTerm.lean b/stage0/src/Lean/Elab/Tactic/ElabTerm.lean index 63f3622c6f..d09dc7d0a1 100644 --- a/stage0/src/Lean/Elab/Tactic/ElabTerm.lean +++ b/stage0/src/Lean/Elab/Tactic/ElabTerm.lean @@ -177,7 +177,14 @@ def elabAsFVar (stx : Syntax) (userName? : Option Name := none) : TacticM FVarId match stx with | `(tactic| rename $typeStx:term => $h:ident) => do withMainContext do - let fvarId ← withoutModifyingState <| withNewMCtxDepth do + /- Remark: we must not use `withoutModifyingState` because we may miss errors message. + For example, suppose the following `elabTerm` logs an error during elaboration. + In this scenario, the term `type` contains a synthetic `sorry`, and the error + message `"failed to find ..."` is not logged by the outer loop. + By using `withoutModifyingStateWithInfoAndMessages`, we ensure that + the messages and the info trees are preserved while the rest of the + state is backtracked. -/ + let fvarId ← withoutModifyingStateWithInfoAndMessages <| withNewMCtxDepth do let type ← elabTerm typeStx none (mayPostpone := true) let fvarId? ← (← getLCtx).findDeclRevM? fun localDecl => do if (← isDefEq type localDecl.type) then return localDecl.fvarId else return none diff --git a/stage0/src/Lean/Elab/Term.lean b/stage0/src/Lean/Elab/Term.lean index 0485ca2229..d42a35c62e 100644 --- a/stage0/src/Lean/Elab/Term.lean +++ b/stage0/src/Lean/Elab/Term.lean @@ -321,6 +321,18 @@ def withoutModifyingElabMetaStateWithInfo (x : TermElabM α) : TermElabM α := d modify ({ s with infoState := ·.infoState }) set sMeta +/-- + Execute `x` bud discard changes performed to the state. + However, the info trees and messages are not discarded. -/ +private def withoutModifyingStateWithInfoAndMessagesImpl (x : TermElabM α) : TermElabM α := do + let saved ← saveState + try + x + finally + let s ← get + let saved := { saved with elab.infoState := s.infoState, elab.messages := s.messages } + restoreState saved + unsafe def mkTermElabAttributeUnsafe : IO (KeyedDeclsAttribute TermElab) := mkElabAttribute TermElab `Lean.Elab.Term.termElabAttribute `builtinTermElab `termElab `Lean.Parser.Term `Lean.Elab.Term.TermElab "term" @@ -1551,6 +1563,10 @@ def withoutPostponingUniverseConstraints (x : TermElabM α) : TermElabM α := do end Term +open Term in +def withoutModifyingStateWithInfoAndMessages [MonadControlT TermElabM m] [Monad m] (x : m α) : m α := do + controlAt TermElabM fun runInBase => withoutModifyingStateWithInfoAndMessagesImpl <| runInBase x + builtin_initialize registerTraceClass `Elab.postpone registerTraceClass `Elab.coe diff --git a/stage0/src/kernel/quot.cpp b/stage0/src/kernel/quot.cpp index 84c0b7676f..a76bc05628 100644 --- a/stage0/src/kernel/quot.cpp +++ b/stage0/src/kernel/quot.cpp @@ -92,7 +92,7 @@ environment environment::add_quot() const { /* constant {u} quot.ind {α : Sort u} {r : α → α → Prop} {β : @quot.{u} α r → Prop} : (∀ a : α, β (@quot.mk.{u} α r a)) → ∀ q : @quot.{u} α r, β q */ new_env.add_core(constant_info(quot_val(*quot_consts::g_quot_ind, {u_name}, - lctx.mk_pi({alpha, r, beta}, mk_arrow(all_quot, lctx.mk_pi(q, beta_q))), quot_kind::Ind))); + lctx.mk_pi({alpha, r, beta}, mk_pi("mk", all_quot, lctx.mk_pi(q, beta_q))), quot_kind::Ind))); new_env.mark_quot_initialized(); return new_env; } diff --git a/stage0/stdlib/Init/Data/Nat/Basic.c b/stage0/stdlib/Init/Data/Nat/Basic.c index efecf66347..b8d0197bb7 100644 --- a/stage0/stdlib/Init/Data/Nat/Basic.c +++ b/stage0/stdlib/Init/Data/Nat/Basic.c @@ -24,13 +24,17 @@ lean_object* l_Nat_foldRev(lean_object*); lean_object* l_Nat_repeat_loop(lean_object*); lean_object* l_Nat_max(lean_object*, lean_object*); lean_object* l_Nat_foldAux_match__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_instTransLeArrowNatArrowNatPropLtArrowNatArrowNatPropLtArrowNatArrowNatProp; lean_object* l_Prod_foldI(lean_object*); +lean_object* l_Nat_instTransLtArrowNatArrowNatPropLeArrowNatArrowNatPropLtArrowNatArrowNatProp; lean_object* l_Prod_foldI___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Nat_repeat(lean_object*); lean_object* l_Nat_foldRev_loop___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Nat_foldRev_loop(lean_object*); +lean_object* l_Nat_instTransLeArrowNatArrowNatPropLeArrowNatArrowNatPropLeArrowNatArrowNatProp; uint8_t l_Nat_any(lean_object*, lean_object*); +lean_object* l_Nat_instTransLtArrowNatArrowNatPropLtArrowNatArrowNatPropLtArrowNatArrowNatProp; lean_object* l_Nat_fold(lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Nat_max___boxed(lean_object*, lean_object*); @@ -460,6 +464,38 @@ x_2 = lean_alloc_closure((void*)(l_Nat_repeat___rarg), 3, 0); return x_2; } } +static lean_object* _init_l_Nat_instTransLtArrowNatArrowNatPropLtArrowNatArrowNatPropLtArrowNatArrowNatProp() { +_start: +{ +lean_object* x_1; +x_1 = lean_box(0); +return x_1; +} +} +static lean_object* _init_l_Nat_instTransLeArrowNatArrowNatPropLeArrowNatArrowNatPropLeArrowNatArrowNatProp() { +_start: +{ +lean_object* x_1; +x_1 = lean_box(0); +return x_1; +} +} +static lean_object* _init_l_Nat_instTransLtArrowNatArrowNatPropLeArrowNatArrowNatPropLtArrowNatArrowNatProp() { +_start: +{ +lean_object* x_1; +x_1 = lean_box(0); +return x_1; +} +} +static lean_object* _init_l_Nat_instTransLeArrowNatArrowNatPropLtArrowNatArrowNatPropLtArrowNatArrowNatProp() { +_start: +{ +lean_object* x_1; +x_1 = lean_box(0); +return x_1; +} +} lean_object* l_Nat_min(lean_object* x_1, lean_object* x_2) { _start: { @@ -650,6 +686,14 @@ _G_initialized = true; res = initialize_Init_SimpLemmas(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Nat_instTransLtArrowNatArrowNatPropLtArrowNatArrowNatPropLtArrowNatArrowNatProp = _init_l_Nat_instTransLtArrowNatArrowNatPropLtArrowNatArrowNatPropLtArrowNatArrowNatProp(); +lean_mark_persistent(l_Nat_instTransLtArrowNatArrowNatPropLtArrowNatArrowNatPropLtArrowNatArrowNatProp); +l_Nat_instTransLeArrowNatArrowNatPropLeArrowNatArrowNatPropLeArrowNatArrowNatProp = _init_l_Nat_instTransLeArrowNatArrowNatPropLeArrowNatArrowNatPropLeArrowNatArrowNatProp(); +lean_mark_persistent(l_Nat_instTransLeArrowNatArrowNatPropLeArrowNatArrowNatPropLeArrowNatArrowNatProp); +l_Nat_instTransLtArrowNatArrowNatPropLeArrowNatArrowNatPropLtArrowNatArrowNatProp = _init_l_Nat_instTransLtArrowNatArrowNatPropLeArrowNatArrowNatPropLtArrowNatArrowNatProp(); +lean_mark_persistent(l_Nat_instTransLtArrowNatArrowNatPropLeArrowNatArrowNatPropLtArrowNatArrowNatProp); +l_Nat_instTransLeArrowNatArrowNatPropLtArrowNatArrowNatPropLtArrowNatArrowNatProp = _init_l_Nat_instTransLeArrowNatArrowNatPropLtArrowNatArrowNatPropLtArrowNatArrowNatProp(); +lean_mark_persistent(l_Nat_instTransLeArrowNatArrowNatPropLtArrowNatArrowNatPropLtArrowNatArrowNatProp); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/Notation.c b/stage0/stdlib/Init/Notation.c index a13345aa0c..4b3a911e57 100644 --- a/stage0/stdlib/Init/Notation.c +++ b/stage0/stdlib/Init/Notation.c @@ -41,6 +41,7 @@ static lean_object* l_Lean_Parser_Tactic_generalize___closed__8; static lean_object* l_term___x3c_x7c_x3e_____closed__5; lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(lean_object*, lean_object*); static lean_object* l_myMacro____x40_Init_Notation___hyg_13788____closed__3; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162____closed__4; static lean_object* l_Lean_Parser_Tactic_cases___closed__6; static lean_object* l_Lean_Parser_Tactic_first___closed__17; static lean_object* l_myMacro____x40_Init_Notation___hyg_1377____closed__5; @@ -61,15 +62,14 @@ static lean_object* l_term___x2b_x2b_____closed__4; lean_object* l_term___x5e_x5e_x5e__; static lean_object* l_Lean_Parser_Syntax_addPrec___closed__4; static lean_object* l_myMacro____x40_Init_Notation___hyg_2554____closed__5; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__7; static lean_object* l_Lean_Parser_Tactic_first___closed__8; lean_object* l_Lean_Parser_Tactic_first; static lean_object* l_Lean_Parser_Tactic_letrec___closed__12; static lean_object* l_Lean_term__Matches_____closed__6; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20039____closed__1; static lean_object* l_Lean_Parser_Tactic_erwSeq___closed__6; static lean_object* l_myMacro____x40_Init_Notation___hyg_4466____closed__2; static lean_object* l_Lean_Parser_Tactic_revert___closed__2; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__1; static lean_object* l_term___x25_____closed__2; static lean_object* l_Lean_Parser_Tactic_induction___closed__13; static lean_object* l_precMin1___closed__4; @@ -101,15 +101,16 @@ static lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_15999____closed__1 static lean_object* l_term___u2265_____closed__4; static lean_object* l_myMacro____x40_Init_Notation___hyg_5637____closed__7; static lean_object* l_Lean_Parser_Syntax_addPrec___closed__9; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19024____closed__1; static lean_object* l_term___x2d_____closed__1; static lean_object* l_termMax__prec___closed__1; static lean_object* l_precLead___closed__4; lean_object* l_term_x2d__; static lean_object* l_myMacro____x40_Init_Notation___hyg_11883____closed__8; lean_object* lean_mk_empty_array_with_capacity(lean_object*); +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18111____closed__3; static lean_object* l_term___x3e_x3d_____closed__1; static lean_object* l_Lean_Parser_Tactic_tacticSuffices_____closed__9; +lean_object* l_Lean_Parser_Tactic_renameI; static lean_object* l_precMax___closed__3; lean_object* l_Lean_Parser_Tactic_refine_x27; static lean_object* l_Lean_Parser_Tactic_first___closed__9; @@ -119,6 +120,7 @@ lean_object* l_Lean_Syntax_getHeadInfo_x3f(lean_object*); static lean_object* l_myMacro____x40_Init_Notation___hyg_11427____closed__3; static lean_object* l_myMacro____x40_Init_Notation___hyg_984____closed__2; static lean_object* l_stx___x3c_x7c_x3e_____closed__2; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162____closed__1; static lean_object* l_Lean_Parser_Tactic_induction___closed__12; lean_object* l_Lean_Parser_Tactic_tacticRfl; static lean_object* l_Lean_Parser_Tactic_generalize___closed__2; @@ -128,12 +130,12 @@ static lean_object* l_myMacro____x40_Init_Notation___hyg_5637____closed__5; static lean_object* l_myMacro____x40_Init_Notation___hyg_2554____closed__2; static lean_object* l_myMacro____x40_Init_Notation___hyg_3510____closed__4; static lean_object* l_Lean_Parser_Tactic_intro___closed__9; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__1; extern lean_object* l_Lean_nullKind; lean_object* l_term___x3c_x3c_x3c__; static lean_object* l_myMacro____x40_Init_Notation___hyg_8056____closed__1; static lean_object* l_myMacro____x40_Init_Notation___hyg_3988____closed__3; static lean_object* l_term___x3d_x3d_____closed__6; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19037____closed__1; static lean_object* l_term___u2227_____closed__3; static lean_object* l_Lean_Parser_Tactic_simp___closed__26; static lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__19; @@ -157,6 +159,7 @@ lean_object* lean_name_mk_string(lean_object*, lean_object*); static lean_object* l_termDepIfThenElse___closed__11; static lean_object* l_myMacro____x40_Init_Notation___hyg_2076____closed__13; static lean_object* l_myMacro____x40_Init_Notation___hyg_14290____closed__10; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352____closed__3; static lean_object* l_Lean_Parser_Attr_simp___closed__6; lean_object* l_Lean_Parser_Attr_simp; static lean_object* l_myMacro____x40_Init_Notation___hyg_5637____closed__1; @@ -177,7 +180,7 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_6861_(lean_object*, lean_objec lean_object* l_myMacro____x40_Init_Notation___hyg_7100_(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_7339_(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_7578_(lean_object*, lean_object*, lean_object*); -lean_object* l_myMacro____x40_Init_Notation___hyg_20778_(lean_object*, lean_object*, lean_object*); +lean_object* l_myMacro____x40_Init_Notation___hyg_20814_(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_9187_(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_9091_(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_8995_(lean_object*, lean_object*, lean_object*); @@ -299,6 +302,7 @@ static lean_object* l_term___x3c_x3c_x3c_____closed__5; static lean_object* l_Lean_Parser_Tactic_simpLemma___closed__3; static lean_object* l_myMacro____x40_Init_Notation___hyg_12122____closed__9; static lean_object* l_termDepIfThenElse___closed__31; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162____closed__2; static lean_object* l_stx___x3c_x7c_x3e_____closed__1; static lean_object* l_Lean_Parser_Tactic_rwWithRfl___closed__2; lean_object* l_Lean_SourceInfo_fromRef(lean_object*); @@ -308,7 +312,6 @@ lean_object* l_Lean_Parser_Tactic_simpAll; static lean_object* l_myMacro____x40_Init_Notation___hyg_3988____closed__7; static lean_object* l_Lean_Parser_Tactic_generalize___closed__4; static lean_object* l_Lean_Parser_Tactic_first___closed__1; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17028____closed__3; static lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__10; static lean_object* l_Lean_Parser_Tactic_revert___closed__8; static lean_object* l_term___x24_______closed__6; @@ -318,8 +321,10 @@ static lean_object* l_term_xac_____closed__6; static lean_object* l_Lean_Parser_Tactic_locationWildcard___closed__2; static lean_object* l_term___x2f_x5c_____closed__6; static lean_object* l_Lean_Parser_Tactic_intro___closed__4; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162____closed__5; static lean_object* l_Lean_Parser_Tactic_simp___closed__10; static lean_object* l_myMacro____x40_Init_Notation___hyg_2554____closed__4; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352____closed__5; static lean_object* l_term___x3e_x3e_x3d_____closed__3; static lean_object* l_myMacro____x40_Init_Notation___hyg_10951____closed__3; static lean_object* l_term___x3c_x3c_x3c_____closed__7; @@ -348,7 +353,6 @@ static lean_object* l_myMacro____x40_Init_Notation___hyg_4227____closed__3; static lean_object* l_term___x7c_x7c_____closed__5; static lean_object* l_Lean_Parser_Tactic_location___closed__3; static lean_object* l_term___u2265_____closed__2; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__3; static lean_object* l_Lean_Parser_Tactic_refine_x27___closed__6; static lean_object* l_myMacro____x40_Init_Notation___hyg_12122____closed__2; static lean_object* l_prioLow___closed__3; @@ -369,6 +373,7 @@ static lean_object* l_myMacro____x40_Init_Notation___hyg_12122____closed__1; static lean_object* l_stx_x21_____closed__1; static lean_object* l_Lean_Parser_Tactic_rename___closed__3; static lean_object* l_term___x3c_x2a_____closed__2; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19423____closed__1; static lean_object* l_myMacro____x40_Init_Notation___hyg_2554____closed__6; static lean_object* l_myMacro____x40_Init_Notation___hyg_2076____closed__2; static lean_object* l_Lean_Parser_Syntax_addPrec___closed__13; @@ -379,6 +384,7 @@ static lean_object* l_Lean_Parser_Tactic_simp___closed__11; static lean_object* l_myMacro____x40_Init_Notation___hyg_7339____closed__7; static lean_object* l_Lean_Parser_Tactic_change___closed__4; static lean_object* l_Lean_Parser_Tactic_failIfSuccess___closed__2; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19037____closed__2; static lean_object* l_term___x5e_____closed__7; static lean_object* l_Lean_Parser_Tactic_tacticUnhygienic_____closed__6; static lean_object* l_Lean_Parser_Tactic_simp___closed__19; @@ -386,6 +392,7 @@ static lean_object* l_Lean_Parser_Tactic_skip___closed__2; static lean_object* l_myMacro____x40_Init_Notation___hyg_10951____closed__5; static lean_object* l_myMacro____x40_Init_Notation___hyg_3032____closed__9; static lean_object* l_term___x7c_x7c_x7c_____closed__2; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__7; static lean_object* l_myMacro____x40_Init_Notation___hyg_13788____closed__2; static lean_object* l_myMacro____x40_Init_Notation___hyg_10258____closed__1; static lean_object* l_Lean_Parser_Tactic_injection___closed__8; @@ -404,6 +411,7 @@ static lean_object* l_Lean_Parser_Tactic_change___closed__1; static lean_object* l_Lean_Parser_Tactic_intro___closed__13; static lean_object* l_myMacro____x40_Init_Notation___hyg_984____closed__3; static lean_object* l_myMacro____x40_Init_Notation___hyg_1377____closed__1; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20075____closed__1; static lean_object* l_term_u2039___u203a___closed__5; static lean_object* l_termDepIfThenElse___closed__3; static lean_object* l_myMacro____x40_Init_Notation___hyg_5421____closed__3; @@ -416,7 +424,6 @@ lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_15699_(lean_object*, lean lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_15999_(lean_object*, lean_object*, lean_object*); static lean_object* l_prioMid___closed__2; static lean_object* l_Lean_Parser_Tactic_rename___closed__7; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19024____closed__2; static lean_object* l_myMacro____x40_Init_Notation___hyg_12122____closed__8; lean_object* l_Lean_Parser_Tactic_tacticUnhygienic__; static lean_object* l_myMacro____x40_Init_Notation___hyg_984____closed__5; @@ -437,11 +444,13 @@ static lean_object* l_myMacro____x40_Init_Notation___hyg_10258____closed__2; static lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__16; lean_object* l_Lean_Parser_Tactic_tacticRepeat__; static lean_object* l_Lean_Parser_Tactic_injection___closed__4; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17041____closed__3; static lean_object* l_myMacro____x40_Init_Notation___hyg_14290____closed__7; static lean_object* l_Lean_Parser_Tactic_tacticInferInstance___closed__3; static lean_object* l_myMacro____x40_Init_Notation___hyg_12600____closed__4; static lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__7; static lean_object* l_myMacro____x40_Init_Notation___hyg_11427____closed__4; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__1; static lean_object* l_Lean_Parser_Tactic_simpStar___closed__3; static lean_object* l_Lean_Parser_Tactic_tacticLet_____closed__1; static lean_object* l_term___x3e_x3e_____closed__3; @@ -471,6 +480,7 @@ lean_object* lean_array_push(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_injection___closed__9; static lean_object* l_myMacro____x40_Init_Notation___hyg_8995____closed__1; lean_object* lean_array_get_size(lean_object*); +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162____closed__3; static lean_object* l_myMacro____x40_Init_Notation___hyg_11883____closed__2; lean_object* l_termDepIfThenElse; static lean_object* l_myMacro____x40_Init_Notation___hyg_11427____closed__1; @@ -482,7 +492,6 @@ static lean_object* l_term_u2039___u203a___closed__2; static lean_object* l_rawNatLit___closed__4; static lean_object* l_Lean_Parser_Tactic_simp___closed__20; static lean_object* l_term___x24_______closed__3; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19410____closed__1; static lean_object* l_term___x5e_x5e_x5e_____closed__6; static lean_object* l_term___x3c_x24_x3e_____closed__1; static lean_object* l_term___u2218_____closed__2; @@ -504,10 +513,12 @@ static lean_object* l_myMacro____x40_Init_Notation___hyg_8534____closed__5; static lean_object* l_myMacro____x40_Init_Notation___hyg_15517____closed__10; lean_object* l_term___x2b_x2b__; static lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_15999____closed__5; +static lean_object* l_Lean_Parser_Tactic_renameI___closed__2; static lean_object* l_termDepIfThenElse___closed__7; static lean_object* l_Lean_Parser_Tactic_cases___closed__3; static lean_object* l_myMacro____x40_Init_Notation___hyg_11883____closed__9; static lean_object* l_myMacro____x40_Init_Notation___hyg_2076____closed__4; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__4; static lean_object* l_term___u2218_____closed__1; static lean_object* l_Lean_Parser_Tactic_clear___closed__4; static lean_object* l_Lean_Parser_Tactic_existsIntro___closed__4; @@ -525,6 +536,7 @@ static lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_15999____closed__1 static lean_object* l_myMacro____x40_Init_Notation___hyg_9780____closed__3; static lean_object* l_myMacro____x40_Init_Notation___hyg_10951____closed__4; static lean_object* l_term___u2264_____closed__3; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__4; static lean_object* l_term_u2039___u203a___closed__3; static lean_object* l_term___x5e_____closed__5; lean_object* lean_string_utf8_byte_size(lean_object*); @@ -532,6 +544,7 @@ static lean_object* l_myMacro____x40_Init_Notation___hyg_13788____closed__4; static lean_object* l_precArg___closed__1; static lean_object* l_term___u2218_____closed__9; static lean_object* l_term___x3c_x3d_____closed__4; +static lean_object* l_Lean_Parser_Tactic_anyGoals___closed__2; static lean_object* l_Lean_Parser_Tactic_generalize___closed__3; static lean_object* l_myMacro____x40_Init_Notation___hyg_2076____closed__9; static lean_object* l_myMacro____x40_Init_Notation___hyg_3510____closed__9; @@ -540,7 +553,6 @@ static lean_object* l_myMacro____x40_Init_Notation___hyg_11883____closed__4; static lean_object* l_Lean_Parser_Tactic_revert___closed__4; static lean_object* l_termMax__prec___closed__3; static lean_object* l_myMacro____x40_Init_Notation___hyg_11644____closed__1; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__4; static lean_object* l_myMacro____x40_Init_Notation___hyg_5637____closed__8; static lean_object* l_Lean_Parser_Tactic_tacticRefineLift_x27_____closed__5; static lean_object* l_myMacro____x40_Init_Notation___hyg_1377____closed__13; @@ -557,6 +569,7 @@ static lean_object* l_myMacro____x40_Init_Notation___hyg_13788____closed__1; static lean_object* l_Lean_Parser_Tactic_injection___closed__1; static lean_object* l_Lean_Parser_Tactic_case___closed__10; static lean_object* l_Lean_Parser_Tactic_locationHyp___closed__7; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352____closed__4; static lean_object* l_myMacro____x40_Init_Notation___hyg_13788____closed__9; static lean_object* l_myMacro____x40_Init_Notation___hyg_2076____closed__6; lean_object* l_myMacro____x40_Init_Notation___hyg_886____boxed(lean_object*, lean_object*, lean_object*); @@ -582,7 +595,6 @@ lean_object* l_Lean_term__Matches__; static lean_object* l_Lean_Parser_Tactic_focus___closed__2; static lean_object* l_myMacro____x40_Init_Notation___hyg_984____closed__4; static lean_object* l_myMacro____x40_Init_Notation___hyg_1954____closed__1; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__1; static lean_object* l_Lean_Parser_Tactic_assumption___closed__4; lean_object* l_Lean_Parser_Tactic_existsIntro; static lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__14; @@ -590,6 +602,7 @@ static lean_object* l_Lean_Parser_Tactic_intros___closed__6; static lean_object* l_myMacro____x40_Init_Notation___hyg_12361____closed__9; static lean_object* l_prec_x28___x29___closed__2; static lean_object* l_Lean_Parser_Tactic_first___closed__12; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__5; lean_object* l_Lean_Parser_Tactic_contradiction; static lean_object* l_Lean_Parser_Tactic_clear___closed__1; static lean_object* l_myMacro____x40_Init_Notation___hyg_12361____closed__3; @@ -605,6 +618,7 @@ static lean_object* l_precMin___closed__1; static lean_object* l_Lean_Parser_Tactic_case___closed__4; static lean_object* l_Lean_Parser_Tactic_rotateLeft___closed__3; static lean_object* l_myMacro____x40_Init_Notation___hyg_4944____closed__6; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__8; static lean_object* l_Lean_Parser_Tactic_simp___closed__17; static lean_object* l_myMacro____x40_Init_Notation___hyg_13317____closed__3; lean_object* l_Lean_Parser_Tactic_rwWithRfl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -620,8 +634,6 @@ static lean_object* l_term___x2f_x5c_____closed__5; static lean_object* l_Lean_Parser_Tactic_subst___closed__1; static lean_object* l_myMacro____x40_Init_Notation___hyg_8295____closed__9; static lean_object* l_term___x7c_x7c_____closed__2; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__4; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__3; static lean_object* l_myMacro____x40_Init_Notation___hyg_3988____closed__6; static lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__8; static lean_object* l_Lean_Parser_Tactic_simpErase___closed__4; @@ -642,7 +654,6 @@ static lean_object* l_termDepIfThenElse___closed__16; static lean_object* l_Lean_Parser_Tactic_erewriteSeq___closed__6; static lean_object* l_Lean_Parser_Tactic_tacticHave_____closed__7; static lean_object* l_myMacro____x40_Init_Notation___hyg_6622____closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_20778____closed__1; static lean_object* l_myMacro____x40_Init_Notation___hyg_15080____closed__7; static lean_object* l_myMacro____x40_Init_Notation___hyg_12361____closed__2; static lean_object* l_myMacro____x40_Init_Notation___hyg_14290____closed__14; @@ -666,12 +677,12 @@ static lean_object* l_term___x3a_x3a_____closed__4; static lean_object* l_Lean_Parser_Tactic_cases___closed__4; static lean_object* l_myMacro____x40_Init_Notation___hyg_11644____closed__9; lean_object* l_Lean_Parser_Tactic_assumption; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__5; lean_object* l_term___x3e__; lean_object* l_termMax__prec; static lean_object* l_Lean_Parser_Tactic_tacticRefineLift_____closed__4; static lean_object* l_Lean_Parser_Tactic_subst___closed__2; static lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__7; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__5; static lean_object* l_Lean_Parser_Tactic_focus___closed__4; static lean_object* l_myMacro____x40_Init_Notation___hyg_13317____closed__5; static lean_object* l_myMacro____x40_Init_Notation___hyg_1954____closed__2; @@ -680,6 +691,7 @@ static lean_object* l_Lean_Parser_Tactic_rotateLeft___closed__5; static lean_object* l_Lean_Parser_Tactic_erwSeq___closed__4; static lean_object* l_Lean_Parser_Tactic_change___closed__2; static lean_object* l_Lean_Parser_Tactic_tacticUnhygienic_____closed__1; +static lean_object* l_Lean_Parser_Tactic_anyGoals___closed__1; static lean_object* l_Lean_Parser_Tactic_tacticLet_____closed__5; static lean_object* l_myMacro____x40_Init_Notation___hyg_7817____closed__5; static lean_object* l_term___u2218_____closed__8; @@ -722,6 +734,7 @@ static lean_object* l_myMacro____x40_Init_Notation___hyg_5183____closed__6; static lean_object* l_myMacro____x40_Init_Notation___hyg_3988____closed__5; static lean_object* l_myMacro____x40_Init_Notation___hyg_12361____closed__7; static lean_object* l_Lean_Parser_Tactic_locationHyp___closed__3; +static lean_object* l_myMacro____x40_Init_Notation___hyg_20814____closed__3; lean_object* l_Lean_Parser_Tactic_case; static lean_object* l_term___x2f_____closed__4; static lean_object* l_term_x5b___x5d___closed__10; @@ -738,7 +751,6 @@ static lean_object* l_myMacro____x40_Init_Notation___hyg_5421____closed__2; static lean_object* l_myMacro____x40_Init_Notation___hyg_12361____closed__1; lean_object* l_Lean_Parser_Tactic_allGoals; lean_object* l_Lean_Parser_Tactic_tacticRefineLift_x27__; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149____closed__5; static lean_object* l_term___x3c_x7c_____closed__2; static lean_object* l_Lean_Parser_Tactic_refine___closed__3; static lean_object* l_Lean_Parser_Tactic_induction___closed__16; @@ -749,7 +761,6 @@ static lean_object* l_term_u2039___u203a___closed__1; static lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__9; static lean_object* l_term___x3c_x7c_x3e_____closed__4; static lean_object* l_myMacro____x40_Init_Notation___hyg_12600____closed__5; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__2; static lean_object* l_term_x21_____closed__1; static lean_object* l_Lean_Parser_Tactic_tactic_xb7_x2e_____closed__4; static lean_object* l_myMacro____x40_Init_Notation___hyg_1256____closed__8; @@ -776,7 +787,6 @@ static lean_object* l_Lean_Parser_Tactic_apply___closed__3; static lean_object* l_myMacro____x40_Init_Notation___hyg_15080____closed__5; static lean_object* l_Lean_Parser_Tactic_clear___closed__5; static lean_object* l_myMacro____x40_Init_Notation___hyg_7100____closed__1; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__5; static lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__5; static lean_object* l_term___u2218_____closed__5; static lean_object* l_Lean_Parser_Tactic_tacticAdmit___closed__2; @@ -809,7 +819,7 @@ static lean_object* l_term___u2218_____closed__7; static lean_object* l_term___x3c_x24_x3e_____closed__5; static lean_object* l_myMacro____x40_Init_Notation___hyg_2793____closed__3; static lean_object* l_myMacro____x40_Init_Notation___hyg_2793____closed__5; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149____closed__3; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19037____closed__3; static lean_object* l_Lean_Parser_Tactic_tacticAdmit___closed__5; static lean_object* l_myMacro____x40_Init_Notation___hyg_4705____closed__1; static lean_object* l_term___x3e_x3d_____closed__3; @@ -823,7 +833,6 @@ static lean_object* l_term___x24_______closed__9; static lean_object* l_myMacro____x40_Init_Notation___hyg_12361____closed__8; static lean_object* l_Lean_Parser_Tactic_changeWith___closed__8; static lean_object* l_Lean_Parser_Tactic_focus___closed__1; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19024____closed__3; static lean_object* l_myMacro____x40_Init_Notation___hyg_10734____closed__1; static lean_object* l_precArg___closed__3; static lean_object* l_term___x3c_x7c_____closed__5; @@ -847,6 +856,7 @@ static lean_object* l_prec_x28___x29___closed__1; static lean_object* l_myMacro____x40_Init_Notation___hyg_13317____closed__4; static lean_object* l_Lean_Parser_Tactic_simp___closed__23; static lean_object* l_Lean_Parser_Syntax_addPrio___closed__3; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352____closed__2; lean_object* l_prioLow; lean_object* l_Lean_Parser_Tactic_rewriteSeq; static lean_object* l_term___x3a_x3a_____closed__5; @@ -857,7 +867,6 @@ static lean_object* l_myMacro____x40_Init_Notation___hyg_8295____closed__5; static lean_object* l_Lean_Parser_Tactic_withReducibleAndInstances___closed__1; static lean_object* l_stx___x3f___closed__3; static lean_object* l_myMacro____x40_Init_Notation___hyg_11190____closed__5; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149____closed__2; static lean_object* l_Lean_Parser_Tactic_intro___closed__11; static lean_object* l_myMacro____x40_Init_Notation___hyg_2554____closed__7; lean_object* l_Lean_Parser_Tactic_focus; @@ -877,7 +886,6 @@ static lean_object* l_term___x5e_____closed__6; static lean_object* l_stx___x2c_x2a_x2c_x3f___closed__4; static lean_object* l_Lean_Parser_Tactic_simpAll___closed__11; static lean_object* l_termDepIfThenElse___closed__13; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18613____closed__2; lean_object* l_stx___x2b; static lean_object* l_term___x2a_x3e_____closed__3; static lean_object* l_Lean_Parser_Tactic_locationHyp___closed__10; @@ -887,7 +895,6 @@ lean_object* l_Lean_Parser_Tactic_tacticRefineLift__; static lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__3; lean_object* l_Lean_Parser_Tactic_rotateLeft; static lean_object* l_Lean_Parser_Tactic_focus___closed__6; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__5; static lean_object* l_myMacro____x40_Init_Notation___hyg_3510____closed__5; static lean_object* l_Lean_Parser_Tactic_changeWith___closed__1; static lean_object* l_Lean_Parser_Syntax_addPrio___closed__1; @@ -899,12 +906,12 @@ lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Syntax_addPrec___closed__14; static lean_object* l_stx_x21_____closed__5; static lean_object* l_prioHigh___closed__3; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__6; static lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__15; static lean_object* l_Lean_Parser_Tactic_cases___closed__2; static lean_object* l_myMacro____x40_Init_Notation___hyg_13317____closed__8; static lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_15999____closed__3; static lean_object* l_stx___x2c_x2a_x2c_x3f___closed__1; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__8; static lean_object* l_Lean_Parser_Syntax_addPrec___closed__5; static lean_object* l_Lean_Parser_Tactic_tacticAdmit___closed__1; static lean_object* l_stx___x3c_x7c_x3e_____closed__6; @@ -920,16 +927,15 @@ static lean_object* l_term___x3c_____closed__3; static lean_object* l_prioLow___closed__2; static lean_object* l_Lean_Parser_Tactic_induction___closed__7; static lean_object* l_term___x3a_x3a_____closed__3; +static lean_object* l_Lean_Parser_Tactic_renameI___closed__4; lean_object* l_Lean_Parser_Tactic_simpStar; static lean_object* l_Lean_Parser_Tactic_revert___closed__5; static lean_object* l_myMacro____x40_Init_Notation___hyg_13317____closed__7; static lean_object* l_term___u2227_____closed__1; static lean_object* l_term___u2264_____closed__6; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__2; lean_object* l_prio_x28___x29; lean_object* l_term___x2d__; static lean_object* l_term___x5c_x2f_____closed__2; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18613____closed__1; static lean_object* l_Lean_Parser_Tactic_tacticRfl___closed__3; static lean_object* l_Lean_Parser_Tactic_simpAll___closed__6; static lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_15699____closed__7; @@ -937,12 +943,13 @@ static lean_object* l_stx___x2c_x2b___closed__4; static lean_object* l_Lean_Parser_Tactic_simp___closed__4; lean_object* l_Lean_Syntax_setKind(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_traceState___closed__4; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352____closed__1; static lean_object* l_termDepIfThenElse___closed__21; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__4; static lean_object* l_Lean_Parser_Tactic_intro___closed__10; lean_object* l_precLead; static lean_object* l_myMacro____x40_Init_Notation___hyg_4705____closed__2; static lean_object* l_precMin1___closed__5; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__1; static lean_object* l_myMacro____x40_Init_Notation___hyg_7817____closed__7; static lean_object* l_prioHigh___closed__5; static lean_object* l_term___u2227_____closed__4; @@ -960,7 +967,6 @@ static lean_object* l_Lean_Parser_Tactic_letrec___closed__11; static lean_object* l_Lean_Parser_Tactic_revert___closed__3; static lean_object* l_Lean_Parser_Tactic_intros___closed__1; static lean_object* l_term___x5e_x5e_x5e_____closed__7; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__3; static lean_object* l_myMacro____x40_Init_Notation___hyg_2793____closed__7; lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_15699__expandListLit_match__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_simp___closed__13; @@ -974,7 +980,6 @@ static lean_object* l_term___x3e_x3d_____closed__4; static lean_object* l_myMacro____x40_Init_Notation___hyg_3271____closed__2; static lean_object* l_myMacro____x40_Init_Notation___hyg_3988____closed__4; static lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__5; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__1; static lean_object* l_Lean_Parser_Tactic_rotateLeft___closed__6; static lean_object* l_myMacro____x40_Init_Notation___hyg_14123____closed__2; static lean_object* l_myMacro____x40_Init_Notation___hyg_13078____closed__4; @@ -1000,6 +1005,7 @@ static lean_object* l_myMacro____x40_Init_Notation___hyg_218____closed__1; static lean_object* l_Lean_Parser_Tactic_simpLemma___closed__4; static lean_object* l_myMacro____x40_Init_Notation___hyg_3988____closed__9; static lean_object* l_term___x3a_x3a_____closed__1; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__3; static lean_object* l_precLead___closed__1; static lean_object* l_myMacro____x40_Init_Notation___hyg_13078____closed__9; static lean_object* l_Lean_Parser_Tactic_casesTarget___closed__1; @@ -1012,14 +1018,11 @@ static lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__ static lean_object* l_Lean_Parser_Tactic_letrec___closed__1; static lean_object* l_termDepIfThenElse___closed__6; static lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__14; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149____closed__4; static lean_object* l_myMacro____x40_Init_Notation___hyg_3271____closed__1; static lean_object* l_term___x24_______closed__13; static lean_object* l_termIfThenElse___closed__10; static lean_object* l_myMacro____x40_Init_Notation___hyg_7100____closed__8; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18098____closed__2; static lean_object* l_Lean_Parser_Syntax_addPrio___closed__5; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__2; static lean_object* l_myMacro____x40_Init_Notation___hyg_3271____closed__9; static lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__5; lean_object* l_Lean_Parser_Tactic_rwRuleSeq; @@ -1038,7 +1041,6 @@ lean_object* l_term___x3c_x2a_x3e__; static lean_object* l_Lean_Parser_Tactic_simpLemma___closed__1; static lean_object* l_term___x2d_____closed__3; static lean_object* l_myMacro____x40_Init_Notation___hyg_8295____closed__4; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__6; lean_object* l_term___x7e_x3d__; static lean_object* l_term___x3c_x24_x3e_____closed__4; static lean_object* l_Lean_Parser_Tactic_withReducibleAndInstances___closed__3; @@ -1046,7 +1048,9 @@ lean_object* l_Lean_Parser_Syntax_subPrec; lean_object* l_term___u2227__; static lean_object* l_stx___x3f___closed__4; static lean_object* l_myMacro____x40_Init_Notation___hyg_984____closed__1; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__2; static lean_object* l_myMacro____x40_Init_Notation___hyg_12122____closed__6; +static lean_object* l_Lean_Parser_Tactic_renameI___closed__1; lean_object* l_term___x2b__; static lean_object* l_Lean_Parser_Tactic_erwSeq___closed__2; static lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__6; @@ -1055,17 +1059,17 @@ static lean_object* l_Lean_Parser_Tactic_exact___closed__3; static lean_object* l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__9; static lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__3; static lean_object* l_prio_x28___x29___closed__3; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149____closed__1; static lean_object* l_myMacro____x40_Init_Notation___hyg_2076____closed__12; static lean_object* l_myMacro____x40_Init_Notation___hyg_14123____closed__1; static lean_object* l_myMacro____x40_Init_Notation___hyg_13078____closed__8; static lean_object* l_prioLow___closed__4; static lean_object* l_Lean_Parser_Tactic_tacticLet_x27_____closed__4; static lean_object* l_Lean_Parser_Tactic_assumption___closed__2; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__4; lean_object* l_Lean_Parser_Tactic_location; static lean_object* l_term_x7e_x7e_x7e_____closed__5; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__3; static lean_object* l_Lean_Parser_Tactic_locationHyp___closed__6; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18098____closed__1; static lean_object* l_Lean_Parser_Tactic_withReducibleAndInstances___closed__5; static lean_object* l_term___x5c_x2f_____closed__6; static lean_object* l_term___x3c_x2a_____closed__6; @@ -1082,8 +1086,8 @@ lean_object* l_term___x24____; static lean_object* l_term___x3a_x3a_____closed__2; static lean_object* l_Lean_Parser_Tactic_exact___closed__5; static lean_object* l_Lean_Parser_Tactic_rwRuleSeq___closed__4; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__8; static lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__7; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__5; lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_15699__expandListLit___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_term___x3e_____closed__4; static lean_object* l_myMacro____x40_Init_Notation___hyg_12839____closed__5; @@ -1121,7 +1125,9 @@ lean_object* l_Lean_Parser_Tactic_tacticHave_x27__; static lean_object* l_myMacro____x40_Init_Notation___hyg_4944____closed__9; static lean_object* l_term_x25_x5b___x7c___x5d___closed__4; static lean_object* l_myMacro____x40_Init_Notation___hyg_4227____closed__8; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__1; static lean_object* l_myMacro____x40_Init_Notation___hyg_7339____closed__5; +static lean_object* l_Lean_Parser_Tactic_anyGoals___closed__6; static lean_object* l_myMacro____x40_Init_Notation___hyg_3510____closed__7; static lean_object* l_myMacro____x40_Init_Notation___hyg_1256____closed__6; static lean_object* l_Lean_Parser_Tactic_change___closed__5; @@ -1144,6 +1150,7 @@ static lean_object* l_term___x3c_x2a_x3e_____closed__3; static lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__14; static lean_object* l_term___xd7_____closed__3; static lean_object* l_Lean_Parser_Tactic_tacticLet_x27_____closed__5; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17041____closed__4; static lean_object* l_term___x3d_x3d_____closed__5; static lean_object* l_term_x2d_____closed__5; static lean_object* l_Lean_Parser_Tactic_erewriteSeq___closed__7; @@ -1165,7 +1172,9 @@ static lean_object* l_Lean_Parser_Tactic_withReducibleAndInstances___closed__4; static lean_object* l_myMacro____x40_Init_Notation___hyg_9780____closed__1; static lean_object* l_Lean_Parser_Syntax_addPrio___closed__6; static lean_object* l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__1; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__2; lean_object* l_Lean_Parser_Tactic_tacticLet_x27__; +static lean_object* l_Lean_Parser_Tactic_anyGoals___closed__3; static lean_object* l_term___x26_x26_x26_____closed__2; lean_object* l_term___u2245__; static lean_object* l_Lean_Parser_Tactic_simpLemma___closed__6; @@ -1176,14 +1185,12 @@ static lean_object* l_myMacro____x40_Init_Notation___hyg_2315____closed__5; static lean_object* l_term_xac_____closed__2; static lean_object* l_Lean_Parser_Tactic_tactic_xb7_x2e_____closed__8; static lean_object* l_Lean_Parser_Tactic_first___closed__16; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__3; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__6; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__1; lean_object* l_Lean_Parser_Tactic_apply; static lean_object* l_Lean_Parser_Syntax_addPrec___closed__10; static lean_object* l_term___x7e_x3d_____closed__4; static lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__13; static lean_object* l_term___x7c_x7c_x7c_____closed__3; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__5; lean_object* l_term_x25_x5b___x7c___x5d; static lean_object* l_Lean_Parser_Tactic_rename___closed__1; static lean_object* l_myMacro____x40_Init_Notation___hyg_15517____closed__2; @@ -1191,8 +1198,10 @@ lean_object* l_Lean_Parser_Tactic_failIfSuccess; static lean_object* l_Lean_Parser_Tactic_simpAll___closed__2; static lean_object* l_Lean_Parser_Tactic_paren___closed__1; static lean_object* l_stx___x2c_x2a___closed__5; +static lean_object* l_myMacro____x40_Init_Notation___hyg_20814____closed__1; lean_object* l_term___x2a__; static lean_object* l_Lean_Parser_Tactic_letrec___closed__6; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__4; static lean_object* l_Lean_Parser_Tactic_done___closed__2; static lean_object* l_term___xd7_____closed__5; static lean_object* l_Lean_Parser_Tactic_change___closed__3; @@ -1211,14 +1220,16 @@ static lean_object* l_Lean_Parser_Tactic_subst___closed__3; static lean_object* l_Lean_Parser_Tactic_withReducible___closed__6; static lean_object* l_Lean_Parser_Tactic_tacticLet_x27_____closed__2; static lean_object* l_myMacro____x40_Init_Notation___hyg_5421____closed__6; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__2; +static lean_object* l_Lean_Parser_Tactic_anyGoals___closed__5; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__7; static lean_object* l_Lean_Parser_Tactic_simpAll___closed__1; static lean_object* l_termDepIfThenElse___closed__9; static lean_object* l_myMacro____x40_Init_Notation___hyg_72____closed__2; static lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__8; static lean_object* l_myMacro____x40_Init_Notation___hyg_11883____closed__7; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18111____closed__1; static lean_object* l_Lean_Parser_Tactic_withReducible___closed__5; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__4; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18626____closed__2; static lean_object* l_Lean_Parser_Tactic_injection___closed__7; lean_object* l_term___x2f_x5c__; static lean_object* l_term___x2b_x2b_____closed__2; @@ -1227,13 +1238,13 @@ static lean_object* l_myMacro____x40_Init_Notation___hyg_14290____closed__2; static lean_object* l_term___x3e_____closed__3; static lean_object* l_term___x25_____closed__4; static lean_object* l_Lean_Parser_Tactic_erewriteSeq___closed__4; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__6; static lean_object* l_Lean_Parser_Tactic_tacticShow_____closed__4; static lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__6; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticRefineLift_____closed__6; static lean_object* l_Lean_Parser_Tactic_case___closed__5; static lean_object* l_myMacro____x40_Init_Notation___hyg_11883____closed__5; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17041____closed__2; lean_object* l_unexpand____x40_Init_Notation___hyg_10002_(lean_object*, lean_object*); lean_object* l_unexpand____x40_Init_Notation___hyg_10718_(lean_object*, lean_object*); lean_object* l_unexpand____x40_Init_Notation___hyg_10934_(lean_object*, lean_object*); @@ -1264,6 +1275,7 @@ lean_object* l_unexpand____x40_Init_Notation___hyg_2298_(lean_object*, lean_obje lean_object* l_unexpand____x40_Init_Notation___hyg_4210_(lean_object*, lean_object*); lean_object* l_unexpand____x40_Init_Notation___hyg_3971_(lean_object*, lean_object*); lean_object* l_unexpand____x40_Init_Notation___hyg_2059_(lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__6; lean_object* l_unexpand____x40_Init_Notation___hyg_6844_(lean_object*, lean_object*); lean_object* l_unexpand____x40_Init_Notation___hyg_6605_(lean_object*, lean_object*); lean_object* l_unexpand____x40_Init_Notation___hyg_5166_(lean_object*, lean_object*); @@ -1283,7 +1295,6 @@ static lean_object* l_myMacro____x40_Init_Notation___hyg_3749____closed__5; static lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__5; static lean_object* l_term___x5e_____closed__1; static lean_object* l_Lean_Parser_Tactic_subst___closed__5; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339____closed__2; static lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__5; static lean_object* l_Lean_Parser_Tactic_induction___closed__20; lean_object* l_Lean_Parser_Tactic_subst; @@ -1297,13 +1308,14 @@ static lean_object* l_Lean_Parser_Tactic_tacticLet_x27_____closed__1; static lean_object* l_Lean_Parser_Tactic_tacticShow_____closed__1; static lean_object* l_myMacro____x40_Init_Notation___hyg_3271____closed__5; static lean_object* l_precArg___closed__5; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__1; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18626____closed__1; static lean_object* l_myMacro____x40_Init_Notation___hyg_72____closed__4; static lean_object* l_myMacro____x40_Init_Notation___hyg_3749____closed__3; static lean_object* l_term___x5c_x2f_____closed__1; static lean_object* l_unexpand____x40_Init_Notation___hyg_2059____closed__2; lean_object* l_Lean_Parser_Tactic_tacticLet__; static lean_object* l_term_x25_x5b___x7c___x5d___closed__9; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__2; static lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_15999____closed__13; static lean_object* l_Lean_Parser_Tactic_tacticRfl___closed__1; static lean_object* l_Lean_Parser_Tactic_intros___closed__4; @@ -1311,7 +1323,6 @@ static lean_object* l_termIfThenElse___closed__7; static lean_object* l_term___x3e_x3e_____closed__6; static lean_object* l_term___x5c_x2f_____closed__4; lean_object* l_stx___x3f; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339____closed__1; static lean_object* l_Lean_Parser_Tactic_existsIntro___closed__5; static lean_object* l_term___x3d_____closed__6; static lean_object* l_Lean_Parser_Tactic_change___closed__6; @@ -1327,10 +1338,10 @@ lean_object* l_Lean_mkAtomFrom(lean_object*, lean_object*); static lean_object* l_term___x5e_____closed__4; uint8_t l_Lean_Syntax_isNodeOf(lean_object*, lean_object*, lean_object*); static lean_object* l_myMacro____x40_Init_Notation___hyg_1377____closed__11; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__1; static lean_object* l_Lean_Parser_Tactic_rewriteSeq___closed__6; static lean_object* l_myMacro____x40_Init_Notation___hyg_14290____closed__1; static lean_object* l_Lean_Parser_Syntax_subPrio___closed__4; -static lean_object* l_myMacro____x40_Init_Notation___hyg_20778____closed__3; static lean_object* l_Lean_Parser_Tactic_first___closed__10; static lean_object* l_term___x3e_x3e_x3d_____closed__4; static lean_object* l_myMacro____x40_Init_Notation___hyg_2076____closed__11; @@ -1345,39 +1356,41 @@ static lean_object* l_term___x3c_x2a_x3e_____closed__6; static lean_object* l_Lean_Parser_Tactic_tacticRefineLift_____closed__3; static lean_object* l_term_x2d_____closed__3; static lean_object* l_precMin___closed__4; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18111____closed__2; static lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__2; static lean_object* l_Lean_Parser_Tactic_tacticLet_x27_____closed__3; static lean_object* l_Lean_Parser_Tactic_existsIntro___closed__6; static lean_object* l_myMacro____x40_Init_Notation___hyg_9780____closed__6; static lean_object* l_myMacro____x40_Init_Notation___hyg_1256____closed__1; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20388_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20329_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20270_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20039_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19718_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19553_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19410_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19203_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19024_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18747_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18613_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18098_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17247_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17028_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16815_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20424_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20365_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20306_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20075_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19731_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19566_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19423_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19216_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19037_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18760_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18626_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18111_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17260_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17041_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16828_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667_(lean_object*, lean_object*, lean_object*); static lean_object* l_myMacro____x40_Init_Notation___hyg_5183____closed__9; static lean_object* l_Lean_Parser_Tactic_tactic_xb7_x2e_____closed__6; static lean_object* l_term___u2227_____closed__2; static lean_object* l_term___x3e_____closed__1; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17041____closed__1; static lean_object* l_myMacro____x40_Init_Notation___hyg_8295____closed__3; static lean_object* l_term_x25_x5b___x7c___x5d___closed__8; static lean_object* l_term___u2228_____closed__3; @@ -1389,6 +1402,7 @@ lean_object* l_prioHigh; static lean_object* l_myMacro____x40_Init_Notation___hyg_13788____closed__7; static lean_object* l_term_xac_____closed__4; lean_object* l_precArg; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__5; static lean_object* l_term___x2b_____closed__3; static lean_object* l_precMax___closed__4; static lean_object* l_Lean_Parser_Tactic_simp___closed__14; @@ -1411,13 +1425,12 @@ static lean_object* l_Lean_Parser_Tactic_tacticLet_x27_____closed__6; static lean_object* l_Lean_Parser_Tactic_refine___closed__2; static lean_object* l_Lean_Parser_Tactic_tacticRefineLift_x27_____closed__1; static lean_object* l_Lean_Parser_Tactic_expandERwSeq___closed__1; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__4; static lean_object* l_myMacro____x40_Init_Notation___hyg_1377____closed__10; static lean_object* l_myMacro____x40_Init_Notation___hyg_10951____closed__1; static lean_object* l_Lean_Parser_Tactic_first___closed__3; static lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__1; static lean_object* l_myMacro____x40_Init_Notation___hyg_804____closed__1; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__5; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17260____closed__1; static lean_object* l_myMacro____x40_Init_Notation___hyg_12839____closed__7; static lean_object* l_Lean_Parser_Tactic_case___closed__3; static lean_object* l_Lean_Parser_Tactic_refine_x27___closed__3; @@ -1425,6 +1438,7 @@ static lean_object* l_myMacro____x40_Init_Notation___hyg_8056____closed__2; static lean_object* l_myMacro____x40_Init_Notation___hyg_7339____closed__9; static lean_object* l_stx___x2c_x2b___closed__2; static lean_object* l_myMacro____x40_Init_Notation___hyg_7100____closed__5; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__3; static lean_object* l_myMacro____x40_Init_Notation___hyg_14123____closed__3; static lean_object* l_myMacro____x40_Init_Notation___hyg_4227____closed__6; static lean_object* l_Lean_Parser_Tactic_first___closed__15; @@ -1436,14 +1450,12 @@ static lean_object* l_stx___x3c_x7c_x3e_____closed__7; static lean_object* l_Lean_Parser_Tactic_changeWith___closed__6; static lean_object* l_myMacro____x40_Init_Notation___hyg_14123____closed__5; static lean_object* l_Lean_Parser_Tactic_simpPre___closed__2; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17247____closed__1; static lean_object* l_myMacro____x40_Init_Notation___hyg_2076____closed__10; static lean_object* l_myMacro____x40_Init_Notation___hyg_13788____closed__10; static lean_object* l_myMacro____x40_Init_Notation___hyg_13317____closed__6; static lean_object* l_myMacro____x40_Init_Notation___hyg_2793____closed__6; static lean_object* l_term___x3c_x7c_____closed__7; static lean_object* l_termDepIfThenElse___closed__19; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17028____closed__2; static lean_object* l_myMacro____x40_Init_Notation___hyg_3988____closed__8; static lean_object* l_Lean_Parser_Tactic_focus___closed__5; lean_object* l_Lean_Syntax_setArg(lean_object*, lean_object*, lean_object*); @@ -1477,7 +1489,6 @@ static lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_15999____closed__6 static lean_object* l_Lean_Parser_Tactic_simp___closed__15; static lean_object* l_myMacro____x40_Init_Notation___hyg_8295____closed__2; static lean_object* l_Lean_term__Matches_____closed__5; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17028____closed__1; static lean_object* l_term___x3d_____closed__2; static lean_object* l_Lean_Parser_Tactic_refine___closed__4; static lean_object* l_myMacro____x40_Init_Notation___hyg_10734____closed__6; @@ -1485,7 +1496,6 @@ static lean_object* l_Lean_Parser_Tactic_tacticTry_____closed__3; static lean_object* l_myMacro____x40_Init_Notation___hyg_367____closed__1; static lean_object* l_precMax___closed__1; static lean_object* l_myMacro____x40_Init_Notation___hyg_7339____closed__2; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__2; static lean_object* l_termWithout__expected__type_____closed__6; static lean_object* l_myMacro____x40_Init_Notation___hyg_14290____closed__9; lean_object* l_Lean_Parser_Tactic_exact; @@ -1493,7 +1503,6 @@ static lean_object* l_term___u2228_____closed__5; static lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__17; static lean_object* l_Lean_Parser_Tactic_first___closed__5; static lean_object* l_stx___x2c_x2b___closed__1; -static lean_object* l_myMacro____x40_Init_Notation___hyg_20778____closed__2; static lean_object* l_term___x7c_x3e_____closed__7; static lean_object* l_precMin___closed__5; static lean_object* l_Lean_Parser_Tactic_case___closed__1; @@ -1514,6 +1523,7 @@ static lean_object* l_Lean_Parser_Tactic_induction___closed__15; static lean_object* l_myMacro____x40_Init_Notation___hyg_1256____closed__3; static lean_object* l_myMacro____x40_Init_Notation___hyg_9780____closed__2; static lean_object* l_term___x24_______closed__12; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__2; lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_15699__expandListLit_match__1(lean_object*); static lean_object* l_myMacro____x40_Init_Notation___hyg_2793____closed__9; static lean_object* l_Lean_Parser_Tactic_tacticLet_____closed__3; @@ -1522,6 +1532,7 @@ static lean_object* l_term___x3c_x2a_x3e_____closed__5; static lean_object* l_Lean_Parser_Tactic_tacticRefineLift_____closed__5; static lean_object* l_myMacro____x40_Init_Notation___hyg_11190____closed__2; static lean_object* l_myMacro____x40_Init_Notation___hyg_3749____closed__1; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__8; static lean_object* l_myMacro____x40_Init_Notation___hyg_7100____closed__3; static lean_object* l_Lean_Parser_Tactic_locationTargets___closed__1; static lean_object* l_myMacro____x40_Init_Notation___hyg_15517____closed__4; @@ -1529,7 +1540,6 @@ static lean_object* l_termIfThenElse___closed__5; static lean_object* l_Lean_Parser_Tactic_locationWildcard___closed__3; static lean_object* l_rawNatLit___closed__3; static lean_object* l_term_x5b___x5d___closed__6; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__2; static lean_object* l_Lean_Parser_Tactic_failIfSuccess___closed__4; static lean_object* l_Lean_Parser_Tactic_simp___closed__1; static lean_object* l_myMacro____x40_Init_Notation___hyg_3749____closed__9; @@ -1540,17 +1550,18 @@ static lean_object* l_Lean_Parser_Tactic_rename___closed__8; static lean_object* l_term___u2245_____closed__6; static lean_object* l_myMacro____x40_Init_Notation___hyg_4944____closed__3; static lean_object* l_myMacro____x40_Init_Notation___hyg_4466____closed__4; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__1; static lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__9; static lean_object* l_Lean_Parser_Tactic_induction___closed__3; static lean_object* l_term___x3c_x3d_____closed__3; lean_object* l_Array_appendCore___rarg(lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__3; static lean_object* l_Lean_Parser_Tactic_case___closed__9; static lean_object* l_Lean_Parser_Tactic_tacticTry_____closed__6; static lean_object* l_term___u2228_____closed__1; static lean_object* l_term___x26_x26_____closed__7; static lean_object* l_Lean_Parser_Tactic_tacticRfl___closed__2; lean_object* l_Lean_Parser_Tactic_letrec; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__4; static lean_object* l_myMacro____x40_Init_Notation___hyg_3988____closed__2; static lean_object* l_Lean_Parser_Tactic_tacticRepeat_____closed__6; lean_object* l_term_x7b_____x3a___x2f_x2f___x7d; @@ -1563,6 +1574,7 @@ static lean_object* l_Lean_Parser_Tactic_locationHyp___closed__9; static lean_object* l_Lean_Parser_Tactic_injection___closed__10; static lean_object* l_myMacro____x40_Init_Notation___hyg_7339____closed__1; static lean_object* l_myMacro____x40_Init_Notation___hyg_15517____closed__9; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__4; static lean_object* l_myMacro____x40_Init_Notation___hyg_3749____closed__4; static lean_object* l_term___x3c_x7c_x3e_____closed__1; static lean_object* l_myMacro____x40_Init_Notation___hyg_12122____closed__7; @@ -1579,14 +1591,12 @@ static lean_object* l_precMin___closed__3; static lean_object* l_Lean_Parser_Tactic_tacticHave_____closed__2; lean_object* l_termIfLet___x3a_x3d__Then__Else__; static lean_object* l_stx___x2b___closed__1; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__4; static lean_object* l_myMacro____x40_Init_Notation___hyg_3749____closed__8; static lean_object* l_Lean_Parser_Tactic_simpAll___closed__3; static lean_object* l_Lean_Parser_Tactic_induction___closed__18; static lean_object* l_Lean_Parser_Syntax_subPrec___closed__6; static lean_object* l_Lean_Parser_Tactic_letrec___closed__8; lean_object* l_term___x3c_x24_x3e__; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17028____closed__4; static lean_object* l_Lean_Parser_Tactic_rwRule___closed__10; static lean_object* l_myMacro____x40_Init_Notation___hyg_7339____closed__3; lean_object* l_Lean_Parser_Tactic_withReducibleAndInstances; @@ -1617,7 +1627,6 @@ static lean_object* l_Lean_Parser_Syntax_addPrec___closed__12; lean_object* l_stx___x2c_x2b; static lean_object* l_Lean_Parser_Tactic_simp___closed__24; static lean_object* l_term_x7e_x7e_x7e_____closed__1; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__1; static lean_object* l_Lean_Parser_Tactic_simp___closed__7; static lean_object* l_term___x3a_x3a_____closed__7; static lean_object* l_myMacro____x40_Init_Notation___hyg_5837____closed__3; @@ -1639,17 +1648,19 @@ static lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__21; static lean_object* l_Lean_Parser_Tactic_rewriteSeq___closed__3; static lean_object* l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__6; static lean_object* l_term___x3c_____closed__6; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__3; lean_object* l_Lean_Parser_Tactic_tacticTry__; static lean_object* l_Lean_Parser_Tactic_erwSeq___closed__7; static lean_object* l_term___x3c_x3c_x3c_____closed__1; static lean_object* l_Lean_Parser_Tactic_simpAll___closed__9; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__5; static lean_object* l_term___x7e_x3d_____closed__6; static lean_object* l_Lean_Parser_Tactic_refine_x27___closed__4; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__1; static lean_object* l_stx___x2b___closed__3; static lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____closed__2; static lean_object* l_term___x2b_____closed__5; static lean_object* l_Lean_Parser_Tactic_tacticSuffices_____closed__6; +static lean_object* l_Lean_Parser_Tactic_renameI___closed__3; static lean_object* l_myMacro____x40_Init_Notation___hyg_15080____closed__8; static lean_object* l_myMacro____x40_Init_Notation___hyg_4944____closed__2; static lean_object* l_myMacro____x40_Init_Notation___hyg_3032____closed__5; @@ -1657,6 +1668,7 @@ static lean_object* l_Lean_Parser_Tactic_induction___closed__14; static lean_object* l_myMacro____x40_Init_Notation___hyg_2793____closed__1; static lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_15699____closed__5; static lean_object* l_Lean_Parser_Tactic_case___closed__7; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__3; static lean_object* l_myMacro____x40_Init_Notation___hyg_5421____closed__4; static lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__9; static lean_object* l_myMacro____x40_Init_Notation___hyg_984____closed__7; @@ -1665,7 +1677,6 @@ static lean_object* l_Lean_Parser_Tactic_constructor___closed__2; static lean_object* l_Lean_Parser_Tactic_tacticTrivial___closed__3; static lean_object* l_term___x2a_x3e_____closed__1; static lean_object* l_prio_x28___x29___closed__2; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__5; static lean_object* l_prec_x28___x29___closed__10; static lean_object* l_termDepIfThenElse___closed__17; static lean_object* l_term___x26_x26_x26_____closed__7; @@ -1675,21 +1686,18 @@ static lean_object* l_myMacro____x40_Init_Notation___hyg_14290____closed__11; static lean_object* l_Lean_Parser_Tactic_exact___closed__4; lean_object* l_Lean_Parser_Syntax_addPrio; static lean_object* l_term___x2a_____closed__2; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__3; static lean_object* l_myMacro____x40_Init_Notation___hyg_7100____closed__7; static lean_object* l_Lean_Parser_Tactic_done___closed__4; lean_object* l_Lean_Parser_Tactic_tacticInferInstance; static lean_object* l_termDepIfThenElse___closed__27; static lean_object* l_Lean_Parser_Tactic_simpLemma___closed__7; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__7; lean_object* l_term___x3e_x3e_x3e__; static lean_object* l_prioMid___closed__5; static lean_object* l_Lean_Parser_Tactic_apply___closed__1; lean_object* l_stx___x2a; static lean_object* l_Lean_Parser_Tactic_rwSeq___closed__7; lean_object* l_term___x2f__; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339____closed__4; +static lean_object* l_Lean_Parser_Tactic_renameI___closed__5; static lean_object* l_termDepIfThenElse___closed__4; static lean_object* l_myMacro____x40_Init_Notation___hyg_5421____closed__9; static lean_object* l_termIfThenElse___closed__2; @@ -1698,22 +1706,26 @@ static lean_object* l_myMacro____x40_Init_Notation___hyg_10258____closed__6; static lean_object* l_stx___x2c_x2b_x2c_x3f___closed__5; static lean_object* l_stx_x21_____closed__3; static lean_object* l_Lean_Parser_Tactic_letrec___closed__7; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__4; static lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__13; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2; static lean_object* l_term___x3c_x2a_x3e_____closed__1; lean_object* l_term___x7c_x3e__; static lean_object* l_Lean_Parser_Tactic_first___closed__6; static lean_object* l_precArg___closed__2; static lean_object* l_myMacro____x40_Init_Notation___hyg_8534____closed__6; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__6; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__5; static lean_object* l_Lean_Parser_Tactic_generalize___closed__7; static lean_object* l_myMacro____x40_Init_Notation___hyg_1516____closed__3; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic_renameI___closed__6; static lean_object* l_term_x7e_x7e_x7e_____closed__3; static lean_object* l_Lean_Parser_Tactic_tacticInferInstance___closed__2; static lean_object* l_Lean_Parser_Tactic_induction___closed__4; static lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_15999____closed__9; static lean_object* l_stx_x21_____closed__4; static lean_object* l_term___x3d_x3d_____closed__2; +lean_object* l_Lean_Parser_Tactic_anyGoals; lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_15699__expandListLit(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticRepeat_____closed__1; static lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__7; @@ -1722,8 +1734,8 @@ static lean_object* l_precMin1___closed__2; static lean_object* l_myMacro____x40_Init_Notation___hyg_5421____closed__8; static lean_object* l_Lean_Parser_Tactic_rwRuleSeq___closed__5; static lean_object* l_myMacro____x40_Init_Notation___hyg_11644____closed__2; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__4; static lean_object* l_term___u2264_____closed__1; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__7; lean_object* l_Lean_Parser_Tactic_withReducible; static lean_object* l_prioMid___closed__3; static lean_object* l_term___u2265_____closed__3; @@ -1765,7 +1777,6 @@ static lean_object* l_myMacro____x40_Init_Notation___hyg_12839____closed__1; static lean_object* l_myMacro____x40_Init_Notation___hyg_5183____closed__2; static lean_object* l_Lean_Parser_Tactic_rwSeq___closed__2; static lean_object* l_Lean_Parser_Tactic_changeWith___closed__3; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339____closed__5; lean_object* l_prec_x28___x29; static lean_object* l_rawNatLit___closed__6; static lean_object* l_myMacro____x40_Init_Notation___hyg_2076____closed__3; @@ -1793,6 +1804,7 @@ static lean_object* l_myMacro____x40_Init_Notation___hyg_12839____closed__9; static lean_object* l_term___x24_______closed__7; static lean_object* l_myMacro____x40_Init_Notation___hyg_1166____closed__4; static lean_object* l_term_x7e_x7e_x7e_____closed__6; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__3; static lean_object* l_term___x26_x26_____closed__1; static lean_object* l_term___x26_x26_____closed__2; lean_object* l_precMax; @@ -1804,9 +1816,12 @@ static lean_object* l_prioHigh___closed__4; lean_object* l_precMin1; lean_object* l_term___u2265__; static lean_object* l_Lean_Parser_Tactic_rotateLeft___closed__1; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__7; static lean_object* l_myMacro____x40_Init_Notation___hyg_1655____closed__1; static lean_object* l_Lean_term__Matches_____closed__1; static lean_object* l_Lean_Parser_Tactic_allGoals___closed__4; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__5; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__3; static lean_object* l_prioMid___closed__1; static lean_object* l_Lean_Parser_Tactic_intro___closed__1; static lean_object* l_term___xd7_____closed__1; @@ -1817,19 +1832,17 @@ static lean_object* l_Lean_Parser_Tactic_tactic_xb7_x2e_____closed__7; static lean_object* l_Lean_Parser_Tactic_rwRuleSeq___closed__3; static lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__11; static lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__4; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__1; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__3; static lean_object* l_Lean_Parser_Tactic_simpAll___closed__12; static lean_object* l_term_x2d_____closed__7; static lean_object* l_Lean_Parser_Tactic_first___closed__13; static lean_object* l_Lean_Parser_Tactic_tacticLet_____closed__7; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18098____closed__3; static lean_object* l_Lean_Parser_Tactic_tacticRefineLift_x27_____closed__3; static lean_object* l_Lean_Parser_Tactic_locationHyp___closed__2; static lean_object* l_termIfThenElse___closed__4; static lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__1; static lean_object* l_Lean_Parser_Tactic_simpErase___closed__3; static lean_object* l_myMacro____x40_Init_Notation___hyg_5183____closed__1; +static lean_object* l_myMacro____x40_Init_Notation___hyg_20814____closed__2; static lean_object* l_rawNatLit___closed__5; static lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__19; static lean_object* l_Lean_Parser_Tactic_existsIntro___closed__2; @@ -1922,11 +1935,9 @@ static lean_object* l_Lean_Parser_Tactic_intro___closed__15; static lean_object* l_term___x26_x26_____closed__3; static lean_object* l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__7; static lean_object* l_prio_x28___x29___closed__1; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__5; static lean_object* l_myMacro____x40_Init_Notation___hyg_1166____closed__2; lean_object* l_Lean_Parser_Tactic_tacticSuffices__; static lean_object* l_Lean_Parser_Tactic_withReducible___closed__3; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339____closed__3; static lean_object* l_Lean_Parser_Tactic_case___closed__13; static lean_object* l_Lean_Parser_Tactic_tacticUnhygienic_____closed__3; static lean_object* l_myMacro____x40_Init_Notation___hyg_15080____closed__1; @@ -1946,6 +1957,7 @@ static lean_object* l_term___x2f_x5c_____closed__4; static lean_object* l_Lean_Parser_Tactic_tactic_xb7_x2e_____closed__3; static lean_object* l_Lean_Parser_Tactic_constructor___closed__1; static lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____closed__1; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__2; static lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__4; lean_object* l_Lean_Parser_Tactic_locationHyp; static lean_object* l_term___x3e_x3e_x3d_____closed__5; @@ -1953,6 +1965,7 @@ lean_object* l_Lean_Parser_Tactic_refine; static lean_object* l_Lean_Parser_Tactic_rwSeq___closed__6; static lean_object* l_term___x3c_x3c_x3c_____closed__4; static lean_object* l_Lean_Parser_Tactic_tacticSuffices_____closed__2; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17260____closed__2; static lean_object* l_term_x7e_x7e_x7e_____closed__4; static lean_object* l_Lean_Parser_Tactic_generalize___closed__5; static lean_object* l_myMacro____x40_Init_Notation___hyg_15080____closed__9; @@ -2017,6 +2030,7 @@ static lean_object* l_Lean_Parser_Tactic_letrec___closed__5; static lean_object* l_myMacro____x40_Init_Notation___hyg_6622____closed__1; static lean_object* l_termDepIfThenElse___closed__1; static lean_object* l_myMacro____x40_Init_Notation___hyg_2315____closed__1; +static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__2; static lean_object* l_term___x2b_____closed__4; lean_object* l_term___x2a_x3e__; static lean_object* l_term___x24_______closed__10; @@ -2024,9 +2038,9 @@ static lean_object* l_prio_x28___x29___closed__4; static lean_object* l_Lean_Parser_Tactic_tacticSuffices_____closed__3; static lean_object* l_myMacro____x40_Init_Notation___hyg_6622____closed__2; static lean_object* l_Lean_Parser_Tactic_rwSeq___closed__5; +static lean_object* l_Lean_Parser_Tactic_anyGoals___closed__4; static lean_object* l_Lean_Parser_Tactic_tacticRepeat_____closed__4; static lean_object* l_myMacro____x40_Init_Notation___hyg_2076____closed__7; -static lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17247____closed__2; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); static lean_object* l_myMacro____x40_Init_Notation___hyg_12839____closed__4; static lean_object* l_myMacro____x40_Init_Notation___hyg_8056____closed__5; @@ -30383,6 +30397,80 @@ x_1 = l_Lean_Parser_Tactic_allGoals___closed__6; return x_1; } } +static lean_object* _init_l_Lean_Parser_Tactic_anyGoals___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("anyGoals"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_anyGoals___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_intro___closed__2; +x_2 = l_Lean_Parser_Tactic_anyGoals___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_anyGoals___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("anyGoals "); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_anyGoals___closed__4() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_anyGoals___closed__3; +x_2 = 0; +x_3 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_anyGoals___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_addPrec___closed__10; +x_2 = l_Lean_Parser_Tactic_anyGoals___closed__4; +x_3 = l_Lean_Parser_Tactic_case___closed__12; +x_4 = lean_alloc_ctor(2, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_anyGoals___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_anyGoals___closed__2; +x_2 = lean_unsigned_to_nat(1022u); +x_3 = l_Lean_Parser_Tactic_anyGoals___closed__5; +x_4 = lean_alloc_ctor(3, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_anyGoals() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_Tactic_anyGoals___closed__6; +return x_1; +} +} static lean_object* _init_l_Lean_Parser_Tactic_focus___closed__1() { _start: { @@ -31469,7 +31557,7 @@ x_1 = l_Lean_Parser_Tactic_tacticTry_____closed__6; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__1() { _start: { lean_object* x_1; @@ -31477,17 +31565,17 @@ x_1 = lean_mk_string("seq1"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic_intro___closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__1; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -31497,7 +31585,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__4() { _start: { lean_object* x_1; @@ -31505,17 +31593,17 @@ x_1 = lean_mk_string("tacticSeq1Indented"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic_intro___closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__4; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -31557,7 +31645,7 @@ lean_ctor_set(x_16, 0, x_12); lean_ctor_set(x_16, 1, x_15); x_17 = l_myMacro____x40_Init_Notation___hyg_72____closed__4; x_18 = lean_array_push(x_17, x_9); -x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__3; +x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__3; x_20 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -31590,7 +31678,7 @@ x_37 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_37, 0, x_36); lean_ctor_set(x_37, 1, x_35); x_38 = lean_array_push(x_17, x_37); -x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__5; +x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__5; x_40 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_40, 0, x_39); lean_ctor_set(x_40, 1, x_38); @@ -31618,7 +31706,7 @@ x_53 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_53, 0, x_36); lean_ctor_set(x_53, 1, x_52); x_54 = lean_array_push(x_17, x_53); -x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2; +x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2; x_56 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_56, 0, x_55); lean_ctor_set(x_56, 1, x_54); @@ -31645,7 +31733,7 @@ lean_ctor_set(x_62, 0, x_57); lean_ctor_set(x_62, 1, x_61); x_63 = l_myMacro____x40_Init_Notation___hyg_72____closed__4; x_64 = lean_array_push(x_63, x_9); -x_65 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__3; +x_65 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__3; x_66 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_66, 0, x_65); lean_ctor_set(x_66, 1, x_64); @@ -31678,7 +31766,7 @@ x_83 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_83, 0, x_82); lean_ctor_set(x_83, 1, x_81); x_84 = lean_array_push(x_63, x_83); -x_85 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__5; +x_85 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__5; x_86 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_86, 0, x_85); lean_ctor_set(x_86, 1, x_84); @@ -31706,7 +31794,7 @@ x_99 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_99, 0, x_82); lean_ctor_set(x_99, 1, x_98); x_100 = lean_array_push(x_63, x_99); -x_101 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2; +x_101 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2; x_102 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_102, 0, x_101); lean_ctor_set(x_102, 1, x_100); @@ -31822,7 +31910,7 @@ x_1 = l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__9; return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16815_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16828_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -31898,12 +31986,12 @@ x_37 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_37, 0, x_23); lean_ctor_set(x_37, 1, x_36); x_38 = lean_array_push(x_21, x_37); -x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__5; +x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__5; x_40 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_40, 0, x_39); lean_ctor_set(x_40, 1, x_38); x_41 = lean_array_push(x_21, x_40); -x_42 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__3; +x_42 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__3; x_43 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_43, 0, x_42); lean_ctor_set(x_43, 1, x_41); @@ -32021,12 +32109,12 @@ x_103 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_103, 0, x_89); lean_ctor_set(x_103, 1, x_102); x_104 = lean_array_push(x_87, x_103); -x_105 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__5; +x_105 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__5; x_106 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_106, 0, x_105); lean_ctor_set(x_106, 1, x_104); x_107 = lean_array_push(x_87, x_106); -x_108 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__3; +x_108 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__3; x_109 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_109, 0, x_108); lean_ctor_set(x_109, 1, x_107); @@ -32201,7 +32289,7 @@ x_1 = l_Lean_Parser_Tactic_tactic_xb7_x2e_____closed__9; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17028____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17041____closed__1() { _start: { lean_object* x_1; @@ -32209,17 +32297,17 @@ x_1 = lean_mk_string("tacticSeqBracketed"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17028____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17041____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic_intro___closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17028____closed__1; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17041____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17028____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17041____closed__3() { _start: { lean_object* x_1; @@ -32227,7 +32315,7 @@ x_1 = lean_mk_string("}"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17028____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17041____closed__4() { _start: { lean_object* x_1; @@ -32235,7 +32323,7 @@ x_1 = lean_mk_string("{"); return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17028_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17041_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -32301,7 +32389,7 @@ x_34 = l_myMacro____x40_Init_Notation___hyg_984____closed__8; x_35 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_35, 0, x_34); lean_ctor_set(x_35, 1, x_33); -x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17028____closed__3; +x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17041____closed__3; lean_inc(x_14); x_37 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_37, 0, x_14); @@ -32309,14 +32397,14 @@ lean_ctor_set(x_37, 1, x_36); if (lean_obj_tag(x_15) == 0) { lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; -x_38 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17028____closed__4; +x_38 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17041____closed__4; x_39 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_39, 0, x_14); lean_ctor_set(x_39, 1, x_38); x_40 = lean_array_push(x_20, x_39); x_41 = lean_array_push(x_40, x_35); x_42 = lean_array_push(x_41, x_37); -x_43 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17028____closed__2; +x_43 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17041____closed__2; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); @@ -32330,14 +32418,14 @@ lean_dec(x_14); x_45 = lean_ctor_get(x_15, 0); lean_inc(x_45); lean_dec(x_15); -x_46 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17028____closed__4; +x_46 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17041____closed__4; x_47 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_47, 0, x_45); lean_ctor_set(x_47, 1, x_46); x_48 = lean_array_push(x_20, x_47); x_49 = lean_array_push(x_48, x_35); x_50 = lean_array_push(x_49, x_37); -x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17028____closed__2; +x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17041____closed__2; x_52 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_52, 0, x_51); lean_ctor_set(x_52, 1, x_50); @@ -32387,7 +32475,7 @@ x_74 = l_myMacro____x40_Init_Notation___hyg_984____closed__8; x_75 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_75, 0, x_74); lean_ctor_set(x_75, 1, x_73); -x_76 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17028____closed__3; +x_76 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17041____closed__3; lean_inc(x_53); x_77 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_77, 0, x_53); @@ -32395,14 +32483,14 @@ lean_ctor_set(x_77, 1, x_76); if (lean_obj_tag(x_55) == 0) { lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; -x_78 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17028____closed__4; +x_78 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17041____closed__4; x_79 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_79, 0, x_53); lean_ctor_set(x_79, 1, x_78); x_80 = lean_array_push(x_60, x_79); x_81 = lean_array_push(x_80, x_75); x_82 = lean_array_push(x_81, x_77); -x_83 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17028____closed__2; +x_83 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17041____closed__2; x_84 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_84, 0, x_83); lean_ctor_set(x_84, 1, x_82); @@ -32418,14 +32506,14 @@ lean_dec(x_53); x_86 = lean_ctor_get(x_55, 0); lean_inc(x_86); lean_dec(x_55); -x_87 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17028____closed__4; +x_87 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17041____closed__4; x_88 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_88, 0, x_86); lean_ctor_set(x_88, 1, x_87); x_89 = lean_array_push(x_60, x_88); x_90 = lean_array_push(x_89, x_75); x_91 = lean_array_push(x_90, x_77); -x_92 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17028____closed__2; +x_92 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17041____closed__2; x_93 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_93, 0, x_92); lean_ctor_set(x_93, 1, x_91); @@ -32498,7 +32586,7 @@ x_1 = l_Lean_Parser_Tactic_tacticRfl___closed__5; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162____closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -32507,13 +32595,13 @@ x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Tactic_tacticRfl___closed__3; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149____closed__1; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162____closed__1; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -32521,7 +32609,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -32531,31 +32619,31 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149____closed__3; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162____closed__3; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149____closed__4; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162____closed__4; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -32591,10 +32679,10 @@ lean_inc(x_10); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_10); lean_ctor_set(x_14, 1, x_13); -x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149____closed__3; +x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162____closed__3; x_16 = l_Lean_addMacroScope(x_12, x_15, x_11); -x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149____closed__2; -x_18 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149____closed__5; +x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162____closed__2; +x_18 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162____closed__5; x_19 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_19, 0, x_10); lean_ctor_set(x_19, 1, x_17); @@ -32614,7 +32702,7 @@ x_28 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_28, 0, x_27); lean_ctor_set(x_28, 1, x_26); x_29 = lean_array_push(x_25, x_28); -x_30 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2; +x_30 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2; x_31 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -32639,10 +32727,10 @@ lean_inc(x_32); x_37 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_37, 0, x_32); lean_ctor_set(x_37, 1, x_36); -x_38 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149____closed__3; +x_38 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162____closed__3; x_39 = l_Lean_addMacroScope(x_35, x_38, x_34); -x_40 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149____closed__2; -x_41 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149____closed__5; +x_40 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162____closed__2; +x_41 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162____closed__5; x_42 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_42, 0, x_32); lean_ctor_set(x_42, 1, x_40); @@ -32662,7 +32750,7 @@ x_51 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_51, 0, x_50); lean_ctor_set(x_51, 1, x_49); x_52 = lean_array_push(x_48, x_51); -x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2; +x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2; x_54 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_54, 0, x_53); lean_ctor_set(x_54, 1, x_52); @@ -32734,7 +32822,7 @@ x_1 = l_Lean_Parser_Tactic_tacticAdmit___closed__5; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17247____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17260____closed__1() { _start: { lean_object* x_1; @@ -32742,17 +32830,17 @@ x_1 = lean_mk_string("sorry"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17247____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17260____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_2076____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17247____closed__1; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17260____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17247_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17260_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -32782,13 +32870,13 @@ lean_inc(x_10); x_12 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); -x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17247____closed__1; +x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17260____closed__1; x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_10); lean_ctor_set(x_14, 1, x_13); x_15 = l_myMacro____x40_Init_Notation___hyg_72____closed__4; x_16 = lean_array_push(x_15, x_14); -x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17247____closed__2; +x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17260____closed__2; x_18 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_18, 0, x_17); lean_ctor_set(x_18, 1, x_16); @@ -32805,7 +32893,7 @@ x_26 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_26, 0, x_25); lean_ctor_set(x_26, 1, x_24); x_27 = lean_array_push(x_15, x_26); -x_28 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2; +x_28 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); @@ -32825,13 +32913,13 @@ lean_inc(x_30); x_33 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_33, 0, x_30); lean_ctor_set(x_33, 1, x_32); -x_34 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17247____closed__1; +x_34 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17260____closed__1; x_35 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_35, 0, x_30); lean_ctor_set(x_35, 1, x_34); x_36 = l_myMacro____x40_Init_Notation___hyg_72____closed__4; x_37 = lean_array_push(x_36, x_35); -x_38 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17247____closed__2; +x_38 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17260____closed__2; x_39 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_39, 0, x_38); lean_ctor_set(x_39, 1, x_37); @@ -32848,7 +32936,7 @@ x_47 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_47, 0, x_46); lean_ctor_set(x_47, 1, x_45); x_48 = lean_array_push(x_36, x_47); -x_49 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2; +x_49 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2; x_50 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_48); @@ -32920,7 +33008,7 @@ x_1 = l_Lean_Parser_Tactic_tacticInferInstance___closed__5; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352____closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -32929,13 +33017,13 @@ x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Tactic_tacticInferInstance___closed__3; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339____closed__1; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352____closed__1; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -32943,7 +33031,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -32953,31 +33041,31 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339____closed__3; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352____closed__3; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339____closed__4; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352____closed__4; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -33013,10 +33101,10 @@ lean_inc(x_10); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_10); lean_ctor_set(x_14, 1, x_13); -x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339____closed__3; +x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352____closed__3; x_16 = l_Lean_addMacroScope(x_12, x_15, x_11); -x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339____closed__2; -x_18 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339____closed__5; +x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352____closed__2; +x_18 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352____closed__5; x_19 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_19, 0, x_10); lean_ctor_set(x_19, 1, x_17); @@ -33036,7 +33124,7 @@ x_28 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_28, 0, x_27); lean_ctor_set(x_28, 1, x_26); x_29 = lean_array_push(x_25, x_28); -x_30 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2; +x_30 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2; x_31 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); @@ -33061,10 +33149,10 @@ lean_inc(x_32); x_37 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_37, 0, x_32); lean_ctor_set(x_37, 1, x_36); -x_38 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339____closed__3; +x_38 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352____closed__3; x_39 = l_Lean_addMacroScope(x_35, x_38, x_34); -x_40 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339____closed__2; -x_41 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339____closed__5; +x_40 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352____closed__2; +x_41 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352____closed__5; x_42 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_42, 0, x_32); lean_ctor_set(x_42, 1, x_40); @@ -33084,7 +33172,7 @@ x_51 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_51, 0, x_50); lean_ctor_set(x_51, 1, x_49); x_52 = lean_array_push(x_48, x_51); -x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2; +x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2; x_54 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_54, 0, x_53); lean_ctor_set(x_54, 1, x_52); @@ -34266,12 +34354,12 @@ x_53 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_53, 0, x_52); lean_ctor_set(x_53, 1, x_51); x_54 = lean_array_push(x_42, x_53); -x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__5; +x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__5; x_56 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_56, 0, x_55); lean_ctor_set(x_56, 1, x_54); x_57 = lean_array_push(x_42, x_56); -x_58 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__3; +x_58 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__3; x_59 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_59, 0, x_58); lean_ctor_set(x_59, 1, x_57); @@ -34330,7 +34418,7 @@ x_89 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_89, 0, x_52); lean_ctor_set(x_89, 1, x_88); x_90 = lean_array_push(x_42, x_89); -x_91 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2; +x_91 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2; x_92 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_92, 0, x_91); lean_ctor_set(x_92, 1, x_90); @@ -35373,7 +35461,7 @@ x_1 = l_Lean_Parser_Tactic_tacticRefineLift_____closed__6; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18098____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18111____closed__1() { _start: { lean_object* x_1; @@ -35381,17 +35469,17 @@ x_1 = lean_mk_string("noImplicitLambda"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18098____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18111____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_2076____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18098____closed__1; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18111____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18098____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18111____closed__3() { _start: { lean_object* x_1; @@ -35399,7 +35487,7 @@ x_1 = lean_mk_string("noImplicitLambda%"); return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18098_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18111_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -35444,7 +35532,7 @@ lean_inc(x_12); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_12); lean_ctor_set(x_18, 1, x_17); -x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18098____closed__3; +x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18111____closed__3; lean_inc(x_12); x_20 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_20, 0, x_12); @@ -35452,7 +35540,7 @@ lean_ctor_set(x_20, 1, x_19); x_21 = l_myMacro____x40_Init_Notation___hyg_1377____closed__10; x_22 = lean_array_push(x_21, x_20); x_23 = lean_array_push(x_22, x_9); -x_24 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18098____closed__2; +x_24 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18111____closed__2; x_25 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_23); @@ -35502,12 +35590,12 @@ x_52 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_52, 0, x_34); lean_ctor_set(x_52, 1, x_51); x_53 = lean_array_push(x_32, x_52); -x_54 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__5; +x_54 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__5; x_55 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_55, 0, x_54); lean_ctor_set(x_55, 1, x_53); x_56 = lean_array_push(x_32, x_55); -x_57 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__3; +x_57 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__3; x_58 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_56); @@ -35551,7 +35639,7 @@ x_81 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_81, 0, x_34); lean_ctor_set(x_81, 1, x_80); x_82 = lean_array_push(x_32, x_81); -x_83 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2; +x_83 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2; x_84 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_84, 0, x_83); lean_ctor_set(x_84, 1, x_82); @@ -35581,7 +35669,7 @@ lean_inc(x_85); x_92 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_92, 0, x_85); lean_ctor_set(x_92, 1, x_91); -x_93 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18098____closed__3; +x_93 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18111____closed__3; lean_inc(x_85); x_94 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_94, 0, x_85); @@ -35589,7 +35677,7 @@ lean_ctor_set(x_94, 1, x_93); x_95 = l_myMacro____x40_Init_Notation___hyg_1377____closed__10; x_96 = lean_array_push(x_95, x_94); x_97 = lean_array_push(x_96, x_9); -x_98 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18098____closed__2; +x_98 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18111____closed__2; x_99 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_99, 0, x_98); lean_ctor_set(x_99, 1, x_97); @@ -35639,12 +35727,12 @@ x_126 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_126, 0, x_108); lean_ctor_set(x_126, 1, x_125); x_127 = lean_array_push(x_106, x_126); -x_128 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__5; +x_128 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__5; x_129 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_129, 0, x_128); lean_ctor_set(x_129, 1, x_127); x_130 = lean_array_push(x_106, x_129); -x_131 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__3; +x_131 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__3; x_132 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_132, 0, x_131); lean_ctor_set(x_132, 1, x_130); @@ -35688,7 +35776,7 @@ x_155 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_155, 0, x_108); lean_ctor_set(x_155, 1, x_154); x_156 = lean_array_push(x_106, x_155); -x_157 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2; +x_157 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2; x_158 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_158, 0, x_157); lean_ctor_set(x_158, 1, x_156); @@ -35802,7 +35890,7 @@ x_1 = l_Lean_Parser_Tactic_tacticHave_____closed__9; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__1() { _start: { lean_object* x_1; @@ -35810,7 +35898,7 @@ x_1 = lean_mk_string("refineLift"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__2() { _start: { lean_object* x_1; @@ -35818,17 +35906,17 @@ x_1 = lean_mk_string("have"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_2076____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__2; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__2; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__4() { _start: { lean_object* x_1; @@ -35836,17 +35924,17 @@ x_1 = lean_mk_string("syntheticHole"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_2076____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__4; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -35876,12 +35964,12 @@ if (x_11 == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; x_12 = lean_ctor_get(x_10, 0); -x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__1; +x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__1; lean_inc(x_12); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_12); lean_ctor_set(x_14, 1, x_13); -x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__2; +x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__2; lean_inc(x_12); x_16 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_16, 0, x_12); @@ -35914,7 +36002,7 @@ lean_ctor_set(x_29, 1, x_27); x_30 = l_myMacro____x40_Init_Notation___hyg_1377____closed__10; x_31 = lean_array_push(x_30, x_24); x_32 = lean_array_push(x_31, x_29); -x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__5; +x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__5; x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); @@ -35923,7 +36011,7 @@ x_36 = lean_array_push(x_35, x_16); x_37 = lean_array_push(x_36, x_9); x_38 = lean_array_push(x_37, x_22); x_39 = lean_array_push(x_38, x_34); -x_40 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__3; +x_40 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__3; x_41 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_41, 0, x_40); lean_ctor_set(x_41, 1, x_39); @@ -35938,7 +36026,7 @@ x_47 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_47, 0, x_21); lean_ctor_set(x_47, 1, x_46); x_48 = lean_array_push(x_19, x_47); -x_49 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2; +x_49 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2; x_50 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_48); @@ -35953,12 +36041,12 @@ x_52 = lean_ctor_get(x_10, 1); lean_inc(x_52); lean_inc(x_51); lean_dec(x_10); -x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__1; +x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__1; lean_inc(x_51); x_54 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_54, 0, x_51); lean_ctor_set(x_54, 1, x_53); -x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__2; +x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__2; lean_inc(x_51); x_56 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_56, 0, x_51); @@ -35991,7 +36079,7 @@ lean_ctor_set(x_69, 1, x_67); x_70 = l_myMacro____x40_Init_Notation___hyg_1377____closed__10; x_71 = lean_array_push(x_70, x_64); x_72 = lean_array_push(x_71, x_69); -x_73 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__5; +x_73 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__5; x_74 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_74, 0, x_73); lean_ctor_set(x_74, 1, x_72); @@ -36000,7 +36088,7 @@ x_76 = lean_array_push(x_75, x_56); x_77 = lean_array_push(x_76, x_9); x_78 = lean_array_push(x_77, x_62); x_79 = lean_array_push(x_78, x_74); -x_80 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__3; +x_80 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__3; x_81 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_81, 0, x_80); lean_ctor_set(x_81, 1, x_79); @@ -36015,7 +36103,7 @@ x_87 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_87, 0, x_61); lean_ctor_set(x_87, 1, x_86); x_88 = lean_array_push(x_59, x_87); -x_89 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2; +x_89 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2; x_90 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_90, 0, x_89); lean_ctor_set(x_90, 1, x_88); @@ -36049,7 +36137,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__2; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -36121,7 +36209,7 @@ x_1 = l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__7; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -36131,7 +36219,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__2() { _start: { lean_object* x_1; @@ -36139,17 +36227,17 @@ x_1 = lean_mk_string("haveIdDecl"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_2076____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__2; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__2; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__4() { _start: { lean_object* x_1; @@ -36157,17 +36245,17 @@ x_1 = lean_mk_string("typeSpec"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_2076____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__4; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -36199,7 +36287,7 @@ if (x_13 == 0) { lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; x_14 = lean_ctor_get(x_12, 0); -x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__2; +x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__2; lean_inc(x_14); x_16 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_16, 0, x_14); @@ -36230,7 +36318,7 @@ lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); x_31 = lean_array_push(x_17, x_24); x_32 = lean_array_push(x_31, x_30); -x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__5; +x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__5; x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); @@ -36247,12 +36335,12 @@ x_40 = lean_array_push(x_39, x_22); x_41 = lean_array_push(x_40, x_36); x_42 = lean_array_push(x_41, x_38); x_43 = lean_array_push(x_42, x_11); -x_44 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__3; +x_44 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__3; x_45 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_45, 0, x_44); lean_ctor_set(x_45, 1, x_43); x_46 = lean_array_push(x_27, x_45); -x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__1; +x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__1; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -36267,7 +36355,7 @@ x_54 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_54, 0, x_21); lean_ctor_set(x_54, 1, x_53); x_55 = lean_array_push(x_27, x_54); -x_56 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2; +x_56 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2; x_57 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_57, 0, x_56); lean_ctor_set(x_57, 1, x_55); @@ -36282,7 +36370,7 @@ x_59 = lean_ctor_get(x_12, 1); lean_inc(x_59); lean_inc(x_58); lean_dec(x_12); -x_60 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__2; +x_60 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__2; lean_inc(x_58); x_61 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_61, 0, x_58); @@ -36313,7 +36401,7 @@ lean_ctor_set(x_75, 0, x_74); lean_ctor_set(x_75, 1, x_73); x_76 = lean_array_push(x_62, x_69); x_77 = lean_array_push(x_76, x_75); -x_78 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__5; +x_78 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__5; x_79 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_79, 0, x_78); lean_ctor_set(x_79, 1, x_77); @@ -36330,12 +36418,12 @@ x_85 = lean_array_push(x_84, x_67); x_86 = lean_array_push(x_85, x_81); x_87 = lean_array_push(x_86, x_83); x_88 = lean_array_push(x_87, x_11); -x_89 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__3; +x_89 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__3; x_90 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_90, 0, x_89); lean_ctor_set(x_90, 1, x_88); x_91 = lean_array_push(x_72, x_90); -x_92 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__1; +x_92 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__1; x_93 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_93, 0, x_92); lean_ctor_set(x_93, 1, x_91); @@ -36350,7 +36438,7 @@ x_99 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_99, 0, x_66); lean_ctor_set(x_99, 1, x_98); x_100 = lean_array_push(x_72, x_99); -x_101 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2; +x_101 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2; x_102 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_102, 0, x_101); lean_ctor_set(x_102, 1, x_100); @@ -36464,7 +36552,7 @@ x_1 = l_Lean_Parser_Tactic_tacticSuffices_____closed__9; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18613____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18626____closed__1() { _start: { lean_object* x_1; @@ -36472,17 +36560,17 @@ x_1 = lean_mk_string("suffices"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18613____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18626____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_2076____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18613____closed__1; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18626____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18613_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18626_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -36512,12 +36600,12 @@ if (x_11 == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; x_12 = lean_ctor_get(x_10, 0); -x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__1; +x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__1; lean_inc(x_12); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_12); lean_ctor_set(x_14, 1, x_13); -x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18613____closed__1; +x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18626____closed__1; lean_inc(x_12); x_16 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_16, 0, x_12); @@ -36550,7 +36638,7 @@ lean_ctor_set(x_29, 1, x_27); x_30 = l_myMacro____x40_Init_Notation___hyg_1377____closed__10; x_31 = lean_array_push(x_30, x_24); x_32 = lean_array_push(x_31, x_29); -x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__5; +x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__5; x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); @@ -36559,7 +36647,7 @@ x_36 = lean_array_push(x_35, x_16); x_37 = lean_array_push(x_36, x_9); x_38 = lean_array_push(x_37, x_22); x_39 = lean_array_push(x_38, x_34); -x_40 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18613____closed__2; +x_40 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18626____closed__2; x_41 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_41, 0, x_40); lean_ctor_set(x_41, 1, x_39); @@ -36574,7 +36662,7 @@ x_47 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_47, 0, x_21); lean_ctor_set(x_47, 1, x_46); x_48 = lean_array_push(x_19, x_47); -x_49 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2; +x_49 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2; x_50 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_48); @@ -36589,12 +36677,12 @@ x_52 = lean_ctor_get(x_10, 1); lean_inc(x_52); lean_inc(x_51); lean_dec(x_10); -x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__1; +x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__1; lean_inc(x_51); x_54 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_54, 0, x_51); lean_ctor_set(x_54, 1, x_53); -x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18613____closed__1; +x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18626____closed__1; lean_inc(x_51); x_56 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_56, 0, x_51); @@ -36627,7 +36715,7 @@ lean_ctor_set(x_69, 1, x_67); x_70 = l_myMacro____x40_Init_Notation___hyg_1377____closed__10; x_71 = lean_array_push(x_70, x_64); x_72 = lean_array_push(x_71, x_69); -x_73 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__5; +x_73 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__5; x_74 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_74, 0, x_73); lean_ctor_set(x_74, 1, x_72); @@ -36636,7 +36724,7 @@ x_76 = lean_array_push(x_75, x_56); x_77 = lean_array_push(x_76, x_9); x_78 = lean_array_push(x_77, x_62); x_79 = lean_array_push(x_78, x_74); -x_80 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18613____closed__2; +x_80 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18626____closed__2; x_81 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_81, 0, x_80); lean_ctor_set(x_81, 1, x_79); @@ -36651,7 +36739,7 @@ x_87 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_87, 0, x_61); lean_ctor_set(x_87, 1, x_86); x_88 = lean_array_push(x_59, x_87); -x_89 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2; +x_89 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2; x_90 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_90, 0, x_89); lean_ctor_set(x_90, 1, x_88); @@ -36749,7 +36837,7 @@ x_1 = l_Lean_Parser_Tactic_tacticLet_____closed__7; return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18747_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18760_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -36779,7 +36867,7 @@ if (x_11 == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; x_12 = lean_ctor_get(x_10, 0); -x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__1; +x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__1; lean_inc(x_12); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_12); @@ -36817,7 +36905,7 @@ lean_ctor_set(x_29, 1, x_27); x_30 = l_myMacro____x40_Init_Notation___hyg_1377____closed__10; x_31 = lean_array_push(x_30, x_24); x_32 = lean_array_push(x_31, x_29); -x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__5; +x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__5; x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); @@ -36841,7 +36929,7 @@ x_47 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_47, 0, x_21); lean_ctor_set(x_47, 1, x_46); x_48 = lean_array_push(x_19, x_47); -x_49 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2; +x_49 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2; x_50 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_48); @@ -36856,7 +36944,7 @@ x_52 = lean_ctor_get(x_10, 1); lean_inc(x_52); lean_inc(x_51); lean_dec(x_10); -x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__1; +x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__1; lean_inc(x_51); x_54 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_54, 0, x_51); @@ -36894,7 +36982,7 @@ lean_ctor_set(x_69, 1, x_67); x_70 = l_myMacro____x40_Init_Notation___hyg_1377____closed__10; x_71 = lean_array_push(x_70, x_64); x_72 = lean_array_push(x_71, x_69); -x_73 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__5; +x_73 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__5; x_74 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_74, 0, x_73); lean_ctor_set(x_74, 1, x_72); @@ -36918,7 +37006,7 @@ x_87 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_87, 0, x_61); lean_ctor_set(x_87, 1, x_86); x_88 = lean_array_push(x_59, x_87); -x_89 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2; +x_89 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2; x_90 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_90, 0, x_89); lean_ctor_set(x_90, 1, x_88); @@ -37004,7 +37092,7 @@ x_1 = l_Lean_Parser_Tactic_tacticShow_____closed__6; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__1() { _start: { lean_object* x_1; @@ -37012,17 +37100,17 @@ x_1 = lean_mk_string("show"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_2076____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__1; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__3() { _start: { lean_object* x_1; @@ -37030,17 +37118,17 @@ x_1 = lean_mk_string("fromTerm"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_2076____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__3; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__5() { _start: { lean_object* x_1; @@ -37048,7 +37136,7 @@ x_1 = lean_mk_string("from"); return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -37078,17 +37166,17 @@ if (x_11 == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; x_12 = lean_ctor_get(x_10, 0); -x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__1; +x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__1; lean_inc(x_12); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_12); lean_ctor_set(x_14, 1, x_13); -x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__1; +x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__1; lean_inc(x_12); x_16 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_16, 0, x_12); lean_ctor_set(x_16, 1, x_15); -x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__5; +x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__5; lean_inc(x_12); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_12); @@ -37111,13 +37199,13 @@ lean_ctor_set(x_26, 1, x_24); x_27 = l_myMacro____x40_Init_Notation___hyg_1377____closed__10; x_28 = lean_array_push(x_27, x_20); x_29 = lean_array_push(x_28, x_26); -x_30 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__5; +x_30 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__5; x_31 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); x_32 = lean_array_push(x_27, x_18); x_33 = lean_array_push(x_32, x_31); -x_34 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__4; +x_34 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__4; x_35 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_35, 0, x_34); lean_ctor_set(x_35, 1, x_33); @@ -37125,7 +37213,7 @@ x_36 = l_unexpand____x40_Init_Notation___hyg_2059____closed__3; x_37 = lean_array_push(x_36, x_16); x_38 = lean_array_push(x_37, x_9); x_39 = lean_array_push(x_38, x_35); -x_40 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__2; +x_40 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__2; x_41 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_41, 0, x_40); lean_ctor_set(x_41, 1, x_39); @@ -37141,7 +37229,7 @@ x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); x_49 = lean_array_push(x_23, x_48); -x_50 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2; +x_50 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2; x_51 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_51, 0, x_50); lean_ctor_set(x_51, 1, x_49); @@ -37156,17 +37244,17 @@ x_53 = lean_ctor_get(x_10, 1); lean_inc(x_53); lean_inc(x_52); lean_dec(x_10); -x_54 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__1; +x_54 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__1; lean_inc(x_52); x_55 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_55, 0, x_52); lean_ctor_set(x_55, 1, x_54); -x_56 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__1; +x_56 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__1; lean_inc(x_52); x_57 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_57, 0, x_52); lean_ctor_set(x_57, 1, x_56); -x_58 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__5; +x_58 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__5; lean_inc(x_52); x_59 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_59, 0, x_52); @@ -37189,13 +37277,13 @@ lean_ctor_set(x_67, 1, x_65); x_68 = l_myMacro____x40_Init_Notation___hyg_1377____closed__10; x_69 = lean_array_push(x_68, x_61); x_70 = lean_array_push(x_69, x_67); -x_71 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__5; +x_71 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__5; x_72 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_72, 0, x_71); lean_ctor_set(x_72, 1, x_70); x_73 = lean_array_push(x_68, x_59); x_74 = lean_array_push(x_73, x_72); -x_75 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__4; +x_75 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__4; x_76 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_76, 0, x_75); lean_ctor_set(x_76, 1, x_74); @@ -37203,7 +37291,7 @@ x_77 = l_unexpand____x40_Init_Notation___hyg_2059____closed__3; x_78 = lean_array_push(x_77, x_57); x_79 = lean_array_push(x_78, x_9); x_80 = lean_array_push(x_79, x_76); -x_81 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__2; +x_81 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__2; x_82 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_82, 0, x_81); lean_ctor_set(x_82, 1, x_80); @@ -37219,7 +37307,7 @@ x_89 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_89, 0, x_88); lean_ctor_set(x_89, 1, x_87); x_90 = lean_array_push(x_64, x_89); -x_91 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2; +x_91 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2; x_92 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_92, 0, x_91); lean_ctor_set(x_92, 1, x_90); @@ -37383,7 +37471,7 @@ x_1 = l_Lean_Parser_Tactic_letrec___closed__13; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19024____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19037____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -37393,7 +37481,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19024____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19037____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -37403,7 +37491,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19024____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19037____closed__3() { _start: { lean_object* x_1; @@ -37411,7 +37499,7 @@ x_1 = lean_mk_string("rec"); return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19024_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19037_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -37453,7 +37541,7 @@ lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; x_14 = lean_unsigned_to_nat(1u); x_15 = l_Lean_Syntax_getArg(x_1, x_14); lean_dec(x_1); -x_16 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19024____closed__1; +x_16 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19037____closed__1; lean_inc(x_15); x_17 = l_Lean_Syntax_isOfKind(x_15, x_16); if (x_17 == 0) @@ -37476,7 +37564,7 @@ if (x_21 == 0) { lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; x_22 = lean_ctor_get(x_20, 0); -x_23 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__1; +x_23 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__1; lean_inc(x_22); x_24 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_24, 0, x_22); @@ -37486,7 +37574,7 @@ lean_inc(x_22); x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_22); lean_ctor_set(x_26, 1, x_25); -x_27 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19024____closed__3; +x_27 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19037____closed__3; lean_inc(x_22); x_28 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_28, 0, x_22); @@ -37524,7 +37612,7 @@ lean_ctor_set(x_45, 0, x_44); lean_ctor_set(x_45, 1, x_43); x_46 = lean_array_push(x_29, x_40); x_47 = lean_array_push(x_46, x_45); -x_48 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__5; +x_48 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__5; x_49 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_49, 0, x_48); lean_ctor_set(x_49, 1, x_47); @@ -37533,7 +37621,7 @@ x_51 = lean_array_push(x_50, x_32); x_52 = lean_array_push(x_51, x_15); x_53 = lean_array_push(x_52, x_38); x_54 = lean_array_push(x_53, x_49); -x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19024____closed__2; +x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19037____closed__2; x_56 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_56, 0, x_55); lean_ctor_set(x_56, 1, x_54); @@ -37554,7 +37642,7 @@ x_62 = lean_ctor_get(x_20, 1); lean_inc(x_62); lean_inc(x_61); lean_dec(x_20); -x_63 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__1; +x_63 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__1; lean_inc(x_61); x_64 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_64, 0, x_61); @@ -37564,7 +37652,7 @@ lean_inc(x_61); x_66 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_66, 0, x_61); lean_ctor_set(x_66, 1, x_65); -x_67 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19024____closed__3; +x_67 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19037____closed__3; lean_inc(x_61); x_68 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_68, 0, x_61); @@ -37602,7 +37690,7 @@ lean_ctor_set(x_85, 0, x_84); lean_ctor_set(x_85, 1, x_83); x_86 = lean_array_push(x_69, x_80); x_87 = lean_array_push(x_86, x_85); -x_88 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__5; +x_88 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__5; x_89 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_89, 0, x_88); lean_ctor_set(x_89, 1, x_87); @@ -37611,7 +37699,7 @@ x_91 = lean_array_push(x_90, x_72); x_92 = lean_array_push(x_91, x_15); x_93 = lean_array_push(x_92, x_78); x_94 = lean_array_push(x_93, x_89); -x_95 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19024____closed__2; +x_95 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19037____closed__2; x_96 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_96, 0, x_95); lean_ctor_set(x_96, 1, x_94); @@ -37705,7 +37793,7 @@ x_1 = l_Lean_Parser_Tactic_tacticRefineLift_x27_____closed__6; return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19203_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19216_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -37750,7 +37838,7 @@ lean_inc(x_12); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_12); lean_ctor_set(x_18, 1, x_17); -x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18098____closed__3; +x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18111____closed__3; lean_inc(x_12); x_20 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_20, 0, x_12); @@ -37758,7 +37846,7 @@ lean_ctor_set(x_20, 1, x_19); x_21 = l_myMacro____x40_Init_Notation___hyg_1377____closed__10; x_22 = lean_array_push(x_21, x_20); x_23 = lean_array_push(x_22, x_9); -x_24 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18098____closed__2; +x_24 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18111____closed__2; x_25 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_23); @@ -37808,12 +37896,12 @@ x_52 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_52, 0, x_34); lean_ctor_set(x_52, 1, x_51); x_53 = lean_array_push(x_32, x_52); -x_54 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__5; +x_54 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__5; x_55 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_55, 0, x_54); lean_ctor_set(x_55, 1, x_53); x_56 = lean_array_push(x_32, x_55); -x_57 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__3; +x_57 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__3; x_58 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_56); @@ -37857,7 +37945,7 @@ x_81 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_81, 0, x_34); lean_ctor_set(x_81, 1, x_80); x_82 = lean_array_push(x_32, x_81); -x_83 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2; +x_83 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2; x_84 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_84, 0, x_83); lean_ctor_set(x_84, 1, x_82); @@ -37887,7 +37975,7 @@ lean_inc(x_85); x_92 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_92, 0, x_85); lean_ctor_set(x_92, 1, x_91); -x_93 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18098____closed__3; +x_93 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18111____closed__3; lean_inc(x_85); x_94 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_94, 0, x_85); @@ -37895,7 +37983,7 @@ lean_ctor_set(x_94, 1, x_93); x_95 = l_myMacro____x40_Init_Notation___hyg_1377____closed__10; x_96 = lean_array_push(x_95, x_94); x_97 = lean_array_push(x_96, x_9); -x_98 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18098____closed__2; +x_98 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18111____closed__2; x_99 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_99, 0, x_98); lean_ctor_set(x_99, 1, x_97); @@ -37945,12 +38033,12 @@ x_126 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_126, 0, x_108); lean_ctor_set(x_126, 1, x_125); x_127 = lean_array_push(x_106, x_126); -x_128 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__5; +x_128 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__5; x_129 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_129, 0, x_128); lean_ctor_set(x_129, 1, x_127); x_130 = lean_array_push(x_106, x_129); -x_131 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__3; +x_131 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__3; x_132 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_132, 0, x_131); lean_ctor_set(x_132, 1, x_130); @@ -37994,7 +38082,7 @@ x_155 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_155, 0, x_108); lean_ctor_set(x_155, 1, x_154); x_156 = lean_array_push(x_106, x_155); -x_157 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2; +x_157 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2; x_158 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_158, 0, x_157); lean_ctor_set(x_158, 1, x_156); @@ -38080,7 +38168,7 @@ x_1 = l_Lean_Parser_Tactic_tacticHave_x27_____closed__6; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19410____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19423____closed__1() { _start: { lean_object* x_1; @@ -38088,7 +38176,7 @@ x_1 = lean_mk_string("refineLift'"); return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19410_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19423_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -38118,12 +38206,12 @@ if (x_11 == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; x_12 = lean_ctor_get(x_10, 0); -x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19410____closed__1; +x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19423____closed__1; lean_inc(x_12); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_12); lean_ctor_set(x_14, 1, x_13); -x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__2; +x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__2; lean_inc(x_12); x_16 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_16, 0, x_12); @@ -38156,7 +38244,7 @@ lean_ctor_set(x_29, 1, x_27); x_30 = l_myMacro____x40_Init_Notation___hyg_1377____closed__10; x_31 = lean_array_push(x_30, x_24); x_32 = lean_array_push(x_31, x_29); -x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__5; +x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__5; x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); @@ -38165,7 +38253,7 @@ x_36 = lean_array_push(x_35, x_16); x_37 = lean_array_push(x_36, x_9); x_38 = lean_array_push(x_37, x_22); x_39 = lean_array_push(x_38, x_34); -x_40 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__3; +x_40 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__3; x_41 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_41, 0, x_40); lean_ctor_set(x_41, 1, x_39); @@ -38180,7 +38268,7 @@ x_47 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_47, 0, x_21); lean_ctor_set(x_47, 1, x_46); x_48 = lean_array_push(x_19, x_47); -x_49 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2; +x_49 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2; x_50 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_48); @@ -38195,12 +38283,12 @@ x_52 = lean_ctor_get(x_10, 1); lean_inc(x_52); lean_inc(x_51); lean_dec(x_10); -x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19410____closed__1; +x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19423____closed__1; lean_inc(x_51); x_54 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_54, 0, x_51); lean_ctor_set(x_54, 1, x_53); -x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__2; +x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__2; lean_inc(x_51); x_56 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_56, 0, x_51); @@ -38233,7 +38321,7 @@ lean_ctor_set(x_69, 1, x_67); x_70 = l_myMacro____x40_Init_Notation___hyg_1377____closed__10; x_71 = lean_array_push(x_70, x_64); x_72 = lean_array_push(x_71, x_69); -x_73 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__5; +x_73 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__5; x_74 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_74, 0, x_73); lean_ctor_set(x_74, 1, x_72); @@ -38242,7 +38330,7 @@ x_76 = lean_array_push(x_75, x_56); x_77 = lean_array_push(x_76, x_9); x_78 = lean_array_push(x_77, x_62); x_79 = lean_array_push(x_78, x_74); -x_80 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__3; +x_80 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__3; x_81 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_81, 0, x_80); lean_ctor_set(x_81, 1, x_79); @@ -38257,7 +38345,7 @@ x_87 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_87, 0, x_61); lean_ctor_set(x_87, 1, x_86); x_88 = lean_array_push(x_59, x_87); -x_89 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2; +x_89 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2; x_90 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_90, 0, x_89); lean_ctor_set(x_90, 1, x_88); @@ -38371,7 +38459,7 @@ x_1 = l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__8; return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19553_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19566_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -38434,7 +38522,7 @@ lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); x_31 = lean_array_push(x_17, x_24); x_32 = lean_array_push(x_31, x_30); -x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__5; +x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__5; x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); @@ -38451,12 +38539,12 @@ x_40 = lean_array_push(x_39, x_22); x_41 = lean_array_push(x_40, x_36); x_42 = lean_array_push(x_41, x_38); x_43 = lean_array_push(x_42, x_11); -x_44 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__3; +x_44 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__3; x_45 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_45, 0, x_44); lean_ctor_set(x_45, 1, x_43); x_46 = lean_array_push(x_27, x_45); -x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__1; +x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__1; x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_46); @@ -38471,7 +38559,7 @@ x_54 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_54, 0, x_21); lean_ctor_set(x_54, 1, x_53); x_55 = lean_array_push(x_27, x_54); -x_56 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2; +x_56 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2; x_57 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_57, 0, x_56); lean_ctor_set(x_57, 1, x_55); @@ -38517,7 +38605,7 @@ lean_ctor_set(x_75, 0, x_74); lean_ctor_set(x_75, 1, x_73); x_76 = lean_array_push(x_62, x_69); x_77 = lean_array_push(x_76, x_75); -x_78 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__5; +x_78 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__5; x_79 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_79, 0, x_78); lean_ctor_set(x_79, 1, x_77); @@ -38534,12 +38622,12 @@ x_85 = lean_array_push(x_84, x_67); x_86 = lean_array_push(x_85, x_81); x_87 = lean_array_push(x_86, x_83); x_88 = lean_array_push(x_87, x_11); -x_89 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__3; +x_89 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__3; x_90 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_90, 0, x_89); lean_ctor_set(x_90, 1, x_88); x_91 = lean_array_push(x_72, x_90); -x_92 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__1; +x_92 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__1; x_93 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_93, 0, x_92); lean_ctor_set(x_93, 1, x_91); @@ -38554,7 +38642,7 @@ x_99 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_99, 0, x_66); lean_ctor_set(x_99, 1, x_98); x_100 = lean_array_push(x_72, x_99); -x_101 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2; +x_101 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2; x_102 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_102, 0, x_101); lean_ctor_set(x_102, 1, x_100); @@ -38640,7 +38728,7 @@ x_1 = l_Lean_Parser_Tactic_tacticLet_x27_____closed__6; return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19718_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19731_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -38670,7 +38758,7 @@ if (x_11 == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; x_12 = lean_ctor_get(x_10, 0); -x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19410____closed__1; +x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19423____closed__1; lean_inc(x_12); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_12); @@ -38708,7 +38796,7 @@ lean_ctor_set(x_29, 1, x_27); x_30 = l_myMacro____x40_Init_Notation___hyg_1377____closed__10; x_31 = lean_array_push(x_30, x_24); x_32 = lean_array_push(x_31, x_29); -x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__5; +x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__5; x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); @@ -38732,7 +38820,7 @@ x_47 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_47, 0, x_21); lean_ctor_set(x_47, 1, x_46); x_48 = lean_array_push(x_19, x_47); -x_49 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2; +x_49 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2; x_50 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_48); @@ -38747,7 +38835,7 @@ x_52 = lean_ctor_get(x_10, 1); lean_inc(x_52); lean_inc(x_51); lean_dec(x_10); -x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19410____closed__1; +x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19423____closed__1; lean_inc(x_51); x_54 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_54, 0, x_51); @@ -38785,7 +38873,7 @@ lean_ctor_set(x_69, 1, x_67); x_70 = l_myMacro____x40_Init_Notation___hyg_1377____closed__10; x_71 = lean_array_push(x_70, x_64); x_72 = lean_array_push(x_71, x_69); -x_73 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__5; +x_73 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__5; x_74 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_74, 0, x_73); lean_ctor_set(x_74, 1, x_72); @@ -38809,7 +38897,7 @@ x_87 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_87, 0, x_61); lean_ctor_set(x_87, 1, x_86); x_88 = lean_array_push(x_59, x_87); -x_89 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2; +x_89 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2; x_90 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_90, 0, x_89); lean_ctor_set(x_90, 1, x_88); @@ -39006,7 +39094,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__4; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -39711,6 +39799,80 @@ x_1 = l_Lean_Parser_Tactic_existsIntro___closed__6; return x_1; } } +static lean_object* _init_l_Lean_Parser_Tactic_renameI___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("renameI"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_renameI___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_intro___closed__2; +x_2 = l_Lean_Parser_Tactic_renameI___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_renameI___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("renameI "); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_renameI___closed__4() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_renameI___closed__3; +x_2 = 0; +x_3 = lean_alloc_ctor(6, 1, 1); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_renameI___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_addPrec___closed__10; +x_2 = l_Lean_Parser_Tactic_renameI___closed__4; +x_3 = l_Lean_Parser_Tactic_injection___closed__6; +x_4 = lean_alloc_ctor(2, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_renameI___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Tactic_renameI___closed__2; +x_2 = lean_unsigned_to_nat(1022u); +x_3 = l_Lean_Parser_Tactic_renameI___closed__5; +x_4 = lean_alloc_ctor(3, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_renameI() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_Tactic_renameI___closed__6; +return x_1; +} +} static lean_object* _init_l_Lean_Parser_Tactic_tacticRepeat_____closed__1() { _start: { @@ -39785,7 +39947,7 @@ x_1 = l_Lean_Parser_Tactic_tacticRepeat_____closed__6; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20039____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20075____closed__1() { _start: { lean_object* x_1; @@ -39793,7 +39955,7 @@ x_1 = lean_mk_string("repeat"); return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20039_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20075_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -39817,7 +39979,7 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); -x_10 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__3; +x_10 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__3; lean_inc(x_9); x_11 = l_Lean_Syntax_isOfKind(x_9, x_10); if (x_11 == 0) @@ -39894,7 +40056,7 @@ x_44 = l_Lean_Parser_Tactic_first___closed__8; x_45 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_45, 0, x_44); lean_ctor_set(x_45, 1, x_43); -x_46 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20039____closed__1; +x_46 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20075____closed__1; lean_inc(x_18); x_47 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_47, 0, x_18); @@ -39916,7 +40078,7 @@ x_57 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_57, 0, x_39); lean_ctor_set(x_57, 1, x_56); x_58 = lean_array_push(x_25, x_57); -x_59 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__5; +x_59 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__5; x_60 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_60, 0, x_59); lean_ctor_set(x_60, 1, x_58); @@ -40033,7 +40195,7 @@ x_116 = l_Lean_Parser_Tactic_first___closed__8; x_117 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_117, 0, x_116); lean_ctor_set(x_117, 1, x_115); -x_118 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20039____closed__1; +x_118 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20075____closed__1; lean_inc(x_89); x_119 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_119, 0, x_89); @@ -40055,7 +40217,7 @@ x_129 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_129, 0, x_111); lean_ctor_set(x_129, 1, x_128); x_130 = lean_array_push(x_97, x_129); -x_131 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__5; +x_131 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__5; x_132 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_132, 0, x_131); lean_ctor_set(x_132, 1, x_130); @@ -40179,7 +40341,7 @@ x_1 = l_Lean_Parser_Tactic_tacticTrivial___closed__5; return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20270_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20306_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -40243,7 +40405,7 @@ return x_25; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20329_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20365_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -40307,7 +40469,7 @@ return x_25; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20388_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20424_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -40371,7 +40533,7 @@ return x_25; } } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__1() { _start: { lean_object* x_1; @@ -40379,22 +40541,22 @@ x_1 = lean_mk_string("True.intro"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -40402,7 +40564,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__4() { _start: { lean_object* x_1; @@ -40410,51 +40572,51 @@ x_1 = lean_mk_string("True"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__4; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__6() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__5; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__5; x_2 = l_Lean_Parser_Tactic_intro___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__7() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__6; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__6; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__8() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__7; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__7; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -40490,10 +40652,10 @@ lean_inc(x_10); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_10); lean_ctor_set(x_14, 1, x_13); -x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__6; +x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__6; x_16 = l_Lean_addMacroScope(x_12, x_15, x_11); -x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__3; -x_18 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__8; +x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__3; +x_18 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__8; x_19 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_19, 0, x_10); lean_ctor_set(x_19, 1, x_17); @@ -40527,10 +40689,10 @@ lean_inc(x_25); x_30 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_30, 0, x_25); lean_ctor_set(x_30, 1, x_29); -x_31 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__6; +x_31 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__6; x_32 = l_Lean_addMacroScope(x_28, x_31, x_27); -x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__3; -x_34 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__8; +x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__3; +x_34 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__8; x_35 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_35, 0, x_25); lean_ctor_set(x_35, 1, x_33); @@ -40551,7 +40713,7 @@ return x_41; } } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__1() { _start: { lean_object* x_1; @@ -40559,22 +40721,22 @@ x_1 = lean_mk_string("And.intro"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -40582,7 +40744,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -40592,31 +40754,31 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__4; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__4; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__6() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__5; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__5; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__7() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__7() { _start: { lean_object* x_1; @@ -40624,7 +40786,7 @@ x_1 = lean_mk_string("<;>"); return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -40660,10 +40822,10 @@ lean_inc(x_10); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_10); lean_ctor_set(x_14, 1, x_13); -x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__4; +x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__4; x_16 = l_Lean_addMacroScope(x_12, x_15, x_11); -x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__3; -x_18 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__6; +x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__3; +x_18 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__6; lean_inc(x_10); x_19 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_19, 0, x_10); @@ -40677,7 +40839,7 @@ x_23 = l_Lean_Parser_Tactic_apply___closed__2; x_24 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_24, 0, x_23); lean_ctor_set(x_24, 1, x_22); -x_25 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__7; +x_25 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__7; lean_inc(x_10); x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_10); @@ -40720,10 +40882,10 @@ lean_inc(x_38); x_43 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_43, 0, x_38); lean_ctor_set(x_43, 1, x_42); -x_44 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__4; +x_44 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__4; x_45 = l_Lean_addMacroScope(x_41, x_44, x_40); -x_46 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__3; -x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__6; +x_46 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__3; +x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__6; lean_inc(x_38); x_48 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_48, 0, x_38); @@ -40737,7 +40899,7 @@ x_52 = l_Lean_Parser_Tactic_apply___closed__2; x_53 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_53, 0, x_52); lean_ctor_set(x_53, 1, x_51); -x_54 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__7; +x_54 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__7; lean_inc(x_38); x_55 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_55, 0, x_38); @@ -40841,7 +41003,7 @@ x_1 = l_Lean_Parser_Tactic_tacticUnhygienic_____closed__6; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__1() { _start: { lean_object* x_1; @@ -40849,17 +41011,17 @@ x_1 = lean_mk_string("set_option"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic_intro___closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__1; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__3() { _start: { lean_object* x_1; @@ -40867,22 +41029,22 @@ x_1 = lean_mk_string("tactic.hygienic"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__3; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__3; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__4; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__4; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -40890,7 +41052,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__6() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__6() { _start: { lean_object* x_1; @@ -40898,17 +41060,17 @@ x_1 = lean_mk_string("hygienic"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__7() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__6; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__6; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__8() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__8() { _start: { lean_object* x_1; @@ -40916,7 +41078,7 @@ x_1 = lean_mk_string("in"); return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -40952,15 +41114,15 @@ lean_inc(x_13); x_14 = lean_ctor_get(x_2, 1); lean_inc(x_14); lean_dec(x_2); -x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__1; +x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__1; lean_inc(x_12); x_16 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_16, 0, x_12); lean_ctor_set(x_16, 1, x_15); -x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__7; +x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__7; x_18 = l_Lean_addMacroScope(x_14, x_17, x_13); x_19 = lean_box(0); -x_20 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__5; +x_20 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__5; lean_inc(x_12); x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_12); @@ -40972,7 +41134,7 @@ lean_inc(x_12); x_23 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_23, 0, x_12); lean_ctor_set(x_23, 1, x_22); -x_24 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__8; +x_24 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__8; x_25 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_25, 0, x_12); lean_ctor_set(x_25, 1, x_24); @@ -40982,7 +41144,7 @@ x_28 = lean_array_push(x_27, x_21); x_29 = lean_array_push(x_28, x_23); x_30 = lean_array_push(x_29, x_25); x_31 = lean_array_push(x_30, x_9); -x_32 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__2; +x_32 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__2; x_33 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_33, 0, x_32); lean_ctor_set(x_33, 1, x_31); @@ -40993,7 +41155,7 @@ x_37 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_37, 0, x_36); lean_ctor_set(x_37, 1, x_35); x_38 = lean_array_push(x_34, x_37); -x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2; +x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2; x_40 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_40, 0, x_39); lean_ctor_set(x_40, 1, x_38); @@ -41013,15 +41175,15 @@ lean_inc(x_43); x_44 = lean_ctor_get(x_2, 1); lean_inc(x_44); lean_dec(x_2); -x_45 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__1; +x_45 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__1; lean_inc(x_41); x_46 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_46, 0, x_41); lean_ctor_set(x_46, 1, x_45); -x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__7; +x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__7; x_48 = l_Lean_addMacroScope(x_44, x_47, x_43); x_49 = lean_box(0); -x_50 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__5; +x_50 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__5; lean_inc(x_41); x_51 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_51, 0, x_41); @@ -41033,7 +41195,7 @@ lean_inc(x_41); x_53 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_53, 0, x_41); lean_ctor_set(x_53, 1, x_52); -x_54 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__8; +x_54 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__8; x_55 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_55, 0, x_41); lean_ctor_set(x_55, 1, x_54); @@ -41043,7 +41205,7 @@ x_58 = lean_array_push(x_57, x_51); x_59 = lean_array_push(x_58, x_53); x_60 = lean_array_push(x_59, x_55); x_61 = lean_array_push(x_60, x_9); -x_62 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__2; +x_62 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__2; x_63 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_63, 0, x_62); lean_ctor_set(x_63, 1, x_61); @@ -41054,7 +41216,7 @@ x_67 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_67, 0, x_66); lean_ctor_set(x_67, 1, x_65); x_68 = lean_array_push(x_64, x_67); -x_69 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2; +x_69 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2; x_70 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_70, 0, x_69); lean_ctor_set(x_70, 1, x_68); @@ -41272,7 +41434,7 @@ x_1 = l_term_u2039___u203a___closed__9; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_20778____closed__1() { +static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_20814____closed__1() { _start: { lean_object* x_1; @@ -41280,17 +41442,17 @@ x_1 = lean_mk_string("byTactic"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_20778____closed__2() { +static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_20814____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_2076____closed__2; -x_2 = l_myMacro____x40_Init_Notation___hyg_20778____closed__1; +x_2 = l_myMacro____x40_Init_Notation___hyg_20814____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_20778____closed__3() { +static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_20814____closed__3() { _start: { lean_object* x_1; @@ -41298,7 +41460,7 @@ x_1 = lean_mk_string("by"); return x_1; } } -lean_object* l_myMacro____x40_Init_Notation___hyg_20778_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_myMacro____x40_Init_Notation___hyg_20814_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -41333,7 +41495,7 @@ lean_inc(x_12); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_12); lean_ctor_set(x_14, 1, x_13); -x_15 = l_myMacro____x40_Init_Notation___hyg_20778____closed__3; +x_15 = l_myMacro____x40_Init_Notation___hyg_20814____closed__3; lean_inc(x_12); x_16 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_16, 0, x_12); @@ -41363,18 +41525,18 @@ x_31 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_29); x_32 = lean_array_push(x_19, x_31); -x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__5; +x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__5; x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); x_35 = lean_array_push(x_19, x_34); -x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__3; +x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__3; x_37 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_37, 0, x_36); lean_ctor_set(x_37, 1, x_35); x_38 = lean_array_push(x_23, x_16); x_39 = lean_array_push(x_38, x_37); -x_40 = l_myMacro____x40_Init_Notation___hyg_20778____closed__2; +x_40 = l_myMacro____x40_Init_Notation___hyg_20814____closed__2; x_41 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_41, 0, x_40); lean_ctor_set(x_41, 1, x_39); @@ -41426,7 +41588,7 @@ lean_inc(x_61); x_64 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_64, 0, x_61); lean_ctor_set(x_64, 1, x_63); -x_65 = l_myMacro____x40_Init_Notation___hyg_20778____closed__3; +x_65 = l_myMacro____x40_Init_Notation___hyg_20814____closed__3; lean_inc(x_61); x_66 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_66, 0, x_61); @@ -41456,18 +41618,18 @@ x_81 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_81, 0, x_80); lean_ctor_set(x_81, 1, x_79); x_82 = lean_array_push(x_69, x_81); -x_83 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__5; +x_83 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__5; x_84 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_84, 0, x_83); lean_ctor_set(x_84, 1, x_82); x_85 = lean_array_push(x_69, x_84); -x_86 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__3; +x_86 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__3; x_87 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_87, 0, x_86); lean_ctor_set(x_87, 1, x_85); x_88 = lean_array_push(x_73, x_66); x_89 = lean_array_push(x_88, x_87); -x_90 = l_myMacro____x40_Init_Notation___hyg_20778____closed__2; +x_90 = l_myMacro____x40_Init_Notation___hyg_20814____closed__2; x_91 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_91, 0, x_90); lean_ctor_set(x_91, 1, x_89); @@ -43974,6 +44136,20 @@ l_Lean_Parser_Tactic_allGoals___closed__6 = _init_l_Lean_Parser_Tactic_allGoals_ lean_mark_persistent(l_Lean_Parser_Tactic_allGoals___closed__6); l_Lean_Parser_Tactic_allGoals = _init_l_Lean_Parser_Tactic_allGoals(); lean_mark_persistent(l_Lean_Parser_Tactic_allGoals); +l_Lean_Parser_Tactic_anyGoals___closed__1 = _init_l_Lean_Parser_Tactic_anyGoals___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_anyGoals___closed__1); +l_Lean_Parser_Tactic_anyGoals___closed__2 = _init_l_Lean_Parser_Tactic_anyGoals___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_anyGoals___closed__2); +l_Lean_Parser_Tactic_anyGoals___closed__3 = _init_l_Lean_Parser_Tactic_anyGoals___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_anyGoals___closed__3); +l_Lean_Parser_Tactic_anyGoals___closed__4 = _init_l_Lean_Parser_Tactic_anyGoals___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_anyGoals___closed__4); +l_Lean_Parser_Tactic_anyGoals___closed__5 = _init_l_Lean_Parser_Tactic_anyGoals___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_anyGoals___closed__5); +l_Lean_Parser_Tactic_anyGoals___closed__6 = _init_l_Lean_Parser_Tactic_anyGoals___closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_anyGoals___closed__6); +l_Lean_Parser_Tactic_anyGoals = _init_l_Lean_Parser_Tactic_anyGoals(); +lean_mark_persistent(l_Lean_Parser_Tactic_anyGoals); l_Lean_Parser_Tactic_focus___closed__1 = _init_l_Lean_Parser_Tactic_focus___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_focus___closed__1); l_Lean_Parser_Tactic_focus___closed__2 = _init_l_Lean_Parser_Tactic_focus___closed__2(); @@ -44174,16 +44350,16 @@ l_Lean_Parser_Tactic_tacticTry_____closed__6 = _init_l_Lean_Parser_Tactic_tactic lean_mark_persistent(l_Lean_Parser_Tactic_tacticTry_____closed__6); l_Lean_Parser_Tactic_tacticTry__ = _init_l_Lean_Parser_Tactic_tacticTry__(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticTry__); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__4); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16654____closed__5); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__4); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16667____closed__5); l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__1 = _init_l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__1); l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__2 = _init_l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__2(); @@ -44224,14 +44400,14 @@ l_Lean_Parser_Tactic_tactic_xb7_x2e_____closed__9 = _init_l_Lean_Parser_Tactic_t lean_mark_persistent(l_Lean_Parser_Tactic_tactic_xb7_x2e_____closed__9); l_Lean_Parser_Tactic_tactic_xb7_x2e__ = _init_l_Lean_Parser_Tactic_tactic_xb7_x2e__(); lean_mark_persistent(l_Lean_Parser_Tactic_tactic_xb7_x2e__); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17028____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17028____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17028____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17028____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17028____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17028____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17028____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17028____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17028____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17028____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17028____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17028____closed__4); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17041____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17041____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17041____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17041____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17041____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17041____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17041____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17041____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17041____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17041____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17041____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17041____closed__4); l_Lean_Parser_Tactic_tacticRfl___closed__1 = _init_l_Lean_Parser_Tactic_tacticRfl___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticRfl___closed__1); l_Lean_Parser_Tactic_tacticRfl___closed__2 = _init_l_Lean_Parser_Tactic_tacticRfl___closed__2(); @@ -44244,16 +44420,16 @@ l_Lean_Parser_Tactic_tacticRfl___closed__5 = _init_l_Lean_Parser_Tactic_tacticRf lean_mark_persistent(l_Lean_Parser_Tactic_tacticRfl___closed__5); l_Lean_Parser_Tactic_tacticRfl = _init_l_Lean_Parser_Tactic_tacticRfl(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticRfl); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149____closed__4); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17149____closed__5); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162____closed__4); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17162____closed__5); l_Lean_Parser_Tactic_tacticAdmit___closed__1 = _init_l_Lean_Parser_Tactic_tacticAdmit___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticAdmit___closed__1); l_Lean_Parser_Tactic_tacticAdmit___closed__2 = _init_l_Lean_Parser_Tactic_tacticAdmit___closed__2(); @@ -44266,10 +44442,10 @@ l_Lean_Parser_Tactic_tacticAdmit___closed__5 = _init_l_Lean_Parser_Tactic_tactic lean_mark_persistent(l_Lean_Parser_Tactic_tacticAdmit___closed__5); l_Lean_Parser_Tactic_tacticAdmit = _init_l_Lean_Parser_Tactic_tacticAdmit(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticAdmit); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17247____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17247____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17247____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17247____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17247____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17247____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17260____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17260____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17260____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17260____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17260____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17260____closed__2); l_Lean_Parser_Tactic_tacticInferInstance___closed__1 = _init_l_Lean_Parser_Tactic_tacticInferInstance___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticInferInstance___closed__1); l_Lean_Parser_Tactic_tacticInferInstance___closed__2 = _init_l_Lean_Parser_Tactic_tacticInferInstance___closed__2(); @@ -44282,16 +44458,16 @@ l_Lean_Parser_Tactic_tacticInferInstance___closed__5 = _init_l_Lean_Parser_Tacti lean_mark_persistent(l_Lean_Parser_Tactic_tacticInferInstance___closed__5); l_Lean_Parser_Tactic_tacticInferInstance = _init_l_Lean_Parser_Tactic_tacticInferInstance(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticInferInstance); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339____closed__4); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17339____closed__5); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352____closed__4); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17352____closed__5); l_Lean_Parser_Tactic_locationWildcard___closed__1 = _init_l_Lean_Parser_Tactic_locationWildcard___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_locationWildcard___closed__1); l_Lean_Parser_Tactic_locationWildcard___closed__2 = _init_l_Lean_Parser_Tactic_locationWildcard___closed__2(); @@ -44666,12 +44842,12 @@ l_Lean_Parser_Tactic_tacticRefineLift_____closed__6 = _init_l_Lean_Parser_Tactic lean_mark_persistent(l_Lean_Parser_Tactic_tacticRefineLift_____closed__6); l_Lean_Parser_Tactic_tacticRefineLift__ = _init_l_Lean_Parser_Tactic_tacticRefineLift__(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticRefineLift__); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18098____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18098____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18098____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18098____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18098____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18098____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18098____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18098____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18098____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18111____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18111____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18111____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18111____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18111____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18111____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18111____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18111____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18111____closed__3); l_Lean_Parser_Tactic_tacticHave_____closed__1 = _init_l_Lean_Parser_Tactic_tacticHave_____closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticHave_____closed__1); l_Lean_Parser_Tactic_tacticHave_____closed__2 = _init_l_Lean_Parser_Tactic_tacticHave_____closed__2(); @@ -44692,16 +44868,16 @@ l_Lean_Parser_Tactic_tacticHave_____closed__9 = _init_l_Lean_Parser_Tactic_tacti lean_mark_persistent(l_Lean_Parser_Tactic_tacticHave_____closed__9); l_Lean_Parser_Tactic_tacticHave__ = _init_l_Lean_Parser_Tactic_tacticHave__(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticHave__); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__4); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18305____closed__5); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__4); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18318____closed__5); l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__1 = _init_l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__1); l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__2 = _init_l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__2(); @@ -44718,16 +44894,16 @@ l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__7 = _init_l_Lean_Parser_ lean_mark_persistent(l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__7); l_Lean_Parser_Tactic_tacticHave_____x3a_x3d__ = _init_l_Lean_Parser_Tactic_tacticHave_____x3a_x3d__(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticHave_____x3a_x3d__); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__4); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18448____closed__5); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__4); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18461____closed__5); l_Lean_Parser_Tactic_tacticSuffices_____closed__1 = _init_l_Lean_Parser_Tactic_tacticSuffices_____closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticSuffices_____closed__1); l_Lean_Parser_Tactic_tacticSuffices_____closed__2 = _init_l_Lean_Parser_Tactic_tacticSuffices_____closed__2(); @@ -44748,10 +44924,10 @@ l_Lean_Parser_Tactic_tacticSuffices_____closed__9 = _init_l_Lean_Parser_Tactic_t lean_mark_persistent(l_Lean_Parser_Tactic_tacticSuffices_____closed__9); l_Lean_Parser_Tactic_tacticSuffices__ = _init_l_Lean_Parser_Tactic_tacticSuffices__(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticSuffices__); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18613____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18613____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18613____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18613____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18613____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18613____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18626____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18626____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18626____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18626____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18626____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18626____closed__2); l_Lean_Parser_Tactic_tacticLet_____closed__1 = _init_l_Lean_Parser_Tactic_tacticLet_____closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticLet_____closed__1); l_Lean_Parser_Tactic_tacticLet_____closed__2 = _init_l_Lean_Parser_Tactic_tacticLet_____closed__2(); @@ -44782,16 +44958,16 @@ l_Lean_Parser_Tactic_tacticShow_____closed__6 = _init_l_Lean_Parser_Tactic_tacti lean_mark_persistent(l_Lean_Parser_Tactic_tacticShow_____closed__6); l_Lean_Parser_Tactic_tacticShow__ = _init_l_Lean_Parser_Tactic_tacticShow__(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticShow__); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__4); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18882____closed__5); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__4); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18895____closed__5); l_Lean_Parser_Tactic_letrec___closed__1 = _init_l_Lean_Parser_Tactic_letrec___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_letrec___closed__1); l_Lean_Parser_Tactic_letrec___closed__2 = _init_l_Lean_Parser_Tactic_letrec___closed__2(); @@ -44820,12 +44996,12 @@ l_Lean_Parser_Tactic_letrec___closed__13 = _init_l_Lean_Parser_Tactic_letrec___c lean_mark_persistent(l_Lean_Parser_Tactic_letrec___closed__13); l_Lean_Parser_Tactic_letrec = _init_l_Lean_Parser_Tactic_letrec(); lean_mark_persistent(l_Lean_Parser_Tactic_letrec); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19024____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19024____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19024____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19024____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19024____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19024____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19024____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19024____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19024____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19037____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19037____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19037____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19037____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19037____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19037____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19037____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19037____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19037____closed__3); l_Lean_Parser_Tactic_tacticRefineLift_x27_____closed__1 = _init_l_Lean_Parser_Tactic_tacticRefineLift_x27_____closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticRefineLift_x27_____closed__1); l_Lean_Parser_Tactic_tacticRefineLift_x27_____closed__2 = _init_l_Lean_Parser_Tactic_tacticRefineLift_x27_____closed__2(); @@ -44854,8 +45030,8 @@ l_Lean_Parser_Tactic_tacticHave_x27_____closed__6 = _init_l_Lean_Parser_Tactic_t lean_mark_persistent(l_Lean_Parser_Tactic_tacticHave_x27_____closed__6); l_Lean_Parser_Tactic_tacticHave_x27__ = _init_l_Lean_Parser_Tactic_tacticHave_x27__(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticHave_x27__); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19410____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19410____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19410____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19423____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19423____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19423____closed__1); l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__1 = _init_l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__1); l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__2 = _init_l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__2(); @@ -45044,6 +45220,20 @@ l_Lean_Parser_Tactic_existsIntro___closed__6 = _init_l_Lean_Parser_Tactic_exists lean_mark_persistent(l_Lean_Parser_Tactic_existsIntro___closed__6); l_Lean_Parser_Tactic_existsIntro = _init_l_Lean_Parser_Tactic_existsIntro(); lean_mark_persistent(l_Lean_Parser_Tactic_existsIntro); +l_Lean_Parser_Tactic_renameI___closed__1 = _init_l_Lean_Parser_Tactic_renameI___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_renameI___closed__1); +l_Lean_Parser_Tactic_renameI___closed__2 = _init_l_Lean_Parser_Tactic_renameI___closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_renameI___closed__2); +l_Lean_Parser_Tactic_renameI___closed__3 = _init_l_Lean_Parser_Tactic_renameI___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_renameI___closed__3); +l_Lean_Parser_Tactic_renameI___closed__4 = _init_l_Lean_Parser_Tactic_renameI___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_renameI___closed__4); +l_Lean_Parser_Tactic_renameI___closed__5 = _init_l_Lean_Parser_Tactic_renameI___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_renameI___closed__5); +l_Lean_Parser_Tactic_renameI___closed__6 = _init_l_Lean_Parser_Tactic_renameI___closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_renameI___closed__6); +l_Lean_Parser_Tactic_renameI = _init_l_Lean_Parser_Tactic_renameI(); +lean_mark_persistent(l_Lean_Parser_Tactic_renameI); l_Lean_Parser_Tactic_tacticRepeat_____closed__1 = _init_l_Lean_Parser_Tactic_tacticRepeat_____closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticRepeat_____closed__1); l_Lean_Parser_Tactic_tacticRepeat_____closed__2 = _init_l_Lean_Parser_Tactic_tacticRepeat_____closed__2(); @@ -45058,8 +45248,8 @@ l_Lean_Parser_Tactic_tacticRepeat_____closed__6 = _init_l_Lean_Parser_Tactic_tac lean_mark_persistent(l_Lean_Parser_Tactic_tacticRepeat_____closed__6); l_Lean_Parser_Tactic_tacticRepeat__ = _init_l_Lean_Parser_Tactic_tacticRepeat__(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticRepeat__); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20039____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20039____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20039____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20075____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20075____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20075____closed__1); l_Lean_Parser_Tactic_tacticTrivial___closed__1 = _init_l_Lean_Parser_Tactic_tacticTrivial___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticTrivial___closed__1); l_Lean_Parser_Tactic_tacticTrivial___closed__2 = _init_l_Lean_Parser_Tactic_tacticTrivial___closed__2(); @@ -45072,36 +45262,36 @@ l_Lean_Parser_Tactic_tacticTrivial___closed__5 = _init_l_Lean_Parser_Tactic_tact lean_mark_persistent(l_Lean_Parser_Tactic_tacticTrivial___closed__5); l_Lean_Parser_Tactic_tacticTrivial = _init_l_Lean_Parser_Tactic_tacticTrivial(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticTrivial); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__4); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__5); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__6 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__6); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__7 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__7); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__8 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20447____closed__8); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__4); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__5); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__6 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__6); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__7 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20521____closed__7); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__4); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__5); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__6 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__6); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__7 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__7); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__8 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__8(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20483____closed__8); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__4); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__5); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__6 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__6); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__7 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20557____closed__7); l_Lean_Parser_Tactic_tacticUnhygienic_____closed__1 = _init_l_Lean_Parser_Tactic_tacticUnhygienic_____closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticUnhygienic_____closed__1); l_Lean_Parser_Tactic_tacticUnhygienic_____closed__2 = _init_l_Lean_Parser_Tactic_tacticUnhygienic_____closed__2(); @@ -45116,22 +45306,22 @@ l_Lean_Parser_Tactic_tacticUnhygienic_____closed__6 = _init_l_Lean_Parser_Tactic lean_mark_persistent(l_Lean_Parser_Tactic_tacticUnhygienic_____closed__6); l_Lean_Parser_Tactic_tacticUnhygienic__ = _init_l_Lean_Parser_Tactic_tacticUnhygienic__(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticUnhygienic__); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__4); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__5); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__6 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__6); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__7 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__7); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__8 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20628____closed__8); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__4); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__5); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__6 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__6); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__7 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__7); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__8 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__8(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20664____closed__8); l_Lean_Parser_Attr_simp___closed__1 = _init_l_Lean_Parser_Attr_simp___closed__1(); lean_mark_persistent(l_Lean_Parser_Attr_simp___closed__1); l_Lean_Parser_Attr_simp___closed__2 = _init_l_Lean_Parser_Attr_simp___closed__2(); @@ -45170,12 +45360,12 @@ l_term_u2039___u203a___closed__9 = _init_l_term_u2039___u203a___closed__9(); lean_mark_persistent(l_term_u2039___u203a___closed__9); l_term_u2039___u203a = _init_l_term_u2039___u203a(); lean_mark_persistent(l_term_u2039___u203a); -l_myMacro____x40_Init_Notation___hyg_20778____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_20778____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_20778____closed__1); -l_myMacro____x40_Init_Notation___hyg_20778____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_20778____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_20778____closed__2); -l_myMacro____x40_Init_Notation___hyg_20778____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_20778____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_20778____closed__3); +l_myMacro____x40_Init_Notation___hyg_20814____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_20814____closed__1(); +lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_20814____closed__1); +l_myMacro____x40_Init_Notation___hyg_20814____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_20814____closed__2(); +lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_20814____closed__2); +l_myMacro____x40_Init_Notation___hyg_20814____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_20814____closed__3(); +lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_20814____closed__3); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/NotationExtra.c b/stage0/stdlib/Init/NotationExtra.c index 9f37f59c0b..2f5c45f97a 100644 --- a/stage0/stdlib/Init/NotationExtra.c +++ b/stage0/stdlib/Init/NotationExtra.c @@ -14,13 +14,10 @@ extern "C" { #endif static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__12; -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7399____lambda__1(lean_object*); -static lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__5; +static lean_object* l_calcStep___closed__7; static lean_object* l_Lean_unbracketedExplicitBinders___closed__4; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__4; -static lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__3; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__5; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__16; static lean_object* l_unexpandListCons___closed__1; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__12; lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(lean_object*, lean_object*); @@ -28,35 +25,37 @@ static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____cl static lean_object* l_termExists___x2c_____closed__2; lean_object* l_unexpandSigma(lean_object*, lean_object*); lean_object* l_Lean_extractMacroScopes(lean_object*); +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__10; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__17; size_t l_USize_add(size_t, size_t); static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__8; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__7; +lean_object* l_calcStep; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__5; static lean_object* l_Lean_unbracketedExplicitBinders___closed__1; static lean_object* l_Lean_unifConstraint___closed__1; static lean_object* l_Lean_expandExplicitBindersAux_loop___closed__5; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__31; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__26; -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7399____spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); static lean_object* l_unexpandIte___closed__4; lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation___hyg_2059____spec__1(lean_object*); static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__19; static lean_object* l_unexpandListNil___rarg___closed__2; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__13; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__24; lean_object* lean_mk_empty_array_with_capacity(lean_object*); +static lean_object* l_termCalc_____closed__6; lean_object* lean_nat_div(lean_object*, lean_object*); static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__28; lean_object* l_unexpandSorryAx(lean_object*, lean_object*); static lean_object* l_termExists___x2c_____closed__5; static lean_object* l_Lean_explicitBinders___closed__4; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__18; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__4; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__9; -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6434__match__1___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_unexpandSubtype___closed__4; static lean_object* l_Lean_unbracketedExplicitBinders___closed__2; -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6843__match__1___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_nullKind; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__3; +lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_unifConstraint___closed__8; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__11; static lean_object* l_Lean_unifConstraint___closed__2; @@ -68,32 +67,25 @@ uint8_t l_USize_decEq(size_t, size_t); lean_object* lean_array_uget(lean_object*, size_t); static lean_object* l_Lean_explicitBinders___closed__3; static lean_object* l_termExists___x2c_____closed__1; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__1; static lean_object* l_Lean_expandExplicitBinders___closed__1; static lean_object* l_Lean_unifConstraint___closed__3; static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_1839____closed__1; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__8; lean_object* l_Array_append___rarg(lean_object*, lean_object*); -static lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__1; static lean_object* l_tacticFunext_______closed__7; lean_object* l_Lean_expandExplicitBindersAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__30; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__15; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__3; -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__8; +static lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__7; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__35; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__3; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__20; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__2; lean_object* lean_array_uset(lean_object*, size_t, lean_object*); static lean_object* l_unexpandIte___closed__1; static lean_object* l_term_u03a3___x2c_____closed__5; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__9; -static lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__2; -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__1___boxed(lean_object*, lean_object*); +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__2; +lean_object* l_Array_extract___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_term___xd7____1; -lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__2; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__12; static lean_object* l_unexpandSubtype___closed__2; size_t l_USize_sub(size_t, size_t); @@ -101,81 +93,85 @@ static lean_object* l_Lean_expandExplicitBindersAux_loop___closed__12; static lean_object* l_tacticFunext_______closed__2; static lean_object* l_Lean_explicitBinders___closed__2; lean_object* l_Lean_expandExplicitBindersAux_loop_match__1(lean_object*); -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__15; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__4; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__21; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__22; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__3; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__38; -static lean_object* l_unexpandExists___closed__3; static lean_object* l_Lean_bracketedExplicitBinders___closed__7; static lean_object* l_unexpandIte___closed__2; static lean_object* l_term_u03a3_x27___x2c_____closed__3; uint8_t lean_name_eq(lean_object*, lean_object*); static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__31; -static lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__7; static lean_object* l_Lean_binderIdent___closed__3; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__23; static lean_object* l_tacticFunext_______closed__1; static lean_object* l_Lean_binderIdent___closed__5; lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d__; lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__14; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__9; +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_term_u03a3_x27___x2c__; -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_termCalc_____closed__5; lean_object* l_Array_toSubarray___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_unifConstraintElem; lean_object* lean_array_push(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__5; lean_object* lean_array_get_size(lean_object*); -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__2; +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6830__match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__18; lean_object* l_Lean_expandExplicitBindersAux_loop(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__11; static lean_object* l_term_u2203___x2c_____closed__7; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__26; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__13; lean_object* l_term_u2203___x2c__; lean_object* l_unexpandListToArray(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__13; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__14; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__10; static lean_object* l_tacticFunext_______closed__3; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__5; static lean_object* l_Lean_bracketedExplicitBinders___closed__3; static lean_object* l_unexpandListToArray___closed__1; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__32; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__10; static lean_object* l_Lean_explicitBinders___closed__1; static lean_object* l_Lean_binderIdent___closed__7; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__8; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__29; lean_object* l_Lean_expandExplicitBindersAux_loop_match__1___rarg(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__26; lean_object* l_Lean_expandExplicitBindersAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__17; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__20; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__6; static lean_object* l_term_u03a3_x27___x2c_____closed__7; lean_object* lean_string_utf8_byte_size(lean_object*); static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__41; static lean_object* l_Lean_bracketedExplicitBinders___closed__5; static lean_object* l_Lean_unbracketedExplicitBinders___closed__7; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__13; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__7; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__4; static lean_object* l_tacticFunext_______closed__5; lean_object* l___private_Init_NotationExtra_0__Lean_mkHintBody(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_unexpandListToArray___closed__2; +lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_unifConstraint___closed__6; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__6; uint8_t l_USize_decLt(size_t, size_t); static lean_object* l_term_u03a3___x2c_____closed__6; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__33; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__1; extern lean_object* l_Lean_nameLitKind; -lean_object* l_Array_sequenceMap_loop___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_unexpandListNil___boxed(lean_object*); static lean_object* l_Lean_unbracketedExplicitBinders___closed__3; static lean_object* l_termExists___x2c_____closed__7; static lean_object* l_term_u03a3___x2c_____closed__2; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__3; lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097_(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_27_(lean_object*, lean_object*, lean_object*); +static lean_object* l_calcStep___closed__6; static lean_object* l_solve___closed__11; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__21; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__16; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__6; static lean_object* l_term_u03a3___x2c_____closed__1; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__10; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__32; @@ -184,44 +180,49 @@ static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__14; lean_object* l_Lean_expandBrackedBindersAux_loop___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_expandBrackedBindersAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_unexpandSorryAx___closed__1; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__12; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7795____lambda__1___closed__1; +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7795____lambda__1(lean_object*); static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2109____closed__1; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__10; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__22; static lean_object* l_Lean_expandExplicitBindersAux_loop___closed__10; static lean_object* l_solve___closed__2; static lean_object* l_unexpandEqNDRec___closed__3; lean_object* l_Lean_binderIdent; static lean_object* l_unexpandProdMk___closed__1; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__3; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__7; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__2; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__25; static lean_object* l_term_u03a3___x2c_____closed__8; -static lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7399____spec__1___closed__1; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__5; static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2109____closed__2; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__24; -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7399____spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Name_hasMacroScopes(lean_object*); lean_object* l_Lean_expandBrackedBinders(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__5; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__37; -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__2(lean_object*); static lean_object* l_solve___closed__1; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__7; static lean_object* l_unexpandSorryAx___closed__2; lean_object* lean_array_fget(lean_object*, lean_object*); +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__9; static lean_object* l_term_u03a3_x27___x2c_____closed__5; static lean_object* l_term_u2203___x2c_____closed__2; -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__14; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); static lean_object* l_Lean_unbracketedExplicitBinders___closed__9; static lean_object* l_tacticFunext_______closed__6; static lean_object* l_Array_forInUnsafe_loop___at___private_Init_NotationExtra_0__Lean_mkHintBody___spec__1___closed__2; lean_object* l_term_u03a3___x2c__; -static lean_object* l_unexpandExists___closed__4; static lean_object* l_Lean_unifConstraintElem___closed__9; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__23; static lean_object* l_Array_forInUnsafe_loop___at___private_Init_NotationExtra_0__Lean_mkHintBody___spec__1___closed__1; lean_object* l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__12; static lean_object* l_solve___closed__8; static lean_object* l_Lean_unifConstraint___closed__9; +static lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__6; static lean_object* l_Lean_unbracketedExplicitBinders___closed__11; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__29; static lean_object* l_Lean_unifConstraintElem___closed__4; @@ -231,23 +232,24 @@ static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____close static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__13; lean_object* l_unexpandIte(lean_object*, lean_object*); lean_object* l_solve; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__13; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__1; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__1; static lean_object* l_termExists___x2c_____closed__4; lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2__; +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__2; static lean_object* l_Lean_unifConstraintElem___closed__8; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__4; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__4; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__19; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__1; static lean_object* l_Lean_bracketedExplicitBinders___closed__6; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__13; lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); static lean_object* l_solve___closed__6; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__10; static lean_object* l_Lean_explicitBinders___closed__5; lean_object* l_Array_anyMUnsafe_any___at_Lean_expandExplicitBinders___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_term_u03a3_x27___x2c_____closed__8; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__6; +static lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__3; static lean_object* l_termExists___x2c_____closed__8; static lean_object* l_Lean_expandExplicitBindersAux_loop___closed__7; static lean_object* l_Lean_unbracketedExplicitBinders___closed__8; @@ -255,49 +257,51 @@ static lean_object* l_Lean_unifConstraintElem___closed__1; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__11; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__7; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__24; -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6434____lambda__1(lean_object*); lean_object* l_Lean_expandExplicitBinders(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__11; static lean_object* l_Lean_unifConstraintElem___closed__2; +static lean_object* l_termCalc_____closed__1; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__24; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__7; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__4; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__17; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__10; static lean_object* l_unexpandExists___closed__2; static lean_object* l_Lean_unifConstraint___closed__4; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__2; static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2019____closed__1; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__16; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__16; static lean_object* l_Lean_unifConstraintElem___closed__11; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__33; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__3; lean_object* l_Lean_Syntax_getId(lean_object*); static lean_object* l_term_u03a3_x27___x2c_____closed__6; lean_object* l___private_Init_Meta_0__Lean_quoteNameMk(lean_object*); static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__22; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__2; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__8; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__7; static lean_object* l_unexpandProdMk___closed__2; static lean_object* l_termExists___x2c_____closed__6; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__19; static lean_object* l_Lean_unbracketedExplicitBinders___closed__6; static lean_object* l_solve___closed__13; static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2019____closed__2; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__6; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__20; static lean_object* l_Lean_unbracketedExplicitBinders___closed__13; lean_object* l_Lean_bracketedExplicitBinders; +lean_object* l_Array_sequenceMap_loop___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__5; lean_object* l_unexpandEqRec(lean_object*, lean_object*); static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__1; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__1; static lean_object* l_Lean_unifConstraint___closed__10; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__16; static lean_object* l_term_u03a3_x27___x2c_____closed__4; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__17; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__8; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__22; static lean_object* l_Lean_bracketedExplicitBinders___closed__2; static lean_object* l_Array_forInUnsafe_loop___at___private_Init_NotationExtra_0__Lean_mkHintBody___spec__1___closed__3; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__11; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__8; +static lean_object* l_calcStep___closed__9; static lean_object* l_Lean_expandExplicitBindersAux_loop___closed__11; lean_object* l_unexpandEqNDRec(lean_object*, lean_object*); static lean_object* l_termExists___x2c_____closed__3; @@ -305,29 +309,29 @@ static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____close static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__33; static lean_object* l___private_Init_NotationExtra_0__Lean_mkHintBody___closed__2; lean_object* l_Array_reverse___rarg(lean_object*); -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__9; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__7; +static lean_object* l_termCalc_____closed__3; +static lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__4; uint8_t l_Array_anyMUnsafe_any___at_Lean_expandExplicitBinders___spec__1(lean_object*, lean_object*, size_t, size_t); -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__9; +static lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__8; extern lean_object* l_Lean_instInhabitedSyntax; static lean_object* l_Lean_unifConstraintElem___closed__5; lean_object* l_unexpandUnit(lean_object*); lean_object* l_Lean_mkSepArray(lean_object*, lean_object*); -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__1(lean_object*, lean_object*); static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__19; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7399____lambda__1___closed__1; +static lean_object* l_calcStep___closed__1; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__20; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__6; static lean_object* l_term_u2203___x2c_____closed__5; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__27; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__7; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__14; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__9; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__4; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__28; static lean_object* l_tacticFunext_______closed__8; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__3; size_t lean_usize_of_nat(lean_object*); static lean_object* l_Lean_unifConstraintElem___closed__6; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__6; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__15; static lean_object* l_term_u03a3___x2c_____closed__3; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__18; @@ -336,21 +340,25 @@ static lean_object* l_Lean_unbracketedExplicitBinders___closed__12; lean_object* l_tacticFunext____; static lean_object* l_Lean_bracketedExplicitBinders___closed__1; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__3; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__6; static lean_object* l_Lean_bracketedExplicitBinders___closed__8; static lean_object* l_unexpandListNil___rarg___closed__3; lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__3; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__2; static lean_object* l_Lean_bracketedExplicitBinders___closed__9; static lean_object* l_tacticFunext_______closed__9; static lean_object* l_unexpandPSigma___closed__1; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__29; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__11; lean_object* l_unexpandPSigma(lean_object*, lean_object*); static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__7; static lean_object* l_solve___closed__12; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__15; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__10; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__2; static lean_object* l_unexpandSigma___closed__1; uint8_t l_Lean_Syntax_isNodeOf(lean_object*, lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__4; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__18; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__34; static lean_object* l_Lean_bracketedExplicitBinders___closed__4; static lean_object* l_term___xd7_x27_____closed__4; @@ -359,61 +367,81 @@ lean_object* l_unexpandUnit___rarg(lean_object*); static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__6; static lean_object* l_unexpandListNil___rarg___closed__1; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__31; +static lean_object* l_calcStep___closed__3; +static lean_object* l_termCalc_____closed__4; lean_object* l_String_intercalate(lean_object*, lean_object*); static lean_object* l_term___xd7____1___closed__5; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__7; lean_object* l_Lean_Macro_throwError___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__23; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__13; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__7; lean_object* l_unexpandListNil___rarg(lean_object*); -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__11; +static lean_object* l_calcStep___closed__5; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__22; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__21; static lean_object* l_solve___closed__7; +lean_object* l_Lean_Syntax_getNumArgs(lean_object*); lean_object* l_Array_forInUnsafe_loop___at___private_Init_NotationExtra_0__Lean_mkHintBody___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_unexpandSubtype(lean_object*, lean_object*); +static lean_object* l_calcStep___closed__4; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__5; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__25; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__6; static lean_object* l_term___xd7____1___closed__3; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__14; +lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7795____spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); static lean_object* l_unexpandListToArray___closed__3; lean_object* l_Lean_expandExplicitBindersAux_loop_match__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_termCalc__; static lean_object* l_Lean_expandExplicitBindersAux_loop___closed__6; +static lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__9; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__28; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__6; static lean_object* l_term___xd7_x27_____closed__6; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__15; uint8_t lean_nat_dec_le(lean_object*, lean_object*); static lean_object* l_tacticFunext_______closed__4; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__10; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__18; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__5; static lean_object* l_term_u03a3_x27___x2c_____closed__1; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__30; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__4; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__1; lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l_Lean_Name_append(lean_object*, lean_object*); +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__14; static lean_object* l_Lean_unbracketedExplicitBinders___closed__10; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__1; static lean_object* l_term_u03a3_x27___x2c_____closed__2; lean_object* l_Lean_Syntax_getKind(lean_object*); +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__11; +lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(size_t, size_t, lean_object*); lean_object* l_Lean_MacroScopesView_review(lean_object*); -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__4; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__26; static lean_object* l_term___xd7____1___closed__7; +static lean_object* l_termCalc_____closed__8; static lean_object* l_tacticFunext_______closed__11; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__8; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__25; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__29; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__8; +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__1___boxed(lean_object*, lean_object*); lean_object* l_unexpandProdMk(lean_object*, lean_object*); +static lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__2; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__2; +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__1(lean_object*, lean_object*); static lean_object* l_term_u03a3___x2c_____closed__4; +lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__1; static lean_object* l_term___xd7_x27_____closed__1; static lean_object* l_term_u03a3___x2c_____closed__7; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__16; static lean_object* l_Array_forInUnsafe_loop___at___private_Init_NotationExtra_0__Lean_mkHintBody___spec__1___closed__4; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__11; -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6843__match__1(lean_object*); static lean_object* l_solve___closed__3; static lean_object* l_tacticFunext_______closed__10; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__1; lean_object* l_Array_ofSubarray___rarg(lean_object*); +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__12; static lean_object* l_solve___closed__15; lean_object* l_myMacro____x40_Init_NotationExtra___hyg_1929_(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2019_(lean_object*, lean_object*, lean_object*); @@ -421,40 +449,44 @@ lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2195_(lean_object*, lean_ lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2272_(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_NotationExtra___hyg_1839_(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2109_(lean_object*, lean_object*, lean_object*); -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6843_(lean_object*, lean_object*, lean_object*); -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6434_(lean_object*, lean_object*, lean_object*); -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7399_(lean_object*, lean_object*, lean_object*); -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6215_(lean_object*, lean_object*, lean_object*); +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6611_(lean_object*, lean_object*, lean_object*); +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6830_(lean_object*, lean_object*, lean_object*); +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2370_(lean_object*, lean_object*, lean_object*); +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7239_(lean_object*, lean_object*, lean_object*); +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7795_(lean_object*, lean_object*, lean_object*); lean_object* l_term___xd7_x27__; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__9; +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__2(lean_object*); static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__9; static lean_object* l_solve___closed__14; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__27; +lean_object* l_Array_sequenceMap_loop___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_unexpandUnit___boxed(lean_object*); static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__4; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__6; +static lean_object* l_termCalc_____closed__7; static lean_object* l_solve___closed__5; +lean_object* l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__1(lean_object*, lean_object*); static lean_object* l_term_u2203___x2c_____closed__3; lean_object* l_Lean_expandExplicitBindersAux_loop_match__2(lean_object*); +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__11; uint8_t l_Lean_Syntax_isNone(lean_object*); -lean_object* l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__1(lean_object*, lean_object*); static lean_object* l_term___xd7____1___closed__2; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__11; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__2; static lean_object* l_term___xd7____1___closed__8; lean_object* l_Lean_expandBrackedBindersAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__13; -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6434__match__1(lean_object*); static lean_object* l_Lean_binderIdent___closed__8; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__2; static lean_object* l_term___xd7_x27_____closed__5; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__12; lean_object* l_unexpandExists(lean_object*, lean_object*); -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__3; static lean_object* l_unexpandIte___closed__5; static lean_object* l_Lean_binderIdent___closed__4; lean_object* l_Array_forInUnsafe_loop___at___private_Init_NotationExtra_0__Lean_mkHintBody___spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); static lean_object* l_solve___closed__10; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__12; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__9; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__40; lean_object* l_Lean_expandExplicitBindersAux_loop_match__2___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_unexpandListNil(lean_object*); @@ -465,17 +497,20 @@ static lean_object* l_unexpandSubtype___closed__3; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__35; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__23; static lean_object* l_Lean_expandExplicitBindersAux_loop___closed__1; +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7239__match__1(lean_object*); lean_object* l_termExists___x2c__; static lean_object* l_Lean_unifConstraintElem___closed__7; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__36; lean_object* l_Lean_expandExplicitBindersAux_loop___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__21; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__6; static lean_object* l_Lean_expandExplicitBindersAux_loop___closed__9; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__13; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__11; +static lean_object* l_termCalc_____closed__2; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__23; lean_object* l_Lean_unbracketedExplicitBinders; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__13; -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(size_t, size_t, lean_object*); +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__7; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__8; static lean_object* l_tacticFunext_______closed__12; static lean_object* l_Lean_unbracketedExplicitBinders___closed__5; @@ -488,8 +523,8 @@ static lean_object* l_Lean_binderIdent___closed__1; lean_object* l_unexpandListCons(lean_object*, lean_object*); static lean_object* l_term___xd7____1___closed__1; lean_object* l_Lean_unifConstraint; +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6830____lambda__1(lean_object*); static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__39; -lean_object* l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__1___boxed(lean_object*, lean_object*); static lean_object* l_solve___closed__4; static lean_object* l_Lean_expandExplicitBindersAux_loop___closed__2; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__27; @@ -503,7 +538,6 @@ static lean_object* l_Lean_expandExplicitBindersAux_loop___closed__4; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__9; static lean_object* l_solve___closed__9; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__30; -static lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__9; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__18; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__10; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__32; @@ -511,63 +545,61 @@ static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____close static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__5; lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__15; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__14; -lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__3; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__5; -static lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__6; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__30; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__5; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__15; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__6; static lean_object* l_term_u2203___x2c_____closed__4; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__8; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__14; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__8; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__17; static lean_object* l_unexpandSubtype___closed__5; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__7; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__3; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__17; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__34; +lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7795____spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__28; -static lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__8; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__21; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__15; +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6830__match__1(lean_object*); +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__12; static lean_object* l_Lean_unifConstraintElem___closed__10; static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_1839____closed__2; -static lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__4; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__5; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__15; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__1; static lean_object* l_term_u2203___x2c_____closed__6; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__16; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__27; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__10; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__9; static lean_object* l_term___xd7____1___closed__6; static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__1; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__10; static lean_object* l_term___xd7_x27_____closed__3; -lean_object* l_Array_sequenceMap_loop___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_NotationExtra_0__Lean_mkHintBody___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__4; +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7239__match__1___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__2; +lean_object* l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__1___boxed(lean_object*, lean_object*); static lean_object* l_unexpandIte___closed__3; static lean_object* l_term___xd7_x27_____closed__7; static lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__4; +static lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7795____spec__1___closed__1; static lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__31; lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(lean_object*, size_t, size_t, lean_object*); +static lean_object* l_calcStep___closed__8; static lean_object* l_Lean_unifConstraint___closed__5; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__3; static lean_object* l___private_Init_NotationExtra_0__Lean_mkHintBody___closed__1; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__12; static lean_object* l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__1; static lean_object* l_unexpandSubtype___closed__1; static lean_object* l_Lean_unifConstraintElem___closed__3; -static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__12; static lean_object* l_unexpandEqNDRec___closed__2; static lean_object* l_Lean_expandExplicitBindersAux_loop___closed__3; static lean_object* l_Lean_unifConstraint___closed__7; +static lean_object* l_calcStep___closed__2; lean_object* l_Lean_Syntax_mkLit(lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); static lean_object* l_unexpandEqNDRec___closed__1; +static lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__1; uint8_t l_Lean_Syntax_isIdent(lean_object*); lean_object* l_Lean_explicitBinders; static lean_object* _init_l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__1() { @@ -5520,6 +5552,763 @@ return x_13; } } } +static lean_object* _init_l_calcStep___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("calcStep"); +return x_1; +} +} +static lean_object* _init_l_calcStep___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_calcStep___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_calcStep___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__6; +x_2 = l_Lean_unifConstraintElem___closed__5; +x_3 = l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__20; +x_4 = lean_alloc_ctor(2, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_calcStep___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string(" := "); +return x_1; +} +} +static lean_object* _init_l_calcStep___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_calcStep___closed__4; +x_2 = lean_alloc_ctor(5, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_calcStep___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__6; +x_2 = l_calcStep___closed__3; +x_3 = l_calcStep___closed__5; +x_4 = lean_alloc_ctor(2, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_calcStep___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__22; +x_2 = l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__20; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_calcStep___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__6; +x_2 = l_calcStep___closed__6; +x_3 = l_calcStep___closed__7; +x_4 = lean_alloc_ctor(2, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_calcStep___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_calcStep___closed__1; +x_2 = l_calcStep___closed__2; +x_3 = l_calcStep___closed__8; +x_4 = lean_alloc_ctor(9, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_calcStep() { +_start: +{ +lean_object* x_1; +x_1 = l_calcStep___closed__9; +return x_1; +} +} +static lean_object* _init_l_termCalc_____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("termCalc_"); +return x_1; +} +} +static lean_object* _init_l_termCalc_____closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_termCalc_____closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_termCalc_____closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("calc "); +return x_1; +} +} +static lean_object* _init_l_termCalc_____closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_termCalc_____closed__3; +x_2 = lean_alloc_ctor(5, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_termCalc_____closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_unbracketedExplicitBinders___closed__4; +x_2 = l_calcStep; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_termCalc_____closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__22; +x_2 = l_termCalc_____closed__5; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_termCalc_____closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__6; +x_2 = l_termCalc_____closed__4; +x_3 = l_termCalc_____closed__6; +x_4 = lean_alloc_ctor(2, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_termCalc_____closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_termCalc_____closed__2; +x_2 = lean_unsigned_to_nat(1022u); +x_3 = l_termCalc_____closed__7; +x_4 = lean_alloc_ctor(3, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_termCalc__() { +_start: +{ +lean_object* x_1; +x_1 = l_termCalc_____closed__8; +return x_1; +} +} +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("trans"); +return x_1; +} +} +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__1; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__1; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__2; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Trans"); +return x_1; +} +} +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__5; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__6; +x_2 = l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__7; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__8; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__10() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("typeAscription"); +return x_1; +} +} +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__4; +x_2 = l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__10; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__12() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("calc"); +return x_1; +} +} +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2370_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = l_termCalc_____closed__2; +lean_inc(x_1); +x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; +lean_dec(x_2); +lean_dec(x_1); +x_6 = lean_box(1); +x_7 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_7, 0, x_6); +lean_ctor_set(x_7, 1, x_3); +return x_7; +} +else +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; +x_8 = lean_unsigned_to_nat(1u); +x_9 = l_Lean_Syntax_getArg(x_1, x_8); +lean_dec(x_1); +x_10 = l_Lean_nullKind; +lean_inc(x_9); +x_11 = l_Lean_Syntax_isNodeOf(x_9, x_10, x_8); +if (x_11 == 0) +{ +lean_object* x_12; uint8_t x_13; +x_12 = l_Lean_Syntax_getNumArgs(x_9); +x_13 = lean_nat_dec_le(x_8, x_12); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; +lean_dec(x_12); +lean_dec(x_9); +lean_dec(x_2); +x_14 = lean_box(1); +x_15 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_3); +return x_15; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; +x_16 = lean_unsigned_to_nat(0u); +x_17 = l_Lean_Syntax_getArg(x_9, x_16); +x_18 = l_calcStep___closed__2; +lean_inc(x_17); +x_19 = l_Lean_Syntax_isOfKind(x_17, x_18); +if (x_19 == 0) +{ +lean_object* x_20; lean_object* x_21; +lean_dec(x_17); +lean_dec(x_12); +lean_dec(x_9); +lean_dec(x_2); +x_20 = lean_box(1); +x_21 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_21, 0, x_20); +lean_ctor_set(x_21, 1, x_3); +return x_21; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; uint8_t x_31; +x_22 = l_Lean_Syntax_getArg(x_17, x_16); +x_23 = lean_unsigned_to_nat(2u); +x_24 = l_Lean_Syntax_getArg(x_17, x_23); +lean_dec(x_17); +x_25 = l_Lean_Syntax_getArgs(x_9); +lean_dec(x_9); +x_26 = lean_nat_sub(x_12, x_16); +lean_dec(x_12); +x_27 = l_Array_extract___rarg(x_25, x_8, x_26); +x_28 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_28, 0, x_10); +lean_ctor_set(x_28, 1, x_27); +x_29 = l_Lean_Syntax_getArgs(x_28); +lean_dec(x_28); +lean_inc(x_2); +x_30 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_2, x_3); +x_31 = !lean_is_exclusive(x_30); +if (x_31 == 0) +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; +x_32 = lean_ctor_get(x_30, 0); +x_33 = lean_ctor_get(x_2, 2); +lean_inc(x_33); +x_34 = lean_ctor_get(x_2, 1); +lean_inc(x_34); +lean_dec(x_2); +x_35 = l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__4; +x_36 = l_Lean_addMacroScope(x_34, x_35, x_33); +x_37 = l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__3; +x_38 = l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__9; +lean_inc(x_32); +x_39 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_39, 0, x_32); +lean_ctor_set(x_39, 1, x_37); +lean_ctor_set(x_39, 2, x_36); +lean_ctor_set(x_39, 3, x_38); +x_40 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__22; +lean_inc(x_32); +x_41 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_41, 0, x_32); +lean_ctor_set(x_41, 1, x_40); +x_42 = l_Lean_expandExplicitBindersAux_loop___closed__12; +lean_inc(x_32); +x_43 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_43, 0, x_32); +lean_ctor_set(x_43, 1, x_42); +x_44 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__26; +x_45 = lean_array_push(x_44, x_43); +x_46 = lean_array_push(x_45, x_22); +x_47 = l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__11; +x_48 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_48, 0, x_47); +lean_ctor_set(x_48, 1, x_46); +x_49 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__35; +x_50 = lean_array_push(x_49, x_48); +x_51 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__19; +x_52 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_52, 0, x_51); +lean_ctor_set(x_52, 1, x_50); +x_53 = lean_array_push(x_44, x_24); +x_54 = lean_array_push(x_53, x_52); +x_55 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_55, 0, x_51); +lean_ctor_set(x_55, 1, x_54); +x_56 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__29; +lean_inc(x_32); +x_57 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_57, 0, x_32); +lean_ctor_set(x_57, 1, x_56); +x_58 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__30; +x_59 = lean_array_push(x_58, x_41); +lean_inc(x_59); +x_60 = lean_array_push(x_59, x_55); +lean_inc(x_57); +x_61 = lean_array_push(x_60, x_57); +x_62 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__21; +x_63 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_63, 0, x_62); +lean_ctor_set(x_63, 1, x_61); +x_64 = l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__12; +x_65 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_65, 0, x_32); +lean_ctor_set(x_65, 1, x_64); +x_66 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__27; +x_67 = l_Array_append___rarg(x_66, x_29); +x_68 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_68, 0, x_51); +lean_ctor_set(x_68, 1, x_67); +x_69 = lean_array_push(x_44, x_65); +x_70 = lean_array_push(x_69, x_68); +x_71 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_71, 0, x_4); +lean_ctor_set(x_71, 1, x_70); +x_72 = lean_array_push(x_44, x_71); +x_73 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__28; +x_74 = lean_array_push(x_72, x_73); +x_75 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_75, 0, x_51); +lean_ctor_set(x_75, 1, x_74); +x_76 = lean_array_push(x_59, x_75); +x_77 = lean_array_push(x_76, x_57); +x_78 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_78, 0, x_62); +lean_ctor_set(x_78, 1, x_77); +x_79 = lean_array_push(x_44, x_63); +x_80 = lean_array_push(x_79, x_78); +x_81 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_81, 0, x_51); +lean_ctor_set(x_81, 1, x_80); +x_82 = lean_array_push(x_44, x_39); +x_83 = lean_array_push(x_82, x_81); +x_84 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__6; +x_85 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_85, 0, x_84); +lean_ctor_set(x_85, 1, x_83); +lean_ctor_set(x_30, 0, x_85); +return x_30; +} +else +{ +lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; +x_86 = lean_ctor_get(x_30, 0); +x_87 = lean_ctor_get(x_30, 1); +lean_inc(x_87); +lean_inc(x_86); +lean_dec(x_30); +x_88 = lean_ctor_get(x_2, 2); +lean_inc(x_88); +x_89 = lean_ctor_get(x_2, 1); +lean_inc(x_89); +lean_dec(x_2); +x_90 = l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__4; +x_91 = l_Lean_addMacroScope(x_89, x_90, x_88); +x_92 = l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__3; +x_93 = l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__9; +lean_inc(x_86); +x_94 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_94, 0, x_86); +lean_ctor_set(x_94, 1, x_92); +lean_ctor_set(x_94, 2, x_91); +lean_ctor_set(x_94, 3, x_93); +x_95 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__22; +lean_inc(x_86); +x_96 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_96, 0, x_86); +lean_ctor_set(x_96, 1, x_95); +x_97 = l_Lean_expandExplicitBindersAux_loop___closed__12; +lean_inc(x_86); +x_98 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_98, 0, x_86); +lean_ctor_set(x_98, 1, x_97); +x_99 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__26; +x_100 = lean_array_push(x_99, x_98); +x_101 = lean_array_push(x_100, x_22); +x_102 = l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__11; +x_103 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_103, 0, x_102); +lean_ctor_set(x_103, 1, x_101); +x_104 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__35; +x_105 = lean_array_push(x_104, x_103); +x_106 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__19; +x_107 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_107, 0, x_106); +lean_ctor_set(x_107, 1, x_105); +x_108 = lean_array_push(x_99, x_24); +x_109 = lean_array_push(x_108, x_107); +x_110 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_110, 0, x_106); +lean_ctor_set(x_110, 1, x_109); +x_111 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__29; +lean_inc(x_86); +x_112 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_112, 0, x_86); +lean_ctor_set(x_112, 1, x_111); +x_113 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__30; +x_114 = lean_array_push(x_113, x_96); +lean_inc(x_114); +x_115 = lean_array_push(x_114, x_110); +lean_inc(x_112); +x_116 = lean_array_push(x_115, x_112); +x_117 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__21; +x_118 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_118, 0, x_117); +lean_ctor_set(x_118, 1, x_116); +x_119 = l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__12; +x_120 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_120, 0, x_86); +lean_ctor_set(x_120, 1, x_119); +x_121 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__27; +x_122 = l_Array_append___rarg(x_121, x_29); +x_123 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_123, 0, x_106); +lean_ctor_set(x_123, 1, x_122); +x_124 = lean_array_push(x_99, x_120); +x_125 = lean_array_push(x_124, x_123); +x_126 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_126, 0, x_4); +lean_ctor_set(x_126, 1, x_125); +x_127 = lean_array_push(x_99, x_126); +x_128 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__28; +x_129 = lean_array_push(x_127, x_128); +x_130 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_130, 0, x_106); +lean_ctor_set(x_130, 1, x_129); +x_131 = lean_array_push(x_114, x_130); +x_132 = lean_array_push(x_131, x_112); +x_133 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_133, 0, x_117); +lean_ctor_set(x_133, 1, x_132); +x_134 = lean_array_push(x_99, x_118); +x_135 = lean_array_push(x_134, x_133); +x_136 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_136, 0, x_106); +lean_ctor_set(x_136, 1, x_135); +x_137 = lean_array_push(x_99, x_94); +x_138 = lean_array_push(x_137, x_136); +x_139 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__6; +x_140 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_140, 0, x_139); +lean_ctor_set(x_140, 1, x_138); +x_141 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_141, 0, x_140); +lean_ctor_set(x_141, 1, x_87); +return x_141; +} +} +} +} +else +{ +lean_object* x_142; lean_object* x_143; lean_object* x_144; uint8_t x_145; +x_142 = lean_unsigned_to_nat(0u); +x_143 = l_Lean_Syntax_getArg(x_9, x_142); +lean_dec(x_9); +x_144 = l_calcStep___closed__2; +lean_inc(x_143); +x_145 = l_Lean_Syntax_isOfKind(x_143, x_144); +if (x_145 == 0) +{ +lean_object* x_146; lean_object* x_147; +lean_dec(x_143); +lean_dec(x_2); +x_146 = lean_box(1); +x_147 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_147, 0, x_146); +lean_ctor_set(x_147, 1, x_3); +return x_147; +} +else +{ +lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; uint8_t x_152; +x_148 = l_Lean_Syntax_getArg(x_143, x_142); +x_149 = lean_unsigned_to_nat(2u); +x_150 = l_Lean_Syntax_getArg(x_143, x_149); +lean_dec(x_143); +x_151 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_72____spec__1(x_2, x_3); +x_152 = !lean_is_exclusive(x_151); +if (x_152 == 0) +{ +lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; +x_153 = lean_ctor_get(x_151, 0); +x_154 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__22; +lean_inc(x_153); +x_155 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_155, 0, x_153); +lean_ctor_set(x_155, 1, x_154); +x_156 = l_Lean_expandExplicitBindersAux_loop___closed__12; +lean_inc(x_153); +x_157 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_157, 0, x_153); +lean_ctor_set(x_157, 1, x_156); +x_158 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__26; +x_159 = lean_array_push(x_158, x_157); +x_160 = lean_array_push(x_159, x_148); +x_161 = l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__11; +x_162 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_162, 0, x_161); +lean_ctor_set(x_162, 1, x_160); +x_163 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__35; +x_164 = lean_array_push(x_163, x_162); +x_165 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__19; +x_166 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_166, 0, x_165); +lean_ctor_set(x_166, 1, x_164); +x_167 = lean_array_push(x_158, x_150); +x_168 = lean_array_push(x_167, x_166); +x_169 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_169, 0, x_165); +lean_ctor_set(x_169, 1, x_168); +x_170 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__29; +x_171 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_171, 0, x_153); +lean_ctor_set(x_171, 1, x_170); +x_172 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__30; +x_173 = lean_array_push(x_172, x_155); +x_174 = lean_array_push(x_173, x_169); +x_175 = lean_array_push(x_174, x_171); +x_176 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__21; +x_177 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_177, 0, x_176); +lean_ctor_set(x_177, 1, x_175); +lean_ctor_set(x_151, 0, x_177); +return x_151; +} +else +{ +lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; +x_178 = lean_ctor_get(x_151, 0); +x_179 = lean_ctor_get(x_151, 1); +lean_inc(x_179); +lean_inc(x_178); +lean_dec(x_151); +x_180 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__22; +lean_inc(x_178); +x_181 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_181, 0, x_178); +lean_ctor_set(x_181, 1, x_180); +x_182 = l_Lean_expandExplicitBindersAux_loop___closed__12; +lean_inc(x_178); +x_183 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_183, 0, x_178); +lean_ctor_set(x_183, 1, x_182); +x_184 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__26; +x_185 = lean_array_push(x_184, x_183); +x_186 = lean_array_push(x_185, x_148); +x_187 = l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__11; +x_188 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_188, 0, x_187); +lean_ctor_set(x_188, 1, x_186); +x_189 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__35; +x_190 = lean_array_push(x_189, x_188); +x_191 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__19; +x_192 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_192, 0, x_191); +lean_ctor_set(x_192, 1, x_190); +x_193 = lean_array_push(x_184, x_150); +x_194 = lean_array_push(x_193, x_192); +x_195 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_195, 0, x_191); +lean_ctor_set(x_195, 1, x_194); +x_196 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__29; +x_197 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_197, 0, x_178); +lean_ctor_set(x_197, 1, x_196); +x_198 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__30; +x_199 = lean_array_push(x_198, x_181); +x_200 = lean_array_push(x_199, x_195); +x_201 = lean_array_push(x_200, x_197); +x_202 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__21; +x_203 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_203, 0, x_202); +lean_ctor_set(x_203, 1, x_201); +x_204 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_204, 0, x_203); +lean_ctor_set(x_204, 1, x_179); +return x_204; +} +} +} +} +} +} lean_object* l_unexpandUnit___rarg(lean_object* x_1) { _start: { @@ -7384,29 +8173,11 @@ static lean_object* _init_l_unexpandExists___closed__1() { _start: { lean_object* x_1; -x_1 = lean_mk_string("typeAscription"); -return x_1; -} -} -static lean_object* _init_l_unexpandExists___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__4; -x_2 = l_unexpandExists___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_unexpandExists___closed__3() { -_start: -{ -lean_object* x_1; x_1 = lean_mk_string("∃"); return x_1; } } -static lean_object* _init_l_unexpandExists___closed__4() { +static lean_object* _init_l_unexpandExists___closed__2() { _start: { lean_object* x_1; lean_object* x_2; @@ -7591,7 +8362,7 @@ else lean_object* x_48; lean_object* x_49; uint8_t x_50; x_48 = l_Lean_Syntax_getArg(x_44, x_13); lean_dec(x_44); -x_49 = l_unexpandExists___closed__2; +x_49 = l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__11; lean_inc(x_48); x_50 = l_Lean_Syntax_isOfKind(x_48, x_49); if (x_50 == 0) @@ -7619,7 +8390,7 @@ if (x_56 == 0) { lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; x_57 = lean_ctor_get(x_55, 0); -x_58 = l_unexpandExists___closed__3; +x_58 = l_unexpandExists___closed__1; lean_inc(x_57); x_59 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_59, 0, x_57); @@ -7650,7 +8421,7 @@ lean_inc(x_57); x_72 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_72, 0, x_57); lean_ctor_set(x_72, 1, x_71); -x_73 = l_unexpandExists___closed__4; +x_73 = l_unexpandExists___closed__2; x_74 = lean_array_push(x_73, x_61); x_75 = lean_array_push(x_74, x_68); x_76 = lean_array_push(x_75, x_70); @@ -7693,7 +8464,7 @@ x_96 = lean_ctor_get(x_55, 1); lean_inc(x_96); lean_inc(x_95); lean_dec(x_55); -x_97 = l_unexpandExists___closed__3; +x_97 = l_unexpandExists___closed__1; lean_inc(x_95); x_98 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_98, 0, x_95); @@ -7724,7 +8495,7 @@ lean_inc(x_95); x_111 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_111, 0, x_95); lean_ctor_set(x_111, 1, x_110); -x_112 = l_unexpandExists___closed__4; +x_112 = l_unexpandExists___closed__2; x_113 = lean_array_push(x_112, x_100); x_114 = lean_array_push(x_113, x_107); x_115 = lean_array_push(x_114, x_109); @@ -7785,7 +8556,7 @@ if (x_140 == 0) { lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; x_141 = lean_ctor_get(x_139, 0); -x_142 = l_unexpandExists___closed__3; +x_142 = l_unexpandExists___closed__1; lean_inc(x_141); x_143 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_143, 0, x_141); @@ -7837,7 +8608,7 @@ x_169 = lean_ctor_get(x_139, 1); lean_inc(x_169); lean_inc(x_168); lean_dec(x_139); -x_170 = l_unexpandExists___closed__3; +x_170 = l_unexpandExists___closed__1; lean_inc(x_168); x_171 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_171, 0, x_168); @@ -7901,7 +8672,7 @@ if (x_201 == 0) { lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; x_202 = lean_ctor_get(x_200, 0); -x_203 = l_unexpandExists___closed__3; +x_203 = l_unexpandExists___closed__1; lean_inc(x_202); x_204 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_204, 0, x_202); @@ -7952,7 +8723,7 @@ x_229 = lean_ctor_get(x_200, 1); lean_inc(x_229); lean_inc(x_228); lean_dec(x_200); -x_230 = l_unexpandExists___closed__3; +x_230 = l_unexpandExists___closed__1; lean_inc(x_228); x_231 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_231, 0, x_228); @@ -8016,7 +8787,7 @@ if (x_260 == 0) { lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; x_261 = lean_ctor_get(x_259, 0); -x_262 = l_unexpandExists___closed__3; +x_262 = l_unexpandExists___closed__1; lean_inc(x_261); x_263 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_263, 0, x_261); @@ -8066,7 +8837,7 @@ x_287 = lean_ctor_get(x_259, 1); lean_inc(x_287); lean_inc(x_286); lean_dec(x_259); -x_288 = l_unexpandExists___closed__3; +x_288 = l_unexpandExists___closed__1; lean_inc(x_286); x_289 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_289, 0, x_286); @@ -8128,7 +8899,7 @@ if (x_317 == 0) { lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; x_318 = lean_ctor_get(x_316, 0); -x_319 = l_unexpandExists___closed__3; +x_319 = l_unexpandExists___closed__1; lean_inc(x_318); x_320 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_320, 0, x_318); @@ -8178,7 +8949,7 @@ x_344 = lean_ctor_get(x_316, 1); lean_inc(x_344); lean_inc(x_343); lean_dec(x_316); -x_345 = l_unexpandExists___closed__3; +x_345 = l_unexpandExists___closed__1; lean_inc(x_343); x_346 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_346, 0, x_343); @@ -8237,7 +9008,7 @@ if (x_374 == 0) { lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; x_375 = lean_ctor_get(x_373, 0); -x_376 = l_unexpandExists___closed__3; +x_376 = l_unexpandExists___closed__1; lean_inc(x_375); x_377 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_377, 0, x_375); @@ -8288,7 +9059,7 @@ x_402 = lean_ctor_get(x_373, 1); lean_inc(x_402); lean_inc(x_401); lean_dec(x_373); -x_403 = l_unexpandExists___closed__3; +x_403 = l_unexpandExists___closed__1; lean_inc(x_401); x_404 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_404, 0, x_401); @@ -8524,7 +9295,7 @@ else lean_object* x_47; lean_object* x_48; uint8_t x_49; x_47 = l_Lean_Syntax_getArg(x_43, x_13); lean_dec(x_43); -x_48 = l_unexpandExists___closed__2; +x_48 = l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__11; lean_inc(x_47); x_49 = l_Lean_Syntax_isOfKind(x_47, x_48); if (x_49 == 0) @@ -8578,7 +9349,7 @@ lean_inc(x_56); x_69 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_69, 0, x_56); lean_ctor_set(x_69, 1, x_68); -x_70 = l_unexpandExists___closed__4; +x_70 = l_unexpandExists___closed__2; x_71 = lean_array_push(x_70, x_58); x_72 = lean_array_push(x_71, x_65); x_73 = lean_array_push(x_72, x_67); @@ -8637,7 +9408,7 @@ lean_inc(x_86); x_100 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_100, 0, x_86); lean_ctor_set(x_100, 1, x_99); -x_101 = l_unexpandExists___closed__4; +x_101 = l_unexpandExists___closed__2; x_102 = lean_array_push(x_101, x_89); x_103 = lean_array_push(x_102, x_96); x_104 = lean_array_push(x_103, x_98); @@ -8855,7 +9626,7 @@ else lean_object* x_47; lean_object* x_48; uint8_t x_49; x_47 = l_Lean_Syntax_getArg(x_43, x_13); lean_dec(x_43); -x_48 = l_unexpandExists___closed__2; +x_48 = l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__11; lean_inc(x_47); x_49 = l_Lean_Syntax_isOfKind(x_47, x_48); if (x_49 == 0) @@ -8909,7 +9680,7 @@ lean_inc(x_56); x_69 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_69, 0, x_56); lean_ctor_set(x_69, 1, x_68); -x_70 = l_unexpandExists___closed__4; +x_70 = l_unexpandExists___closed__2; x_71 = lean_array_push(x_70, x_58); x_72 = lean_array_push(x_71, x_65); x_73 = lean_array_push(x_72, x_67); @@ -8968,7 +9739,7 @@ lean_inc(x_86); x_100 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_100, 0, x_86); lean_ctor_set(x_100, 1, x_99); -x_101 = l_unexpandExists___closed__4; +x_101 = l_unexpandExists___closed__2; x_102 = lean_array_push(x_101, x_89); x_103 = lean_array_push(x_102, x_96); x_104 = lean_array_push(x_103, x_98); @@ -9308,7 +10079,7 @@ else lean_object* x_89; lean_object* x_90; uint8_t x_91; x_89 = l_Lean_Syntax_getArg(x_85, x_13); lean_dec(x_85); -x_90 = l_unexpandExists___closed__2; +x_90 = l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__11; lean_inc(x_89); x_91 = l_Lean_Syntax_isOfKind(x_89, x_90); if (x_91 == 0) @@ -9578,7 +10349,7 @@ x_1 = l_tacticFunext_______closed__12; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__1() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__1() { _start: { lean_object* x_1; @@ -9586,17 +10357,17 @@ x_1 = lean_mk_string("Tactic"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__2() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__2; -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__1; +x_2 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__3() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__3() { _start: { lean_object* x_1; @@ -9604,17 +10375,17 @@ x_1 = lean_mk_string("seq1"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__4() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__2; -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__3; +x_1 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__2; +x_2 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__5() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__5() { _start: { lean_object* x_1; @@ -9622,17 +10393,17 @@ x_1 = lean_mk_string("apply"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__6() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__2; -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__5; +x_1 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__2; +x_2 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__7() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__7() { _start: { lean_object* x_1; @@ -9640,22 +10411,22 @@ x_1 = lean_mk_string("funext"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__8() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__7; +x_1 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__7; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__9() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__7; +x_1 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__7; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__8; +x_3 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__8; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -9663,41 +10434,41 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__10() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__7; +x_2 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__11() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__10; +x_2 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__10; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__12() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__11; +x_2 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__11; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__13() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__13() { _start: { lean_object* x_1; @@ -9705,7 +10476,7 @@ x_1 = lean_mk_string(";"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__14() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__14() { _start: { lean_object* x_1; @@ -9713,17 +10484,17 @@ x_1 = lean_mk_string("intro"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__15() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__2; -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__14; +x_1 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__2; +x_2 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__14; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6215_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6611_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -9767,15 +10538,15 @@ lean_inc(x_16); x_17 = lean_ctor_get(x_2, 1); lean_inc(x_17); lean_dec(x_2); -x_18 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__5; +x_18 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__5; lean_inc(x_15); x_19 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_19, 0, x_15); lean_ctor_set(x_19, 1, x_18); -x_20 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__10; +x_20 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__10; x_21 = l_Lean_addMacroScope(x_17, x_20, x_16); -x_22 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__9; -x_23 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__12; +x_22 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__9; +x_23 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__12; lean_inc(x_15); x_24 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_24, 0, x_15); @@ -9785,16 +10556,16 @@ lean_ctor_set(x_24, 3, x_23); x_25 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__26; x_26 = lean_array_push(x_25, x_19); x_27 = lean_array_push(x_26, x_24); -x_28 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__6; +x_28 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__6; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); -x_30 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__13; +x_30 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__13; lean_inc(x_15); x_31 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_31, 0, x_15); lean_ctor_set(x_31, 1, x_30); -x_32 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__14; +x_32 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__14; lean_inc(x_15); x_33 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_33, 0, x_15); @@ -9810,11 +10581,11 @@ lean_ctor_set(x_40, 0, x_39); lean_ctor_set(x_40, 1, x_38); x_41 = lean_array_push(x_25, x_33); x_42 = lean_array_push(x_41, x_40); -x_43 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__15; +x_43 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__15; x_44 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); -x_45 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__7; +x_45 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__7; x_46 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_46, 0, x_15); lean_ctor_set(x_46, 1, x_45); @@ -9831,7 +10602,7 @@ x_54 = lean_array_push(x_53, x_52); x_55 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_55, 0, x_4); lean_ctor_set(x_55, 1, x_54); -x_56 = l_unexpandExists___closed__4; +x_56 = l_unexpandExists___closed__2; x_57 = lean_array_push(x_56, x_29); lean_inc(x_31); x_58 = lean_array_push(x_57, x_31); @@ -9842,7 +10613,7 @@ x_62 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_62, 0, x_39); lean_ctor_set(x_62, 1, x_61); x_63 = lean_array_push(x_37, x_62); -x_64 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__4; +x_64 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__4; x_65 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_65, 0, x_64); lean_ctor_set(x_65, 1, x_63); @@ -9862,15 +10633,15 @@ lean_inc(x_68); x_69 = lean_ctor_get(x_2, 1); lean_inc(x_69); lean_dec(x_2); -x_70 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__5; +x_70 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__5; lean_inc(x_66); x_71 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_71, 0, x_66); lean_ctor_set(x_71, 1, x_70); -x_72 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__10; +x_72 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__10; x_73 = l_Lean_addMacroScope(x_69, x_72, x_68); -x_74 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__9; -x_75 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__12; +x_74 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__9; +x_75 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__12; lean_inc(x_66); x_76 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_76, 0, x_66); @@ -9880,16 +10651,16 @@ lean_ctor_set(x_76, 3, x_75); x_77 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__26; x_78 = lean_array_push(x_77, x_71); x_79 = lean_array_push(x_78, x_76); -x_80 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__6; +x_80 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__6; x_81 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_81, 0, x_80); lean_ctor_set(x_81, 1, x_79); -x_82 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__13; +x_82 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__13; lean_inc(x_66); x_83 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_83, 0, x_66); lean_ctor_set(x_83, 1, x_82); -x_84 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__14; +x_84 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__14; lean_inc(x_66); x_85 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_85, 0, x_66); @@ -9905,11 +10676,11 @@ lean_ctor_set(x_92, 0, x_91); lean_ctor_set(x_92, 1, x_90); x_93 = lean_array_push(x_77, x_85); x_94 = lean_array_push(x_93, x_92); -x_95 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__15; +x_95 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__15; x_96 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_96, 0, x_95); lean_ctor_set(x_96, 1, x_94); -x_97 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__7; +x_97 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__7; x_98 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_98, 0, x_66); lean_ctor_set(x_98, 1, x_97); @@ -9926,7 +10697,7 @@ x_106 = lean_array_push(x_105, x_104); x_107 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_107, 0, x_4); lean_ctor_set(x_107, 1, x_106); -x_108 = l_unexpandExists___closed__4; +x_108 = l_unexpandExists___closed__2; x_109 = lean_array_push(x_108, x_81); lean_inc(x_83); x_110 = lean_array_push(x_109, x_83); @@ -9937,7 +10708,7 @@ x_114 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_114, 0, x_91); lean_ctor_set(x_114, 1, x_113); x_115 = lean_array_push(x_89, x_114); -x_116 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__4; +x_116 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__4; x_117 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_117, 0, x_116); lean_ctor_set(x_117, 1, x_115); @@ -9962,15 +10733,15 @@ lean_inc(x_122); x_123 = lean_ctor_get(x_2, 1); lean_inc(x_123); lean_dec(x_2); -x_124 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__5; +x_124 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__5; lean_inc(x_121); x_125 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_125, 0, x_121); lean_ctor_set(x_125, 1, x_124); -x_126 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__10; +x_126 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__10; x_127 = l_Lean_addMacroScope(x_123, x_126, x_122); -x_128 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__9; -x_129 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__12; +x_128 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__9; +x_129 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__12; lean_inc(x_121); x_130 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_130, 0, x_121); @@ -9980,16 +10751,16 @@ lean_ctor_set(x_130, 3, x_129); x_131 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__26; x_132 = lean_array_push(x_131, x_125); x_133 = lean_array_push(x_132, x_130); -x_134 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__6; +x_134 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__6; x_135 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_135, 0, x_134); lean_ctor_set(x_135, 1, x_133); -x_136 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__13; +x_136 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__13; lean_inc(x_121); x_137 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_137, 0, x_121); lean_ctor_set(x_137, 1, x_136); -x_138 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__14; +x_138 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__14; x_139 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_139, 0, x_121); lean_ctor_set(x_139, 1, x_138); @@ -10005,7 +10776,7 @@ lean_ctor_set(x_146, 0, x_145); lean_ctor_set(x_146, 1, x_144); x_147 = lean_array_push(x_131, x_139); x_148 = lean_array_push(x_147, x_146); -x_149 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__15; +x_149 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__15; x_150 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_150, 0, x_149); lean_ctor_set(x_150, 1, x_148); @@ -10017,7 +10788,7 @@ x_155 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_155, 0, x_145); lean_ctor_set(x_155, 1, x_154); x_156 = lean_array_push(x_143, x_155); -x_157 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__4; +x_157 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__4; x_158 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_158, 0, x_157); lean_ctor_set(x_158, 1, x_156); @@ -10037,15 +10808,15 @@ lean_inc(x_161); x_162 = lean_ctor_get(x_2, 1); lean_inc(x_162); lean_dec(x_2); -x_163 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__5; +x_163 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__5; lean_inc(x_159); x_164 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_164, 0, x_159); lean_ctor_set(x_164, 1, x_163); -x_165 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__10; +x_165 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__10; x_166 = l_Lean_addMacroScope(x_162, x_165, x_161); -x_167 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__9; -x_168 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__12; +x_167 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__9; +x_168 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__12; lean_inc(x_159); x_169 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_169, 0, x_159); @@ -10055,16 +10826,16 @@ lean_ctor_set(x_169, 3, x_168); x_170 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__26; x_171 = lean_array_push(x_170, x_164); x_172 = lean_array_push(x_171, x_169); -x_173 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__6; +x_173 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__6; x_174 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_174, 0, x_173); lean_ctor_set(x_174, 1, x_172); -x_175 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__13; +x_175 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__13; lean_inc(x_159); x_176 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_176, 0, x_159); lean_ctor_set(x_176, 1, x_175); -x_177 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__14; +x_177 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__14; x_178 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_178, 0, x_159); lean_ctor_set(x_178, 1, x_177); @@ -10080,7 +10851,7 @@ lean_ctor_set(x_185, 0, x_184); lean_ctor_set(x_185, 1, x_183); x_186 = lean_array_push(x_170, x_178); x_187 = lean_array_push(x_186, x_185); -x_188 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__15; +x_188 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__15; x_189 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_189, 0, x_188); lean_ctor_set(x_189, 1, x_187); @@ -10092,7 +10863,7 @@ x_194 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_194, 0, x_184); lean_ctor_set(x_194, 1, x_193); x_195 = lean_array_push(x_182, x_194); -x_196 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__4; +x_196 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__4; x_197 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_197, 0, x_196); lean_ctor_set(x_197, 1, x_195); @@ -10105,7 +10876,7 @@ return x_198; } } } -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6434__match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6830__match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -10128,15 +10899,15 @@ return x_7; } } } -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6434__match__1(lean_object* x_1) { +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6830__match__1(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_myMacro____x40_Init_NotationExtra___hyg_6434__match__1___rarg), 3, 0); +x_2 = lean_alloc_closure((void*)(l_myMacro____x40_Init_NotationExtra___hyg_6830__match__1___rarg), 3, 0); return x_2; } } -lean_object* l_Array_sequenceMap_loop___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_sequenceMap_loop___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -10205,18 +10976,18 @@ return x_20; } } } -lean_object* l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_3 = lean_array_get_size(x_1); x_4 = lean_unsigned_to_nat(0u); x_5 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__27; -x_6 = l_Array_sequenceMap_loop___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__2(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_sequenceMap_loop___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__2(x_1, x_2, x_3, x_4, x_5); return x_6; } } -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(size_t x_1, size_t x_2, lean_object* x_3) { +lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(size_t x_1, size_t x_2, lean_object* x_3) { _start: { uint8_t x_4; @@ -10244,7 +11015,7 @@ goto _start; } } } -static lean_object* _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__1() { +static lean_object* _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__1() { _start: { lean_object* x_1; @@ -10252,22 +11023,22 @@ x_1 = lean_mk_string("List.cons"); return x_1; } } -static lean_object* _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__2() { +static lean_object* _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__1; +x_1 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__3() { +static lean_object* _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__1; +x_1 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__2; +x_3 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -10275,7 +11046,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__4() { +static lean_object* _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__4() { _start: { lean_object* x_1; @@ -10283,17 +11054,17 @@ x_1 = lean_mk_string("List"); return x_1; } } -static lean_object* _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__5() { +static lean_object* _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__4; +x_2 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__6() { +static lean_object* _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__6() { _start: { lean_object* x_1; @@ -10301,41 +11072,41 @@ x_1 = lean_mk_string("cons"); return x_1; } } -static lean_object* _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__7() { +static lean_object* _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__5; -x_2 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__6; +x_1 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__5; +x_2 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__8() { +static lean_object* _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__7; +x_2 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__7; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__9() { +static lean_object* _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__8; +x_2 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { uint8_t x_7; @@ -10357,10 +11128,10 @@ x_14 = lean_ctor_get(x_5, 2); lean_inc(x_14); x_15 = lean_ctor_get(x_5, 1); lean_inc(x_15); -x_16 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__7; +x_16 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__7; x_17 = l_Lean_addMacroScope(x_15, x_16, x_14); -x_18 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__3; -x_19 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__9; +x_18 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__3; +x_19 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__9; x_20 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_20, 0, x_12); lean_ctor_set(x_20, 1, x_18); @@ -10395,7 +11166,7 @@ return x_31; } } } -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6434____lambda__1(lean_object* x_1) { +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6830____lambda__1(lean_object* x_1) { _start: { lean_object* x_2; @@ -10404,7 +11175,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__1() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__1() { _start: { lean_object* x_1; @@ -10412,17 +11183,17 @@ x_1 = lean_mk_string("term%[_|_]"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__2() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__1; +x_2 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__3() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__3() { _start: { uint8_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; @@ -10435,15 +11206,15 @@ lean_ctor_set(x_4, 1, x_2); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__4() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__4() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_myMacro____x40_Init_NotationExtra___hyg_6434____lambda__1), 1, 0); +x_1 = lean_alloc_closure((void*)(l_myMacro____x40_Init_NotationExtra___hyg_6830____lambda__1), 1, 0); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__5() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__5() { _start: { lean_object* x_1; @@ -10451,17 +11222,17 @@ x_1 = lean_mk_string("let"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__6() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__4; -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__5; +x_2 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__7() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__7() { _start: { lean_object* x_1; @@ -10469,17 +11240,17 @@ x_1 = lean_mk_string("letDecl"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__8() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__4; -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__7; +x_2 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__9() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__9() { _start: { lean_object* x_1; @@ -10487,17 +11258,17 @@ x_1 = lean_mk_string("letIdDecl"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__10() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__4; -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__9; +x_2 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__9; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__11() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__11() { _start: { lean_object* x_1; @@ -10505,22 +11276,22 @@ x_1 = lean_mk_string("y"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__12() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__12() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__11; +x_1 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__11; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__13() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__11; +x_1 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__11; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__12; +x_3 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__12; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -10528,17 +11299,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__14() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__11; +x_2 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__11; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__15() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -10550,7 +11321,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__16() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__16() { _start: { lean_object* x_1; @@ -10558,7 +11329,7 @@ x_1 = lean_mk_string("%["); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__17() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -10570,7 +11341,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__18() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__18() { _start: { lean_object* x_1; @@ -10578,11 +11349,11 @@ x_1 = lean_mk_string("|"); return x_1; } } -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6434_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6830_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; -x_4 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__2; +x_4 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__2; lean_inc(x_1); x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); if (x_5 == 0) @@ -10634,7 +11405,7 @@ size_t x_185; size_t x_186; lean_object* x_187; lean_object* x_188; lean_object* x_185 = 0; x_186 = lean_usize_of_nat(x_11); lean_dec(x_11); -x_187 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__3; +x_187 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__3; x_188 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(x_10, x_185, x_186, x_187); lean_dec(x_10); x_189 = lean_ctor_get(x_188, 1); @@ -10647,8 +11418,8 @@ goto block_181; block_181: { lean_object* x_15; lean_object* x_16; -x_15 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__4; -x_16 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__1(x_14, x_15); +x_15 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__4; +x_16 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__1(x_14, x_15); lean_dec(x_14); if (lean_obj_tag(x_16) == 0) { @@ -10696,15 +11467,15 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_2, 1); lean_inc(x_34); lean_dec(x_2); -x_35 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__5; +x_35 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__5; lean_inc(x_32); x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_32); lean_ctor_set(x_36, 1, x_35); -x_37 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__14; +x_37 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__14; x_38 = l_Lean_addMacroScope(x_34, x_37, x_33); x_39 = lean_box(0); -x_40 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__13; +x_40 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__13; lean_inc(x_32); x_41 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_41, 0, x_32); @@ -10716,7 +11487,7 @@ lean_inc(x_32); x_43 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_43, 0, x_32); lean_ctor_set(x_43, 1, x_42); -x_44 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__16; +x_44 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__16; lean_inc(x_32); x_45 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_45, 0, x_32); @@ -10727,9 +11498,9 @@ x_48 = lean_usize_of_nat(x_47); lean_dec(x_47); x_49 = 0; x_50 = x_46; -x_51 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_48, x_49, x_50); +x_51 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_48, x_49, x_50); x_52 = x_51; -x_53 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__17; +x_53 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__17; x_54 = l_Lean_mkSepArray(x_52, x_53); lean_dec(x_52); x_55 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__27; @@ -10738,7 +11509,7 @@ x_57 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__19; x_58 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_56); -x_59 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__18; +x_59 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__18; lean_inc(x_32); x_60 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_60, 0, x_32); @@ -10747,7 +11518,7 @@ x_61 = l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__13; x_62 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_62, 0, x_32); lean_ctor_set(x_62, 1, x_61); -x_63 = l_unexpandExists___closed__4; +x_63 = l_unexpandExists___closed__2; x_64 = lean_array_push(x_63, x_45); lean_inc(x_64); x_65 = lean_array_push(x_64, x_58); @@ -10761,18 +11532,18 @@ lean_ctor_set(x_69, 0, x_4); lean_ctor_set(x_69, 1, x_68); lean_inc(x_41); x_70 = lean_array_push(x_63, x_41); -x_71 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__15; +x_71 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__15; x_72 = lean_array_push(x_70, x_71); x_73 = lean_array_push(x_72, x_71); x_74 = lean_array_push(x_73, x_43); x_75 = lean_array_push(x_74, x_69); -x_76 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__10; +x_76 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__10; x_77 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_77, 0, x_76); lean_ctor_set(x_77, 1, x_75); x_78 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__35; x_79 = lean_array_push(x_78, x_77); -x_80 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__8; +x_80 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__8; x_81 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_81, 0, x_80); lean_ctor_set(x_81, 1, x_79); @@ -10781,7 +11552,7 @@ x_83 = lean_array_get_size(x_82); x_84 = lean_usize_of_nat(x_83); lean_dec(x_83); x_85 = x_82; -x_86 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_84, x_49, x_85); +x_86 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_84, x_49, x_85); x_87 = x_86; x_88 = l_Lean_mkSepArray(x_87, x_53); lean_dec(x_87); @@ -10801,7 +11572,7 @@ x_97 = lean_array_push(x_96, x_36); x_98 = lean_array_push(x_97, x_81); x_99 = lean_array_push(x_98, x_71); x_100 = lean_array_push(x_99, x_95); -x_101 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__6; +x_101 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__6; x_102 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_102, 0, x_101); lean_ctor_set(x_102, 1, x_100); @@ -10821,15 +11592,15 @@ lean_inc(x_105); x_106 = lean_ctor_get(x_2, 1); lean_inc(x_106); lean_dec(x_2); -x_107 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__5; +x_107 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__5; lean_inc(x_103); x_108 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_108, 0, x_103); lean_ctor_set(x_108, 1, x_107); -x_109 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__14; +x_109 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__14; x_110 = l_Lean_addMacroScope(x_106, x_109, x_105); x_111 = lean_box(0); -x_112 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__13; +x_112 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__13; lean_inc(x_103); x_113 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_113, 0, x_103); @@ -10841,7 +11612,7 @@ lean_inc(x_103); x_115 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_115, 0, x_103); lean_ctor_set(x_115, 1, x_114); -x_116 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__16; +x_116 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__16; lean_inc(x_103); x_117 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_117, 0, x_103); @@ -10852,9 +11623,9 @@ x_120 = lean_usize_of_nat(x_119); lean_dec(x_119); x_121 = 0; x_122 = x_118; -x_123 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_120, x_121, x_122); +x_123 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_120, x_121, x_122); x_124 = x_123; -x_125 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__17; +x_125 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__17; x_126 = l_Lean_mkSepArray(x_124, x_125); lean_dec(x_124); x_127 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__27; @@ -10863,7 +11634,7 @@ x_129 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__19; x_130 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_130, 0, x_129); lean_ctor_set(x_130, 1, x_128); -x_131 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__18; +x_131 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__18; lean_inc(x_103); x_132 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_132, 0, x_103); @@ -10872,7 +11643,7 @@ x_133 = l_Lean_termMacro_x2etrace_x5b_____x5d_____closed__13; x_134 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_134, 0, x_103); lean_ctor_set(x_134, 1, x_133); -x_135 = l_unexpandExists___closed__4; +x_135 = l_unexpandExists___closed__2; x_136 = lean_array_push(x_135, x_117); lean_inc(x_136); x_137 = lean_array_push(x_136, x_130); @@ -10886,18 +11657,18 @@ lean_ctor_set(x_141, 0, x_4); lean_ctor_set(x_141, 1, x_140); lean_inc(x_113); x_142 = lean_array_push(x_135, x_113); -x_143 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__15; +x_143 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__15; x_144 = lean_array_push(x_142, x_143); x_145 = lean_array_push(x_144, x_143); x_146 = lean_array_push(x_145, x_115); x_147 = lean_array_push(x_146, x_141); -x_148 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__10; +x_148 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__10; x_149 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_149, 0, x_148); lean_ctor_set(x_149, 1, x_147); x_150 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__35; x_151 = lean_array_push(x_150, x_149); -x_152 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__8; +x_152 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__8; x_153 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_153, 0, x_152); lean_ctor_set(x_153, 1, x_151); @@ -10906,7 +11677,7 @@ x_155 = lean_array_get_size(x_154); x_156 = lean_usize_of_nat(x_155); lean_dec(x_155); x_157 = x_154; -x_158 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_156, x_121, x_157); +x_158 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_156, x_121, x_157); x_159 = x_158; x_160 = l_Lean_mkSepArray(x_159, x_125); lean_dec(x_159); @@ -10926,7 +11697,7 @@ x_169 = lean_array_push(x_168, x_108); x_170 = lean_array_push(x_169, x_153); x_171 = lean_array_push(x_170, x_143); x_172 = lean_array_push(x_171, x_167); -x_173 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__6; +x_173 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__6; x_174 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_174, 0, x_173); lean_ctor_set(x_174, 1, x_172); @@ -10957,7 +11728,7 @@ size_t x_178; size_t x_179; lean_object* x_180; x_178 = lean_usize_of_nat(x_22); lean_dec(x_22); x_179 = 0; -x_180 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4(x_19, x_178, x_179, x_21, x_2, x_3); +x_180 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4(x_19, x_178, x_179, x_21, x_2, x_3); lean_dec(x_19); return x_180; } @@ -10967,25 +11738,25 @@ return x_180; } } } -lean_object* l_Array_sequenceMap_loop___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Array_sequenceMap_loop___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l_Array_sequenceMap_loop___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__2(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Array_sequenceMap_loop___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__2(x_1, x_2, x_3, x_4, x_5); lean_dec(x_1); return x_6; } } -lean_object* l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__1(x_1, x_2); +x_3 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__1(x_1, x_2); lean_dec(x_1); return x_3; } } -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { size_t x_4; size_t x_5; lean_object* x_6; @@ -10993,11 +11764,11 @@ x_4 = lean_unbox_usize(x_1); lean_dec(x_1); x_5 = lean_unbox_usize(x_2); lean_dec(x_2); -x_6 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_4, x_5, x_3); +x_6 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_4, x_5, x_3); return x_6; } } -lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { size_t x_7; size_t x_8; lean_object* x_9; @@ -11005,7 +11776,7 @@ x_7 = lean_unbox_usize(x_2); lean_dec(x_2); x_8 = lean_unbox_usize(x_3); lean_dec(x_3); -x_9 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4(x_1, x_7, x_8, x_4, x_5, x_6); +x_9 = l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4(x_1, x_7, x_8, x_4, x_5, x_6); lean_dec(x_1); return x_9; } @@ -11374,7 +12145,7 @@ x_1 = l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__31; return x_1; } } -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6843__match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7239__match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -11397,15 +12168,15 @@ return x_7; } } } -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6843__match__1(lean_object* x_1) { +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7239__match__1(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_myMacro____x40_Init_NotationExtra___hyg_6843__match__1___rarg), 3, 0); +x_2 = lean_alloc_closure((void*)(l_myMacro____x40_Init_NotationExtra___hyg_7239__match__1___rarg), 3, 0); return x_2; } } -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; @@ -11414,7 +12185,7 @@ lean_ctor_set(x_3, 0, x_1); return x_3; } } -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__2(lean_object* x_1) { +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__2(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; @@ -11468,15 +12239,15 @@ return x_14; } } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__1() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__2), 1, 0); +x_1 = lean_alloc_closure((void*)(l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__2), 1, 0); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__2() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__2() { _start: { lean_object* x_1; @@ -11484,7 +12255,7 @@ x_1 = lean_mk_string("structure"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__3() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__3() { _start: { lean_object* x_1; @@ -11492,7 +12263,7 @@ x_1 = lean_mk_string("classTk"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__4() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__4() { _start: { lean_object* x_1; @@ -11500,7 +12271,7 @@ x_1 = lean_mk_string("class"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__5() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__5() { _start: { lean_object* x_1; @@ -11508,7 +12279,7 @@ x_1 = lean_mk_string("extends"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__6() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__6() { _start: { lean_object* x_1; @@ -11516,7 +12287,7 @@ x_1 = lean_mk_string("optDeriving"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__7() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -11526,7 +12297,7 @@ x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__8() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__8() { _start: { lean_object* x_1; lean_object* x_2; @@ -11535,7 +12306,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__9() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__9() { _start: { lean_object* x_1; @@ -11543,7 +12314,7 @@ x_1 = lean_mk_string("attribute"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__10() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__10() { _start: { lean_object* x_1; @@ -11551,7 +12322,7 @@ x_1 = lean_mk_string("instance"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__11() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__11() { _start: { lean_object* x_1; lean_object* x_2; @@ -11560,19 +12331,19 @@ x_2 = l_Array_append___rarg(x_1, x_1); return x_2; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__12() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__19; -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__11; +x_2 = l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__11; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__13() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__13() { _start: { lean_object* x_1; @@ -11580,17 +12351,17 @@ x_1 = lean_mk_string("mk"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__14() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__13; +x_2 = l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__13; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; @@ -11598,8 +12369,8 @@ x_11 = lean_unsigned_to_nat(7u); x_12 = l_Lean_Syntax_getArg(x_1, x_11); x_13 = l_Lean_Syntax_getArgs(x_12); lean_dec(x_12); -x_14 = l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__1; -x_15 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__1(x_13, x_14); +x_14 = l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__1; +x_15 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__1(x_13, x_14); lean_dec(x_13); if (lean_obj_tag(x_15) == 0) { @@ -11630,7 +12401,7 @@ x_23 = l_Lean_Name_hasMacroScopes(x_22); if (x_23 == 0) { lean_object* x_256; lean_object* x_257; -x_256 = l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__14; +x_256 = l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__14; x_257 = l_Lean_Name_append(x_22, x_256); lean_dec(x_22); x_24 = x_257; @@ -11645,7 +12416,7 @@ if (x_259 == 0) { lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; x_260 = lean_ctor_get(x_258, 0); -x_261 = l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__14; +x_261 = l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__14; x_262 = l_Lean_Name_append(x_260, x_261); lean_dec(x_260); lean_ctor_set(x_258, 0, x_262); @@ -11665,7 +12436,7 @@ lean_inc(x_266); lean_inc(x_265); lean_inc(x_264); lean_dec(x_258); -x_268 = l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__14; +x_268 = l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__14; x_269 = l_Lean_Name_append(x_264, x_268); lean_dec(x_264); x_270 = lean_alloc_ctor(0, 4, 0); @@ -11691,13 +12462,13 @@ x_28 = lean_ctor_get(x_26, 0); x_29 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__4; lean_inc(x_4); x_30 = lean_name_mk_string(x_4, x_29); -x_31 = l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__2; +x_31 = l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__2; lean_inc(x_4); x_32 = lean_name_mk_string(x_4, x_31); -x_33 = l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__3; +x_33 = l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__3; lean_inc(x_4); x_34 = lean_name_mk_string(x_4, x_33); -x_35 = l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__4; +x_35 = l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__4; lean_inc(x_28); x_36 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_36, 0, x_28); @@ -11713,7 +12484,7 @@ x_42 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__19; x_43 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_43, 0, x_42); lean_ctor_set(x_43, 1, x_41); -x_44 = l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__5; +x_44 = l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__5; lean_inc(x_4); x_45 = lean_name_mk_string(x_4, x_44); lean_inc(x_28); @@ -11725,9 +12496,9 @@ x_48 = lean_usize_of_nat(x_47); lean_dec(x_47); x_49 = 0; x_50 = x_18; -x_51 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_48, x_49, x_50); +x_51 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_48, x_49, x_50); x_52 = x_51; -x_53 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__17; +x_53 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__17; x_54 = l_Lean_mkSepArray(x_52, x_53); lean_dec(x_52); x_55 = l_Array_append___rarg(x_40, x_54); @@ -11744,20 +12515,20 @@ x_61 = lean_array_push(x_37, x_60); x_62 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_62, 0, x_42); lean_ctor_set(x_62, 1, x_61); -x_63 = l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__6; +x_63 = l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__6; lean_inc(x_4); x_64 = lean_name_mk_string(x_4, x_63); -x_65 = l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__7; +x_65 = l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__7; x_66 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_66, 0, x_64); lean_ctor_set(x_66, 1, x_65); -x_67 = l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__8; +x_67 = l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__8; x_68 = lean_array_push(x_67, x_39); x_69 = lean_array_push(x_68, x_3); x_70 = lean_array_push(x_69, x_43); x_71 = lean_array_push(x_70, x_62); x_72 = lean_array_push(x_57, x_5); -x_73 = l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__9; +x_73 = l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__9; x_74 = lean_name_mk_string(x_4, x_73); lean_inc(x_28); x_75 = lean_alloc_ctor(2, 2, 0); @@ -11782,7 +12553,7 @@ lean_ctor_set(x_84, 0, x_83); lean_ctor_set(x_84, 1, x_65); x_85 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__13; x_86 = lean_name_mk_string(x_6, x_85); -x_87 = l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__10; +x_87 = l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__10; x_88 = lean_name_mk_string(x_86, x_87); lean_inc(x_28); x_89 = lean_alloc_ctor(2, 2, 0); @@ -11812,7 +12583,7 @@ x_101 = lean_array_push(x_37, x_25); x_102 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_102, 0, x_42); lean_ctor_set(x_102, 1, x_101); -x_103 = l_unexpandExists___closed__4; +x_103 = l_unexpandExists___closed__2; x_104 = lean_array_push(x_103, x_75); x_105 = lean_array_push(x_104, x_77); x_106 = lean_array_push(x_105, x_98); @@ -11826,7 +12597,7 @@ if (lean_obj_tag(x_8) == 0) lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_dec(x_79); lean_dec(x_28); -x_110 = l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__12; +x_110 = l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__12; x_111 = lean_array_push(x_71, x_110); x_112 = lean_array_push(x_111, x_91); x_113 = lean_array_push(x_112, x_66); @@ -11897,13 +12668,13 @@ lean_dec(x_26); x_142 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__4; lean_inc(x_4); x_143 = lean_name_mk_string(x_4, x_142); -x_144 = l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__2; +x_144 = l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__2; lean_inc(x_4); x_145 = lean_name_mk_string(x_4, x_144); -x_146 = l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__3; +x_146 = l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__3; lean_inc(x_4); x_147 = lean_name_mk_string(x_4, x_146); -x_148 = l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__4; +x_148 = l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__4; lean_inc(x_140); x_149 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_149, 0, x_140); @@ -11919,7 +12690,7 @@ x_155 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__19; x_156 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_156, 0, x_155); lean_ctor_set(x_156, 1, x_154); -x_157 = l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__5; +x_157 = l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__5; lean_inc(x_4); x_158 = lean_name_mk_string(x_4, x_157); lean_inc(x_140); @@ -11931,9 +12702,9 @@ x_161 = lean_usize_of_nat(x_160); lean_dec(x_160); x_162 = 0; x_163 = x_18; -x_164 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_161, x_162, x_163); +x_164 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_161, x_162, x_163); x_165 = x_164; -x_166 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__17; +x_166 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__17; x_167 = l_Lean_mkSepArray(x_165, x_166); lean_dec(x_165); x_168 = l_Array_append___rarg(x_153, x_167); @@ -11950,20 +12721,20 @@ x_174 = lean_array_push(x_150, x_173); x_175 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_175, 0, x_155); lean_ctor_set(x_175, 1, x_174); -x_176 = l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__6; +x_176 = l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__6; lean_inc(x_4); x_177 = lean_name_mk_string(x_4, x_176); -x_178 = l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__7; +x_178 = l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__7; x_179 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_179, 0, x_177); lean_ctor_set(x_179, 1, x_178); -x_180 = l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__8; +x_180 = l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__8; x_181 = lean_array_push(x_180, x_152); x_182 = lean_array_push(x_181, x_3); x_183 = lean_array_push(x_182, x_156); x_184 = lean_array_push(x_183, x_175); x_185 = lean_array_push(x_170, x_5); -x_186 = l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__9; +x_186 = l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__9; x_187 = lean_name_mk_string(x_4, x_186); lean_inc(x_140); x_188 = lean_alloc_ctor(2, 2, 0); @@ -11988,7 +12759,7 @@ lean_ctor_set(x_197, 0, x_196); lean_ctor_set(x_197, 1, x_178); x_198 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__13; x_199 = lean_name_mk_string(x_6, x_198); -x_200 = l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__10; +x_200 = l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__10; x_201 = lean_name_mk_string(x_199, x_200); lean_inc(x_140); x_202 = lean_alloc_ctor(2, 2, 0); @@ -12018,7 +12789,7 @@ x_214 = lean_array_push(x_150, x_25); x_215 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_215, 0, x_155); lean_ctor_set(x_215, 1, x_214); -x_216 = l_unexpandExists___closed__4; +x_216 = l_unexpandExists___closed__2; x_217 = lean_array_push(x_216, x_188); x_218 = lean_array_push(x_217, x_190); x_219 = lean_array_push(x_218, x_211); @@ -12032,7 +12803,7 @@ if (lean_obj_tag(x_8) == 0) lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_dec(x_192); lean_dec(x_140); -x_223 = l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__12; +x_223 = l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__12; x_224 = lean_array_push(x_184, x_223); x_225 = lean_array_push(x_224, x_204); x_226 = lean_array_push(x_225, x_179); @@ -12100,7 +12871,7 @@ return x_254; } } } -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6843_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7239_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -12181,7 +12952,7 @@ lean_ctor_set(x_28, 0, x_27); x_29 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__3; x_30 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__2; x_31 = lean_box(0); -x_32 = l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3(x_1, x_17, x_15, x_29, x_9, x_30, x_31, x_28, x_2, x_3); +x_32 = l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3(x_1, x_17, x_15, x_29, x_9, x_30, x_31, x_28, x_2, x_3); lean_dec(x_17); lean_dec(x_1); return x_32; @@ -12195,7 +12966,7 @@ x_33 = lean_box(0); x_34 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1097____closed__3; x_35 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__2; x_36 = lean_box(0); -x_37 = l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3(x_1, x_17, x_15, x_34, x_9, x_35, x_36, x_33, x_2, x_3); +x_37 = l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3(x_1, x_17, x_15, x_34, x_9, x_35, x_36, x_33, x_2, x_3); lean_dec(x_17); lean_dec(x_1); return x_37; @@ -12204,20 +12975,20 @@ return x_37; } } } -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__1(x_1, x_2); +x_3 = l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__1(x_1, x_2); lean_dec(x_2); return x_3; } } -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_7); lean_dec(x_2); lean_dec(x_1); @@ -12266,7 +13037,7 @@ static lean_object* _init_l_solve___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__18; +x_1 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__18; x_2 = lean_alloc_ctor(5, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -12400,7 +13171,7 @@ x_1 = l_solve___closed__15; return x_1; } } -static lean_object* _init_l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7399____spec__1___closed__1() { +static lean_object* _init_l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7795____spec__1___closed__1() { _start: { lean_object* x_1; @@ -12408,7 +13179,7 @@ x_1 = lean_mk_string("done"); return x_1; } } -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7399____spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, size_t x_8, size_t x_9, lean_object* x_10) { +lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7795____spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, size_t x_8, size_t x_9, lean_object* x_10) { _start: { uint8_t x_11; @@ -12433,7 +13204,7 @@ x_13 = lean_array_uget(x_10, x_9); x_14 = lean_unsigned_to_nat(0u); x_15 = lean_array_uset(x_10, x_9, x_14); x_16 = x_13; -x_17 = l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__18; +x_17 = l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__18; lean_inc(x_1); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_1); @@ -12464,7 +13235,7 @@ x_31 = lean_array_push(x_30, x_27); x_32 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_32, 0, x_20); lean_ctor_set(x_32, 1, x_31); -x_33 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__13; +x_33 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__13; lean_inc(x_1); x_34 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_34, 0, x_1); @@ -12481,7 +13252,7 @@ lean_inc(x_6); x_40 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_40, 0, x_6); lean_ctor_set(x_40, 1, x_39); -x_41 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7399____spec__1___closed__1; +x_41 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7795____spec__1___closed__1; lean_inc(x_2); x_42 = lean_name_mk_string(x_2, x_41); lean_inc(x_1); @@ -12535,17 +13306,17 @@ goto _start; } } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7399____lambda__1___closed__1() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7795____lambda__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__2; +x_1 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__2; x_2 = l_solve___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7399____lambda__1(lean_object* x_1) { +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7795____lambda__1(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; @@ -12565,7 +13336,7 @@ lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; x_5 = lean_unsigned_to_nat(1u); x_6 = l_Lean_Syntax_getArg(x_1, x_5); lean_dec(x_1); -x_7 = l_myMacro____x40_Init_NotationExtra___hyg_7399____lambda__1___closed__1; +x_7 = l_myMacro____x40_Init_NotationExtra___hyg_7795____lambda__1___closed__1; lean_inc(x_6); x_8 = l_Lean_Syntax_isOfKind(x_6, x_7); if (x_8 == 0) @@ -12588,15 +13359,15 @@ return x_12; } } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__1() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_myMacro____x40_Init_NotationExtra___hyg_7399____lambda__1), 1, 0); +x_1 = lean_alloc_closure((void*)(l_myMacro____x40_Init_NotationExtra___hyg_7795____lambda__1), 1, 0); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__2() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__2() { _start: { lean_object* x_1; @@ -12604,17 +13375,17 @@ x_1 = lean_mk_string("focus"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__3() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__2; -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__2; +x_1 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__2; +x_2 = l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__2; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__4() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__4() { _start: { lean_object* x_1; @@ -12622,17 +13393,17 @@ x_1 = lean_mk_string("tacticSeq1Indented"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__5() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__2; -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__4; +x_1 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__2; +x_2 = l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__6() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__6() { _start: { lean_object* x_1; @@ -12640,17 +13411,17 @@ x_1 = lean_mk_string("first"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__7() { +static lean_object* _init_l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__2; -x_2 = l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__6; +x_1 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__2; +x_2 = l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7399_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_myMacro____x40_Init_NotationExtra___hyg_7795_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -12676,8 +13447,8 @@ x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); x_10 = l_Lean_Syntax_getArgs(x_9); lean_dec(x_9); -x_11 = l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__1; -x_12 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__1(x_10, x_11); +x_11 = l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__1; +x_12 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__1(x_10, x_11); lean_dec(x_10); if (lean_obj_tag(x_12) == 0) { @@ -12701,12 +13472,12 @@ if (x_17 == 0) { lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; size_t x_24; size_t x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; x_18 = lean_ctor_get(x_16, 0); -x_19 = l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__2; +x_19 = l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__2; lean_inc(x_18); x_20 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_20, 0, x_18); lean_ctor_set(x_20, 1, x_19); -x_21 = l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__6; +x_21 = l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__6; lean_inc(x_18); x_22 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_22, 0, x_18); @@ -12716,13 +13487,13 @@ x_24 = lean_usize_of_nat(x_23); lean_dec(x_23); x_25 = 0; x_26 = x_15; -x_27 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__2; -x_28 = l_myMacro____x40_Init_NotationExtra___hyg_7399____lambda__1___closed__1; -x_29 = l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__5; +x_27 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__2; +x_28 = l_myMacro____x40_Init_NotationExtra___hyg_7795____lambda__1___closed__1; +x_29 = l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__5; x_30 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__19; x_31 = l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__22; x_32 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__27; -x_33 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7399____spec__1(x_18, x_27, x_28, x_29, x_30, x_31, x_32, x_24, x_25, x_26); +x_33 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7795____spec__1(x_18, x_27, x_28, x_29, x_30, x_31, x_32, x_24, x_25, x_26); x_34 = x_33; x_35 = l_Array_append___rarg(x_32, x_34); x_36 = lean_alloc_ctor(1, 2, 0); @@ -12731,7 +13502,7 @@ lean_ctor_set(x_36, 1, x_35); x_37 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__26; x_38 = lean_array_push(x_37, x_22); x_39 = lean_array_push(x_38, x_36); -x_40 = l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__7; +x_40 = l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__7; x_41 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_41, 0, x_40); lean_ctor_set(x_41, 1, x_39); @@ -12756,7 +13527,7 @@ lean_ctor_set(x_52, 0, x_28); lean_ctor_set(x_52, 1, x_51); x_53 = lean_array_push(x_37, x_20); x_54 = lean_array_push(x_53, x_52); -x_55 = l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__3; +x_55 = l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__3; x_56 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_56, 0, x_55); lean_ctor_set(x_56, 1, x_54); @@ -12771,12 +13542,12 @@ x_58 = lean_ctor_get(x_16, 1); lean_inc(x_58); lean_inc(x_57); lean_dec(x_16); -x_59 = l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__2; +x_59 = l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__2; lean_inc(x_57); x_60 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_60, 0, x_57); lean_ctor_set(x_60, 1, x_59); -x_61 = l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__6; +x_61 = l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__6; lean_inc(x_57); x_62 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_62, 0, x_57); @@ -12786,13 +13557,13 @@ x_64 = lean_usize_of_nat(x_63); lean_dec(x_63); x_65 = 0; x_66 = x_15; -x_67 = l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__2; -x_68 = l_myMacro____x40_Init_NotationExtra___hyg_7399____lambda__1___closed__1; -x_69 = l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__5; +x_67 = l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__2; +x_68 = l_myMacro____x40_Init_NotationExtra___hyg_7795____lambda__1___closed__1; +x_69 = l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__5; x_70 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__19; x_71 = l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__22; x_72 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__27; -x_73 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7399____spec__1(x_57, x_67, x_68, x_69, x_70, x_71, x_72, x_64, x_65, x_66); +x_73 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7795____spec__1(x_57, x_67, x_68, x_69, x_70, x_71, x_72, x_64, x_65, x_66); x_74 = x_73; x_75 = l_Array_append___rarg(x_72, x_74); x_76 = lean_alloc_ctor(1, 2, 0); @@ -12801,7 +13572,7 @@ lean_ctor_set(x_76, 1, x_75); x_77 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_27____closed__26; x_78 = lean_array_push(x_77, x_62); x_79 = lean_array_push(x_78, x_76); -x_80 = l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__7; +x_80 = l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__7; x_81 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_81, 0, x_80); lean_ctor_set(x_81, 1, x_79); @@ -12826,7 +13597,7 @@ lean_ctor_set(x_92, 0, x_68); lean_ctor_set(x_92, 1, x_91); x_93 = lean_array_push(x_77, x_60); x_94 = lean_array_push(x_93, x_92); -x_95 = l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__3; +x_95 = l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__3; x_96 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_96, 0, x_95); lean_ctor_set(x_96, 1, x_94); @@ -12839,7 +13610,7 @@ return x_97; } } } -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7399____spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7795____spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { size_t x_11; size_t x_12; lean_object* x_13; @@ -12847,7 +13618,7 @@ x_11 = lean_unbox_usize(x_8); lean_dec(x_8); x_12 = lean_unbox_usize(x_9); lean_dec(x_9); -x_13 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7399____spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_11, x_12, x_10); +x_13 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7795____spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_11, x_12, x_10); return x_13; } } @@ -13418,6 +14189,68 @@ l_term___xd7_x27_____closed__7 = _init_l_term___xd7_x27_____closed__7(); lean_mark_persistent(l_term___xd7_x27_____closed__7); l_term___xd7_x27__ = _init_l_term___xd7_x27__(); lean_mark_persistent(l_term___xd7_x27__); +l_calcStep___closed__1 = _init_l_calcStep___closed__1(); +lean_mark_persistent(l_calcStep___closed__1); +l_calcStep___closed__2 = _init_l_calcStep___closed__2(); +lean_mark_persistent(l_calcStep___closed__2); +l_calcStep___closed__3 = _init_l_calcStep___closed__3(); +lean_mark_persistent(l_calcStep___closed__3); +l_calcStep___closed__4 = _init_l_calcStep___closed__4(); +lean_mark_persistent(l_calcStep___closed__4); +l_calcStep___closed__5 = _init_l_calcStep___closed__5(); +lean_mark_persistent(l_calcStep___closed__5); +l_calcStep___closed__6 = _init_l_calcStep___closed__6(); +lean_mark_persistent(l_calcStep___closed__6); +l_calcStep___closed__7 = _init_l_calcStep___closed__7(); +lean_mark_persistent(l_calcStep___closed__7); +l_calcStep___closed__8 = _init_l_calcStep___closed__8(); +lean_mark_persistent(l_calcStep___closed__8); +l_calcStep___closed__9 = _init_l_calcStep___closed__9(); +lean_mark_persistent(l_calcStep___closed__9); +l_calcStep = _init_l_calcStep(); +lean_mark_persistent(l_calcStep); +l_termCalc_____closed__1 = _init_l_termCalc_____closed__1(); +lean_mark_persistent(l_termCalc_____closed__1); +l_termCalc_____closed__2 = _init_l_termCalc_____closed__2(); +lean_mark_persistent(l_termCalc_____closed__2); +l_termCalc_____closed__3 = _init_l_termCalc_____closed__3(); +lean_mark_persistent(l_termCalc_____closed__3); +l_termCalc_____closed__4 = _init_l_termCalc_____closed__4(); +lean_mark_persistent(l_termCalc_____closed__4); +l_termCalc_____closed__5 = _init_l_termCalc_____closed__5(); +lean_mark_persistent(l_termCalc_____closed__5); +l_termCalc_____closed__6 = _init_l_termCalc_____closed__6(); +lean_mark_persistent(l_termCalc_____closed__6); +l_termCalc_____closed__7 = _init_l_termCalc_____closed__7(); +lean_mark_persistent(l_termCalc_____closed__7); +l_termCalc_____closed__8 = _init_l_termCalc_____closed__8(); +lean_mark_persistent(l_termCalc_____closed__8); +l_termCalc__ = _init_l_termCalc__(); +lean_mark_persistent(l_termCalc__); +l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__1 = _init_l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__1(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__1); +l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__2 = _init_l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__2(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__2); +l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__3 = _init_l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__3(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__3); +l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__4 = _init_l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__4(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__4); +l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__5 = _init_l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__5(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__5); +l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__6 = _init_l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__6(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__6); +l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__7 = _init_l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__7(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__7); +l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__8 = _init_l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__8(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__8); +l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__9 = _init_l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__9(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__9); +l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__10 = _init_l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__10(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__10); +l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__11 = _init_l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__11(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__11); +l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__12 = _init_l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__12(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_2370____closed__12); l_unexpandListNil___rarg___closed__1 = _init_l_unexpandListNil___rarg___closed__1(); lean_mark_persistent(l_unexpandListNil___rarg___closed__1); l_unexpandListNil___rarg___closed__2 = _init_l_unexpandListNil___rarg___closed__2(); @@ -13460,10 +14293,6 @@ l_unexpandExists___closed__1 = _init_l_unexpandExists___closed__1(); lean_mark_persistent(l_unexpandExists___closed__1); l_unexpandExists___closed__2 = _init_l_unexpandExists___closed__2(); lean_mark_persistent(l_unexpandExists___closed__2); -l_unexpandExists___closed__3 = _init_l_unexpandExists___closed__3(); -lean_mark_persistent(l_unexpandExists___closed__3); -l_unexpandExists___closed__4 = _init_l_unexpandExists___closed__4(); -lean_mark_persistent(l_unexpandExists___closed__4); l_unexpandSigma___closed__1 = _init_l_unexpandSigma___closed__1(); lean_mark_persistent(l_unexpandSigma___closed__1); l_unexpandPSigma___closed__1 = _init_l_unexpandPSigma___closed__1(); @@ -13504,90 +14333,90 @@ l_tacticFunext_______closed__12 = _init_l_tacticFunext_______closed__12(); lean_mark_persistent(l_tacticFunext_______closed__12); l_tacticFunext____ = _init_l_tacticFunext____(); lean_mark_persistent(l_tacticFunext____); -l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__1 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__1); -l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__2 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__2); -l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__3 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__3); -l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__4 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__4); -l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__5 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__5); -l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__6 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__6); -l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__7 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__7); -l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__8 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__8); -l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__9 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__9); -l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__10 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__10(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__10); -l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__11 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__11(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__11); -l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__12 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__12(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__12); -l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__13 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__13(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__13); -l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__14 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__14(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__14); -l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__15 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__15(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6215____closed__15); -l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__1 = _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__1(); -lean_mark_persistent(l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__1); -l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__2 = _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__2(); -lean_mark_persistent(l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__2); -l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__3 = _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__3(); -lean_mark_persistent(l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__3); -l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__4 = _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__4(); -lean_mark_persistent(l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__4); -l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__5 = _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__5(); -lean_mark_persistent(l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__5); -l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__6 = _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__6(); -lean_mark_persistent(l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__6); -l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__7 = _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__7(); -lean_mark_persistent(l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__7); -l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__8 = _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__8(); -lean_mark_persistent(l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__8); -l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__9 = _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__9(); -lean_mark_persistent(l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__4___closed__9); -l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__1 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__1); -l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__2 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__2); -l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__3 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__3); -l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__4 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__4); -l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__5 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__5); -l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__6 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__6); -l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__7 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__7); -l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__8 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__8); -l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__9 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__9); -l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__10 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__10(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__10); -l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__11 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__11(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__11); -l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__12 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__12(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__12); -l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__13 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__13(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__13); -l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__14 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__14(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__14); -l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__15 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__15(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__15); -l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__16 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__16(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__16); -l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__17 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__17(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__17); -l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__18 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__18(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6434____closed__18); +l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__1 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__1(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__1); +l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__2 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__2(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__2); +l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__3 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__3(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__3); +l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__4 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__4(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__4); +l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__5 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__5(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__5); +l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__6 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__6(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__6); +l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__7 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__7(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__7); +l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__8 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__8(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__8); +l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__9 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__9(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__9); +l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__10 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__10(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__10); +l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__11 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__11(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__11); +l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__12 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__12(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__12); +l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__13 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__13(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__13); +l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__14 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__14(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__14); +l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__15 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__15(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6611____closed__15); +l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__1 = _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__1(); +lean_mark_persistent(l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__1); +l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__2 = _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__2(); +lean_mark_persistent(l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__2); +l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__3 = _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__3(); +lean_mark_persistent(l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__3); +l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__4 = _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__4(); +lean_mark_persistent(l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__4); +l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__5 = _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__5(); +lean_mark_persistent(l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__5); +l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__6 = _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__6(); +lean_mark_persistent(l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__6); +l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__7 = _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__7(); +lean_mark_persistent(l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__7); +l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__8 = _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__8(); +lean_mark_persistent(l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__8); +l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__9 = _init_l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__9(); +lean_mark_persistent(l_Array_foldrMUnsafe_fold___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__4___closed__9); +l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__1 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__1(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__1); +l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__2 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__2(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__2); +l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__3 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__3(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__3); +l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__4 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__4(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__4); +l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__5 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__5(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__5); +l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__6 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__6(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__6); +l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__7 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__7(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__7); +l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__8 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__8(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__8); +l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__9 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__9(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__9); +l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__10 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__10(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__10); +l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__11 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__11(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__11); +l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__12 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__12(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__12); +l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__13 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__13(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__13); +l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__14 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__14(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__14); +l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__15 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__15(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__15); +l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__16 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__16(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__16); +l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__17 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__17(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__17); +l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__18 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__18(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6830____closed__18); l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__1 = _init_l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__1(); lean_mark_persistent(l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__1); l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__2 = _init_l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__2(); @@ -13652,34 +14481,34 @@ l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__31 = _init_l_command_ lean_mark_persistent(l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c___closed__31); l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c = _init_l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c(); lean_mark_persistent(l_command__ClassAbbrev_____x3a___x3a_x3d_____x2c); -l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__1 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__1); -l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__2 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__2); -l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__3 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__3); -l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__4 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__4); -l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__5 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__5); -l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__6 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__6); -l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__7 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__7); -l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__8 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__8(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__8); -l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__9 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__9(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__9); -l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__10 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__10(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__10); -l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__11 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__11(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__11); -l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__12 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__12(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__12); -l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__13 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__13(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__13); -l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__14 = _init_l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__14(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_6843____lambda__3___closed__14); +l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__1 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__1(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__1); +l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__2 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__2(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__2); +l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__3 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__3(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__3); +l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__4 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__4(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__4); +l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__5 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__5(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__5); +l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__6 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__6(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__6); +l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__7 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__7(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__7); +l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__8 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__8(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__8); +l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__9 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__9(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__9); +l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__10 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__10(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__10); +l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__11 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__11(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__11); +l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__12 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__12(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__12); +l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__13 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__13(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__13); +l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__14 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__14(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7239____lambda__3___closed__14); l_solve___closed__1 = _init_l_solve___closed__1(); lean_mark_persistent(l_solve___closed__1); l_solve___closed__2 = _init_l_solve___closed__2(); @@ -13712,24 +14541,24 @@ l_solve___closed__15 = _init_l_solve___closed__15(); lean_mark_persistent(l_solve___closed__15); l_solve = _init_l_solve(); lean_mark_persistent(l_solve); -l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7399____spec__1___closed__1 = _init_l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7399____spec__1___closed__1(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7399____spec__1___closed__1); -l_myMacro____x40_Init_NotationExtra___hyg_7399____lambda__1___closed__1 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7399____lambda__1___closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7399____lambda__1___closed__1); -l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__1 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__1); -l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__2 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__2); -l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__3 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__3); -l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__4 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__4(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__4); -l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__5 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__5(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__5); -l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__6 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__6(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__6); -l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__7 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__7(); -lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7399____closed__7); +l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7795____spec__1___closed__1 = _init_l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7795____spec__1___closed__1(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_7795____spec__1___closed__1); +l_myMacro____x40_Init_NotationExtra___hyg_7795____lambda__1___closed__1 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7795____lambda__1___closed__1(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7795____lambda__1___closed__1); +l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__1 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__1(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__1); +l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__2 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__2(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__2); +l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__3 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__3(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__3); +l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__4 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__4(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__4); +l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__5 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__5(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__5); +l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__6 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__6(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__6); +l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__7 = _init_l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__7(); +lean_mark_persistent(l_myMacro____x40_Init_NotationExtra___hyg_7795____closed__7); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/Prelude.c b/stage0/stdlib/Init/Prelude.c index 131475b8b4..29a412a9c7 100644 --- a/stage0/stdlib/Init/Prelude.c +++ b/stage0/stdlib/Init/Prelude.c @@ -206,6 +206,7 @@ lean_object* l_Lean_Syntax_getTailPos_x3f_loop_match__1(lean_object*); static lean_object* l_Applicative_seqRight___default___rarg___closed__1; lean_object* l_instDecidableEqFin_match__1___rarg(uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Macro_instMonadQuotationMacroM; +lean_object* l_instTransEq__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getNumArgs___boxed(lean_object*); lean_object* l_cond_match__1___rarg(uint8_t, lean_object*, lean_object*); lean_object* l_readThe___rarg___boxed(lean_object*); @@ -938,6 +939,7 @@ lean_object* l_ReaderT_pure___rarg(lean_object*, lean_object*, lean_object*, lea uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l_Lean_Name_instBEqName; lean_object* l_instMonadWithReaderOf___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_instTransEq(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getHeadInfo_x3f_loop___boxed(lean_object*, lean_object*); uint8_t l_Lean_Syntax_isIdent(lean_object*); lean_object* l_readThe___rarg(lean_object*); @@ -1997,6 +1999,22 @@ lean_dec(x_2); return x_3; } } +lean_object* l_instTransEq(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = lean_box(0); +return x_4; +} +} +lean_object* l_instTransEq__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = lean_box(0); +return x_4; +} +} lean_object* l_instHAdd___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { diff --git a/stage0/stdlib/Lean/Elab/Binders.c b/stage0/stdlib/Lean/Elab/Binders.c index 3e6a7c2a6a..c4ba74415a 100644 --- a/stage0/stdlib/Lean/Elab/Binders.c +++ b/stage0/stdlib/Lean/Elab/Binders.c @@ -100,6 +100,7 @@ lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_elabFun___sp static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandOptIdent___closed__2; lean_object* l_Lean_Elab_Term_expandFunBinders___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__37; +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1125____closed__5; lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_precheckFun___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_declareTacticSyntax___closed__1; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Quotation_precheckIdent___spec__1___rarg(lean_object*); @@ -161,7 +162,7 @@ lean_object* l_Lean_Elab_Term_instInhabitedTermElabM(lean_object*); static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___closed__4; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_elabBinderViews_loop___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withLetDecl___at_Lean_Elab_Term_elabLetDeclAux___spec__2(lean_object*); -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getMainModule___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_precheckFun___spec__4___rarg(lean_object*); @@ -266,8 +267,8 @@ lean_object* l_Lean_replaceRef(lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_addLocalVarInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkLambdaFVars(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_5657_(lean_object*); -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1130_(lean_object*); +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_5652_(lean_object*); +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1125_(lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_elabDepArrow___closed__4; lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__6(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__20; @@ -359,7 +360,6 @@ static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinder lean_object* l_Lean_mkFreshId___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_elabFunBinderViews___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandWhereDeclsOpt___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkFVar(lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1130____closed__5; static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier___closed__5; lean_object* l_Lean_Elab_Term_quoteAutoTactic(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_elabBindersAux___rarg___closed__1; @@ -369,7 +369,7 @@ uint8_t l_Lean_Syntax_isAntiquot(lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_registerFailedToInferBinderTypeInfo___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandWhereDecls___lambda__2(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandFunBinders_loop_match__3(lean_object*); -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__4(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__4(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_elabLetDeclAux___closed__5; static lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__1___closed__1; static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_registerFailedToInferBinderTypeInfo___closed__1; @@ -409,7 +409,6 @@ lean_object* l_Lean_Elab_Term_expandMatchAltsWhereDecls_loop___boxed(lean_object lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabFun___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__16; -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1130____closed__3; lean_object* l_Lean_Syntax_getNumArgs(lean_object*); lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Term_precheckFun___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_elabBinderViews_loop(lean_object*); @@ -444,12 +443,12 @@ static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_ensureAtomic lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_propagateExpectedType_match__1(lean_object*); lean_object* l_Lean_Elab_Term_expandMatchAltsWhereDecls_loop_match__1(lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Term_precheckFun___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1130____closed__4; static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__6; lean_object* l_Lean_Elab_Term_addTermInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_elabLetFunDecl___closed__1; lean_object* lean_panic_fn(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__31; +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1125____closed__3; lean_object* l_Lean_Elab_Term_elabTerm___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkFreshBinderName___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___spec__2___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -472,7 +471,6 @@ lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Term_precheckFun___spec__1___ lean_object* l_Lean_Elab_Term_FunBinders_elabFunBindersAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Term_precheckFun___spec__1___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__10; -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1130____closed__1; lean_object* l_Lean_Elab_Term_elabType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__4; @@ -482,6 +480,7 @@ lean_object* l_Lean_Elab_Term_expandFunBinders(lean_object*, lean_object*, lean_ static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__9; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__1(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__10; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux_match__1(lean_object*); static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__23; @@ -490,9 +489,7 @@ static lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__2; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandOptIdent(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isNone(lean_object*); lean_object* lean_name_mk_numeral(lean_object*, lean_object*); -lean_object* l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__1(lean_object*, lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1130____closed__2; static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__4; static lean_object* l___regBuiltin_Lean_Elab_Term_elabDepArrow___closed__5; static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__12; @@ -552,6 +549,7 @@ lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_elabForall__ static lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__15; lean_object* l_Lean_Elab_Term_expandMatchAltsWhereDecls_loop_match__1___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabForall(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1125____closed__2; static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__8; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderType___boxed(lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_elabForall___closed__2; @@ -563,6 +561,7 @@ static lean_object* l___regBuiltin_Lean_Elab_Term_elabLetFunDecl___closed__3; static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__38; static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__21; lean_object* l_Lean_Elab_Term_elabLetDeclCore(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1125____closed__4; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withLetDecl___at_Lean_Elab_Term_elabLetDeclAux___spec__2___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_indentExpr(lean_object*); @@ -571,6 +570,7 @@ static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinder lean_object* l___regBuiltin_Lean_Elab_Term_elabLetFunDecl(lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_precheckFun___spec__6(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1125____closed__1; lean_object* l_Lean_mkConst(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__1; static lean_object* l___regBuiltin_Lean_Elab_Term_elabForall___closed__3; @@ -3756,7 +3756,6 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_1); x_13 = x_4; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); @@ -3776,33 +3775,35 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); +lean_inc(x_18); x_19 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent(x_18, x_5, x_6, x_7, x_8, x_9, x_10, x_11); if (lean_obj_tag(x_19) == 0) { -lean_object* x_20; lean_object* x_21; uint8_t x_22; lean_object* x_23; size_t x_24; size_t x_25; lean_object* x_26; lean_object* x_27; +lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; lean_object* x_24; size_t x_25; size_t x_26; lean_object* x_27; lean_object* x_28; x_20 = lean_ctor_get(x_19, 0); lean_inc(x_20); x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); lean_dec(x_19); -x_22 = 2; -lean_inc(x_1); -x_23 = lean_alloc_ctor(0, 2, 1); -lean_ctor_set(x_23, 0, x_20); -lean_ctor_set(x_23, 1, x_1); -lean_ctor_set_uint8(x_23, sizeof(void*)*2, x_22); -x_24 = 1; -x_25 = x_3 + x_24; -x_26 = x_23; -x_27 = lean_array_uset(x_17, x_3, x_26); -x_3 = x_25; -x_4 = x_27; +x_22 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderType(x_18, x_1); +x_23 = 2; +x_24 = lean_alloc_ctor(0, 2, 1); +lean_ctor_set(x_24, 0, x_20); +lean_ctor_set(x_24, 1, x_22); +lean_ctor_set_uint8(x_24, sizeof(void*)*2, x_23); +x_25 = 1; +x_26 = x_3 + x_25; +x_27 = x_24; +x_28 = lean_array_uset(x_17, x_3, x_27); +x_3 = x_26; +x_4 = x_28; x_11 = x_21; goto _start; } else { -uint8_t x_29; +uint8_t x_30; +lean_dec(x_18); lean_dec(x_17); lean_dec(x_10); lean_dec(x_9); @@ -3810,24 +3811,23 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_1); -x_29 = !lean_is_exclusive(x_19); -if (x_29 == 0) +x_30 = !lean_is_exclusive(x_19); +if (x_30 == 0) { return x_19; } else { -lean_object* x_30; lean_object* x_31; lean_object* x_32; -x_30 = lean_ctor_get(x_19, 0); -x_31 = lean_ctor_get(x_19, 1); +lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_31 = lean_ctor_get(x_19, 0); +x_32 = lean_ctor_get(x_19, 1); +lean_inc(x_32); lean_inc(x_31); -lean_inc(x_30); lean_dec(x_19); -x_32 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_32, 0, x_30); -lean_ctor_set(x_32, 1, x_31); -return x_32; +x_33 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_33, 0, x_31); +lean_ctor_set(x_33, 1, x_32); +return x_33; } } } @@ -3847,7 +3847,6 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_1); x_13 = x_4; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); @@ -3867,33 +3866,35 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); +lean_inc(x_18); x_19 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent(x_18, x_5, x_6, x_7, x_8, x_9, x_10, x_11); if (lean_obj_tag(x_19) == 0) { -lean_object* x_20; lean_object* x_21; uint8_t x_22; lean_object* x_23; size_t x_24; size_t x_25; lean_object* x_26; lean_object* x_27; +lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; lean_object* x_24; size_t x_25; size_t x_26; lean_object* x_27; lean_object* x_28; x_20 = lean_ctor_get(x_19, 0); lean_inc(x_20); x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); lean_dec(x_19); -x_22 = 1; -lean_inc(x_1); -x_23 = lean_alloc_ctor(0, 2, 1); -lean_ctor_set(x_23, 0, x_20); -lean_ctor_set(x_23, 1, x_1); -lean_ctor_set_uint8(x_23, sizeof(void*)*2, x_22); -x_24 = 1; -x_25 = x_3 + x_24; -x_26 = x_23; -x_27 = lean_array_uset(x_17, x_3, x_26); -x_3 = x_25; -x_4 = x_27; +x_22 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderType(x_18, x_1); +x_23 = 1; +x_24 = lean_alloc_ctor(0, 2, 1); +lean_ctor_set(x_24, 0, x_20); +lean_ctor_set(x_24, 1, x_22); +lean_ctor_set_uint8(x_24, sizeof(void*)*2, x_23); +x_25 = 1; +x_26 = x_3 + x_25; +x_27 = x_24; +x_28 = lean_array_uset(x_17, x_3, x_27); +x_3 = x_26; +x_4 = x_28; x_11 = x_21; goto _start; } else { -uint8_t x_29; +uint8_t x_30; +lean_dec(x_18); lean_dec(x_17); lean_dec(x_10); lean_dec(x_9); @@ -3901,115 +3902,160 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_1); -x_29 = !lean_is_exclusive(x_19); -if (x_29 == 0) +x_30 = !lean_is_exclusive(x_19); +if (x_30 == 0) { return x_19; } else { -lean_object* x_30; lean_object* x_31; lean_object* x_32; -x_30 = lean_ctor_get(x_19, 0); -x_31 = lean_ctor_get(x_19, 1); +lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_31 = lean_ctor_get(x_19, 0); +x_32 = lean_ctor_get(x_19, 1); +lean_inc(x_32); lean_inc(x_31); -lean_inc(x_30); lean_dec(x_19); -x_32 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_32, 0, x_30); -lean_ctor_set(x_32, 1, x_31); -return x_32; +x_33 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_33, 0, x_31); +lean_ctor_set(x_33, 1, x_32); +return x_33; } } } } } -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__4(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__4(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { -uint8_t x_12; -x_12 = x_3 < x_2; -if (x_12 == 0) +uint8_t x_13; +x_13 = x_4 < x_3; +if (x_13 == 0) { -lean_object* x_13; lean_object* x_14; +lean_object* x_14; lean_object* x_15; +lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_13 = x_4; -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_11); -return x_14; +x_14 = x_5; +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_12); +return x_15; } else { -lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_15 = lean_array_uget(x_4, x_3); -x_16 = lean_unsigned_to_nat(0u); -x_17 = lean_array_uset(x_4, x_3, x_16); -x_18 = x_15; +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_16 = lean_array_uget(x_5, x_4); +x_17 = lean_unsigned_to_nat(0u); +x_18 = lean_array_uset(x_5, x_4, x_17); +x_19 = x_16; +lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -lean_inc(x_5); -x_19 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent(x_18, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_19) == 0) +lean_inc(x_19); +x_20 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent(x_19, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +if (lean_obj_tag(x_20) == 0) { -lean_object* x_20; lean_object* x_21; uint8_t x_22; lean_object* x_23; size_t x_24; size_t x_25; lean_object* x_26; lean_object* x_27; -x_20 = lean_ctor_get(x_19, 0); -lean_inc(x_20); -x_21 = lean_ctor_get(x_19, 1); +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_21 = lean_ctor_get(x_20, 0); lean_inc(x_21); -lean_dec(x_19); -x_22 = 0; -lean_inc(x_1); -x_23 = lean_alloc_ctor(0, 2, 1); -lean_ctor_set(x_23, 0, x_20); -lean_ctor_set(x_23, 1, x_1); -lean_ctor_set_uint8(x_23, sizeof(void*)*2, x_22); -x_24 = 1; -x_25 = x_3 + x_24; -x_26 = x_23; -x_27 = lean_array_uset(x_17, x_3, x_26); -x_3 = x_25; -x_4 = x_27; -x_11 = x_21; +x_22 = lean_ctor_get(x_20, 1); +lean_inc(x_22); +lean_dec(x_20); +x_23 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderType(x_19, x_1); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_24 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier(x_23, x_2, x_6, x_7, x_8, x_9, x_10, x_11, x_22); +if (lean_obj_tag(x_24) == 0) +{ +lean_object* x_25; lean_object* x_26; uint8_t x_27; lean_object* x_28; size_t x_29; size_t x_30; lean_object* x_31; lean_object* x_32; +x_25 = lean_ctor_get(x_24, 0); +lean_inc(x_25); +x_26 = lean_ctor_get(x_24, 1); +lean_inc(x_26); +lean_dec(x_24); +x_27 = 0; +x_28 = lean_alloc_ctor(0, 2, 1); +lean_ctor_set(x_28, 0, x_21); +lean_ctor_set(x_28, 1, x_25); +lean_ctor_set_uint8(x_28, sizeof(void*)*2, x_27); +x_29 = 1; +x_30 = x_4 + x_29; +x_31 = x_28; +x_32 = lean_array_uset(x_18, x_4, x_31); +x_4 = x_30; +x_5 = x_32; +x_12 = x_26; goto _start; } else { -uint8_t x_29; -lean_dec(x_17); +uint8_t x_34; +lean_dec(x_21); +lean_dec(x_18); +lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_29 = !lean_is_exclusive(x_19); -if (x_29 == 0) +x_34 = !lean_is_exclusive(x_24); +if (x_34 == 0) { -return x_19; +return x_24; } else { -lean_object* x_30; lean_object* x_31; lean_object* x_32; -x_30 = lean_ctor_get(x_19, 0); -x_31 = lean_ctor_get(x_19, 1); -lean_inc(x_31); -lean_inc(x_30); +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_24, 0); +x_36 = lean_ctor_get(x_24, 1); +lean_inc(x_36); +lean_inc(x_35); +lean_dec(x_24); +x_37 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_37, 0, x_35); +lean_ctor_set(x_37, 1, x_36); +return x_37; +} +} +} +else +{ +uint8_t x_38; lean_dec(x_19); -x_32 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_32, 0, x_30); -lean_ctor_set(x_32, 1, x_31); -return x_32; +lean_dec(x_18); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_38 = !lean_is_exclusive(x_20); +if (x_38 == 0) +{ +return x_20; +} +else +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_20, 0); +x_40 = lean_ctor_get(x_20, 1); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_20); +x_41 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +return x_41; } } } @@ -4029,7 +4075,6 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_1); x_13 = x_4; x_14 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_14, 0, x_13); @@ -4049,33 +4094,35 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); +lean_inc(x_18); x_19 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent(x_18, x_5, x_6, x_7, x_8, x_9, x_10, x_11); if (lean_obj_tag(x_19) == 0) { -lean_object* x_20; lean_object* x_21; uint8_t x_22; lean_object* x_23; size_t x_24; size_t x_25; lean_object* x_26; lean_object* x_27; +lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; lean_object* x_24; size_t x_25; size_t x_26; lean_object* x_27; lean_object* x_28; x_20 = lean_ctor_get(x_19, 0); lean_inc(x_20); x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); lean_dec(x_19); -x_22 = 0; -lean_inc(x_1); -x_23 = lean_alloc_ctor(0, 2, 1); -lean_ctor_set(x_23, 0, x_20); -lean_ctor_set(x_23, 1, x_1); -lean_ctor_set_uint8(x_23, sizeof(void*)*2, x_22); -x_24 = 1; -x_25 = x_3 + x_24; -x_26 = x_23; -x_27 = lean_array_uset(x_17, x_3, x_26); -x_3 = x_25; -x_4 = x_27; +x_22 = l_Lean_Elab_Term_expandOptType(x_18, x_1); +x_23 = 0; +x_24 = lean_alloc_ctor(0, 2, 1); +lean_ctor_set(x_24, 0, x_20); +lean_ctor_set(x_24, 1, x_22); +lean_ctor_set_uint8(x_24, sizeof(void*)*2, x_23); +x_25 = 1; +x_26 = x_3 + x_25; +x_27 = x_24; +x_28 = lean_array_uset(x_17, x_3, x_27); +x_3 = x_26; +x_4 = x_28; x_11 = x_21; goto _start; } else { -uint8_t x_29; +uint8_t x_30; +lean_dec(x_18); lean_dec(x_17); lean_dec(x_10); lean_dec(x_9); @@ -4083,24 +4130,23 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_1); -x_29 = !lean_is_exclusive(x_19); -if (x_29 == 0) +x_30 = !lean_is_exclusive(x_19); +if (x_30 == 0) { return x_19; } else { -lean_object* x_30; lean_object* x_31; lean_object* x_32; -x_30 = lean_ctor_get(x_19, 0); -x_31 = lean_ctor_get(x_19, 1); +lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_31 = lean_ctor_get(x_19, 0); +x_32 = lean_ctor_get(x_19, 1); +lean_inc(x_32); lean_inc(x_31); -lean_inc(x_30); lean_dec(x_19); -x_32 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_32, 0, x_30); -lean_ctor_set(x_32, 1, x_31); -return x_32; +x_33 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_33, 0, x_31); +lean_ctor_set(x_33, 1, x_32); +return x_33; } } } @@ -4339,40 +4385,33 @@ x_47 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getBinderIds(x_46, x_2, x lean_dec(x_46); if (lean_obj_tag(x_47) == 0) { -lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; size_t x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; +lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; size_t x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; x_48 = lean_ctor_get(x_47, 0); lean_inc(x_48); x_49 = lean_ctor_get(x_47, 1); lean_inc(x_49); lean_dec(x_47); -x_50 = l_Lean_nullKind; -lean_inc(x_48); -x_51 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_51, 0, x_50); -lean_ctor_set(x_51, 1, x_48); -x_52 = lean_unsigned_to_nat(2u); -x_53 = l_Lean_Syntax_getArg(x_1, x_52); +x_50 = lean_unsigned_to_nat(2u); +x_51 = l_Lean_Syntax_getArg(x_1, x_50); lean_dec(x_1); -x_54 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderType(x_51, x_53); -lean_dec(x_53); -x_55 = lean_array_get_size(x_48); -x_56 = lean_usize_of_nat(x_55); -lean_dec(x_55); -x_57 = x_48; -x_58 = lean_box_usize(x_56); -x_59 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___boxed__const__1; -x_60 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__2___boxed), 11, 4); -lean_closure_set(x_60, 0, x_54); -lean_closure_set(x_60, 1, x_58); -lean_closure_set(x_60, 2, x_59); -lean_closure_set(x_60, 3, x_57); -x_61 = x_60; -x_62 = lean_apply_7(x_61, x_2, x_3, x_4, x_5, x_6, x_7, x_49); -return x_62; +x_52 = lean_array_get_size(x_48); +x_53 = lean_usize_of_nat(x_52); +lean_dec(x_52); +x_54 = x_48; +x_55 = lean_box_usize(x_53); +x_56 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___boxed__const__1; +x_57 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__2___boxed), 11, 4); +lean_closure_set(x_57, 0, x_51); +lean_closure_set(x_57, 1, x_55); +lean_closure_set(x_57, 2, x_56); +lean_closure_set(x_57, 3, x_54); +x_58 = x_57; +x_59 = lean_apply_7(x_58, x_2, x_3, x_4, x_5, x_6, x_7, x_49); +return x_59; } else { -uint8_t x_63; +uint8_t x_60; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -4380,203 +4419,144 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_63 = !lean_is_exclusive(x_47); -if (x_63 == 0) +x_60 = !lean_is_exclusive(x_47); +if (x_60 == 0) { return x_47; } else { -lean_object* x_64; lean_object* x_65; lean_object* x_66; -x_64 = lean_ctor_get(x_47, 0); -x_65 = lean_ctor_get(x_47, 1); -lean_inc(x_65); -lean_inc(x_64); +lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_61 = lean_ctor_get(x_47, 0); +x_62 = lean_ctor_get(x_47, 1); +lean_inc(x_62); +lean_inc(x_61); lean_dec(x_47); -x_66 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_66, 0, x_64); -lean_ctor_set(x_66, 1, x_65); +x_63 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_63, 0, x_61); +lean_ctor_set(x_63, 1, x_62); +return x_63; +} +} +} +} +else +{ +lean_object* x_64; lean_object* x_65; lean_object* x_66; +lean_dec(x_9); +x_64 = lean_unsigned_to_nat(1u); +x_65 = l_Lean_Syntax_getArg(x_1, x_64); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_66 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getBinderIds(x_65, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_65); +if (lean_obj_tag(x_66) == 0) +{ +lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; size_t x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_67 = lean_ctor_get(x_66, 0); +lean_inc(x_67); +x_68 = lean_ctor_get(x_66, 1); +lean_inc(x_68); +lean_dec(x_66); +x_69 = lean_unsigned_to_nat(2u); +x_70 = l_Lean_Syntax_getArg(x_1, x_69); +lean_dec(x_1); +x_71 = lean_array_get_size(x_67); +x_72 = lean_usize_of_nat(x_71); +lean_dec(x_71); +x_73 = x_67; +x_74 = lean_box_usize(x_72); +x_75 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___boxed__const__1; +x_76 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__3___boxed), 11, 4); +lean_closure_set(x_76, 0, x_70); +lean_closure_set(x_76, 1, x_74); +lean_closure_set(x_76, 2, x_75); +lean_closure_set(x_76, 3, x_73); +x_77 = x_76; +x_78 = lean_apply_7(x_77, x_2, x_3, x_4, x_5, x_6, x_7, x_68); +return x_78; +} +else +{ +uint8_t x_79; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_79 = !lean_is_exclusive(x_66); +if (x_79 == 0) +{ return x_66; } +else +{ +lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_80 = lean_ctor_get(x_66, 0); +x_81 = lean_ctor_get(x_66, 1); +lean_inc(x_81); +lean_inc(x_80); +lean_dec(x_66); +x_82 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_82, 0, x_80); +lean_ctor_set(x_82, 1, x_81); +return x_82; +} } } } else { -lean_object* x_67; lean_object* x_68; lean_object* x_69; +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_dec(x_9); -x_67 = lean_unsigned_to_nat(1u); -x_68 = l_Lean_Syntax_getArg(x_1, x_67); +x_83 = lean_unsigned_to_nat(1u); +x_84 = l_Lean_Syntax_getArg(x_1, x_83); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); lean_inc(x_2); -x_69 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getBinderIds(x_68, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_68); -if (lean_obj_tag(x_69) == 0) +x_85 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getBinderIds(x_84, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_84); +if (lean_obj_tag(x_85) == 0) { -lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; size_t x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; -x_70 = lean_ctor_get(x_69, 0); -lean_inc(x_70); -x_71 = lean_ctor_get(x_69, 1); -lean_inc(x_71); -lean_dec(x_69); -x_72 = l_Lean_nullKind; -lean_inc(x_70); -x_73 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_73, 0, x_72); -lean_ctor_set(x_73, 1, x_70); -x_74 = lean_unsigned_to_nat(2u); -x_75 = l_Lean_Syntax_getArg(x_1, x_74); -lean_dec(x_1); -x_76 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderType(x_73, x_75); -lean_dec(x_75); -x_77 = lean_array_get_size(x_70); -x_78 = lean_usize_of_nat(x_77); -lean_dec(x_77); -x_79 = x_70; -x_80 = lean_box_usize(x_78); -x_81 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___boxed__const__1; -x_82 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__3___boxed), 11, 4); -lean_closure_set(x_82, 0, x_76); -lean_closure_set(x_82, 1, x_80); -lean_closure_set(x_82, 2, x_81); -lean_closure_set(x_82, 3, x_79); -x_83 = x_82; -x_84 = lean_apply_7(x_83, x_2, x_3, x_4, x_5, x_6, x_7, x_71); -return x_84; -} -else -{ -uint8_t x_85; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_85 = !lean_is_exclusive(x_69); -if (x_85 == 0) -{ -return x_69; -} -else -{ -lean_object* x_86; lean_object* x_87; lean_object* x_88; -x_86 = lean_ctor_get(x_69, 0); -x_87 = lean_ctor_get(x_69, 1); -lean_inc(x_87); +lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; size_t x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; +x_86 = lean_ctor_get(x_85, 0); lean_inc(x_86); -lean_dec(x_69); -x_88 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_88, 0, x_86); -lean_ctor_set(x_88, 1, x_87); -return x_88; -} -} -} -} -else -{ -lean_object* x_89; lean_object* x_90; lean_object* x_91; -lean_dec(x_9); -x_89 = lean_unsigned_to_nat(1u); -x_90 = l_Lean_Syntax_getArg(x_1, x_89); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_2); -x_91 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getBinderIds(x_90, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_90); -if (lean_obj_tag(x_91) == 0) -{ -lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; -x_92 = lean_ctor_get(x_91, 0); -lean_inc(x_92); -x_93 = lean_ctor_get(x_91, 1); -lean_inc(x_93); -lean_dec(x_91); -x_94 = l_Lean_nullKind; -lean_inc(x_92); -x_95 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_95, 0, x_94); -lean_ctor_set(x_95, 1, x_92); -x_96 = lean_unsigned_to_nat(2u); -x_97 = l_Lean_Syntax_getArg(x_1, x_96); -x_98 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderType(x_95, x_97); -lean_dec(x_97); -x_99 = lean_unsigned_to_nat(3u); -x_100 = l_Lean_Syntax_getArg(x_1, x_99); +x_87 = lean_ctor_get(x_85, 1); +lean_inc(x_87); +lean_dec(x_85); +x_88 = lean_unsigned_to_nat(2u); +x_89 = l_Lean_Syntax_getArg(x_1, x_88); +x_90 = lean_unsigned_to_nat(3u); +x_91 = l_Lean_Syntax_getArg(x_1, x_90); lean_dec(x_1); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_2); -x_101 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier(x_98, x_100, x_2, x_3, x_4, x_5, x_6, x_7, x_93); -lean_dec(x_100); -if (lean_obj_tag(x_101) == 0) -{ -lean_object* x_102; lean_object* x_103; lean_object* x_104; size_t x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; -x_102 = lean_ctor_get(x_101, 0); -lean_inc(x_102); -x_103 = lean_ctor_get(x_101, 1); -lean_inc(x_103); -lean_dec(x_101); -x_104 = lean_array_get_size(x_92); -x_105 = lean_usize_of_nat(x_104); -lean_dec(x_104); -x_106 = x_92; -x_107 = lean_box_usize(x_105); -x_108 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___boxed__const__1; -x_109 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__4___boxed), 11, 4); -lean_closure_set(x_109, 0, x_102); -lean_closure_set(x_109, 1, x_107); -lean_closure_set(x_109, 2, x_108); -lean_closure_set(x_109, 3, x_106); -x_110 = x_109; -x_111 = lean_apply_7(x_110, x_2, x_3, x_4, x_5, x_6, x_7, x_103); -return x_111; -} -else -{ -uint8_t x_112; +x_92 = lean_array_get_size(x_86); +x_93 = lean_usize_of_nat(x_92); lean_dec(x_92); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_112 = !lean_is_exclusive(x_101); -if (x_112 == 0) -{ -return x_101; +x_94 = x_86; +x_95 = lean_box_usize(x_93); +x_96 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___boxed__const__1; +x_97 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__4___boxed), 12, 5); +lean_closure_set(x_97, 0, x_89); +lean_closure_set(x_97, 1, x_91); +lean_closure_set(x_97, 2, x_95); +lean_closure_set(x_97, 3, x_96); +lean_closure_set(x_97, 4, x_94); +x_98 = x_97; +x_99 = lean_apply_7(x_98, x_2, x_3, x_4, x_5, x_6, x_7, x_87); +return x_99; } else { -lean_object* x_113; lean_object* x_114; lean_object* x_115; -x_113 = lean_ctor_get(x_101, 0); -x_114 = lean_ctor_get(x_101, 1); -lean_inc(x_114); -lean_inc(x_113); -lean_dec(x_101); -x_115 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_115, 0, x_113); -lean_ctor_set(x_115, 1, x_114); -return x_115; -} -} -} -else -{ -uint8_t x_116; +uint8_t x_100; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -4584,102 +4564,95 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_116 = !lean_is_exclusive(x_91); -if (x_116 == 0) +x_100 = !lean_is_exclusive(x_85); +if (x_100 == 0) { -return x_91; +return x_85; } else { -lean_object* x_117; lean_object* x_118; lean_object* x_119; -x_117 = lean_ctor_get(x_91, 0); -x_118 = lean_ctor_get(x_91, 1); -lean_inc(x_118); -lean_inc(x_117); -lean_dec(x_91); -x_119 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_119, 0, x_117); -lean_ctor_set(x_119, 1, x_118); -return x_119; +lean_object* x_101; lean_object* x_102; lean_object* x_103; +x_101 = lean_ctor_get(x_85, 0); +x_102 = lean_ctor_get(x_85, 1); +lean_inc(x_102); +lean_inc(x_101); +lean_dec(x_85); +x_103 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_103, 0, x_101); +lean_ctor_set(x_103, 1, x_102); +return x_103; } } } } else { +lean_object* x_104; lean_object* x_105; lean_object* x_106; +lean_dec(x_9); +x_104 = lean_unsigned_to_nat(0u); +x_105 = l_Lean_Syntax_getArg(x_1, x_104); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_106 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getBinderIds(x_105, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_105); +if (lean_obj_tag(x_106) == 0) +{ +lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; size_t x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; +x_107 = lean_ctor_get(x_106, 0); +lean_inc(x_107); +x_108 = lean_ctor_get(x_106, 1); +lean_inc(x_108); +lean_dec(x_106); +x_109 = lean_unsigned_to_nat(1u); +x_110 = l_Lean_Syntax_getArg(x_1, x_109); +lean_dec(x_1); +x_111 = lean_array_get_size(x_107); +x_112 = lean_usize_of_nat(x_111); +lean_dec(x_111); +x_113 = x_107; +x_114 = lean_box_usize(x_112); +x_115 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___boxed__const__1; +x_116 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__5___boxed), 11, 4); +lean_closure_set(x_116, 0, x_110); +lean_closure_set(x_116, 1, x_114); +lean_closure_set(x_116, 2, x_115); +lean_closure_set(x_116, 3, x_113); +x_117 = x_116; +x_118 = lean_apply_7(x_117, x_2, x_3, x_4, x_5, x_6, x_7, x_108); +return x_118; +} +else +{ +uint8_t x_119; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_119 = !lean_is_exclusive(x_106); +if (x_119 == 0) +{ +return x_106; +} +else +{ lean_object* x_120; lean_object* x_121; lean_object* x_122; -lean_dec(x_9); -x_120 = lean_unsigned_to_nat(0u); -x_121 = l_Lean_Syntax_getArg(x_1, x_120); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_2); -x_122 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getBinderIds(x_121, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_121); -if (lean_obj_tag(x_122) == 0) -{ -lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; size_t x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; -x_123 = lean_ctor_get(x_122, 0); -lean_inc(x_123); -x_124 = lean_ctor_get(x_122, 1); -lean_inc(x_124); -lean_dec(x_122); -x_125 = l_Lean_nullKind; -lean_inc(x_123); -x_126 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_126, 0, x_125); -lean_ctor_set(x_126, 1, x_123); -x_127 = lean_unsigned_to_nat(1u); -x_128 = l_Lean_Syntax_getArg(x_1, x_127); -lean_dec(x_1); -x_129 = l_Lean_Elab_Term_expandOptType(x_126, x_128); -lean_dec(x_128); -x_130 = lean_array_get_size(x_123); -x_131 = lean_usize_of_nat(x_130); -lean_dec(x_130); -x_132 = x_123; -x_133 = lean_box_usize(x_131); -x_134 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___boxed__const__1; -x_135 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__5___boxed), 11, 4); -lean_closure_set(x_135, 0, x_129); -lean_closure_set(x_135, 1, x_133); -lean_closure_set(x_135, 2, x_134); -lean_closure_set(x_135, 3, x_132); -x_136 = x_135; -x_137 = lean_apply_7(x_136, x_2, x_3, x_4, x_5, x_6, x_7, x_124); -return x_137; -} -else -{ -uint8_t x_138; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_138 = !lean_is_exclusive(x_122); -if (x_138 == 0) -{ +x_120 = lean_ctor_get(x_106, 0); +x_121 = lean_ctor_get(x_106, 1); +lean_inc(x_121); +lean_inc(x_120); +lean_dec(x_106); +x_122 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_122, 0, x_120); +lean_ctor_set(x_122, 1, x_121); return x_122; } -else -{ -lean_object* x_139; lean_object* x_140; lean_object* x_141; -x_139 = lean_ctor_get(x_122, 0); -x_140 = lean_ctor_get(x_122, 1); -lean_inc(x_140); -lean_inc(x_139); -lean_dec(x_122); -x_141 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_141, 0, x_139); -lean_ctor_set(x_141, 1, x_140); -return x_141; -} } } } @@ -4707,6 +4680,7 @@ lean_dec(x_2); x_13 = lean_unbox_usize(x_3); lean_dec(x_3); x_14 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__2(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_1); return x_14; } } @@ -4719,19 +4693,22 @@ lean_dec(x_2); x_13 = lean_unbox_usize(x_3); lean_dec(x_3); x_14 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__3(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_1); return x_14; } } -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { -size_t x_12; size_t x_13; lean_object* x_14; -x_12 = lean_unbox_usize(x_2); -lean_dec(x_2); +size_t x_13; size_t x_14; lean_object* x_15; x_13 = lean_unbox_usize(x_3); lean_dec(x_3); -x_14 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__4(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -return x_14; +x_14 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_15 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__4(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_2); +lean_dec(x_1); +return x_15; } } lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { @@ -4743,6 +4720,7 @@ lean_dec(x_2); x_13 = lean_unbox_usize(x_3); lean_dec(x_3); x_14 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__5(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_1); return x_14; } } @@ -4894,7 +4872,7 @@ lean_dec(x_1); return x_9; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1130____closed__1() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1125____closed__1() { _start: { lean_object* x_1; @@ -4902,17 +4880,17 @@ x_1 = lean_mk_string("checkBinderAnnotations"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1130____closed__2() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1125____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1130____closed__1; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1125____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1130____closed__3() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1125____closed__3() { _start: { lean_object* x_1; @@ -4920,7 +4898,7 @@ x_1 = lean_mk_string(""); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1130____closed__4() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1125____closed__4() { _start: { lean_object* x_1; @@ -4928,13 +4906,13 @@ x_1 = lean_mk_string("check whether type is a class instance whenever the binder return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1130____closed__5() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1125____closed__5() { _start: { uint8_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = 1; -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1130____closed__3; -x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1130____closed__4; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1125____closed__3; +x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1125____closed__4; x_4 = lean_box(x_1); x_5 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_5, 0, x_4); @@ -4943,12 +4921,12 @@ lean_ctor_set(x_5, 2, x_3); return x_5; } } -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1130_(lean_object* x_1) { +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1125_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1130____closed__2; -x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1130____closed__5; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1125____closed__2; +x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1125____closed__5; x_4 = l_Lean_Option_register___at_Lean_Elab_initFn____x40_Lean_Elab_AutoBound___hyg_4____spec__1(x_2, x_3, x_1); return x_4; } @@ -19331,7 +19309,7 @@ lean_dec(x_1); x_11 = l_Lean_Syntax_getArgs(x_10); lean_dec(x_10); x_12 = l_Lean_Elab_Term_expandWhereDecls___closed__3; -x_13 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__1(x_11, x_12); +x_13 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__1(x_11, x_12); lean_dec(x_11); if (lean_obj_tag(x_13) == 0) { @@ -24648,7 +24626,7 @@ static lean_object* _init_l_Lean_Elab_Term_elabLetDeclAux___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1130____closed__3; +x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1125____closed__3; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } @@ -25497,7 +25475,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__2; x_2 = l_Lean_Elab_Term_elabLetDeclCore___closed__14; -x_3 = lean_unsigned_to_nat(617u); +x_3 = lean_unsigned_to_nat(616u); x_4 = lean_unsigned_to_nat(24u); x_5 = l_Lean_Elab_Term_quoteAutoTactic___closed__4; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -26050,7 +26028,7 @@ x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_5657_(lean_object* x_1) { +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_5652_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -26302,19 +26280,19 @@ l___private_Lean_Elab_Binders_0__Lean_Elab_Term_ensureAtomicBinderName___closed_ lean_mark_persistent(l___private_Lean_Elab_Binders_0__Lean_Elab_Term_ensureAtomicBinderName___closed__3); l___private_Lean_Elab_Binders_0__Lean_Elab_Term_ensureAtomicBinderName___closed__4 = _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_ensureAtomicBinderName___closed__4(); lean_mark_persistent(l___private_Lean_Elab_Binders_0__Lean_Elab_Term_ensureAtomicBinderName___closed__4); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1130____closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1130____closed__1(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1130____closed__1); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1130____closed__2 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1130____closed__2(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1130____closed__2); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1130____closed__3 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1130____closed__3(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1130____closed__3); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1130____closed__4 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1130____closed__4(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1130____closed__4); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1130____closed__5 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1130____closed__5(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1130____closed__5); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1125____closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1125____closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1125____closed__1); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1125____closed__2 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1125____closed__2(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1125____closed__2); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1125____closed__3 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1125____closed__3(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1125____closed__3); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1125____closed__4 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1125____closed__4(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1125____closed__4); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1125____closed__5 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1125____closed__5(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1125____closed__5); l_Lean_Elab_Term_checkBinderAnnotations___closed__1 = _init_l_Lean_Elab_Term_checkBinderAnnotations___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_checkBinderAnnotations___closed__1); -res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1130_(lean_io_mk_world()); +res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_1125_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_Elab_Term_checkBinderAnnotations = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Elab_Term_checkBinderAnnotations); @@ -26604,7 +26582,7 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabLetDelayedDecl___closed__ res = l___regBuiltin_Lean_Elab_Term_elabLetDelayedDecl(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_5657_(lean_io_mk_world()); +res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_5652_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Elab/BuiltinNotation.c b/stage0/stdlib/Lean/Elab/BuiltinNotation.c index aae0d8c417..9186a8497e 100644 --- a/stage0/stdlib/Lean/Elab/BuiltinNotation.c +++ b/stage0/stdlib/Lean/Elab/BuiltinNotation.c @@ -435,6 +435,7 @@ static lean_object* l___regBuiltin_Lean_Elab_Term_elabStateRefT___closed__5; lean_object* l_Lean_Syntax_getArgs(lean_object*); uint8_t l_Lean_BinderInfo_isExplicit(uint8_t); lean_object* l_Lean_Syntax_getKind(lean_object*); +lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(size_t, size_t, lean_object*); lean_object* l_Lean_Elab_getRefPos___at_Lean_Elab_Term_elabPanic___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___lambda__1___closed__7; static lean_object* l_Lean_Elab_Term_elabLeadingParserMacro___lambda__1___closed__3; @@ -533,7 +534,6 @@ static lean_object* l_Lean_Elab_Term_elabTrailingParserMacro___lambda__3___close static lean_object* l_Lean_Elab_Term_expandParen___closed__4; static lean_object* l_Lean_Elab_Term_elabSubst___closed__2; extern lean_object* l_Lean_Elab_unsupportedSyntaxExceptionId; -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(size_t, size_t, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_elabTrailingParserMacro___closed__1; static lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__8; static lean_object* l_Lean_Elab_Term_expandParen___closed__9; @@ -1360,7 +1360,7 @@ x_34 = lean_usize_of_nat(x_33); lean_dec(x_33); x_35 = 0; x_36 = x_32; -x_37 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_34, x_35, x_36); +x_37 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_34, x_35, x_36); x_38 = x_37; x_39 = l_Lean_Elab_Term_elabAnonymousCtor___lambda__3___closed__6; x_40 = l_Lean_mkSepArray(x_38, x_39); diff --git a/stage0/stdlib/Lean/Elab/DefView.c b/stage0/stdlib/Lean/Elab/DefView.c index cf00762b88..5f99d5a596 100644 --- a/stage0/stdlib/Lean/Elab/DefView.c +++ b/stage0/stdlib/Lean/Elab/DefView.c @@ -35,6 +35,7 @@ lean_object* lean_name_mk_string(lean_object*, lean_object*); lean_object* l_Lean_Syntax_getOptional_x3f(lean_object*); lean_object* lean_array_uget(lean_object*, size_t); lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Command_MkInstanceName_main___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_DefView_0__Lean_Elab_beqDefKind____x40_Lean_Elab_DefView___hyg_11____boxed(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_mkDefViewOfConstant___closed__2; static lean_object* l___private_Lean_Elab_DefView_0__Lean_Elab_Command_MkInstanceName_kindReplacements___closed__37; lean_object* l_Lean_Elab_Command_MkInstanceName_collect(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -88,6 +89,7 @@ static lean_object* l___private_Lean_Elab_DefView_0__Lean_Elab_Command_MkInstanc static lean_object* l_Lean_Elab_Command_mkDefViewOfAbbrev___closed__6; lean_object* l_Lean_Elab_Command_mkDefViewOfExample(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_mkDefView___closed__2; +lean_object* l___private_Lean_Elab_DefView_0__Lean_Elab_beqDefKind____x40_Lean_Elab_DefView___hyg_11__match__1(lean_object*); lean_object* l_Lean_Elab_Command_MkInstanceName_collect_match__2___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_DefView_0__Lean_Elab_Command_MkInstanceName_kindReplacements___closed__26; lean_object* l_Lean_Elab_Command_MkInstanceName_append(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -103,6 +105,7 @@ lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_MkInstanc lean_object* l_Lean_Elab_Command_mkDefViewOfConstant_match__1___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_isDefLike___closed__11; static lean_object* l___private_Lean_Elab_DefView_0__Lean_Elab_Command_MkInstanceName_kindReplacements___closed__34; +static lean_object* l_Lean_Elab_instBEqDefKind___closed__1; static lean_object* l_Lean_Elab_Command_mkDefViewOfAbbrev___closed__3; lean_object* l_Lean_Elab_expandMacroImpl_x3f(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_mkDefViewOfConstant___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -166,6 +169,7 @@ lean_object* l_Lean_Elab_Command_MkInstanceName_mkFreshInstanceName___rarg(lean_ lean_object* l_Lean_Elab_Command_mkDefViewOfConstant___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Command_MkInstanceName_collect___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ResolveName_resolveGlobalName(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1294____closed__2; lean_object* l_Std_RBNode_find___at_Lean_findDocString_x3f___spec__5(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_mkDefViewOfInstance___closed__6; lean_object* l_Lean_Elab_DefKind_isDefOrAbbrevOrOpaque_match__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -180,6 +184,7 @@ static lean_object* l_Lean_Elab_Command_MkInstanceName_isFirst___closed__1; static lean_object* l___private_Lean_Elab_DefView_0__Lean_Elab_Command_MkInstanceName_kindReplacements___closed__35; lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Command_MkInstanceName_main___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_DefKind_isTheorem_match__1(lean_object*); +static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1294____closed__3; lean_object* l_Lean_mkAtomFrom(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_MkInstanceName_isFirst___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Command_MkInstanceName_main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); @@ -197,8 +202,7 @@ lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Command_mkDefViewOfInstance___sp lean_object* l_Lean_Elab_Command_mkDefViewOfConstant_match__1(lean_object*); lean_object* l_Lean_Syntax_getKind(lean_object*); lean_object* l_Lean_Elab_Command_MkInstanceName_collect_match__2(lean_object*); -lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1241_(lean_object*); -static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1241____closed__4; +lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1294_(lean_object*); static lean_object* l___private_Lean_Elab_DefView_0__Lean_Elab_Command_MkInstanceName_kindReplacements___closed__20; static lean_object* l___private_Lean_Elab_DefView_0__Lean_Elab_Command_MkInstanceName_kindReplacements___closed__10; static lean_object* l___private_Lean_Elab_DefView_0__Lean_Elab_Command_MkInstanceName_kindReplacements___closed__32; @@ -216,9 +220,9 @@ static lean_object* l_Lean_Elab_Command_mkDefViewOfConstant___closed__11; lean_object* l_Lean_throwError___at_Lean_Elab_Command_mkDefView___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_resolveGlobalName___at_Lean_Elab_Command_MkInstanceName_collect___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_MkInstanceName_main___spec__8___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1294____closed__1; lean_object* l_Lean_Elab_DefKind_isDefOrAbbrevOrOpaque_match__1___rarg(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_expandMacros(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1241____closed__3; lean_object* l_Lean_Elab_Modifiers_addAttribute(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_DefView_0__Lean_Elab_Command_MkInstanceName_kindReplacements___closed__25; static lean_object* l_Lean_Elab_Command_mkDefViewOfInstance___closed__9; @@ -228,16 +232,16 @@ lean_object* l_Lean_Elab_Command_mkDefViewOfAbbrev(lean_object*, lean_object*); lean_object* l_Lean_Elab_expandOptNamedPrio___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_mkDefViewOfTheorem_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_MkInstanceName_collect_match__1(lean_object*); +lean_object* l___private_Lean_Elab_DefView_0__Lean_Elab_beqDefKind____x40_Lean_Elab_DefView___hyg_11__match__1___rarg(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_MkInstanceName_mkFreshInstanceName(lean_object*); -static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1241____closed__1; static lean_object* l_Lean_Elab_Command_isDefLike___closed__3; +lean_object* l_Lean_Elab_instBEqDefKind; lean_object* l_List_forM___at_Lean_Elab_Command_elabCommand___spec__5(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_unsupportedSyntaxExceptionId; static lean_object* l_Lean_Elab_Command_isDefLike___closed__5; lean_object* l_Lean_Elab_DefKind_isExample___boxed(lean_object*); lean_object* l_Lean_Elab_toAttributeKind___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_MkInstanceName_main___spec__4___rarg___closed__1; -static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1241____closed__2; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); lean_object* l_Lean_Elab_DefKind_isTheorem_match__1___rarg(uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_mkDefView(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -265,10 +269,13 @@ static lean_object* l_Lean_Elab_Command_mkDefViewOfInstance___closed__3; lean_object* l_Lean_Elab_Command_mkDefViewOfInstance(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_isDefLike___closed__7; static lean_object* l_Lean_Elab_Command_mkDefViewOfConstant___closed__7; +lean_object* l___private_Lean_Elab_DefView_0__Lean_Elab_beqDefKind____x40_Lean_Elab_DefView___hyg_11__match__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_MkInstanceName_main(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_MkInstanceName_main___spec__8(lean_object*, lean_object*); +uint8_t l___private_Lean_Elab_DefView_0__Lean_Elab_beqDefKind____x40_Lean_Elab_DefView___hyg_11_(uint8_t, uint8_t); static lean_object* l___private_Lean_Elab_DefView_0__Lean_Elab_Command_MkInstanceName_kindReplacements___closed__22; lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkDefViewOfConstant___spec__1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1294____closed__4; static lean_object* l___private_Lean_Elab_DefView_0__Lean_Elab_Command_MkInstanceName_kindReplacements___closed__33; static lean_object* l___private_Lean_Elab_DefView_0__Lean_Elab_Command_MkInstanceName_kindReplacements___closed__14; lean_object* l_Lean_Elab_mkUnusedBaseName(lean_object*, lean_object*, lean_object*); @@ -284,6 +291,294 @@ x_1 = 0; return x_1; } } +lean_object* l___private_Lean_Elab_DefView_0__Lean_Elab_beqDefKind____x40_Lean_Elab_DefView___hyg_11__match__1___rarg(uint8_t x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +switch (x_1) { +case 0: +{ +lean_object* x_9; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +x_9 = lean_box(x_2); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; lean_object* x_11; +lean_dec(x_8); +x_10 = lean_box(0); +x_11 = lean_apply_1(x_3, x_10); +return x_11; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; +lean_dec(x_9); +lean_dec(x_3); +x_12 = lean_box(x_1); +x_13 = lean_box(x_2); +x_14 = lean_apply_2(x_8, x_12, x_13); +return x_14; +} +} +case 1: +{ +lean_object* x_15; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +x_15 = lean_box(x_2); +if (lean_obj_tag(x_15) == 1) +{ +lean_object* x_16; lean_object* x_17; +lean_dec(x_8); +x_16 = lean_box(0); +x_17 = lean_apply_1(x_4, x_16); +return x_17; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +lean_dec(x_15); +lean_dec(x_4); +x_18 = lean_box(x_1); +x_19 = lean_box(x_2); +x_20 = lean_apply_2(x_8, x_18, x_19); +return x_20; +} +} +case 2: +{ +lean_object* x_21; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_3); +x_21 = lean_box(x_2); +if (lean_obj_tag(x_21) == 2) +{ +lean_object* x_22; lean_object* x_23; +lean_dec(x_8); +x_22 = lean_box(0); +x_23 = lean_apply_1(x_5, x_22); +return x_23; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +lean_dec(x_21); +lean_dec(x_5); +x_24 = lean_box(x_1); +x_25 = lean_box(x_2); +x_26 = lean_apply_2(x_8, x_24, x_25); +return x_26; +} +} +case 3: +{ +lean_object* x_27; +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_27 = lean_box(x_2); +if (lean_obj_tag(x_27) == 3) +{ +lean_object* x_28; lean_object* x_29; +lean_dec(x_8); +x_28 = lean_box(0); +x_29 = lean_apply_1(x_6, x_28); +return x_29; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +lean_dec(x_27); +lean_dec(x_6); +x_30 = lean_box(x_1); +x_31 = lean_box(x_2); +x_32 = lean_apply_2(x_8, x_30, x_31); +return x_32; +} +} +default: +{ +lean_object* x_33; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_33 = lean_box(x_2); +if (lean_obj_tag(x_33) == 4) +{ +lean_object* x_34; lean_object* x_35; +lean_dec(x_8); +x_34 = lean_box(0); +x_35 = lean_apply_1(x_7, x_34); +return x_35; +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; +lean_dec(x_33); +lean_dec(x_7); +x_36 = lean_box(x_1); +x_37 = lean_box(x_2); +x_38 = lean_apply_2(x_8, x_36, x_37); +return x_38; +} +} +} +} +} +lean_object* l___private_Lean_Elab_DefView_0__Lean_Elab_beqDefKind____x40_Lean_Elab_DefView___hyg_11__match__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_DefView_0__Lean_Elab_beqDefKind____x40_Lean_Elab_DefView___hyg_11__match__1___rarg___boxed), 8, 0); +return x_2; +} +} +lean_object* l___private_Lean_Elab_DefView_0__Lean_Elab_beqDefKind____x40_Lean_Elab_DefView___hyg_11__match__1___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +uint8_t x_9; uint8_t x_10; lean_object* x_11; +x_9 = lean_unbox(x_1); +lean_dec(x_1); +x_10 = lean_unbox(x_2); +lean_dec(x_2); +x_11 = l___private_Lean_Elab_DefView_0__Lean_Elab_beqDefKind____x40_Lean_Elab_DefView___hyg_11__match__1___rarg(x_9, x_10, x_3, x_4, x_5, x_6, x_7, x_8); +return x_11; +} +} +uint8_t l___private_Lean_Elab_DefView_0__Lean_Elab_beqDefKind____x40_Lean_Elab_DefView___hyg_11_(uint8_t x_1, uint8_t x_2) { +_start: +{ +switch (x_1) { +case 0: +{ +lean_object* x_3; +x_3 = lean_box(x_2); +if (lean_obj_tag(x_3) == 0) +{ +uint8_t x_4; +x_4 = 1; +return x_4; +} +else +{ +uint8_t x_5; +lean_dec(x_3); +x_5 = 0; +return x_5; +} +} +case 1: +{ +lean_object* x_6; +x_6 = lean_box(x_2); +if (lean_obj_tag(x_6) == 1) +{ +uint8_t x_7; +x_7 = 1; +return x_7; +} +else +{ +uint8_t x_8; +lean_dec(x_6); +x_8 = 0; +return x_8; +} +} +case 2: +{ +lean_object* x_9; +x_9 = lean_box(x_2); +if (lean_obj_tag(x_9) == 2) +{ +uint8_t x_10; +x_10 = 1; +return x_10; +} +else +{ +uint8_t x_11; +lean_dec(x_9); +x_11 = 0; +return x_11; +} +} +case 3: +{ +lean_object* x_12; +x_12 = lean_box(x_2); +if (lean_obj_tag(x_12) == 3) +{ +uint8_t x_13; +x_13 = 1; +return x_13; +} +else +{ +uint8_t x_14; +lean_dec(x_12); +x_14 = 0; +return x_14; +} +} +default: +{ +lean_object* x_15; +x_15 = lean_box(x_2); +if (lean_obj_tag(x_15) == 4) +{ +uint8_t x_16; +x_16 = 1; +return x_16; +} +else +{ +uint8_t x_17; +lean_dec(x_15); +x_17 = 0; +return x_17; +} +} +} +} +} +lean_object* l___private_Lean_Elab_DefView_0__Lean_Elab_beqDefKind____x40_Lean_Elab_DefView___hyg_11____boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; uint8_t x_4; uint8_t x_5; lean_object* x_6; +x_3 = lean_unbox(x_1); +lean_dec(x_1); +x_4 = lean_unbox(x_2); +lean_dec(x_2); +x_5 = l___private_Lean_Elab_DefView_0__Lean_Elab_beqDefKind____x40_Lean_Elab_DefView___hyg_11_(x_3, x_4); +x_6 = lean_box(x_5); +return x_6; +} +} +static lean_object* _init_l_Lean_Elab_instBEqDefKind___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l___private_Lean_Elab_DefView_0__Lean_Elab_beqDefKind____x40_Lean_Elab_DefView___hyg_11____boxed), 2, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_instBEqDefKind() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Elab_instBEqDefKind___closed__1; +return x_1; +} +} lean_object* l_Lean_Elab_DefKind_isTheorem_match__1___rarg(uint8_t x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -7537,7 +7832,7 @@ lean_dec(x_3); return x_5; } } -static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1241____closed__1() { +static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1294____closed__1() { _start: { lean_object* x_1; @@ -7545,17 +7840,17 @@ x_1 = lean_mk_string("Elab"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1241____closed__2() { +static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1294____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1241____closed__1; +x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1294____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1241____closed__3() { +static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1294____closed__3() { _start: { lean_object* x_1; @@ -7563,21 +7858,21 @@ x_1 = lean_mk_string("definition"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1241____closed__4() { +static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1294____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1241____closed__2; -x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1241____closed__3; +x_1 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1294____closed__2; +x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1294____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1241_(lean_object* x_1) { +lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1294_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1241____closed__4; +x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1294____closed__4; x_3 = l_Lean_registerTraceClass(x_2, x_1); return x_3; } @@ -7628,6 +7923,10 @@ res = initialize_Lean_Elab_DeclUtil(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Elab_instInhabitedDefKind = _init_l_Lean_Elab_instInhabitedDefKind(); +l_Lean_Elab_instBEqDefKind___closed__1 = _init_l_Lean_Elab_instBEqDefKind___closed__1(); +lean_mark_persistent(l_Lean_Elab_instBEqDefKind___closed__1); +l_Lean_Elab_instBEqDefKind = _init_l_Lean_Elab_instBEqDefKind(); +lean_mark_persistent(l_Lean_Elab_instBEqDefKind); l_Lean_Elab_instInhabitedDefView___closed__1 = _init_l_Lean_Elab_instInhabitedDefView___closed__1(); lean_mark_persistent(l_Lean_Elab_instInhabitedDefView___closed__1); l_Lean_Elab_instInhabitedDefView___closed__2 = _init_l_Lean_Elab_instInhabitedDefView___closed__2(); @@ -7806,15 +8105,15 @@ l_Lean_Elab_Command_mkDefView___closed__1 = _init_l_Lean_Elab_Command_mkDefView_ lean_mark_persistent(l_Lean_Elab_Command_mkDefView___closed__1); l_Lean_Elab_Command_mkDefView___closed__2 = _init_l_Lean_Elab_Command_mkDefView___closed__2(); lean_mark_persistent(l_Lean_Elab_Command_mkDefView___closed__2); -l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1241____closed__1 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1241____closed__1(); -lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1241____closed__1); -l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1241____closed__2 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1241____closed__2(); -lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1241____closed__2); -l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1241____closed__3 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1241____closed__3(); -lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1241____closed__3); -l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1241____closed__4 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1241____closed__4(); -lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1241____closed__4); -res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1241_(lean_io_mk_world()); +l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1294____closed__1 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1294____closed__1(); +lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1294____closed__1); +l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1294____closed__2 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1294____closed__2(); +lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1294____closed__2); +l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1294____closed__3 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1294____closed__3(); +lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1294____closed__3); +l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1294____closed__4 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1294____closed__4(); +lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1294____closed__4); +res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1294_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Elab/Deriving/BEq.c b/stage0/stdlib/Lean/Elab/Deriving/BEq.c index 184e4f95f4..b2f9096838 100644 --- a/stage0/stdlib/Lean/Elab/Deriving/BEq.c +++ b/stage0/stdlib/Lean/Elab/Deriving/BEq.c @@ -167,6 +167,7 @@ static lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_BEq_mkMatch_m uint8_t lean_nat_dec_le(lean_object*, lean_object*); static lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_BEq_mkMatch_mkAlts___spec__4___closed__3; static lean_object* l_List_forIn_loop___at_Lean_Elab_Deriving_BEq_mkMatch_mkAlts___spec__5___lambda__1___closed__7; +lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(size_t, size_t, lean_object*); static lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_BEq_mkMatch_mkAlts___spec__4___closed__5; static lean_object* l_Lean_Elab_Deriving_BEq_mkMutualBlock___closed__9; static lean_object* l___private_Lean_Elab_Deriving_BEq_0__Lean_Elab_Deriving_BEq_mkBEqInstanceCmds___closed__5; @@ -194,7 +195,6 @@ static lean_object* l_Lean_getConstInfoCtor___at_Lean_Elab_Deriving_BEq_mkMatch_ lean_object* l_Lean_Meta_forallTelescopeReducing___at_Lean_Elab_Deriving_mkInductArgNames___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_List_forIn_loop___at_Lean_Elab_Deriving_BEq_mkMatch_mkAlts___spec__5___lambda__1___closed__2; static lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_BEq_mkMatch_mkAlts___spec__4___closed__12; -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(size_t, size_t, lean_object*); static lean_object* l_Lean_Elab_Deriving_BEq_mkAuxFunction___lambda__1___closed__3; static lean_object* l_Lean_Elab_Deriving_BEq_mkMatch_mkElseAlt___closed__19; lean_object* lean_mk_syntax_ident(lean_object*); @@ -807,7 +807,7 @@ x_67 = lean_usize_of_nat(x_66); lean_dec(x_66); x_68 = 0; x_69 = x_41; -x_70 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_67, x_68, x_69); +x_70 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_67, x_68, x_69); x_71 = x_70; x_72 = l_Lean_Elab_Deriving_BEq_mkMatch_mkElseAlt___closed__17; x_73 = l_Lean_mkSepArray(x_71, x_72); @@ -849,7 +849,7 @@ x_90 = lean_usize_of_nat(x_89); lean_dec(x_89); x_91 = 0; x_92 = x_41; -x_93 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_90, x_91, x_92); +x_93 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_90, x_91, x_92); x_94 = x_93; x_95 = l_Lean_Elab_Deriving_BEq_mkMatch_mkElseAlt___closed__17; x_96 = l_Lean_mkSepArray(x_94, x_95); @@ -2270,7 +2270,7 @@ x_111 = lean_usize_of_nat(x_110); lean_dec(x_110); x_112 = 0; x_113 = x_99; -x_114 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_111, x_112, x_113); +x_114 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_111, x_112, x_113); x_115 = x_114; x_116 = l_Lean_Elab_Deriving_BEq_mkMatch_mkElseAlt___closed__17; x_117 = l_Lean_mkSepArray(x_115, x_116); @@ -2311,7 +2311,7 @@ x_133 = lean_usize_of_nat(x_132); lean_dec(x_132); x_134 = 0; x_135 = x_99; -x_136 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_133, x_134, x_135); +x_136 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_133, x_134, x_135); x_137 = x_136; x_138 = l_Lean_Elab_Deriving_BEq_mkMatch_mkElseAlt___closed__17; x_139 = l_Lean_mkSepArray(x_137, x_138); @@ -2529,7 +2529,7 @@ x_220 = lean_usize_of_nat(x_219); lean_dec(x_219); x_221 = 0; x_222 = x_208; -x_223 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_220, x_221, x_222); +x_223 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_220, x_221, x_222); x_224 = x_223; x_225 = l_Lean_Elab_Deriving_BEq_mkMatch_mkElseAlt___closed__17; x_226 = l_Lean_mkSepArray(x_224, x_225); @@ -3055,7 +3055,7 @@ x_28 = lean_usize_of_nat(x_27); lean_dec(x_27); x_29 = 0; x_30 = x_12; -x_31 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_28, x_29, x_30); +x_31 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_28, x_29, x_30); x_32 = x_31; x_33 = l_Lean_Elab_Deriving_BEq_mkMatch_mkElseAlt___closed__17; x_34 = l_Lean_mkSepArray(x_32, x_33); @@ -3111,7 +3111,7 @@ x_61 = lean_usize_of_nat(x_60); lean_dec(x_60); x_62 = 0; x_63 = x_12; -x_64 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_61, x_62, x_63); +x_64 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_61, x_62, x_63); x_65 = x_64; x_66 = l_Lean_Elab_Deriving_BEq_mkMatch_mkElseAlt___closed__17; x_67 = l_Lean_mkSepArray(x_65, x_66); diff --git a/stage0/stdlib/Lean/Elab/Deriving/Basic.c b/stage0/stdlib/Lean/Elab/Deriving/Basic.c index 5f111094d6..987a1b23cb 100644 --- a/stage0/stdlib/Lean/Elab/Deriving/Basic.c +++ b/stage0/stdlib/Lean/Elab/Deriving/Basic.c @@ -171,10 +171,10 @@ lean_object* l_Lean_Elab_elabDeriving_match__1(lean_object*); lean_object* l_Lean_Elab_Command_getRef(lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_elabDeriving___lambda__2(lean_object*); +lean_object* l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__1(lean_object*, lean_object*); lean_object* l_Lean_Elab_elabDeriving_match__3___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_elabDeriving_match__2___rarg(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isNone(lean_object*); -lean_object* l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__1(lean_object*, lean_object*); lean_object* l_Lean_Elab_elabDeriving(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_registerBuiltinDerivingHandler(lean_object*, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_getOptDerivingClasses___spec__1___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); @@ -3268,7 +3268,7 @@ block_66: { lean_object* x_33; lean_object* x_34; x_33 = l_Lean_Elab_elabDeriving___closed__11; -x_34 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__1(x_32, x_33); +x_34 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__1(x_32, x_33); lean_dec(x_32); if (lean_obj_tag(x_34) == 0) { diff --git a/stage0/stdlib/Lean/Elab/Deriving/DecEq.c b/stage0/stdlib/Lean/Elab/Deriving/DecEq.c index 20ecd6b7fe..0e23f6be58 100644 --- a/stage0/stdlib/Lean/Elab/Deriving/DecEq.c +++ b/stage0/stdlib/Lean/Elab/Deriving/DecEq.c @@ -200,6 +200,7 @@ static lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___lambda__1 static lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___lambda__1___closed__54; static lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__12; static lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___lambda__1___closed__82; +lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(size_t, size_t, lean_object*); static lean_object* l_Lean_Elab_Deriving_DecEq_mkAuxFunction___closed__22; lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___lambda__1___closed__86; @@ -238,7 +239,6 @@ lean_object* l_Lean_Meta_forallTelescopeReducing___at_Lean_Elab_Deriving_mkInduc static lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___lambda__1___closed__76; static lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___lambda__1___closed__30; static lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___lambda__1___closed__18; -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(size_t, size_t, lean_object*); lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts_match__2___rarg(lean_object*, lean_object*); lean_object* lean_mk_syntax_ident(lean_object*); static lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___lambda__1___closed__15; @@ -3616,7 +3616,7 @@ x_98 = lean_usize_of_nat(x_97); lean_dec(x_97); x_99 = 0; x_100 = x_82; -x_101 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_98, x_99, x_100); +x_101 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_98, x_99, x_100); x_102 = x_101; x_103 = l_List_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts___spec__6___lambda__1___closed__10; x_104 = l_Lean_mkSepArray(x_102, x_103); @@ -3657,7 +3657,7 @@ x_120 = lean_usize_of_nat(x_119); lean_dec(x_119); x_121 = 0; x_122 = x_82; -x_123 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_120, x_121, x_122); +x_123 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_120, x_121, x_122); x_124 = x_123; x_125 = l_List_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts___spec__6___lambda__1___closed__10; x_126 = l_Lean_mkSepArray(x_124, x_125); @@ -3927,7 +3927,7 @@ x_216 = lean_usize_of_nat(x_215); lean_dec(x_215); x_217 = 0; x_218 = x_200; -x_219 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_216, x_217, x_218); +x_219 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_216, x_217, x_218); x_220 = x_219; x_221 = l_List_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts___spec__6___lambda__1___closed__10; x_222 = l_Lean_mkSepArray(x_220, x_221); @@ -4453,7 +4453,7 @@ x_168 = lean_usize_of_nat(x_167); lean_dec(x_167); x_169 = 0; x_170 = x_78; -x_171 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_168, x_169, x_170); +x_171 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_168, x_169, x_170); x_172 = x_171; x_173 = l_List_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts___spec__6___lambda__1___closed__10; x_174 = l_Lean_mkSepArray(x_172, x_173); @@ -5008,7 +5008,7 @@ x_29 = lean_usize_of_nat(x_28); lean_dec(x_28); x_30 = 0; x_31 = x_13; -x_32 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_29, x_30, x_31); +x_32 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_29, x_30, x_31); x_33 = x_32; x_34 = l_List_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts___spec__6___lambda__1___closed__10; x_35 = l_Lean_mkSepArray(x_33, x_34); @@ -5064,7 +5064,7 @@ x_62 = lean_usize_of_nat(x_61); lean_dec(x_61); x_63 = 0; x_64 = x_13; -x_65 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_62, x_63, x_64); +x_65 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_62, x_63, x_64); x_66 = x_65; x_67 = l_List_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts___spec__6___lambda__1___closed__10; x_68 = l_Lean_mkSepArray(x_66, x_67); diff --git a/stage0/stdlib/Lean/Elab/Deriving/FromToJson.c b/stage0/stdlib/Lean/Elab/Deriving/FromToJson.c index 675a13b8e0..ddbe7b24dc 100644 --- a/stage0/stdlib/Lean/Elab/Deriving/FromToJson.c +++ b/stage0/stdlib/Lean/Elab/Deriving/FromToJson.c @@ -324,6 +324,7 @@ lean_object* l_Lean_Elab_Deriving_FromToJson_mkToJsonInstanceHandler_match__3___ lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Deriving_FromToJson_mkFromJsonInstanceHandler_mkAlts___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_append(lean_object*, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Deriving_FromToJson_mkFromJsonInstanceHandler_mkAlts___spec__4___closed__2; +lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(size_t, size_t, lean_object*); static lean_object* l_Lean_Elab_Deriving_FromToJson_mkToJsonInstanceHandler___lambda__1___closed__10; static lean_object* l_Array_mapIdxM_map___at_Lean_Elab_Deriving_FromToJson_mkFromJsonInstanceHandler_mkAlts___spec__3___closed__6; lean_object* l_Lean_Elab_Deriving_FromToJson_mkJsonField(lean_object*); @@ -385,7 +386,6 @@ static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Deriving_FromToJson_mk uint8_t l_Array_qsort_sort___at_Lean_Elab_Deriving_FromToJson_mkFromJsonInstanceHandler_mkAlts___spec__7___lambda__1(lean_object*, lean_object*); static lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_FromToJson_mkToJsonInstanceHandler_mkAlts___spec__3___closed__2; static lean_object* l_Lean_Elab_Deriving_FromToJson_mkFromJsonInstanceHandler___lambda__3___closed__19; -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(size_t, size_t, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Deriving_FromToJson_mkFromJsonInstanceHandler_mkAlts___spec__6___lambda__1___closed__3; static lean_object* l_Lean_Elab_Deriving_FromToJson_initFn____x40_Lean_Elab_Deriving_FromToJson___hyg_5002____closed__2; static lean_object* l_Lean_Elab_Deriving_FromToJson_mkToJsonInstanceHandler___lambda__3___closed__22; @@ -1578,7 +1578,7 @@ x_77 = lean_usize_of_nat(x_76); lean_dec(x_76); x_78 = 0; x_79 = x_61; -x_80 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_77, x_78, x_79); +x_80 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_77, x_78, x_79); x_81 = x_80; x_82 = l_Array_mapMUnsafe_map___at_Lean_Elab_Deriving_FromToJson_mkToJsonInstanceHandler_mkAlts___spec__5___lambda__1___closed__15; x_83 = l_Lean_mkSepArray(x_81, x_82); @@ -1619,7 +1619,7 @@ x_99 = lean_usize_of_nat(x_98); lean_dec(x_98); x_100 = 0; x_101 = x_61; -x_102 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_99, x_100, x_101); +x_102 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_99, x_100, x_101); x_103 = x_102; x_104 = l_Array_mapMUnsafe_map___at_Lean_Elab_Deriving_FromToJson_mkToJsonInstanceHandler_mkAlts___spec__5___lambda__1___closed__15; x_105 = l_Lean_mkSepArray(x_103, x_104); @@ -3867,7 +3867,7 @@ x_81 = lean_array_get_size(x_28); x_82 = lean_usize_of_nat(x_81); lean_dec(x_81); x_83 = x_28; -x_84 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_82, x_21, x_83); +x_84 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_82, x_21, x_83); x_85 = x_84; x_86 = l_Array_mapMUnsafe_map___at_Lean_Elab_Deriving_FromToJson_mkToJsonInstanceHandler_mkAlts___spec__5___lambda__1___closed__15; x_87 = l_Lean_mkSepArray(x_85, x_86); @@ -4046,7 +4046,7 @@ x_179 = lean_array_get_size(x_28); x_180 = lean_usize_of_nat(x_179); lean_dec(x_179); x_181 = x_28; -x_182 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_180, x_21, x_181); +x_182 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_180, x_21, x_181); x_183 = x_182; x_184 = l_Array_mapMUnsafe_map___at_Lean_Elab_Deriving_FromToJson_mkToJsonInstanceHandler_mkAlts___spec__5___lambda__1___closed__15; x_185 = l_Lean_mkSepArray(x_183, x_184); @@ -4266,7 +4266,7 @@ x_285 = lean_usize_of_nat(x_284); lean_dec(x_284); x_286 = 0; x_287 = x_241; -x_288 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_285, x_286, x_287); +x_288 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_285, x_286, x_287); x_289 = x_288; x_290 = l_Array_mapMUnsafe_map___at_Lean_Elab_Deriving_FromToJson_mkToJsonInstanceHandler_mkAlts___spec__5___lambda__1___closed__15; x_291 = l_Lean_mkSepArray(x_289, x_290); @@ -4420,7 +4420,7 @@ x_371 = lean_usize_of_nat(x_370); lean_dec(x_370); x_372 = 0; x_373 = x_241; -x_374 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_371, x_372, x_373); +x_374 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_371, x_372, x_373); x_375 = x_374; x_376 = l_Array_mapMUnsafe_map___at_Lean_Elab_Deriving_FromToJson_mkToJsonInstanceHandler_mkAlts___spec__5___lambda__1___closed__15; x_377 = l_Lean_mkSepArray(x_375, x_376); @@ -5049,7 +5049,7 @@ x_685 = lean_usize_of_nat(x_684); lean_dec(x_684); x_686 = 0; x_687 = x_642; -x_688 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_685, x_686, x_687); +x_688 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_685, x_686, x_687); x_689 = x_688; x_690 = l_Array_mapMUnsafe_map___at_Lean_Elab_Deriving_FromToJson_mkToJsonInstanceHandler_mkAlts___spec__5___lambda__1___closed__15; x_691 = l_Lean_mkSepArray(x_689, x_690); @@ -5201,7 +5201,7 @@ x_769 = lean_usize_of_nat(x_768); lean_dec(x_768); x_770 = 0; x_771 = x_642; -x_772 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_769, x_770, x_771); +x_772 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_769, x_770, x_771); x_773 = x_772; x_774 = l_Array_mapMUnsafe_map___at_Lean_Elab_Deriving_FromToJson_mkToJsonInstanceHandler_mkAlts___spec__5___lambda__1___closed__15; x_775 = l_Lean_mkSepArray(x_773, x_774); @@ -5398,7 +5398,7 @@ x_868 = lean_usize_of_nat(x_867); lean_dec(x_867); x_869 = 0; x_870 = x_823; -x_871 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_868, x_869, x_870); +x_871 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_868, x_869, x_870); x_872 = x_871; x_873 = l_Array_mapMUnsafe_map___at_Lean_Elab_Deriving_FromToJson_mkToJsonInstanceHandler_mkAlts___spec__5___lambda__1___closed__15; x_874 = l_Lean_mkSepArray(x_872, x_873); @@ -6074,7 +6074,7 @@ x_46 = lean_usize_of_nat(x_45); lean_dec(x_45); x_47 = 0; x_48 = x_29; -x_49 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_46, x_47, x_48); +x_49 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_46, x_47, x_48); x_50 = x_49; x_51 = l_Array_mapMUnsafe_map___at_Lean_Elab_Deriving_FromToJson_mkToJsonInstanceHandler_mkAlts___spec__5___lambda__1___closed__15; x_52 = l_Lean_mkSepArray(x_50, x_51); @@ -9856,7 +9856,7 @@ x_74 = lean_array_get_size(x_73); x_75 = lean_usize_of_nat(x_74); lean_dec(x_74); x_76 = x_73; -x_77 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_75, x_26, x_76); +x_77 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_75, x_26, x_76); x_78 = x_77; x_79 = l_Array_mapMUnsafe_map___at_Lean_Elab_Deriving_FromToJson_mkToJsonInstanceHandler_mkAlts___spec__5___lambda__1___closed__15; x_80 = l_Lean_mkSepArray(x_78, x_79); diff --git a/stage0/stdlib/Lean/Elab/Deriving/Hashable.c b/stage0/stdlib/Lean/Elab/Deriving/Hashable.c index b8a6a80a2a..59269d604d 100644 --- a/stage0/stdlib/Lean/Elab/Deriving/Hashable.c +++ b/stage0/stdlib/Lean/Elab/Deriving/Hashable.c @@ -162,6 +162,7 @@ lean_object* l_Lean_Elab_Deriving_Hashable_mkHashableHeader(lean_object*); static lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_Hashable_mkMatch_mkAlts___spec__4___closed__19; lean_object* l_Lean_getConstInfoCtor___at_Lean_Elab_Deriving_Hashable_mkMatch_mkAlts___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_Hashable_mkMatch_mkAlts___spec__3___closed__6; +lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(size_t, size_t, lean_object*); static lean_object* l_Lean_Elab_Deriving_Hashable_mkAuxFunction___closed__11; static lean_object* l_Lean_Elab_Deriving_Hashable_mkAuxFunction___closed__7; static lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_Hashable_mkMatch_mkAlts___spec__3___closed__1; @@ -187,7 +188,6 @@ static lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_Hashable_mkMa lean_object* l_Lean_Meta_forallTelescopeReducing___at_Lean_Elab_Deriving_mkInductArgNames___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_Hashable_mkMatch_mkAlts___spec__3___closed__2; static lean_object* l_Lean_Elab_Deriving_Hashable_mkHashFuncs___closed__2; -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(size_t, size_t, lean_object*); static lean_object* l_Lean_Elab_Deriving_Hashable_mkAuxFunction___closed__26; lean_object* lean_mk_syntax_ident(lean_object*); extern lean_object* l_Lean_instInhabitedInductiveVal; @@ -1552,7 +1552,7 @@ x_85 = lean_usize_of_nat(x_84); lean_dec(x_84); x_86 = 0; x_87 = x_73; -x_88 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_85, x_86, x_87); +x_88 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_85, x_86, x_87); x_89 = x_88; x_90 = l_List_forIn_loop___at_Lean_Elab_Deriving_Hashable_mkMatch_mkAlts___spec__5___lambda__1___closed__10; x_91 = l_Lean_mkSepArray(x_89, x_90); @@ -1593,7 +1593,7 @@ x_107 = lean_usize_of_nat(x_106); lean_dec(x_106); x_108 = 0; x_109 = x_73; -x_110 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_107, x_108, x_109); +x_110 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_107, x_108, x_109); x_111 = x_110; x_112 = l_List_forIn_loop___at_Lean_Elab_Deriving_Hashable_mkMatch_mkAlts___spec__5___lambda__1___closed__10; x_113 = l_Lean_mkSepArray(x_111, x_112); @@ -2153,7 +2153,7 @@ x_29 = lean_usize_of_nat(x_28); lean_dec(x_28); x_30 = 0; x_31 = x_13; -x_32 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_29, x_30, x_31); +x_32 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_29, x_30, x_31); x_33 = x_32; x_34 = l_List_forIn_loop___at_Lean_Elab_Deriving_Hashable_mkMatch_mkAlts___spec__5___lambda__1___closed__10; x_35 = l_Lean_mkSepArray(x_33, x_34); @@ -2209,7 +2209,7 @@ x_62 = lean_usize_of_nat(x_61); lean_dec(x_61); x_63 = 0; x_64 = x_13; -x_65 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_62, x_63, x_64); +x_65 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_62, x_63, x_64); x_66 = x_65; x_67 = l_List_forIn_loop___at_Lean_Elab_Deriving_Hashable_mkMatch_mkAlts___spec__5___lambda__1___closed__10; x_68 = l_Lean_mkSepArray(x_66, x_67); diff --git a/stage0/stdlib/Lean/Elab/Deriving/Ord.c b/stage0/stdlib/Lean/Elab/Deriving/Ord.c index 700abcc44e..f42a6b8323 100644 --- a/stage0/stdlib/Lean/Elab/Deriving/Ord.c +++ b/stage0/stdlib/Lean/Elab/Deriving/Ord.c @@ -175,6 +175,7 @@ static lean_object* l_Lean_Elab_Deriving_Ord_mkAuxFunction___lambda__1___closed_ uint8_t lean_nat_dec_le(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Deriving_Ord_mkOrdHeader___rarg___closed__1; static lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_Ord_mkMatch_mkAlts___spec__5___closed__9; +lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(size_t, size_t, lean_object*); static lean_object* l_Lean_Elab_Deriving_Ord_mkAuxFunction___lambda__1___closed__1; lean_object* l_Lean_Elab_Deriving_Ord_mkOrdHeader___boxed(lean_object*); static lean_object* l_Lean_Elab_Deriving_Ord_mkAuxFunction___lambda__1___closed__2; @@ -204,7 +205,6 @@ static lean_object* l_Lean_Elab_Deriving_Ord_mkAuxFunction___lambda__1___closed_ lean_object* l_Lean_Elab_Deriving_Ord_mkMatch___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_forIn_loop___at_Lean_Elab_Deriving_Ord_mkMatch_mkAlts___spec__6___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Deriving_Ord_mkAuxFunction___lambda__1___closed__27; -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(size_t, size_t, lean_object*); lean_object* lean_mk_syntax_ident(lean_object*); extern lean_object* l_Lean_instInhabitedInductiveVal; lean_object* l_Lean_throwError___at_Lean_Elab_Deriving_Ord_mkMatch_mkAlts___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2163,7 +2163,7 @@ x_142 = lean_usize_of_nat(x_141); lean_dec(x_141); x_143 = 0; x_144 = x_103; -x_145 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_142, x_143, x_144); +x_145 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_142, x_143, x_144); x_146 = x_145; x_147 = l_List_forIn_loop___at_Lean_Elab_Deriving_Ord_mkMatch_mkAlts___spec__6___lambda__1___closed__16; x_148 = l_Lean_mkSepArray(x_146, x_147); @@ -2213,7 +2213,7 @@ x_170 = lean_array_get_size(x_118); x_171 = lean_usize_of_nat(x_170); lean_dec(x_170); x_172 = x_118; -x_173 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_171, x_143, x_172); +x_173 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_171, x_143, x_172); x_174 = x_173; x_175 = l_Lean_mkSepArray(x_174, x_147); lean_dec(x_174); @@ -2273,7 +2273,7 @@ x_199 = lean_array_get_size(x_131); x_200 = lean_usize_of_nat(x_199); lean_dec(x_199); x_201 = x_131; -x_202 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_200, x_143, x_201); +x_202 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_200, x_143, x_201); x_203 = x_202; x_204 = l_Lean_mkSepArray(x_203, x_147); lean_dec(x_203); @@ -2324,7 +2324,7 @@ x_225 = lean_array_get_size(x_131); x_226 = lean_usize_of_nat(x_225); lean_dec(x_225); x_227 = x_131; -x_228 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_226, x_143, x_227); +x_228 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_226, x_143, x_227); x_229 = x_228; x_230 = l_Lean_mkSepArray(x_229, x_147); lean_dec(x_229); @@ -2601,7 +2601,7 @@ x_348 = lean_usize_of_nat(x_347); lean_dec(x_347); x_349 = 0; x_350 = x_309; -x_351 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_348, x_349, x_350); +x_351 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_348, x_349, x_350); x_352 = x_351; x_353 = l_List_forIn_loop___at_Lean_Elab_Deriving_Ord_mkMatch_mkAlts___spec__6___lambda__1___closed__16; x_354 = l_Lean_mkSepArray(x_352, x_353); @@ -2651,7 +2651,7 @@ x_376 = lean_array_get_size(x_324); x_377 = lean_usize_of_nat(x_376); lean_dec(x_376); x_378 = x_324; -x_379 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_377, x_349, x_378); +x_379 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_377, x_349, x_378); x_380 = x_379; x_381 = l_Lean_mkSepArray(x_380, x_353); lean_dec(x_380); @@ -2718,7 +2718,7 @@ x_406 = lean_array_get_size(x_337); x_407 = lean_usize_of_nat(x_406); lean_dec(x_406); x_408 = x_337; -x_409 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_407, x_349, x_408); +x_409 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_407, x_349, x_408); x_410 = x_409; x_411 = l_Lean_mkSepArray(x_410, x_353); lean_dec(x_410); @@ -3215,7 +3215,7 @@ x_28 = lean_usize_of_nat(x_27); lean_dec(x_27); x_29 = 0; x_30 = x_12; -x_31 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_28, x_29, x_30); +x_31 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_28, x_29, x_30); x_32 = x_31; x_33 = l_List_forIn_loop___at_Lean_Elab_Deriving_Ord_mkMatch_mkAlts___spec__6___lambda__1___closed__16; x_34 = l_Lean_mkSepArray(x_32, x_33); @@ -3271,7 +3271,7 @@ x_61 = lean_usize_of_nat(x_60); lean_dec(x_60); x_62 = 0; x_63 = x_12; -x_64 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_61, x_62, x_63); +x_64 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_61, x_62, x_63); x_65 = x_64; x_66 = l_List_forIn_loop___at_Lean_Elab_Deriving_Ord_mkMatch_mkAlts___spec__6___lambda__1___closed__16; x_67 = l_Lean_mkSepArray(x_65, x_66); diff --git a/stage0/stdlib/Lean/Elab/Deriving/Repr.c b/stage0/stdlib/Lean/Elab/Deriving/Repr.c index dde9477ae2..507466d50f 100644 --- a/stage0/stdlib/Lean/Elab/Deriving/Repr.c +++ b/stage0/stdlib/Lean/Elab/Deriving/Repr.c @@ -222,6 +222,7 @@ static lean_object* l_Lean_Elab_Deriving_Repr_mkBodyForStruct___rarg___lambda__2 static lean_object* l_Lean_Elab_Deriving_Repr_mkAuxFunction___lambda__1___closed__25; static lean_object* l_List_forIn_loop___at_Lean_Elab_Deriving_Repr_mkBodyForInduct_mkAlts___spec__3___lambda__1___closed__35; lean_object* l_Lean_Elab_Deriving_Repr_mkBodyForInduct_mkAlts_match__1(lean_object*); +lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(size_t, size_t, lean_object*); static lean_object* l_Lean_Elab_Deriving_Repr_mkReprHeader___rarg___closed__29; lean_object* lean_panic_fn(lean_object*, lean_object*); lean_object* l_Lean_getConstInfoCtor___at_Lean_Elab_Deriving_Repr_mkBodyForStruct___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -269,7 +270,6 @@ lean_object* l_List_head_x21___at_Lean_Elab_Deriving_Repr_mkBodyForStruct___spec static lean_object* l_Lean_Elab_Deriving_Repr_mkReprHeader___rarg___closed__13; static lean_object* l_List_forIn_loop___at_Lean_Elab_Deriving_Repr_mkBodyForInduct_mkAlts___spec__3___lambda__1___closed__11; static lean_object* l_List_head_x21___at_Lean_Elab_Deriving_Repr_mkBodyForStruct___spec__1___closed__2; -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(size_t, size_t, lean_object*); static lean_object* l___private_Lean_Elab_Deriving_Repr_0__Lean_Elab_Deriving_Repr_mkReprInstanceCmds___closed__5; static lean_object* l_List_forIn_loop___at_Lean_Elab_Deriving_Repr_mkBodyForInduct_mkAlts___spec__3___lambda__1___closed__31; static lean_object* l___private_Lean_Elab_Deriving_Repr_0__Lean_Elab_Deriving_Repr_mkReprInstanceCmds___closed__8; @@ -4304,7 +4304,7 @@ x_99 = lean_usize_of_nat(x_98); lean_dec(x_98); x_100 = 0; x_101 = x_86; -x_102 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_99, x_100, x_101); +x_102 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_99, x_100, x_101); x_103 = x_102; x_104 = l_List_forIn_loop___at_Lean_Elab_Deriving_Repr_mkBodyForInduct_mkAlts___spec__3___lambda__1___closed__16; x_105 = l_Lean_mkSepArray(x_103, x_104); @@ -4555,7 +4555,7 @@ x_226 = lean_usize_of_nat(x_225); lean_dec(x_225); x_227 = 0; x_228 = x_86; -x_229 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_226, x_227, x_228); +x_229 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_226, x_227, x_228); x_230 = x_229; x_231 = l_List_forIn_loop___at_Lean_Elab_Deriving_Repr_mkBodyForInduct_mkAlts___spec__3___lambda__1___closed__16; x_232 = l_Lean_mkSepArray(x_230, x_231); @@ -5197,7 +5197,7 @@ x_28 = lean_usize_of_nat(x_27); lean_dec(x_27); x_29 = 0; x_30 = x_12; -x_31 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_28, x_29, x_30); +x_31 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_28, x_29, x_30); x_32 = x_31; x_33 = l_List_forIn_loop___at_Lean_Elab_Deriving_Repr_mkBodyForInduct_mkAlts___spec__3___lambda__1___closed__16; x_34 = l_Lean_mkSepArray(x_32, x_33); @@ -5253,7 +5253,7 @@ x_61 = lean_usize_of_nat(x_60); lean_dec(x_60); x_62 = 0; x_63 = x_12; -x_64 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_61, x_62, x_63); +x_64 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_61, x_62, x_63); x_65 = x_64; x_66 = l_List_forIn_loop___at_Lean_Elab_Deriving_Repr_mkBodyForInduct_mkAlts___spec__3___lambda__1___closed__16; x_67 = l_Lean_mkSepArray(x_65, x_66); diff --git a/stage0/stdlib/Lean/Elab/ElabRules.c b/stage0/stdlib/Lean/Elab/ElabRules.c index 9f2293b462..b05b3ea4ed 100644 --- a/stage0/stdlib/Lean/Elab/ElabRules.c +++ b/stage0/stdlib/Lean/Elab/ElabRules.c @@ -239,6 +239,7 @@ lean_object* l_Lean_Name_append(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_elabElabRulesAux___lambda__1___closed__105; static lean_object* l_Lean_Elab_Command_elabElabRulesAux___lambda__1___closed__85; lean_object* l_Lean_Syntax_getKind(lean_object*); +lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(size_t, size_t, lean_object*); static lean_object* l_Lean_Elab_Command_elabElabRulesAux___lambda__1___closed__16; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_inferMacroRulesAltKind___spec__2___rarg(lean_object*); lean_object* l_Lean_mkIdentFromRef___at_Lean_Elab_Command_elabElabRulesAux___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -279,7 +280,6 @@ static lean_object* l_Lean_Elab_Command_elabElabRulesAux___lambda__1___closed__9 static lean_object* l_Lean_Elab_Command_elabElabRulesAux___lambda__1___closed__81; lean_object* l_Lean_Elab_Command_expandElab(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_unsupportedSyntaxExceptionId; -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(size_t, size_t, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Command_expandElab___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_elabElabRulesAux___lambda__1___closed__77; static lean_object* l_Lean_Elab_Command_elabElabRulesAux___lambda__1___closed__117; @@ -6477,7 +6477,7 @@ x_69 = lean_array_get_size(x_4); x_70 = lean_usize_of_nat(x_69); lean_dec(x_69); x_71 = x_4; -x_72 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_70, x_5, x_71); +x_72 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_70, x_5, x_71); x_73 = x_72; x_74 = l_Array_mapMUnsafe_map___at_Lean_Elab_Command_elabElabRulesAux___spec__3___lambda__2___closed__4; x_75 = l_Array_append___rarg(x_74, x_73); diff --git a/stage0/stdlib/Lean/Elab/Macro.c b/stage0/stdlib/Lean/Elab/Macro.c index 0cf4350d86..41ba56d4b0 100644 --- a/stage0/stdlib/Lean/Elab/Macro.c +++ b/stage0/stdlib/Lean/Elab/Macro.c @@ -89,6 +89,7 @@ static lean_object* l_Lean_Elab_Command_expandMacro___lambda__2___closed__24; static lean_object* l_Lean_Elab_Command_expandMacro___closed__7; lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l_Lean_Name_append(lean_object*, lean_object*); +lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(size_t, size_t, lean_object*); lean_object* l_Lean_Elab_Command_expandMacro___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_expandMacro___lambda__2___closed__10; static lean_object* l_Lean_Elab_Command_expandMacro___lambda__6___closed__1; @@ -105,7 +106,6 @@ static lean_object* l_Lean_Elab_Command_expandMacro___lambda__2___closed__11; lean_object* l_Lean_Elab_Command_expandMacro___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); lean_object* l_Lean_mkIdentFromRef___at_Lean_Elab_Command_expandMacro___spec__2(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(size_t, size_t, lean_object*); lean_object* l_Lean_Elab_Command_expandMacro___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_expandMacro___lambda__2___closed__26; @@ -644,7 +644,7 @@ x_206 = lean_array_get_size(x_8); x_207 = lean_usize_of_nat(x_206); lean_dec(x_206); x_208 = x_8; -x_209 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_207, x_9, x_208); +x_209 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_207, x_9, x_208); x_210 = x_209; x_211 = l_Lean_Elab_Command_expandMacro___lambda__2___closed__4; x_212 = l_Array_append___rarg(x_211, x_210); diff --git a/stage0/stdlib/Lean/Elab/Match.c b/stage0/stdlib/Lean/Elab/Match.c index 4ce186d780..a524a594dd 100644 --- a/stage0/stdlib/Lean/Elab/Match.c +++ b/stage0/stdlib/Lean/Elab/Match.c @@ -635,6 +635,7 @@ static lean_object* l___regBuiltin_Lean_Elab_Term_elabInaccessible___closed__3; static lean_object* l___regBuiltin_Lean_Elab_Term_elabMVarWithIdKind___closed__5; lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_generalize___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_eraseIndices___boxed__const__1; +lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(size_t, size_t, lean_object*); lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_match__1___rarg(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_precheckMatch___closed__1; lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabPatterns___spec__4___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -706,6 +707,7 @@ lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_generalize___lambda__ lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabPatterns___spec__4___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_instInhabitedName; static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_8204____closed__4; +lean_object* l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__1(lean_object*, lean_object*); lean_object* l_List_forIn_loop___at_Lean_Elab_Term_reportMatcherResultErrors___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Match_0__Lean_Elab_Term_generalize___spec__6(size_t, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabPatterns___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -714,7 +716,6 @@ lean_object* l_List_toArrayAux___rarg(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_withElaboratedLHS_match__1___rarg(lean_object*, lean_object*); uint8_t l_Lean_Syntax_isNone(lean_object*); lean_object* lean_name_mk_numeral(lean_object*, lean_object*); -lean_object* l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__1(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_getIndexToInclude_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_infer_type(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isExprDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -758,7 +759,6 @@ lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_mkLo lean_object* l_List_forIn_loop___at_Lean_Elab_Term_reportMatcherResultErrors___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_PatternVar_0__Lean_Elab_Term_CollectPatternVars_nameToPattern___spec__1___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_unsupportedSyntaxExceptionId; -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(size_t, size_t, lean_object*); static lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAux___lambda__2___closed__2; lean_object* l_Lean_Meta_mkFreshTypeMVar(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_precheckMatch___spec__5(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -5813,7 +5813,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_3); x_15 = l_Lean_Elab_Term_precheckMatch___lambda__3___closed__1; -x_16 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__1(x_2, x_15); +x_16 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__1(x_2, x_15); if (lean_obj_tag(x_16) == 0) { lean_object* x_17; @@ -5867,7 +5867,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_3); x_29 = l_Lean_Elab_Term_precheckMatch___lambda__3___closed__1; -x_30 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__1(x_2, x_29); +x_30 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__1(x_2, x_29); if (lean_obj_tag(x_30) == 0) { lean_object* x_31; @@ -5922,7 +5922,7 @@ x_45 = lean_ctor_get(x_44, 1); lean_inc(x_45); lean_dec(x_44); x_46 = l_Lean_Elab_Term_precheckMatch___lambda__3___closed__1; -x_47 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__1(x_45, x_46); +x_47 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__1(x_45, x_46); lean_dec(x_45); if (lean_obj_tag(x_47) == 0) { @@ -6113,7 +6113,7 @@ block_130: { lean_object* x_25; lean_object* x_26; x_25 = l_Lean_Elab_Term_precheckMatch___closed__2; -x_26 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__1(x_24, x_25); +x_26 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__1(x_24, x_25); lean_dec(x_24); if (lean_obj_tag(x_26) == 0) { @@ -32587,7 +32587,7 @@ x_15 = lean_usize_of_nat(x_14); lean_dec(x_14); x_16 = 0; x_17 = x_13; -x_18 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_15, x_16, x_17); +x_18 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_15, x_16, x_17); x_19 = x_18; lean_inc(x_1); x_20 = l___private_Lean_Elab_Match_0__Lean_Elab_Term_getMatchGeneralizing_x3f(x_1); diff --git a/stage0/stdlib/Lean/Elab/MutualDef.c b/stage0/stdlib/Lean/Elab/MutualDef.c index 6caaaff338..6aac764bce 100644 --- a/stage0/stdlib/Lean/Elab/MutualDef.c +++ b/stage0/stdlib/Lean/Elab/MutualDef.c @@ -30,6 +30,8 @@ size_t l_USize_add(size_t, size_t); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabFunValues___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getAllUserLevelNames(lean_object*); lean_object* l_Lean_Elab_Term_MutualClosure_FixPoint_run_match__1(lean_object*); +lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___boxed(lean_object*); +lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_erase_macro_scopes(lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__2___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); @@ -42,6 +44,7 @@ lean_object* l_Lean_Meta_mkForallFVars(lean_object*, lean_object*, uint8_t, uint lean_object* l_Lean_Elab_Term_getLetRecsToLift___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_List_forIn_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkFreeVarMap___spec__3___closed__2; static lean_object* l_Lean_addTrace___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkClosureForAux___spec__5___closed__1; +static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__4; lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_withUsed_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_LocalDecl_userName(lean_object*); lean_object* l_List_mapM___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkLetRecClosures___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -97,9 +100,12 @@ lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_E lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_FixPoint_markModified___rarg(lean_object*); lean_object* l_Lean_addDocString_x27___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_CollectFVars_main(lean_object*, lean_object*); +static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___lambda__2___closed__1; lean_object* lean_array_uset(lean_object*, size_t, lean_object*); +lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___boxed(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Elab_Term_MutualClosure_FixPoint_State_modified___default; static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__1___closed__8; +static lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__2; static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_checkModifiers___lambda__1___closed__2; lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__2___lambda__3___closed__1; @@ -109,8 +115,11 @@ lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_E lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_FixPoint_merge(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_pushLocalDecl___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__2___lambda__4___closed__6; +static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___closed__1; static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__4___closed__2; lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_typeHasRecFun_match__2(lean_object*); +lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___lambda__2(lean_object*); +static lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__6; lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Command_elabMutualDef___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_levelMVarToParamHeaders(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addTrace___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkClosureForAux___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -122,6 +131,7 @@ lean_object* l_Lean_addTrace_addTraceOptions(lean_object*); lean_object* l_List_forM___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_checkLetRecsToLiftTypes___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_match__1___rarg(lean_object*, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__2___lambda__2___closed__4; +static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___lambda__1___closed__1; uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getFunName_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_get(lean_object*, lean_object*); @@ -129,6 +139,7 @@ lean_object* l_Std_RBNode_find___at___private_Lean_Elab_MutualDef_0__Lean_Elab_T static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__4; static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__4___lambda__1___closed__4; static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_registerFailedToInferDefTypeInfo___closed__3; +static lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__1; uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* l_Lean_LocalContext_get_x21(lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Term_mkAuxName___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -146,6 +157,7 @@ static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_check___cl lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__2___lambda__3(lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_anyMUnsafe_any___at_Lean_Elab_Term_MutualClosure_getModifiersForLetRecs___spec__1(lean_object*, size_t, size_t); static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_checkKinds___closed__1; +lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f(lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_levelMVarToParamHeaders_process___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_toSubarray___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); @@ -153,6 +165,7 @@ lean_object* lean_array_get_size(lean_object*); lean_object* l_Lean_Elab_Term_expandLetEqnsDecl(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_elabModifiers___at_Lean_Elab_Command_elabMutualDef___spec__1___lambda__3___closed__3; static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_check___lambda__2___closed__4; +lean_object* lean_string_append(lean_object*, lean_object*); lean_object* l_Lean_Elab_expandDeclId___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_check___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabFunValues(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -181,13 +194,11 @@ lean_object* l_Lean_Elab_Term_getLevelNames___rarg(lean_object*, lean_object*, l lean_object* l_Lean_Elab_expandDeclId___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_RBNode_fold___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_pushNewVars___spec__1(lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_MutualClosure_main___spec__1___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__5; lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst_match__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_check___lambda__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkClosureForAux___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_elabModifiers___at_Lean_Elab_Command_elabMutualDef___spec__1___lambda__3___closed__6; lean_object* lean_string_utf8_byte_size(lean_object*); -static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__13; lean_object* l_Array_mapMUnsafe_map___at_Lean_LocalContext_getFVars___spec__1(size_t, size_t, lean_object*); lean_object* l_Lean_Elab_Term_withLevelNames___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_MutualClosure_main___spec__4(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -197,6 +208,7 @@ uint8_t l_Lean_Elab_DefKind_isExample(uint8_t); static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__2___lambda__2___closed__8; static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__2___lambda__4___closed__5; static lean_object* l_Lean_Elab_expandDeclId___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__1___closed__1; +lean_object* l_List_join___rarg(lean_object*); uint8_t l_USize_decLt(size_t, size_t); static lean_object* l_Lean_Elab_elabModifiers___at_Lean_Elab_Command_elabMutualDef___spec__1___lambda__3___closed__2; static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__2___lambda__2___closed__2; @@ -230,13 +242,14 @@ static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClos static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__2___lambda__2___closed__5; lean_object* l_Lean_Elab_expandDeclId___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at___private_Lean_Elab_Term_0__Lean_Elab_Term_applyAttributesCore___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__8; lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_levelMVarToParamHeaders_process_match__2___rarg(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkClosureForAux___closed__2; static lean_object* l_Lean_Elab_mkDeclName___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__2___lambda__1___closed__2; -static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__14; lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getFunName___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_withFunLocalDecls_loop(lean_object*); static lean_object* l_Lean_Elab_elabModifiers___at_Lean_Elab_Command_elabMutualDef___spec__1___lambda__3___closed__4; +static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___lambda__2___closed__2; static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_check___lambda__4___closed__1; lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_withUsed(lean_object*); lean_object* l_Lean_Elab_Term_elabMutualDef_go(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -255,6 +268,7 @@ static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWher lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Command_elabMutualDef___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_declValToTerm___closed__6; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__6; lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isTheorem___spec__1___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__2___lambda__4___closed__4; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkClosureForAux___spec__3(lean_object*, lean_object*, size_t, size_t, lean_object*); @@ -264,6 +278,7 @@ lean_object* l_Lean_Meta_Closure_mkLambda(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_FixPoint_isModified(lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_check___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabImplicitLambda_loop___spec__1___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__4; lean_object* lean_st_ref_take(lean_object*, lean_object*); lean_object* l_Lean_Elab_mkDeclName___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__2___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_MutualClosure_main___lambda__1___boxed(lean_object*, lean_object*); @@ -271,7 +286,6 @@ lean_object* l_Lean_Meta_getZetaFVarIds___rarg(lean_object*, lean_object*, lean_ lean_object* l_Lean_Elab_Term_registerCustomErrorIfMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_forM___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_FixPoint_fixpoint___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_elabModifiers___at_Lean_Elab_Command_elabMutualDef___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__7; static lean_object* l_List_forM___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_checkLetRecsToLiftTypes___spec__1___closed__1; lean_object* l_Lean_Elab_Term_MutualClosure_getModifiersForLetRecs(lean_object*); static lean_object* l_Lean_Elab_elabAttr___at_Lean_Elab_Command_elabMutualDef___spec__4___lambda__2___closed__2; @@ -297,9 +311,11 @@ lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_E lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getFunName___lambda__1(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkClosureForAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_MutualClosure_main___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Syntax_getId___boxed(lean_object*); lean_object* l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_mapM___at_Lean_Elab_Term_MutualClosure_main___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst_match__2(lean_object*); +static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__1; lean_object* l_Lean_Elab_getDeclarationRange___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_MutualClosure_pushLetRecs___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_elabAttr___at_Lean_Elab_Command_elabMutualDef___spec__4___closed__3; @@ -307,7 +323,7 @@ lean_object* l_Lean_Meta_lambdaTelescope___at___private_Lean_Elab_MutualDef_0__L lean_object* l_Lean_Elab_Term_elabMutualDef_go___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_checkModifiers___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_collectMVars(lean_object*, lean_object*); -lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Name_toString(lean_object*, uint8_t); static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_declValToTerm___closed__4; lean_object* l_Lean_Elab_elabModifiers___at_Lean_Elab_Command_elabMutualDef___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_replaceRef(lean_object*, lean_object*); @@ -327,12 +343,13 @@ lean_object* l_Lean_Meta_forallBoundedTelescope___at_Lean_Elab_Term_elabLetDeclA lean_object* l_Lean_Elab_Term_MutualClosure_main___lambda__1(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_instantiateMVarsAtHeader___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_forM___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_collectUsed___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___lambda__1(lean_object*); static lean_object* l_Lean_Elab_elabAttr___at_Lean_Elab_Command_elabMutualDef___spec__4___closed__5; lean_object* l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Command_elabMutualDef___spec__5(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkClosureForAux___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Name_quickCmp(lean_object*, lean_object*); -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_FixPoint_merge___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkInitialUsedFVarsMap_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_MutualClosure_insertReplacementForLetRecs(lean_object*, lean_object*); @@ -345,7 +362,6 @@ static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0_ static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkClosureForAux___closed__6; lean_object* l_Std_RBNode_foldM___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_FixPoint_updateUsedVarsOf___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandMatchAltsWhereDecls(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_elabMutualDef_go___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_typeHasRecFun___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Std_RBNode_find___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkLetRecClosures___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Std_RBNode_fold___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkFreeVarMap___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); @@ -370,6 +386,7 @@ lean_object* l_Lean_Elab_Term_synthesizeSyntheticMVars_loop(uint8_t, uint8_t, le lean_object* l_Nat_foldAux___at_Lean_Elab_Term_MutualClosure_insertReplacementForMainFns___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static uint64_t l_Lean_Elab_instInhabitedDefViewElabHeader___closed__3; lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_levelMVarToParamHeaders_process___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__2; lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_check___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkClosureForAux___closed__3; lean_object* l_Lean_throwError___at_Lean_Elab_Command_elabMutualDef___spec__9(lean_object*, lean_object*, lean_object*, lean_object*); @@ -384,6 +401,7 @@ lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsA static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_check___lambda__5___closed__2; lean_object* l_Lean_addMessageContextPartial___at_Lean_Elab_Command_instAddMessageContextCommandElabM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___boxed(lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_check___lambda__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_to_list(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_levelMVarToParamHeaders_process_match__1(lean_object*); @@ -396,15 +414,18 @@ lean_object* l_Lean_setEnv___at_Lean_Elab_Term_evalExpr___spec__1(lean_object*, lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___lambda__2(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_withFunLocalDecls___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_FixPoint_fixpoint_match__1(lean_object*); +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__2___boxed(lean_object**); static lean_object* l_Lean_Elab_throwAlreadyDeclaredUniverseLevel___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__8___closed__2; lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_check_match__1(lean_object*); uint8_t l_Array_anyMUnsafe_any___at_Lean_Elab_Term_MutualClosure_getModifiersForLetRecs___spec__2(lean_object*, size_t, size_t); +static lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__3; extern lean_object* l_Lean_instInhabitedExpr; static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__3___closed__2; static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__4___lambda__2___closed__1; static lean_object* l_Lean_Elab_elabModifiers___at_Lean_Elab_Command_elabMutualDef___spec__1___closed__2; lean_object* l_Array_indexOfAux___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkClosureForAux___spec__2(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Elab_instInhabitedDefView; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__4___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_FileMap_toPosition(lean_object*, lean_object*); @@ -420,7 +441,6 @@ static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_declValToT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_MutualClosure_main___spec__3(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_FixPoint_fixpoint_match__1___rarg(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__2; -static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__2___closed__2; uint8_t l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isTheorem___spec__1(lean_object*, size_t, size_t); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_FixPoint_resetModified(lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkClosureFor_match__1(lean_object*); @@ -435,7 +455,6 @@ lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_checkModifiers___ lean_object* l_Lean_Elab_Term_collectUsedFVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_update_let(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_MutualClosure_FixPoint_State_usedFVarsMap___default; -static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__2___closed__1; lean_object* l_Lean_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_elabAttr___at_Lean_Elab_Command_elabMutualDef___spec__4___lambda__2___closed__3; lean_object* l_Lean_mkFVar(lean_object*); @@ -469,7 +488,6 @@ lean_object* l_Array_feraseIdx___rarg(lean_object*, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__3___closed__1; static lean_object* l_Lean_addTrace___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkClosureForAux___spec__5___closed__5; static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__4___lambda__1___closed__2; -static lean_object* l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__6; static lean_object* l_Lean_Elab_instInhabitedDefViewElabHeader___closed__4; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_checkModifiers___closed__1; @@ -488,6 +506,7 @@ lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_check___lambda__2 lean_object* l_Lean_Elab_addPreDefinitions(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_resetMessageLog(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_typeHasRecFun_match__1___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___lambda__1___boxed(lean_object*); extern lean_object* l_Lean_Expr_FindImpl_initCache; uint8_t l_List_elem___at_Lean_NameHashSet_insert___spec__2(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkLetRecClosureFor___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -498,15 +517,17 @@ static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0_ lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_match__2(lean_object*); static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__5; size_t lean_ptr_addr(lean_object*); +lean_object* l_String_intercalate(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_MutualClosure_Replacement_apply_match__1(lean_object*); lean_object* l_List_redLength___rarg(lean_object*); lean_object* l_Std_PersistentArray_push___rarg(lean_object*, lean_object*); lean_object* l_Lean_Meta_getMVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___lambda__1___closed__1; lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_withUsed_match__1(lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkClosureFor(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Command_MkInstanceName_main___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_check___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalDecl_index(lean_object*); lean_object* l_Lean_Syntax_getSepArgs(lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_removeUnusedVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -514,6 +535,7 @@ uint8_t l_Lean_isAttribute(lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_collectUsed___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_levelMVarToParamHeaders_process(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_forM___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_collectUsed___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__3; static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__3; lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_pickMaxFVar_x3f___boxed(lean_object*, lean_object*); lean_object* l_Lean_mkHole(lean_object*); @@ -544,6 +566,7 @@ static lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___private_Lean_Elab static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__1___closed__5; lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_typeHasRecFun(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getKind(lean_object*); +lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(size_t, size_t, lean_object*); lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Command_elabMutualDef___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkClosureForAux___closed__7; lean_object* l_Array_erase___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkClosureForAux___spec__1(lean_object*, lean_object*); @@ -553,8 +576,8 @@ static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0_ static lean_object* l_List_forM___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_checkLetRecsToLiftTypes___spec__1___closed__3; lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkInitialUsedFVarsMap___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addDocString_x27___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage(lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_levelMVarToParamHeaders___boxed__const__1; -static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__2___closed__3; uint8_t l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isTheorem(lean_object*); lean_object* l_Lean_Elab_Term_withDeclName___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_declValToTerm___closed__5; @@ -569,7 +592,6 @@ lean_object* l_Lean_Elab_elabModifiers___at_Lean_Elab_Command_elabMutualDef___sp static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__1___closed__3; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_levelMVarToParamHeaders___spec__1(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_declValToTerm(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_elabMutualDef___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_Term_MutualClosure_getModifiersForLetRecs___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_MutualClosure_pushMain(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -588,22 +610,23 @@ lean_object* l_List_mapM___at_Lean_Elab_Term_elabMutualDef_go___spec__1___boxed( lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_registerFailedToInferDefTypeInfo___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_MutualClosure_ClosureState_newLetDecls___default; lean_object* l_Lean_Elab_Term_elabType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_MutualClosure_getModifiersForLetRecs___boxed(lean_object*); lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_elabModifiers___at_Lean_Elab_Command_elabMutualDef___spec__1___lambda__3(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_MutualClosure_getModifiersForLetRecs___closed__1; lean_object* l_Lean_Elab_throwAlreadyDeclaredUniverseLevel___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_update_lambda(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_List_toArrayAux___rarg(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_FixPoint_isModified___rarg(lean_object*); uint8_t l_Lean_Syntax_isNone(lean_object*); -lean_object* l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__1(lean_object*, lean_object*); uint8_t l_Lean_Elab_Modifiers_isNonrec(lean_object*); lean_object* l_Lean_expandMacros(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__1; lean_object* l_Array_erase___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkClosureForAux___spec__1___boxed(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___lambda__1(lean_object*); lean_object* l_Lean_Elab_elabAttrs___at_Lean_Elab_Command_elabMutualDef___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_MutualClosure_main___spec__7(lean_object*, size_t, size_t, lean_object*); lean_object* l_Std_RBNode_foldM___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_FixPoint_merge___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -617,6 +640,7 @@ static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClos lean_object* l_Std_RBNode_find___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_FixPoint_updateUsedVarsOf___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_instantiateMVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_FixPoint_modifyUsedFVars___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__5; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_MutualClosure_main___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_check___lambda__3___closed__1; lean_object* l_Lean_Elab_Term_logUnassignedUsingErrorInfos(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -634,11 +658,10 @@ lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_checkKinds___lamb lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_check___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__8; lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_FixPoint_fixpoint___rarg(lean_object*, lean_object*); -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_FixPoint_modifyUsedFVars(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_instantiateMVarsAtLetRecToLift(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_indentD(lean_object*); -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(size_t, size_t, lean_object*); lean_object* l_Lean_Elab_instantiateMVarsAtPreDecls(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_match__1(lean_object*); lean_object* l_Lean_Elab_toAttributeKind___boxed(lean_object*, lean_object*, lean_object*); @@ -667,6 +690,7 @@ lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_removeUnusedVars_ lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_FixPoint_resetModified___boxed(lean_object*); lean_object* l_List_mapM___at_Lean_Elab_Term_MutualClosure_main___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_FixPoint_updateUsedVarsOf_match__1___rarg(lean_object*, lean_object*, lean_object*); +static lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__7; lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_withUsed___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__2___lambda__4___closed__1; static lean_object* l_Lean_addTrace___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkClosureForAux___spec__5___closed__3; @@ -693,6 +717,7 @@ lean_object* l_Lean_Elab_fixLevelParams(lean_object*, lean_object*, lean_object* lean_object* lean_expr_update_app(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_check___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__1___closed__2; +static lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__5; lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabFunValues___boxed__const__1; uint8_t l_List_beq___at_Lean_OpenDecl_instToStringOpenDecl___spec__1(lean_object*, lean_object*); lean_object* l_Lean_addDocString___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -711,8 +736,8 @@ lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at___privat lean_object* l_Lean_mkConst(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__1; static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__3___closed__3; +lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage_match__1(lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_collectUsed___spec__3(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__8; static lean_object* l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__4; static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_check___lambda__2___closed__5; lean_object* l_Lean_Elab_Term_MutualClosure_getKindForLetRecs___boxed(lean_object*); @@ -725,6 +750,7 @@ static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_registerFa lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(lean_object*, size_t, size_t, lean_object*); static lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkClosureForAux___closed__11; lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_FixPoint_getUsedFVarsMap___boxed(lean_object*); +uint8_t l___private_Lean_Elab_DefView_0__Lean_Elab_beqDefKind____x40_Lean_Elab_DefView___hyg_11_(uint8_t, uint8_t); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__2___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getFunName_match__1(lean_object*); lean_object* l_Lean_Elab_Term_MutualClosure_FixPoint_run(lean_object*, lean_object*); @@ -739,6 +765,7 @@ static lean_object* l_List_forIn_loop___at___private_Lean_Elab_MutualDef_0__Lean extern lean_object* l_Lean_Expr_ReplaceImpl_initCache; lean_object* l_Lean_Elab_getBetterRef(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_MutualClosure_Replacement_apply(lean_object*, lean_object*); +uint8_t l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1(lean_object*, size_t, size_t); lean_object* l_Lean_Meta_findLocalDecl_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Command_elabMutualDef___spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2318,6 +2345,461 @@ lean_dec(x_1); return x_10; } } +static lean_object* _init_l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Lean"); +return x_1; +} +} +static lean_object* _init_l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Parser"); +return x_1; +} +} +static lean_object* _init_l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__2; +x_2 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__3; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Term"); +return x_1; +} +} +static lean_object* _init_l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__4; +x_2 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__5; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("simpleBinder"); +return x_1; +} +} +static lean_object* _init_l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__6; +x_2 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__7; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +uint8_t l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1(lean_object* x_1, size_t x_2, size_t x_3) { +_start: +{ +uint8_t x_4; +x_4 = x_2 == x_3; +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; +x_5 = lean_array_uget(x_1, x_2); +x_6 = l_Lean_Syntax_getKind(x_5); +x_7 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__8; +x_8 = lean_name_eq(x_6, x_7); +lean_dec(x_6); +if (x_8 == 0) +{ +uint8_t x_9; +x_9 = 1; +return x_9; +} +else +{ +size_t x_10; size_t x_11; +x_10 = 1; +x_11 = x_2 + x_10; +x_2 = x_11; +goto _start; +} +} +else +{ +uint8_t x_13; +x_13 = 0; +return x_13; +} +} +} +static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Syntax_getId___boxed), 1, 0); +return x_1; +} +} +lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___lambda__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Syntax_getArg(x_1, x_2); +x_4 = l_Lean_Syntax_getArgs(x_3); +lean_dec(x_3); +x_5 = lean_array_to_list(lean_box(0), x_4); +x_6 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___lambda__1___closed__1; +x_7 = l_List_mapTR___rarg(x_6, x_5); +return x_7; +} +} +static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___lambda__1___boxed), 1, 0); +return x_1; +} +} +lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_14; lean_object* x_15; uint8_t x_16; +x_14 = lean_array_get_size(x_1); +x_15 = lean_unsigned_to_nat(1u); +x_16 = lean_nat_dec_eq(x_14, x_15); +lean_dec(x_14); +if (x_16 == 0) +{ +lean_object* x_17; +x_17 = lean_box(0); +return x_17; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; uint8_t x_22; uint8_t x_23; +x_18 = l_Lean_Elab_instInhabitedDefView; +x_19 = lean_unsigned_to_nat(0u); +x_20 = lean_array_get(x_18, x_1, x_19); +x_21 = lean_ctor_get_uint8(x_20, sizeof(void*)*6); +x_22 = 3; +x_23 = l___private_Lean_Elab_DefView_0__Lean_Elab_beqDefKind____x40_Lean_Elab_DefView___hyg_11_(x_21, x_22); +if (x_23 == 0) +{ +lean_object* x_24; +lean_dec(x_20); +x_24 = lean_box(0); +return x_24; +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; +x_25 = lean_ctor_get(x_20, 3); +lean_inc(x_25); +lean_dec(x_20); +x_26 = l_Lean_Syntax_getArgs(x_25); +lean_dec(x_25); +x_27 = lean_array_get_size(x_26); +x_28 = lean_nat_dec_lt(x_19, x_27); +if (x_28 == 0) +{ +lean_object* x_29; +lean_dec(x_27); +lean_dec(x_26); +x_29 = lean_box(0); +return x_29; +} +else +{ +uint8_t x_30; +x_30 = lean_nat_dec_le(x_27, x_27); +if (x_30 == 0) +{ +lean_object* x_31; +lean_dec(x_27); +lean_dec(x_26); +x_31 = lean_box(0); +x_2 = x_31; +goto block_13; +} +else +{ +size_t x_32; size_t x_33; uint8_t x_34; +x_32 = 0; +x_33 = lean_usize_of_nat(x_27); +lean_dec(x_27); +x_34 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1(x_26, x_32, x_33); +lean_dec(x_26); +if (x_34 == 0) +{ +lean_object* x_35; +x_35 = lean_box(0); +x_2 = x_35; +goto block_13; +} +else +{ +lean_object* x_36; +x_36 = lean_box(0); +return x_36; +} +} +} +} +} +block_13: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +lean_dec(x_2); +x_3 = l_Lean_Elab_instInhabitedDefView; +x_4 = lean_unsigned_to_nat(0u); +x_5 = lean_array_get(x_3, x_1, x_4); +x_6 = lean_ctor_get(x_5, 3); +lean_inc(x_6); +lean_dec(x_5); +x_7 = l_Lean_Syntax_getArgs(x_6); +lean_dec(x_6); +x_8 = lean_array_to_list(lean_box(0), x_7); +x_9 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___closed__1; +x_10 = l_List_mapTR___rarg(x_9, x_8); +x_11 = l_List_join___rarg(x_10); +x_12 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_12, 0, x_11); +return x_12; +} +} +} +lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +size_t x_4; size_t x_5; uint8_t x_6; lean_object* x_7; +x_4 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_5 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_6 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1(x_1, x_4, x_5); +lean_dec(x_1); +x_7 = lean_box(x_6); +return x_7; +} +} +lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___lambda__1___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___lambda__1(x_1); +lean_dec(x_1); +return x_2; +} +} +lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f(x_1); +lean_dec(x_1); +return x_2; +} +} +lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_4; lean_object* x_5; +lean_dec(x_2); +x_4 = lean_box(0); +x_5 = lean_apply_1(x_3, x_4); +return x_5; +} +else +{ +lean_object* x_6; lean_object* x_7; +lean_dec(x_3); +x_6 = lean_ctor_get(x_1, 0); +lean_inc(x_6); +lean_dec(x_1); +x_7 = lean_apply_1(x_2, x_6); +return x_7; +} +} +} +lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage_match__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage_match__1___rarg), 3, 0); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("`"); +return x_1; +} +} +lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___lambda__1(lean_object* x_1) { +_start: +{ +uint8_t x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_2 = 1; +x_3 = l_Lean_Name_toString(x_1, x_2); +x_4 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___lambda__1___closed__1; +x_5 = lean_string_append(x_4, x_3); +lean_dec(x_3); +x_6 = lean_string_append(x_5, x_4); +return x_6; +} +} +static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___lambda__2___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("`("); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___lambda__2___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string(" : _)`"); +return x_1; +} +} +lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___lambda__2(lean_object* x_1) { +_start: +{ +uint8_t x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_2 = 1; +x_3 = l_Lean_Name_toString(x_1, x_2); +x_4 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___lambda__2___closed__1; +x_5 = lean_string_append(x_4, x_3); +lean_dec(x_3); +x_6 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___lambda__2___closed__2; +x_7 = lean_string_append(x_5, x_6); +return x_7; +} +} +static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("\nwhen the resulting type of a declaration is explicitly provided, all holes (e.g., `_`) in the header are resolved before the declaration body is processed"); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___lambda__1), 1, 0); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string(", "); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___lambda__2), 1, 0); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("\nrecall that you cannot declare multiple constants in a single declaration. The identifier(s) "); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string(" are being interpreted as parameters "); +return x_1; +} +} +lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f(x_1); +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_3; +x_3 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__1; +return x_3; +} +else +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_4 = lean_ctor_get(x_2, 0); +lean_inc(x_4); +lean_dec(x_2); +x_5 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__2; +lean_inc(x_4); +x_6 = l_List_mapTR___rarg(x_5, x_4); +x_7 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__3; +x_8 = l_String_intercalate(x_7, x_6); +x_9 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__4; +x_10 = l_List_mapTR___rarg(x_9, x_4); +x_11 = l_String_intercalate(x_7, x_10); +x_12 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__5; +x_13 = lean_string_append(x_12, x_8); +lean_dec(x_8); +x_14 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__6; +x_15 = lean_string_append(x_13, x_14); +x_16 = lean_string_append(x_15, x_11); +lean_dec(x_11); +x_17 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_check___lambda__2___closed__5; +x_18 = lean_string_append(x_16, x_17); +return x_18; +} +} +} +lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage(x_1); +lean_dec(x_1); +return x_2; +} +} lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders_match__1___rarg(lean_object* x_1, lean_object* x_2) { _start: { @@ -3975,7 +4457,7 @@ static lean_object* _init_l_Lean_Elab_addDeclarationRanges___at___private_Lean_E _start: { lean_object* x_1; -x_1 = lean_mk_string("Lean"); +x_1 = lean_mk_string("Command"); return x_1; } } @@ -3983,7 +4465,7 @@ static lean_object* _init_l_Lean_Elab_addDeclarationRanges___at___private_Lean_E _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); +x_1 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__4; x_2 = l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -3993,7 +4475,7 @@ static lean_object* _init_l_Lean_Elab_addDeclarationRanges___at___private_Lean_E _start: { lean_object* x_1; -x_1 = lean_mk_string("Parser"); +x_1 = lean_mk_string("example"); return x_1; } } @@ -4007,49 +4489,13 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("Command"); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__4; -x_2 = l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__5; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__7() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("example"); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__6; -x_2 = l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__7; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} lean_object* l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; uint8_t x_12; lean_inc(x_2); x_10 = l_Lean_Syntax_getKind(x_2); -x_11 = l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__8; +x_11 = l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__4; x_12 = lean_name_eq(x_10, x_11); lean_dec(x_10); if (x_12 == 0) @@ -4154,820 +4600,954 @@ return x_30; } } } -static lean_object* _init_l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__2___closed__1() { +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { -lean_object* x_1; -x_1 = lean_mk_string("\nwhen the resulting type of a declaration is explicitly provided, all holes (e.g., `_`) in the header are resolved before the declaration body is processed"); -return x_1; -} -} -static lean_object* _init_l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__2___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__2___closed__1; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} -static lean_object* _init_l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__2___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__2___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { -_start: -{ -uint8_t x_17; lean_object* x_18; lean_object* x_19; -x_17 = 0; -x_18 = lean_box(0); +uint8_t x_18; lean_object* x_19; lean_object* x_20; +x_18 = 0; +x_19 = lean_box(0); +lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); -lean_inc(x_10); -x_19 = l_Lean_Elab_Term_synthesizeSyntheticMVars_loop(x_17, x_17, x_18, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_19) == 0) +x_20 = l_Lean_Elab_Term_synthesizeSyntheticMVars_loop(x_18, x_18, x_19, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +if (lean_obj_tag(x_20) == 0) { -lean_object* x_20; uint8_t x_21; lean_object* x_22; -x_20 = lean_ctor_get(x_19, 1); -lean_inc(x_20); -lean_dec(x_19); -x_21 = 1; -lean_inc(x_12); -lean_inc(x_1); -x_22 = l_Lean_Meta_mkForallFVars(x_1, x_9, x_17, x_21, x_12, x_13, x_14, x_15, x_20); -if (lean_obj_tag(x_22) == 0) -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_23 = lean_ctor_get(x_22, 0); -lean_inc(x_23); -x_24 = lean_ctor_get(x_22, 1); -lean_inc(x_24); -lean_dec(x_22); -x_25 = lean_ctor_get(x_10, 5); -lean_inc(x_25); -x_26 = l_Std_PersistentArray_toArray___rarg(x_25); -lean_inc(x_12); -x_27 = l_Lean_Meta_mkForallFVars(x_26, x_23, x_17, x_21, x_12, x_13, x_14, x_15, x_24); -if (lean_obj_tag(x_27) == 0) -{ -lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_28 = lean_ctor_get(x_27, 0); -lean_inc(x_28); -x_29 = lean_ctor_get(x_27, 1); -lean_inc(x_29); -lean_dec(x_27); -lean_inc(x_15); -lean_inc(x_14); -lean_inc(x_13); -lean_inc(x_12); -x_30 = l_Lean_Meta_instantiateMVars(x_28, x_12, x_13, x_14, x_15, x_29); -if (lean_obj_tag(x_30) == 0) -{ -lean_object* x_31; lean_object* x_32; lean_object* x_33; -x_31 = lean_ctor_get(x_30, 0); -lean_inc(x_31); -x_32 = lean_ctor_get(x_30, 1); -lean_inc(x_32); -lean_dec(x_30); -lean_inc(x_14); -lean_inc(x_12); -lean_inc(x_10); -x_33 = l_Lean_Elab_Term_addAutoBoundImplicits(x_1, x_10, x_11, x_12, x_13, x_14, x_15, x_32); -if (lean_obj_tag(x_33) == 0) -{ -lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -x_35 = lean_ctor_get(x_33, 1); -lean_inc(x_35); -lean_dec(x_33); -x_36 = l_Lean_Elab_Term_getLevelNames___rarg(x_11, x_12, x_13, x_14, x_15, x_35); -x_37 = lean_ctor_get(x_2, 4); -lean_inc(x_37); -if (lean_obj_tag(x_37) == 0) -{ -lean_object* x_38; lean_object* x_39; lean_object* x_40; -x_38 = lean_ctor_get(x_36, 0); -lean_inc(x_38); -x_39 = lean_ctor_get(x_36, 1); -lean_inc(x_39); -lean_dec(x_36); -x_40 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__1(x_2, x_34, x_3, x_4, x_5, x_6, x_38, x_31, x_7, x_8, x_18, x_10, x_11, x_12, x_13, x_14, x_15, x_39); -lean_dec(x_8); -lean_dec(x_34); -lean_dec(x_2); -return x_40; -} -else -{ -lean_object* x_41; lean_object* x_42; lean_object* x_43; -lean_dec(x_37); -x_41 = lean_ctor_get(x_36, 0); -lean_inc(x_41); -x_42 = lean_ctor_get(x_36, 1); -lean_inc(x_42); -lean_dec(x_36); -lean_inc(x_15); -lean_inc(x_14); -lean_inc(x_13); -lean_inc(x_12); -lean_inc(x_31); -x_43 = l_Lean_Meta_getMVars(x_31, x_12, x_13, x_14, x_15, x_42); -if (lean_obj_tag(x_43) == 0) -{ -lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; -x_44 = lean_ctor_get(x_43, 0); -lean_inc(x_44); -x_45 = lean_ctor_get(x_43, 1); -lean_inc(x_45); -lean_dec(x_43); -x_46 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__2___closed__3; -lean_inc(x_15); -lean_inc(x_14); -lean_inc(x_13); -lean_inc(x_12); -lean_inc(x_11); -lean_inc(x_10); -x_47 = l_Lean_Elab_Term_logUnassignedUsingErrorInfos(x_44, x_46, x_10, x_11, x_12, x_13, x_14, x_15, x_45); -if (lean_obj_tag(x_47) == 0) -{ -lean_object* x_48; lean_object* x_49; -x_48 = lean_ctor_get(x_47, 1); -lean_inc(x_48); -lean_dec(x_47); -x_49 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__1(x_2, x_34, x_3, x_4, x_5, x_6, x_41, x_31, x_7, x_8, x_18, x_10, x_11, x_12, x_13, x_14, x_15, x_48); -lean_dec(x_8); -lean_dec(x_34); -lean_dec(x_2); -return x_49; -} -else -{ -uint8_t x_50; -lean_dec(x_41); -lean_dec(x_34); -lean_dec(x_31); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_50 = !lean_is_exclusive(x_47); -if (x_50 == 0) -{ -return x_47; -} -else -{ -lean_object* x_51; lean_object* x_52; lean_object* x_53; -x_51 = lean_ctor_get(x_47, 0); -x_52 = lean_ctor_get(x_47, 1); -lean_inc(x_52); -lean_inc(x_51); -lean_dec(x_47); -x_53 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_53, 0, x_51); -lean_ctor_set(x_53, 1, x_52); -return x_53; -} -} -} -else -{ -uint8_t x_54; -lean_dec(x_41); -lean_dec(x_34); -lean_dec(x_31); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_54 = !lean_is_exclusive(x_43); -if (x_54 == 0) -{ -return x_43; -} -else -{ -lean_object* x_55; lean_object* x_56; lean_object* x_57; -x_55 = lean_ctor_get(x_43, 0); -x_56 = lean_ctor_get(x_43, 1); -lean_inc(x_56); -lean_inc(x_55); -lean_dec(x_43); -x_57 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_57, 0, x_55); -lean_ctor_set(x_57, 1, x_56); -return x_57; -} -} -} -} -else -{ -uint8_t x_58; -lean_dec(x_31); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_58 = !lean_is_exclusive(x_33); -if (x_58 == 0) -{ -return x_33; -} -else -{ -lean_object* x_59; lean_object* x_60; lean_object* x_61; -x_59 = lean_ctor_get(x_33, 0); -x_60 = lean_ctor_get(x_33, 1); -lean_inc(x_60); -lean_inc(x_59); -lean_dec(x_33); -x_61 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_61, 0, x_59); -lean_ctor_set(x_61, 1, x_60); -return x_61; -} -} -} -else -{ -uint8_t x_62; -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_62 = !lean_is_exclusive(x_30); -if (x_62 == 0) -{ -return x_30; -} -else -{ -lean_object* x_63; lean_object* x_64; lean_object* x_65; -x_63 = lean_ctor_get(x_30, 0); -x_64 = lean_ctor_get(x_30, 1); -lean_inc(x_64); -lean_inc(x_63); -lean_dec(x_30); -x_65 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_65, 0, x_63); -lean_ctor_set(x_65, 1, x_64); -return x_65; -} -} -} -else -{ -uint8_t x_66; -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_66 = !lean_is_exclusive(x_27); -if (x_66 == 0) -{ -return x_27; -} -else -{ -lean_object* x_67; lean_object* x_68; lean_object* x_69; -x_67 = lean_ctor_get(x_27, 0); -x_68 = lean_ctor_get(x_27, 1); -lean_inc(x_68); -lean_inc(x_67); -lean_dec(x_27); -x_69 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_69, 0, x_67); -lean_ctor_set(x_69, 1, x_68); -return x_69; -} -} -} -else -{ -uint8_t x_70; -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_70 = !lean_is_exclusive(x_22); -if (x_70 == 0) -{ -return x_22; -} -else -{ -lean_object* x_71; lean_object* x_72; lean_object* x_73; -x_71 = lean_ctor_get(x_22, 0); -x_72 = lean_ctor_get(x_22, 1); -lean_inc(x_72); -lean_inc(x_71); -lean_dec(x_22); -x_73 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_73, 0, x_71); -lean_ctor_set(x_73, 1, x_72); -return x_73; -} -} -} -else -{ -uint8_t x_74; -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_74 = !lean_is_exclusive(x_19); -if (x_74 == 0) -{ -return x_19; -} -else -{ -lean_object* x_75; lean_object* x_76; lean_object* x_77; -x_75 = lean_ctor_get(x_19, 0); -x_76 = lean_ctor_get(x_19, 1); -lean_inc(x_76); -lean_inc(x_75); -lean_dec(x_19); -x_77 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_77, 0, x_75); -lean_ctor_set(x_77, 1, x_76); -return x_77; -} -} -} -} -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { -_start: -{ -lean_object* x_15; -x_15 = lean_ctor_get(x_1, 4); -lean_inc(x_15); -if (lean_obj_tag(x_15) == 0) -{ -lean_object* x_16; lean_object* x_17; lean_object* x_18; -x_16 = lean_ctor_get(x_1, 5); -lean_inc(x_16); -lean_inc(x_16); -x_17 = l_Lean_mkHole(x_16); -lean_inc(x_13); -lean_inc(x_12); -lean_inc(x_11); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -x_18 = l_Lean_Elab_Term_elabType(x_17, x_8, x_9, x_10, x_11, x_12, x_13, x_14); -if (lean_obj_tag(x_18) == 0) -{ -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_19 = lean_ctor_get(x_18, 0); -lean_inc(x_19); -x_20 = lean_ctor_get(x_18, 1); -lean_inc(x_20); -lean_dec(x_18); -lean_inc(x_16); -x_21 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_registerFailedToInferDefTypeInfo(x_19, x_16, x_8, x_9, x_10, x_11, x_12, x_13, x_20); -x_22 = lean_ctor_get(x_21, 1); -lean_inc(x_22); -lean_dec(x_21); -x_23 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__2(x_7, x_1, x_2, x_3, x_4, x_5, x_16, x_6, x_19, x_8, x_9, x_10, x_11, x_12, x_13, x_22); -return x_23; -} -else -{ -uint8_t x_24; -lean_dec(x_16); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_24 = !lean_is_exclusive(x_18); -if (x_24 == 0) -{ -return x_18; -} -else -{ -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_18, 0); -x_26 = lean_ctor_get(x_18, 1); -lean_inc(x_26); -lean_inc(x_25); -lean_dec(x_18); -x_27 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_27, 0, x_25); -lean_ctor_set(x_27, 1, x_26); -return x_27; -} -} -} -else -{ -lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_28 = lean_ctor_get(x_1, 5); -lean_inc(x_28); -x_29 = lean_ctor_get(x_15, 0); -lean_inc(x_29); -lean_dec(x_15); -lean_inc(x_13); -lean_inc(x_12); -lean_inc(x_11); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_29); -x_30 = l_Lean_Elab_Term_elabType(x_29, x_8, x_9, x_10, x_11, x_12, x_13, x_14); -if (lean_obj_tag(x_30) == 0) -{ -lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_31 = lean_ctor_get(x_30, 0); -lean_inc(x_31); -x_32 = lean_ctor_get(x_30, 1); -lean_inc(x_32); -lean_dec(x_30); -x_33 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_registerFailedToInferDefTypeInfo(x_31, x_29, x_8, x_9, x_10, x_11, x_12, x_13, x_32); -x_34 = lean_ctor_get(x_33, 1); -lean_inc(x_34); -lean_dec(x_33); -x_35 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__2(x_7, x_1, x_2, x_3, x_4, x_5, x_28, x_6, x_31, x_8, x_9, x_10, x_11, x_12, x_13, x_34); -return x_35; -} -else -{ -uint8_t x_36; -lean_dec(x_29); -lean_dec(x_28); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_36 = !lean_is_exclusive(x_30); -if (x_36 == 0) -{ -return x_30; -} -else -{ -lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_37 = lean_ctor_get(x_30, 0); -x_38 = lean_ctor_get(x_30, 1); -lean_inc(x_38); -lean_inc(x_37); -lean_dec(x_30); -x_39 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_39, 0, x_37); -lean_ctor_set(x_39, 1, x_38); -return x_39; -} -} -} -} -} -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { -_start: -{ -uint8_t x_12; -x_12 = x_3 < x_2; -if (x_12 == 0) -{ -lean_object* x_13; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_13 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_13, 0, x_4); -lean_ctor_set(x_13, 1, x_11); -return x_13; -} -else -{ -lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_14 = lean_array_uget(x_1, x_3); -x_15 = lean_ctor_get(x_14, 0); -lean_inc(x_15); -x_16 = lean_ctor_get(x_9, 0); -lean_inc(x_16); -x_17 = lean_ctor_get(x_9, 1); -lean_inc(x_17); -x_18 = lean_ctor_get(x_9, 2); -lean_inc(x_18); -x_19 = lean_ctor_get(x_9, 3); -lean_inc(x_19); -x_20 = lean_ctor_get(x_9, 4); -lean_inc(x_20); -x_21 = lean_ctor_get(x_9, 5); +lean_object* x_21; uint8_t x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_20, 1); lean_inc(x_21); -x_22 = lean_ctor_get(x_9, 6); -lean_inc(x_22); -x_23 = lean_ctor_get(x_9, 7); -lean_inc(x_23); -x_24 = l_Lean_replaceRef(x_15, x_19); -lean_dec(x_19); -lean_inc(x_20); -x_25 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_25, 0, x_16); -lean_ctor_set(x_25, 1, x_17); -lean_ctor_set(x_25, 2, x_18); -lean_ctor_set(x_25, 3, x_24); -lean_ctor_set(x_25, 4, x_20); -lean_ctor_set(x_25, 5, x_21); -lean_ctor_set(x_25, 6, x_22); -lean_ctor_set(x_25, 7, x_23); -x_26 = l_Lean_Elab_Term_getLevelNames___rarg(x_6, x_7, x_8, x_25, x_10, x_11); -x_27 = lean_ctor_get(x_26, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_26, 1); -lean_inc(x_28); -lean_dec(x_26); -x_29 = lean_ctor_get(x_14, 2); -lean_inc(x_29); -x_30 = lean_ctor_get(x_14, 1); -lean_inc(x_30); -lean_inc(x_10); +lean_dec(x_20); +x_22 = 1; +lean_inc(x_13); +lean_inc(x_1); +x_23 = l_Lean_Meta_mkForallFVars(x_1, x_10, x_18, x_22, x_13, x_14, x_15, x_16, x_21); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_23, 1); lean_inc(x_25); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); +lean_dec(x_23); +x_26 = lean_ctor_get(x_11, 5); +lean_inc(x_26); +x_27 = l_Std_PersistentArray_toArray___rarg(x_26); +lean_inc(x_13); +x_28 = l_Lean_Meta_mkForallFVars(x_27, x_24, x_18, x_22, x_13, x_14, x_15, x_16, x_25); +if (lean_obj_tag(x_28) == 0) +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_28, 0); +lean_inc(x_29); +x_30 = lean_ctor_get(x_28, 1); lean_inc(x_30); -x_31 = l_Lean_Elab_expandDeclId___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__1(x_20, x_27, x_29, x_30, x_5, x_6, x_7, x_8, x_25, x_10, x_28); +lean_dec(x_28); +lean_inc(x_16); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +x_31 = l_Lean_Meta_instantiateMVars(x_29, x_13, x_14, x_15, x_16, x_30); if (lean_obj_tag(x_31) == 0) { -lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; uint8_t x_40; lean_object* x_41; +lean_object* x_32; lean_object* x_33; lean_object* x_34; x_32 = lean_ctor_get(x_31, 0); lean_inc(x_32); x_33 = lean_ctor_get(x_31, 1); lean_inc(x_33); lean_dec(x_31); -x_34 = lean_ctor_get(x_32, 0); -lean_inc(x_34); -x_35 = lean_ctor_get(x_32, 1); -lean_inc(x_35); -x_36 = lean_ctor_get(x_32, 2); -lean_inc(x_36); -lean_dec(x_32); lean_inc(x_15); +lean_inc(x_13); +lean_inc(x_11); +x_34 = l_Lean_Elab_Term_addAutoBoundImplicits(x_1, x_11, x_12, x_13, x_14, x_15, x_16, x_33); +if (lean_obj_tag(x_34) == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_35 = lean_ctor_get(x_34, 0); lean_inc(x_35); -x_37 = l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10(x_35, x_15, x_5, x_6, x_7, x_8, x_25, x_10, x_33); -x_38 = lean_ctor_get(x_37, 1); -lean_inc(x_38); -lean_dec(x_37); -x_39 = lean_ctor_get(x_30, 1); -lean_inc(x_39); -x_40 = 2; -lean_inc(x_10); -lean_inc(x_25); -lean_inc(x_5); -lean_inc(x_35); -x_41 = l_Lean_Elab_Term_applyAttributesAt(x_35, x_39, x_40, x_5, x_6, x_7, x_8, x_25, x_10, x_38); -lean_dec(x_39); -if (lean_obj_tag(x_41) == 0) -{ -lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_42 = lean_ctor_get(x_41, 1); -lean_inc(x_42); -lean_dec(x_41); -x_43 = lean_ctor_get(x_14, 3); -lean_inc(x_43); -x_44 = l_Lean_Syntax_getArgs(x_43); -lean_dec(x_43); -lean_inc(x_4); -lean_inc(x_35); -x_45 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__3), 14, 6); -lean_closure_set(x_45, 0, x_14); -lean_closure_set(x_45, 1, x_15); -lean_closure_set(x_45, 2, x_30); -lean_closure_set(x_45, 3, x_34); -lean_closure_set(x_45, 4, x_35); -lean_closure_set(x_45, 5, x_4); -x_46 = lean_alloc_closure((void*)(l_Lean_Elab_Term_elabBinders___rarg), 9, 2); -lean_closure_set(x_46, 0, x_44); -lean_closure_set(x_46, 1, x_45); -x_47 = lean_alloc_closure((void*)(l_Lean_Elab_Term_withLevelNames___rarg), 9, 2); -lean_closure_set(x_47, 0, x_36); -lean_closure_set(x_47, 1, x_46); -x_48 = lean_alloc_closure((void*)(l_Lean_Elab_Term_withAutoBoundImplicit___rarg), 8, 1); -lean_closure_set(x_48, 0, x_47); -lean_inc(x_10); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -x_49 = l_Lean_Elab_Term_withDeclName___rarg(x_35, x_48, x_5, x_6, x_7, x_8, x_25, x_10, x_42); -if (lean_obj_tag(x_49) == 0) -{ -lean_object* x_50; lean_object* x_51; lean_object* x_52; size_t x_53; size_t x_54; -x_50 = lean_ctor_get(x_49, 0); -lean_inc(x_50); -x_51 = lean_ctor_get(x_49, 1); -lean_inc(x_51); -lean_dec(x_49); -x_52 = lean_array_push(x_4, x_50); -x_53 = 1; -x_54 = x_3 + x_53; -x_3 = x_54; -x_4 = x_52; -x_11 = x_51; -goto _start; -} -else -{ -uint8_t x_56; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_56 = !lean_is_exclusive(x_49); -if (x_56 == 0) -{ -return x_49; -} -else -{ -lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_57 = lean_ctor_get(x_49, 0); -x_58 = lean_ctor_get(x_49, 1); -lean_inc(x_58); -lean_inc(x_57); -lean_dec(x_49); -x_59 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_59, 0, x_57); -lean_ctor_set(x_59, 1, x_58); -return x_59; -} -} -} -else -{ -uint8_t x_60; -lean_dec(x_36); -lean_dec(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); lean_dec(x_34); -lean_dec(x_30); -lean_dec(x_25); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_60 = !lean_is_exclusive(x_41); -if (x_60 == 0) +x_37 = l_Lean_Elab_Term_getLevelNames___rarg(x_12, x_13, x_14, x_15, x_16, x_36); +x_38 = lean_ctor_get(x_2, 4); +lean_inc(x_38); +if (lean_obj_tag(x_38) == 0) { +lean_object* x_39; lean_object* x_40; lean_object* x_41; +lean_dec(x_9); +x_39 = lean_ctor_get(x_37, 0); +lean_inc(x_39); +x_40 = lean_ctor_get(x_37, 1); +lean_inc(x_40); +lean_dec(x_37); +x_41 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__1(x_2, x_35, x_3, x_4, x_5, x_6, x_39, x_32, x_7, x_8, x_19, x_11, x_12, x_13, x_14, x_15, x_16, x_40); +lean_dec(x_8); +lean_dec(x_35); +lean_dec(x_2); return x_41; } else { -lean_object* x_61; lean_object* x_62; lean_object* x_63; -x_61 = lean_ctor_get(x_41, 0); -x_62 = lean_ctor_get(x_41, 1); -lean_inc(x_62); -lean_inc(x_61); -lean_dec(x_41); -x_63 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_63, 0, x_61); -lean_ctor_set(x_63, 1, x_62); -return x_63; +uint8_t x_42; +x_42 = !lean_is_exclusive(x_38); +if (x_42 == 0) +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_43 = lean_ctor_get(x_38, 0); +lean_dec(x_43); +x_44 = lean_ctor_get(x_37, 0); +lean_inc(x_44); +x_45 = lean_ctor_get(x_37, 1); +lean_inc(x_45); +lean_dec(x_37); +lean_inc(x_16); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_32); +x_46 = l_Lean_Meta_getMVars(x_32, x_13, x_14, x_15, x_16, x_45); +if (lean_obj_tag(x_46) == 0) +{ +lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_47 = lean_ctor_get(x_46, 0); +lean_inc(x_47); +x_48 = lean_ctor_get(x_46, 1); +lean_inc(x_48); +lean_dec(x_46); +x_49 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage(x_9); +lean_dec(x_9); +x_50 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_50, 0, x_49); +x_51 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_38, 0, x_51); +lean_inc(x_16); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +x_52 = l_Lean_Elab_Term_logUnassignedUsingErrorInfos(x_47, x_38, x_11, x_12, x_13, x_14, x_15, x_16, x_48); +if (lean_obj_tag(x_52) == 0) +{ +lean_object* x_53; lean_object* x_54; +x_53 = lean_ctor_get(x_52, 1); +lean_inc(x_53); +lean_dec(x_52); +x_54 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__1(x_2, x_35, x_3, x_4, x_5, x_6, x_44, x_32, x_7, x_8, x_19, x_11, x_12, x_13, x_14, x_15, x_16, x_53); +lean_dec(x_8); +lean_dec(x_35); +lean_dec(x_2); +return x_54; +} +else +{ +uint8_t x_55; +lean_dec(x_44); +lean_dec(x_35); +lean_dec(x_32); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_55 = !lean_is_exclusive(x_52); +if (x_55 == 0) +{ +return x_52; +} +else +{ +lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_56 = lean_ctor_get(x_52, 0); +x_57 = lean_ctor_get(x_52, 1); +lean_inc(x_57); +lean_inc(x_56); +lean_dec(x_52); +x_58 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_58, 0, x_56); +lean_ctor_set(x_58, 1, x_57); +return x_58; } } } else { -uint8_t x_64; -lean_dec(x_30); -lean_dec(x_25); +uint8_t x_59; +lean_dec(x_44); +lean_free_object(x_38); +lean_dec(x_35); +lean_dec(x_32); +lean_dec(x_16); lean_dec(x_15); lean_dec(x_14); -lean_dec(x_10); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_64 = !lean_is_exclusive(x_31); -if (x_64 == 0) +lean_dec(x_3); +lean_dec(x_2); +x_59 = !lean_is_exclusive(x_46); +if (x_59 == 0) +{ +return x_46; +} +else +{ +lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_60 = lean_ctor_get(x_46, 0); +x_61 = lean_ctor_get(x_46, 1); +lean_inc(x_61); +lean_inc(x_60); +lean_dec(x_46); +x_62 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_62, 0, x_60); +lean_ctor_set(x_62, 1, x_61); +return x_62; +} +} +} +else +{ +lean_object* x_63; lean_object* x_64; lean_object* x_65; +lean_dec(x_38); +x_63 = lean_ctor_get(x_37, 0); +lean_inc(x_63); +x_64 = lean_ctor_get(x_37, 1); +lean_inc(x_64); +lean_dec(x_37); +lean_inc(x_16); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_32); +x_65 = l_Lean_Meta_getMVars(x_32, x_13, x_14, x_15, x_16, x_64); +if (lean_obj_tag(x_65) == 0) +{ +lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; +x_66 = lean_ctor_get(x_65, 0); +lean_inc(x_66); +x_67 = lean_ctor_get(x_65, 1); +lean_inc(x_67); +lean_dec(x_65); +x_68 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage(x_9); +lean_dec(x_9); +x_69 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_69, 0, x_68); +x_70 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_70, 0, x_69); +x_71 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_71, 0, x_70); +lean_inc(x_16); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +x_72 = l_Lean_Elab_Term_logUnassignedUsingErrorInfos(x_66, x_71, x_11, x_12, x_13, x_14, x_15, x_16, x_67); +if (lean_obj_tag(x_72) == 0) +{ +lean_object* x_73; lean_object* x_74; +x_73 = lean_ctor_get(x_72, 1); +lean_inc(x_73); +lean_dec(x_72); +x_74 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__1(x_2, x_35, x_3, x_4, x_5, x_6, x_63, x_32, x_7, x_8, x_19, x_11, x_12, x_13, x_14, x_15, x_16, x_73); +lean_dec(x_8); +lean_dec(x_35); +lean_dec(x_2); +return x_74; +} +else +{ +lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +lean_dec(x_63); +lean_dec(x_35); +lean_dec(x_32); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_75 = lean_ctor_get(x_72, 0); +lean_inc(x_75); +x_76 = lean_ctor_get(x_72, 1); +lean_inc(x_76); +if (lean_is_exclusive(x_72)) { + lean_ctor_release(x_72, 0); + lean_ctor_release(x_72, 1); + x_77 = x_72; +} else { + lean_dec_ref(x_72); + x_77 = lean_box(0); +} +if (lean_is_scalar(x_77)) { + x_78 = lean_alloc_ctor(1, 2, 0); +} else { + x_78 = x_77; +} +lean_ctor_set(x_78, 0, x_75); +lean_ctor_set(x_78, 1, x_76); +return x_78; +} +} +else +{ +lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; +lean_dec(x_63); +lean_dec(x_35); +lean_dec(x_32); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_79 = lean_ctor_get(x_65, 0); +lean_inc(x_79); +x_80 = lean_ctor_get(x_65, 1); +lean_inc(x_80); +if (lean_is_exclusive(x_65)) { + lean_ctor_release(x_65, 0); + lean_ctor_release(x_65, 1); + x_81 = x_65; +} else { + lean_dec_ref(x_65); + x_81 = lean_box(0); +} +if (lean_is_scalar(x_81)) { + x_82 = lean_alloc_ctor(1, 2, 0); +} else { + x_82 = x_81; +} +lean_ctor_set(x_82, 0, x_79); +lean_ctor_set(x_82, 1, x_80); +return x_82; +} +} +} +} +else +{ +uint8_t x_83; +lean_dec(x_32); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_83 = !lean_is_exclusive(x_34); +if (x_83 == 0) +{ +return x_34; +} +else +{ +lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_84 = lean_ctor_get(x_34, 0); +x_85 = lean_ctor_get(x_34, 1); +lean_inc(x_85); +lean_inc(x_84); +lean_dec(x_34); +x_86 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_86, 0, x_84); +lean_ctor_set(x_86, 1, x_85); +return x_86; +} +} +} +else +{ +uint8_t x_87; +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_87 = !lean_is_exclusive(x_31); +if (x_87 == 0) { return x_31; } else { -lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_65 = lean_ctor_get(x_31, 0); -x_66 = lean_ctor_get(x_31, 1); -lean_inc(x_66); -lean_inc(x_65); +lean_object* x_88; lean_object* x_89; lean_object* x_90; +x_88 = lean_ctor_get(x_31, 0); +x_89 = lean_ctor_get(x_31, 1); +lean_inc(x_89); +lean_inc(x_88); lean_dec(x_31); -x_67 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_67, 0, x_65); -lean_ctor_set(x_67, 1, x_66); -return x_67; +x_90 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_90, 0, x_88); +lean_ctor_set(x_90, 1, x_89); +return x_90; +} +} +} +else +{ +uint8_t x_91; +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_91 = !lean_is_exclusive(x_28); +if (x_91 == 0) +{ +return x_28; +} +else +{ +lean_object* x_92; lean_object* x_93; lean_object* x_94; +x_92 = lean_ctor_get(x_28, 0); +x_93 = lean_ctor_get(x_28, 1); +lean_inc(x_93); +lean_inc(x_92); +lean_dec(x_28); +x_94 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_94, 0, x_92); +lean_ctor_set(x_94, 1, x_93); +return x_94; +} +} +} +else +{ +uint8_t x_95; +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_95 = !lean_is_exclusive(x_23); +if (x_95 == 0) +{ +return x_23; +} +else +{ +lean_object* x_96; lean_object* x_97; lean_object* x_98; +x_96 = lean_ctor_get(x_23, 0); +x_97 = lean_ctor_get(x_23, 1); +lean_inc(x_97); +lean_inc(x_96); +lean_dec(x_23); +x_98 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_98, 0, x_96); +lean_ctor_set(x_98, 1, x_97); +return x_98; +} +} +} +else +{ +uint8_t x_99; +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_99 = !lean_is_exclusive(x_20); +if (x_99 == 0) +{ +return x_20; +} +else +{ +lean_object* x_100; lean_object* x_101; lean_object* x_102; +x_100 = lean_ctor_get(x_20, 0); +x_101 = lean_ctor_get(x_20, 1); +lean_inc(x_101); +lean_inc(x_100); +lean_dec(x_20); +x_102 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_102, 0, x_100); +lean_ctor_set(x_102, 1, x_101); +return x_102; +} +} +} +} +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +_start: +{ +lean_object* x_16; +x_16 = lean_ctor_get(x_1, 4); +lean_inc(x_16); +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_17 = lean_ctor_get(x_1, 5); +lean_inc(x_17); +lean_inc(x_17); +x_18 = l_Lean_mkHole(x_17); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +x_19 = l_Lean_Elab_Term_elabType(x_18, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_19) == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +x_21 = lean_ctor_get(x_19, 1); +lean_inc(x_21); +lean_dec(x_19); +lean_inc(x_17); +x_22 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_registerFailedToInferDefTypeInfo(x_20, x_17, x_9, x_10, x_11, x_12, x_13, x_14, x_21); +x_23 = lean_ctor_get(x_22, 1); +lean_inc(x_23); +lean_dec(x_22); +x_24 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__2(x_8, x_1, x_2, x_3, x_4, x_5, x_17, x_6, x_7, x_20, x_9, x_10, x_11, x_12, x_13, x_14, x_23); +return x_24; +} +else +{ +uint8_t x_25; +lean_dec(x_17); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_25 = !lean_is_exclusive(x_19); +if (x_25 == 0) +{ +return x_19; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_19, 0); +x_27 = lean_ctor_get(x_19, 1); +lean_inc(x_27); +lean_inc(x_26); +lean_dec(x_19); +x_28 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_28, 0, x_26); +lean_ctor_set(x_28, 1, x_27); +return x_28; +} +} +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_1, 5); +lean_inc(x_29); +x_30 = lean_ctor_get(x_16, 0); +lean_inc(x_30); +lean_dec(x_16); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_30); +x_31 = l_Lean_Elab_Term_elabType(x_30, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +if (lean_obj_tag(x_31) == 0) +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_32 = lean_ctor_get(x_31, 0); +lean_inc(x_32); +x_33 = lean_ctor_get(x_31, 1); +lean_inc(x_33); +lean_dec(x_31); +x_34 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_registerFailedToInferDefTypeInfo(x_32, x_30, x_9, x_10, x_11, x_12, x_13, x_14, x_33); +x_35 = lean_ctor_get(x_34, 1); +lean_inc(x_35); +lean_dec(x_34); +x_36 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__2(x_8, x_1, x_2, x_3, x_4, x_5, x_29, x_6, x_7, x_32, x_9, x_10, x_11, x_12, x_13, x_14, x_35); +return x_36; +} +else +{ +uint8_t x_37; +lean_dec(x_30); +lean_dec(x_29); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_37 = !lean_is_exclusive(x_31); +if (x_37 == 0) +{ +return x_31; +} +else +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_38 = lean_ctor_get(x_31, 0); +x_39 = lean_ctor_get(x_31, 1); +lean_inc(x_39); +lean_inc(x_38); +lean_dec(x_31); +x_40 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_40, 0, x_38); +lean_ctor_set(x_40, 1, x_39); +return x_40; +} +} +} +} +} +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +uint8_t x_13; +x_13 = x_4 < x_3; +if (x_13 == 0) +{ +lean_object* x_14; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_5); +lean_ctor_set(x_14, 1, x_12); +return x_14; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_15 = lean_array_uget(x_2, x_4); +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_10, 0); +lean_inc(x_17); +x_18 = lean_ctor_get(x_10, 1); +lean_inc(x_18); +x_19 = lean_ctor_get(x_10, 2); +lean_inc(x_19); +x_20 = lean_ctor_get(x_10, 3); +lean_inc(x_20); +x_21 = lean_ctor_get(x_10, 4); +lean_inc(x_21); +x_22 = lean_ctor_get(x_10, 5); +lean_inc(x_22); +x_23 = lean_ctor_get(x_10, 6); +lean_inc(x_23); +x_24 = lean_ctor_get(x_10, 7); +lean_inc(x_24); +x_25 = l_Lean_replaceRef(x_16, x_20); +lean_dec(x_20); +lean_inc(x_21); +x_26 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_26, 0, x_17); +lean_ctor_set(x_26, 1, x_18); +lean_ctor_set(x_26, 2, x_19); +lean_ctor_set(x_26, 3, x_25); +lean_ctor_set(x_26, 4, x_21); +lean_ctor_set(x_26, 5, x_22); +lean_ctor_set(x_26, 6, x_23); +lean_ctor_set(x_26, 7, x_24); +x_27 = l_Lean_Elab_Term_getLevelNames___rarg(x_7, x_8, x_9, x_26, x_11, x_12); +x_28 = lean_ctor_get(x_27, 0); +lean_inc(x_28); +x_29 = lean_ctor_get(x_27, 1); +lean_inc(x_29); +lean_dec(x_27); +x_30 = lean_ctor_get(x_15, 2); +lean_inc(x_30); +x_31 = lean_ctor_get(x_15, 1); +lean_inc(x_31); +lean_inc(x_11); +lean_inc(x_26); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_31); +x_32 = l_Lean_Elab_expandDeclId___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__1(x_21, x_28, x_30, x_31, x_6, x_7, x_8, x_9, x_26, x_11, x_29); +if (lean_obj_tag(x_32) == 0) +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; uint8_t x_41; lean_object* x_42; +x_33 = lean_ctor_get(x_32, 0); +lean_inc(x_33); +x_34 = lean_ctor_get(x_32, 1); +lean_inc(x_34); +lean_dec(x_32); +x_35 = lean_ctor_get(x_33, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_33, 1); +lean_inc(x_36); +x_37 = lean_ctor_get(x_33, 2); +lean_inc(x_37); +lean_dec(x_33); +lean_inc(x_16); +lean_inc(x_36); +x_38 = l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10(x_36, x_16, x_6, x_7, x_8, x_9, x_26, x_11, x_34); +x_39 = lean_ctor_get(x_38, 1); +lean_inc(x_39); +lean_dec(x_38); +x_40 = lean_ctor_get(x_31, 1); +lean_inc(x_40); +x_41 = 2; +lean_inc(x_11); +lean_inc(x_26); +lean_inc(x_6); +lean_inc(x_36); +x_42 = l_Lean_Elab_Term_applyAttributesAt(x_36, x_40, x_41, x_6, x_7, x_8, x_9, x_26, x_11, x_39); +lean_dec(x_40); +if (lean_obj_tag(x_42) == 0) +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_43 = lean_ctor_get(x_42, 1); +lean_inc(x_43); +lean_dec(x_42); +x_44 = lean_ctor_get(x_15, 3); +lean_inc(x_44); +x_45 = l_Lean_Syntax_getArgs(x_44); +lean_dec(x_44); +lean_inc(x_1); +lean_inc(x_5); +lean_inc(x_36); +x_46 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__3), 15, 7); +lean_closure_set(x_46, 0, x_15); +lean_closure_set(x_46, 1, x_16); +lean_closure_set(x_46, 2, x_31); +lean_closure_set(x_46, 3, x_35); +lean_closure_set(x_46, 4, x_36); +lean_closure_set(x_46, 5, x_5); +lean_closure_set(x_46, 6, x_1); +x_47 = lean_alloc_closure((void*)(l_Lean_Elab_Term_elabBinders___rarg), 9, 2); +lean_closure_set(x_47, 0, x_45); +lean_closure_set(x_47, 1, x_46); +x_48 = lean_alloc_closure((void*)(l_Lean_Elab_Term_withLevelNames___rarg), 9, 2); +lean_closure_set(x_48, 0, x_37); +lean_closure_set(x_48, 1, x_47); +x_49 = lean_alloc_closure((void*)(l_Lean_Elab_Term_withAutoBoundImplicit___rarg), 8, 1); +lean_closure_set(x_49, 0, x_48); +lean_inc(x_11); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_50 = l_Lean_Elab_Term_withDeclName___rarg(x_36, x_49, x_6, x_7, x_8, x_9, x_26, x_11, x_43); +if (lean_obj_tag(x_50) == 0) +{ +lean_object* x_51; lean_object* x_52; lean_object* x_53; size_t x_54; size_t x_55; +x_51 = lean_ctor_get(x_50, 0); +lean_inc(x_51); +x_52 = lean_ctor_get(x_50, 1); +lean_inc(x_52); +lean_dec(x_50); +x_53 = lean_array_push(x_5, x_51); +x_54 = 1; +x_55 = x_4 + x_54; +x_4 = x_55; +x_5 = x_53; +x_12 = x_52; +goto _start; +} +else +{ +uint8_t x_57; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_57 = !lean_is_exclusive(x_50); +if (x_57 == 0) +{ +return x_50; +} +else +{ +lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_58 = lean_ctor_get(x_50, 0); +x_59 = lean_ctor_get(x_50, 1); +lean_inc(x_59); +lean_inc(x_58); +lean_dec(x_50); +x_60 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_60, 0, x_58); +lean_ctor_set(x_60, 1, x_59); +return x_60; +} +} +} +else +{ +uint8_t x_61; +lean_dec(x_37); +lean_dec(x_36); +lean_dec(x_35); +lean_dec(x_31); +lean_dec(x_26); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_61 = !lean_is_exclusive(x_42); +if (x_61 == 0) +{ +return x_42; +} +else +{ +lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_62 = lean_ctor_get(x_42, 0); +x_63 = lean_ctor_get(x_42, 1); +lean_inc(x_63); +lean_inc(x_62); +lean_dec(x_42); +x_64 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_64, 0, x_62); +lean_ctor_set(x_64, 1, x_63); +return x_64; +} +} +} +else +{ +uint8_t x_65; +lean_dec(x_31); +lean_dec(x_26); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_65 = !lean_is_exclusive(x_32); +if (x_65 == 0) +{ +return x_32; +} +else +{ +lean_object* x_66; lean_object* x_67; lean_object* x_68; +x_66 = lean_ctor_get(x_32, 0); +x_67 = lean_ctor_get(x_32, 1); +lean_inc(x_67); +lean_inc(x_66); +lean_dec(x_32); +x_68 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_68, 0, x_66); +lean_ctor_set(x_68, 1, x_67); +return x_68; } } } @@ -4982,7 +5562,9 @@ x_10 = lean_usize_of_nat(x_9); lean_dec(x_9); x_11 = 0; x_12 = l_Lean_Elab_instInhabitedDefViewElabHeader___closed__1; -x_13 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13(x_1, x_10, x_11, x_12, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_inc(x_1); +x_13 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13(x_1, x_1, x_10, x_11, x_12, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_1); if (lean_obj_tag(x_13) == 0) { uint8_t x_14; @@ -5219,26 +5801,42 @@ lean_dec(x_1); return x_19; } } -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__2___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; _start: { -size_t x_12; size_t x_13; lean_object* x_14; -x_12 = lean_unbox_usize(x_2); -lean_dec(x_2); +lean_object* x_18; +x_18 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +return x_18; +} +} +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +size_t x_13; size_t x_14; lean_object* x_15; x_13 = lean_unbox_usize(x_3); lean_dec(x_3); -x_14 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -lean_dec(x_1); -return x_14; -} -} -lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { -_start: -{ -lean_object* x_9; -x_9 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_1); -return x_9; +x_14 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_15 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13(x_1, x_2, x_13, x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_2); +return x_15; } } lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_withFunLocalDecls_loop___rarg___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { @@ -5970,7 +6568,7 @@ x_20 = lean_name_mk_string(x_1, x_19); x_21 = lean_usize_of_nat(x_9); lean_dec(x_9); x_22 = x_3; -x_23 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_21, x_4, x_22); +x_23 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_21, x_4, x_22); x_24 = x_23; x_25 = l_Lean_Elab_instInhabitedDefViewElabHeader___closed__1; x_26 = l_Array_append___rarg(x_25, x_24); @@ -6338,7 +6936,7 @@ x_34 = l_Lean_Syntax_getArg(x_22, x_33); x_35 = l_Lean_Syntax_getArgs(x_34); lean_dec(x_34); x_36 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__2___closed__3; -x_37 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__1(x_35, x_36); +x_37 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__1(x_35, x_36); lean_dec(x_35); if (lean_obj_tag(x_37) == 0) { @@ -6733,7 +7331,7 @@ static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expa _start: { lean_object* x_1; -x_1 = lean_mk_string("Term"); +x_1 = lean_mk_string("whereDecls"); return x_1; } } @@ -6741,7 +7339,7 @@ static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expa _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__4; +x_1 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__6; x_2 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -6750,32 +7348,14 @@ return x_3; static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__3() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("whereDecls"); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__2; -x_2 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__3; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__5() { -_start: -{ lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__2; +x_1 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__6; x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___lambda__2), 2, 1); lean_closure_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__6() { +static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__4() { _start: { lean_object* x_1; @@ -6783,17 +7363,17 @@ x_1 = lean_mk_string("structInst"); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__7() { +static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__2; -x_2 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__6; +x_1 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__6; +x_2 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__8() { +static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__6() { _start: { lean_object* x_1; @@ -6801,7 +7381,7 @@ x_1 = lean_mk_string("{"); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__9() { +static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__7() { _start: { lean_object* x_1; @@ -6809,17 +7389,17 @@ x_1 = lean_mk_string("optEllipsis"); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__10() { +static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__2; -x_2 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__9; +x_1 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__6; +x_2 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__11() { +static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -6829,19 +7409,19 @@ x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__12() { +static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__10; -x_2 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__11; +x_1 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__8; +x_2 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__9; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__13() { +static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__11() { _start: { lean_object* x_1; @@ -6849,7 +7429,7 @@ x_1 = lean_mk_string("}"); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__14() { +static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__12() { _start: { lean_object* x_1; lean_object* x_2; @@ -6871,7 +7451,7 @@ lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsA _start: { lean_object* x_4; uint8_t x_5; -x_4 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__4; +x_4 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__2; lean_inc(x_1); x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); if (x_5 == 0) @@ -6893,8 +7473,8 @@ x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); x_10 = l_Lean_Syntax_getArgs(x_9); lean_dec(x_9); -x_11 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__5; -x_12 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__1(x_10, x_11); +x_11 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__3; +x_12 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__1(x_10, x_11); lean_dec(x_10); if (lean_obj_tag(x_12) == 0) { @@ -6917,7 +7497,7 @@ x_17 = lean_usize_of_nat(x_16); lean_dec(x_16); x_18 = 0; x_19 = x_15; -x_20 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__2; +x_20 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__6; x_21 = lean_box_usize(x_17); x_22 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___boxed__const__1; x_23 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__1___boxed), 6, 4); @@ -6966,7 +7546,7 @@ if (x_40 == 0) { lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; size_t x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; x_41 = lean_ctor_get(x_39, 0); -x_42 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__8; +x_42 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__6; lean_inc(x_41); x_43 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_43, 0, x_41); @@ -6984,20 +7564,20 @@ x_51 = l_Array_append___rarg(x_50, x_49); x_52 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_52, 0, x_47); lean_ctor_set(x_52, 1, x_51); -x_53 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__13; +x_53 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__11; x_54 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_54, 0, x_41); lean_ctor_set(x_54, 1, x_53); -x_55 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__14; +x_55 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__12; x_56 = lean_array_push(x_55, x_43); x_57 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__2___lambda__2___closed__5; x_58 = lean_array_push(x_56, x_57); x_59 = lean_array_push(x_58, x_52); -x_60 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__12; +x_60 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__10; x_61 = lean_array_push(x_59, x_60); x_62 = lean_array_push(x_61, x_57); x_63 = lean_array_push(x_62, x_54); -x_64 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__7; +x_64 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__5; x_65 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_65, 0, x_64); lean_ctor_set(x_65, 1, x_63); @@ -7012,7 +7592,7 @@ x_67 = lean_ctor_get(x_39, 1); lean_inc(x_67); lean_inc(x_66); lean_dec(x_39); -x_68 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__8; +x_68 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__6; lean_inc(x_66); x_69 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_69, 0, x_66); @@ -7030,20 +7610,20 @@ x_77 = l_Array_append___rarg(x_76, x_75); x_78 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_78, 0, x_73); lean_ctor_set(x_78, 1, x_77); -x_79 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__13; +x_79 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__11; x_80 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_80, 0, x_66); lean_ctor_set(x_80, 1, x_79); -x_81 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__14; +x_81 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__12; x_82 = lean_array_push(x_81, x_69); x_83 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__2___lambda__2___closed__5; x_84 = lean_array_push(x_82, x_83); x_85 = lean_array_push(x_84, x_78); -x_86 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__12; +x_86 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__10; x_87 = lean_array_push(x_85, x_86); x_88 = lean_array_push(x_87, x_83); x_89 = lean_array_push(x_88, x_80); -x_90 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__7; +x_90 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__5; x_91 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_91, 0, x_90); lean_ctor_set(x_91, 1, x_89); @@ -7192,7 +7772,7 @@ static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_decl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__6; +x_1 = l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__2; x_2 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_declValToTerm___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -7210,7 +7790,7 @@ static lean_object* _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_decl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__6; +x_1 = l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__2; x_2 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_declValToTerm___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -7256,7 +7836,7 @@ x_10 = l_Lean_Syntax_isOfKind(x_1, x_9); if (x_10 == 0) { lean_object* x_11; uint8_t x_12; -x_11 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__4; +x_11 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__2; lean_inc(x_1); x_12 = l_Lean_Syntax_isOfKind(x_1, x_11); if (x_12 == 0) @@ -7345,7 +7925,7 @@ x_36 = l_Lean_Syntax_isOfKind(x_1, x_35); if (x_36 == 0) { lean_object* x_37; uint8_t x_38; -x_37 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__4; +x_37 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__2; lean_inc(x_1); x_38 = l_Lean_Syntax_isOfKind(x_1, x_37); if (x_38 == 0) @@ -19408,6 +19988,7 @@ lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); +lean_inc(x_2); x_13 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_12); if (lean_obj_tag(x_13) == 0) { @@ -19424,6 +20005,7 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); x_16 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_levelMVarToParamHeaders(x_2, x_14, x_3, x_4, x_5, x_6, x_7, x_8, x_15); +lean_dec(x_2); if (lean_obj_tag(x_16) == 0) { lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; @@ -19483,6 +20065,7 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); +lean_dec(x_2); lean_dec(x_1); x_26 = !lean_is_exclusive(x_13); if (x_26 == 0) @@ -19524,15 +20107,6 @@ lean_dec(x_4); return x_13; } } -lean_object* l_Lean_Elab_Term_elabMutualDef_go___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { -_start: -{ -lean_object* x_10; -x_10 = l_Lean_Elab_Term_elabMutualDef_go(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_2); -return x_10; -} -} lean_object* l_Lean_Elab_Term_elabMutualDef(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { @@ -19639,15 +20213,6 @@ return x_30; } } } -lean_object* l_Lean_Elab_Term_elabMutualDef___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { -_start: -{ -lean_object* x_10; -x_10 = l_Lean_Elab_Term_elabMutualDef(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_2); -return x_10; -} -} lean_object* l_Lean_Elab_elabAttr___at_Lean_Elab_Command_elabMutualDef___spec__4___lambda__1(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { @@ -19770,7 +20335,7 @@ static lean_object* _init_l_Lean_Elab_elabAttr___at_Lean_Elab_Command_elabMutual _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__4; +x_1 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__4; x_2 = l_Lean_Elab_elabAttr___at_Lean_Elab_Command_elabMutualDef___spec__4___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -20468,7 +21033,7 @@ static lean_object* _init_l_Lean_Elab_elabModifiers___at_Lean_Elab_Command_elabM _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__6; +x_1 = l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__2; x_2 = l_Lean_Elab_elabModifiers___at_Lean_Elab_Command_elabMutualDef___spec__1___lambda__3___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -20486,7 +21051,7 @@ static lean_object* _init_l_Lean_Elab_elabModifiers___at_Lean_Elab_Command_elabM _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__6; +x_1 = l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__2; x_2 = l_Lean_Elab_elabModifiers___at_Lean_Elab_Command_elabMutualDef___spec__1___lambda__3___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -20614,7 +21179,7 @@ static lean_object* _init_l_Lean_Elab_elabModifiers___at_Lean_Elab_Command_elabM _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__6; +x_1 = l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__2; x_2 = l_Lean_Elab_elabModifiers___at_Lean_Elab_Command_elabMutualDef___spec__1___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -21168,7 +21733,7 @@ lean_inc(x_33); x_34 = lean_ctor_get(x_32, 1); lean_inc(x_34); lean_dec(x_32); -x_35 = lean_alloc_closure((void*)(l_Lean_Elab_Term_elabMutualDef___boxed), 9, 2); +x_35 = lean_alloc_closure((void*)(l_Lean_Elab_Term_elabMutualDef), 9, 2); lean_closure_set(x_35, 0, x_33); lean_closure_set(x_35, 1, x_3); x_36 = l_Lean_Elab_Term_withoutAutoBoundImplicit___rarg(x_35, x_5, x_6, x_7, x_8, x_9, x_10, x_34); @@ -21255,7 +21820,7 @@ lean_inc(x_56); x_57 = lean_ctor_get(x_55, 1); lean_inc(x_57); lean_dec(x_55); -x_58 = lean_alloc_closure((void*)(l_Lean_Elab_Term_elabMutualDef___boxed), 9, 2); +x_58 = lean_alloc_closure((void*)(l_Lean_Elab_Term_elabMutualDef), 9, 2); lean_closure_set(x_58, 0, x_56); lean_closure_set(x_58, 1, x_3); x_59 = l_Lean_Elab_Term_withoutAutoBoundImplicit___rarg(x_58, x_52, x_6, x_7, x_8, x_9, x_10, x_57); @@ -21671,6 +22236,44 @@ l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_registerFailedToInferDefTypeIn lean_mark_persistent(l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_registerFailedToInferDefTypeInfo___closed__2); l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_registerFailedToInferDefTypeInfo___closed__3 = _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_registerFailedToInferDefTypeInfo___closed__3(); lean_mark_persistent(l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_registerFailedToInferDefTypeInfo___closed__3); +l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__1 = _init_l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__1(); +lean_mark_persistent(l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__1); +l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__2 = _init_l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__2(); +lean_mark_persistent(l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__2); +l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__3 = _init_l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__3(); +lean_mark_persistent(l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__3); +l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__4 = _init_l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__4(); +lean_mark_persistent(l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__4); +l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__5 = _init_l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__5(); +lean_mark_persistent(l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__5); +l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__6 = _init_l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__6(); +lean_mark_persistent(l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__6); +l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__7 = _init_l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__7(); +lean_mark_persistent(l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__7); +l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__8 = _init_l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__8(); +lean_mark_persistent(l_Array_anyMUnsafe_any___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___spec__1___closed__8); +l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___lambda__1___closed__1 = _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___lambda__1___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___lambda__1___closed__1); +l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___closed__1 = _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_isMultiConstant_x3f___closed__1); +l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___lambda__1___closed__1 = _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___lambda__1___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___lambda__1___closed__1); +l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___lambda__2___closed__1 = _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___lambda__2___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___lambda__2___closed__1); +l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___lambda__2___closed__2 = _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___lambda__2___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___lambda__2___closed__2); +l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__1 = _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__1); +l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__2 = _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__2); +l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__3 = _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__3); +l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__4 = _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__4); +l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__5 = _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__5); +l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__6 = _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_getPendindMVarErrorMessage___closed__6); l_Lean_Elab_checkNotAlreadyDeclared___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__4___lambda__1___closed__1 = _init_l_Lean_Elab_checkNotAlreadyDeclared___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__4___lambda__1___closed__1(); lean_mark_persistent(l_Lean_Elab_checkNotAlreadyDeclared___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__4___lambda__1___closed__1); l_Lean_Elab_checkNotAlreadyDeclared___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__4___lambda__1___closed__2 = _init_l_Lean_Elab_checkNotAlreadyDeclared___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__4___lambda__1___closed__2(); @@ -21713,20 +22316,6 @@ l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab lean_mark_persistent(l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__3); l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__4 = _init_l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__4(); lean_mark_persistent(l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__4); -l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__5 = _init_l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__5(); -lean_mark_persistent(l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__5); -l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__6 = _init_l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__6(); -lean_mark_persistent(l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__6); -l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__7 = _init_l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__7(); -lean_mark_persistent(l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__7); -l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__8 = _init_l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__8(); -lean_mark_persistent(l_Lean_Elab_addDeclarationRanges___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___closed__8); -l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__2___closed__1 = _init_l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__2___closed__1(); -lean_mark_persistent(l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__2___closed__1); -l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__2___closed__2 = _init_l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__2___closed__2(); -lean_mark_persistent(l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__2___closed__2); -l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__2___closed__3 = _init_l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__2___closed__3(); -lean_mark_persistent(l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__13___lambda__2___closed__3); l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__1___closed__1 = _init_l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__1___closed__1(); lean_mark_persistent(l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__1___closed__1); l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__1___closed__2 = _init_l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__1___closed__2(); @@ -21815,10 +22404,6 @@ l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst__ lean_mark_persistent(l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__11); l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__12 = _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__12(); lean_mark_persistent(l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__12); -l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__13 = _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__13(); -lean_mark_persistent(l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__13); -l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__14 = _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__14(); -lean_mark_persistent(l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___closed__14); l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___boxed__const__1 = _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___boxed__const__1(); lean_mark_persistent(l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___boxed__const__1); l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_declValToTerm___closed__1 = _init_l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_declValToTerm___closed__1(); diff --git a/stage0/stdlib/Lean/Elab/Notation.c b/stage0/stdlib/Lean/Elab/Notation.c index 3ee538a881..5912116966 100644 --- a/stage0/stdlib/Lean/Elab/Notation.c +++ b/stage0/stdlib/Lean/Elab/Notation.c @@ -201,6 +201,7 @@ lean_object* l_Lean_Name_append(lean_object*, lean_object*); lean_object* l_Lean_Macro_resolveGlobalName(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Notation_0__Lean_Elab_Command_expandNotationAux___lambda__2___closed__2; lean_object* l_Lean_Syntax_getKind(lean_object*); +lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(size_t, size_t, lean_object*); lean_object* l_Lean_Elab_Command_expandNotation_match__1___rarg___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_expandNotationItemIntoSyntaxItem___closed__12; uint8_t l___private_Lean_Elab_Notation_0__Lean_Elab_Command_antiquote___lambda__1(lean_object*, lean_object*); @@ -233,7 +234,6 @@ static lean_object* l_Lean_Elab_Command_mkSimpleDelab___closed__71; static lean_object* l_Lean_Elab_Command_mkSimpleDelab___closed__7; lean_object* l_Lean_Elab_Command_expandNotation_match__1(lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Notation_0__Lean_Elab_Command_expandNotationAux___spec__1(size_t, size_t, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(size_t, size_t, lean_object*); static lean_object* l_Lean_Elab_Command_mkSimpleDelab___closed__24; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Notation_0__Lean_Elab_Command_expandNotationAux___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_syntax_ident(lean_object*); @@ -8461,7 +8461,7 @@ x_170 = lean_array_get_size(x_9); x_171 = lean_usize_of_nat(x_170); lean_dec(x_170); x_172 = x_9; -x_173 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_171, x_3, x_172); +x_173 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_171, x_3, x_172); x_174 = x_173; x_175 = l_Lean_Elab_Command_mkSimpleDelab___closed__11; x_176 = l_Array_append___rarg(x_175, x_174); diff --git a/stage0/stdlib/Lean/Elab/Quotation.c b/stage0/stdlib/Lean/Elab/Quotation.c index b12a2e133e..324e107dc6 100644 --- a/stage0/stdlib/Lean/Elab/Quotation.c +++ b/stage0/stdlib/Lean/Elab/Quotation.c @@ -782,6 +782,7 @@ uint8_t l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo_ lean_object* l_Lean_Syntax_getAntiquotSpliceSuffix(lean_object*); lean_object* l_Lean_Syntax_getKind(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(size_t, size_t, lean_object*); lean_object* l_Lean_MacroScopesView_review(lean_object*); static lean_object* l_List_format___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__1; static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_2895____closed__45; @@ -858,6 +859,7 @@ extern lean_object* l_Lean_instInhabitedName; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__6___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__11; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__5; +lean_object* l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__1(lean_object*, lean_object*); static lean_object* l_List_format___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__6; lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__9___boxed(lean_object**); static lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_2895____closed__55; @@ -867,7 +869,6 @@ static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean lean_object* l_List_toArrayAux___rarg(lean_object*, lean_object*); lean_object* l_Array_sequenceMap_loop___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_name_mk_numeral(lean_object*, lean_object*); -lean_object* l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_______closed__3; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___lambda__2___closed__5; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___closed__22; @@ -942,7 +943,6 @@ static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__8; extern lean_object* l_Lean_Elab_unsupportedSyntaxExceptionId; static lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_______closed__15; -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(size_t, size_t, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__11; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11___closed__17; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__15___closed__2; @@ -21796,7 +21796,7 @@ x_280 = lean_usize_of_nat(x_279); lean_dec(x_279); x_281 = 0; x_282 = x_209; -x_283 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_280, x_281, x_282); +x_283 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_280, x_281, x_282); x_284 = x_283; lean_inc(x_278); x_285 = l_Array_append___rarg(x_278, x_284); @@ -22085,7 +22085,7 @@ x_435 = lean_usize_of_nat(x_434); lean_dec(x_434); x_436 = 0; x_437 = x_209; -x_438 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_435, x_436, x_437); +x_438 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_435, x_436, x_437); x_439 = x_438; lean_inc(x_433); x_440 = l_Array_append___rarg(x_433, x_439); @@ -26976,7 +26976,7 @@ x_24 = l_Lean_Syntax_getArg(x_12, x_23); x_25 = l_Lean_Syntax_getArgs(x_24); lean_dec(x_24); x_26 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___closed__1; -x_27 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__1(x_25, x_26); +x_27 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__1(x_25, x_26); lean_dec(x_25); if (lean_obj_tag(x_27) == 0) { @@ -27047,7 +27047,7 @@ x_45 = l_Lean_Syntax_getArg(x_33, x_44); x_46 = l_Lean_Syntax_getArgs(x_45); lean_dec(x_45); x_47 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___closed__1; -x_48 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__1(x_46, x_47); +x_48 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__1(x_46, x_47); lean_dec(x_46); if (lean_obj_tag(x_48) == 0) { @@ -32344,7 +32344,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_3); x_15 = l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__3___closed__1; -x_16 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__1(x_2, x_15); +x_16 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__1(x_2, x_15); if (lean_obj_tag(x_16) == 0) { lean_object* x_17; @@ -32398,7 +32398,7 @@ lean_dec(x_12); lean_dec(x_11); lean_dec(x_3); x_29 = l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__3___closed__1; -x_30 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__1(x_2, x_29); +x_30 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__1(x_2, x_29); if (lean_obj_tag(x_30) == 0) { lean_object* x_31; @@ -32453,7 +32453,7 @@ x_45 = lean_ctor_get(x_44, 1); lean_inc(x_45); lean_dec(x_44); x_46 = l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__3___closed__1; -x_47 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__1(x_45, x_46); +x_47 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__1(x_45, x_46); lean_dec(x_45); if (lean_obj_tag(x_47) == 0) { @@ -32826,7 +32826,7 @@ block_69: { lean_object* x_24; lean_object* x_25; x_24 = l_Lean_Elab_Term_Quotation_match__syntax_expand___closed__2; -x_25 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__1(x_23, x_24); +x_25 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__1(x_23, x_24); lean_dec(x_23); if (lean_obj_tag(x_25) == 0) { diff --git a/stage0/stdlib/Lean/Elab/Syntax.c b/stage0/stdlib/Lean/Elab/Syntax.c index 2fe20de8ab..544a427d5e 100644 --- a/stage0/stdlib/Lean/Elab/Syntax.c +++ b/stage0/stdlib/Lean/Elab/Syntax.c @@ -571,11 +571,11 @@ static lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyn static lean_object* l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__3; lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Term_toParserDescr_process___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__1(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax_match__3(lean_object*); static lean_object* l_Lean_Elab_Command_elabSyntax___lambda__4___closed__9; static lean_object* l___regBuiltin_Lean_Elab_Command_elabDeclareSyntaxCat___closed__6; uint8_t l_Lean_Syntax_isNone(lean_object*); -lean_object* l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__1(lean_object*, lean_object*); lean_object* l_Lean_resolveGlobalConstCore___at_Lean_Elab_Term_toParserDescr_resolveParserName___spec__5___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__53; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabSyntax___spec__8___rarg(lean_object*); @@ -17751,7 +17751,7 @@ x_17 = l_Lean_Syntax_getArg(x_1, x_16); x_18 = l_Lean_Syntax_getArgs(x_17); lean_dec(x_17); x_19 = l_Lean_Elab_Command_elabSyntax___lambda__7___closed__1; -x_20 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__1(x_18, x_19); +x_20 = l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__1(x_18, x_19); lean_dec(x_18); if (lean_obj_tag(x_20) == 0) { diff --git a/stage0/stdlib/Lean/Elab/Tactic/BuiltinTactic.c b/stage0/stdlib/Lean/Elab/Tactic/BuiltinTactic.c index 6283c095fe..0ea0e2a0f6 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/BuiltinTactic.c +++ b/stage0/stdlib/Lean/Elab/Tactic/BuiltinTactic.c @@ -22,7 +22,9 @@ static lean_object* l___regBuiltin_Lean_Elab_Tactic_elabSetOption___closed__2; lean_object* l___private_Lean_Elab_Open_0__Lean_Elab_OpenDecl_elabOpenScoped___at_Lean_Elab_Tactic_evalOpen___spec__19___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t l_USize_add(size_t, size_t); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalRotateRight___closed__4; +lean_object* l___regBuiltin_Lean_Elab_Tactic_evalRenameInaccessibles(lean_object*); lean_object* l_Lean_pushScope___at_Lean_Elab_Tactic_evalOpen___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalRenameInaccessibles___closed__2; lean_object* l_Lean_Expr_mvarId_x21(lean_object*); lean_object* l_Lean_Elab_OpenDecl_resolveId___at_Lean_Elab_Tactic_evalOpen___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_evalOpen___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -31,6 +33,7 @@ static lean_object* l___regBuiltin_Lean_Elab_Tactic_elabSetOption___closed__1; lean_object* lean_erase_macro_scopes(lean_object*); lean_object* l_List_findM_x3f___at___private_Lean_Elab_Tactic_BuiltinTactic_0__Lean_Elab_Tactic_findTag_x3f___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalIntroMatch(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_evalAnyGoals___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); lean_object* l___private_Lean_Elab_Open_0__Lean_Elab_OpenDecl_elabOpenRenaming___at_Lean_Elab_Tactic_evalOpen___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalTacticSeq___closed__5; @@ -59,6 +62,7 @@ static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalTacticSeq___closed__3; lean_object* lean_array_uget(lean_object*, size_t); lean_object* lean_io_error_to_string(lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalRevert___closed__1; +lean_object* l_Lean_Elab_Tactic_renameInaccessibles___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_append___rarg(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_evalIntro___closed__41; static lean_object* l_Lean_Elab_Tactic_evalIntro___closed__13; @@ -66,13 +70,12 @@ static lean_object* l_Lean_Elab_Tactic_evalIntro___closed__38; static lean_object* l_Lean_Elab_Tactic_evalIntro___closed__21; uint8_t l_Lean_Name_quickLt(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalFocus___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_evalCase_match__3___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalSkip(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SourceInfo_fromRef(lean_object*); lean_object* l_Lean_Elab_addCompletionInfo___at_Lean_Elab_Tactic_elabSetOption___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_evalCase___closed__6; lean_object* l_Lean_Elab_Tactic_evalClear(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_elabSetOption(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalRenameInaccessibles___closed__1; static lean_object* l_Lean_Elab_Tactic_evalIntro___closed__23; lean_object* lean_array_uset(lean_object*, size_t, lean_object*); static lean_object* l_Lean_Elab_Tactic_evalContradiction___rarg___lambda__1___closed__1; @@ -82,6 +85,7 @@ lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_evalOpen___spec__12___boxed static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalDone___closed__14; static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalTraceState___closed__5; lean_object* l_List_mapTR___rarg(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_renameInaccessibles_match__2___rarg(lean_object*, lean_object*); lean_object* l_Array_extract___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_withMacroExpansionInfo___at_Lean_Elab_Tactic_adaptExpander___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalUnknown(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -119,7 +123,6 @@ static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalCase___closed__1; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Tactic_BuiltinTactic_0__Lean_Elab_Tactic_evalManyTacticOptSemi___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_subst(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalIntro(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_evalCase___closed__5; static lean_object* l_Lean_Elab_Tactic_evalIntro___closed__35; static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalTacticSeq1Indented___closed__3; lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Tactic_evalIntro___spec__1___rarg(lean_object*, lean_object*, lean_object*); @@ -129,10 +132,12 @@ static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalCase___closed__2; lean_object* lean_array_push(lean_object*, lean_object*); static lean_object* l_Lean_Elab_elabSetOption___at_Lean_Elab_Tactic_elabSetOption___spec__1___closed__3; lean_object* lean_array_get_size(lean_object*); +static lean_object* l_Lean_Elab_Tactic_evalRenameInaccessibles___closed__2; lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_evalOpen___spec__18(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalContradiction___closed__4; lean_object* l_List_rotateLeft___rarg(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_renameInaccessibles_match__2(lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_evalOpen___spec__21(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_withMainContext___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Name_isPrefixOf(lean_object*, lean_object*); @@ -144,7 +149,9 @@ lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_evalOpen___spec__12(lean_ob lean_object* l_Lean_Elab_Tactic_evalDone___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalTacticSeq1Indented(lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalParen___closed__4; +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalRenameInaccessibles___closed__3; lean_object* l_Lean_Elab_Tactic_elabSetOption___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_evalRenameInaccessibles___closed__1; static lean_object* l_Lean_Elab_Tactic_evalIntro___closed__16; lean_object* l___private_Lean_Elab_Open_0__Lean_Elab_OpenDecl_elabOpenScoped___at_Lean_Elab_Tactic_evalOpen___spec__19(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalRotateLeft___closed__4; @@ -155,6 +162,7 @@ lean_object* l_Lean_Elab_Tactic_evalTraceState___rarg(lean_object*, lean_object* lean_object* l_Lean_Elab_Tactic_evalContradiction___boxed(lean_object*); static lean_object* l_Lean_Elab_OpenDecl_elabOpenDecl___at_Lean_Elab_Tactic_evalOpen___spec__3___closed__1; static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalDone___closed__6; +lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_evalAnyGoals___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_resolveGlobalConstCore___at_Lean_Elab_Tactic_evalOpen___spec__9___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalTacticSeqBracketed___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -178,16 +186,15 @@ lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirst_ lean_object* l_Lean_Elab_withInfoTreeContext___at_Lean_Elab_Tactic_evalTacticSeqBracketed___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_OpenDecl_elabOpenDecl___at_Lean_Elab_Tactic_evalOpen___spec__3___closed__7; lean_object* l___private_Lean_Elab_Tactic_BuiltinTactic_0__Lean_Elab_Tactic_sortFVarIds___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_evalCase___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_maxRecDepth; lean_object* l___regBuiltin_Lean_Elab_Tactic_evalClear(lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalDone___closed__13; static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalIntros___closed__1; static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalParen___closed__2; -static lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_evalCase___spec__3___closed__1; lean_object* l_Lean_ScopedEnvExtension_popScope___rarg(lean_object*, lean_object*); lean_object* l_Lean_Meta_intro(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalAssumption___closed__5; +lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_renameInaccessibles___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_evalIntro___closed__31; lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_evalSeq1___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalChoice___closed__3; @@ -195,6 +202,7 @@ lean_object* l___private_Lean_Elab_Tactic_BuiltinTactic_0__Lean_Elab_Tactic_find lean_object* l___regBuiltin_Lean_Elab_Tactic_evalAssumption(lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalChoice___closed__5; static lean_object* l_Lean_Elab_Tactic_evalSubst___closed__3; +static lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_renameInaccessibles___spec__1___closed__1; lean_object* l_Lean_resolveGlobalConstNoOverloadCore___at_Lean_Elab_Tactic_evalOpen___spec__8___lambda__1(lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalIntro___closed__2; lean_object* l___regBuiltin_Lean_Elab_Tactic_evalRotateLeft(lean_object*); @@ -202,6 +210,7 @@ uint8_t l_Lean_Name_hasMacroScopes(lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalDone___closed__1; static lean_object* l_Lean_Elab_Tactic_evalCase___closed__4; lean_object* l_Lean_ResolveName_resolveNamespace_x3f(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalAnyGoals___closed__3; static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalFocus___closed__5; lean_object* l___private_Lean_Elab_Tactic_BuiltinTactic_0__Lean_Elab_Tactic_findTag_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_local_ctx_num_indices(lean_object*); @@ -219,6 +228,7 @@ static lean_object* l_Lean_resolveNamespace___at_Lean_Elab_Tactic_evalOpen___spe lean_object* l_Lean_Option_get___at_Lean_initFn____x40_Lean_Util_PPExt___hyg_218____spec__1(lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalOpen___closed__1; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_renameInaccessibles___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalIntroMatch___closed__4; lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_evalOpen___spec__26(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_resolveGlobalConstCore___at_Lean_Elab_Tactic_evalOpen___spec__9___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -227,6 +237,7 @@ static lean_object* l_Lean_Elab_Tactic_evalAssumption___rarg___closed__1; static lean_object* l_Lean_Elab_Tactic_evalIntro___closed__15; static lean_object* l_Lean_resolveGlobalConstNoOverloadCore___at_Lean_Elab_Tactic_evalOpen___spec__8___closed__2; static lean_object* l_Lean_Elab_Tactic_evalIntro___closed__18; +lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_renameInaccessibles___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalFirst___closed__4; lean_object* lean_st_ref_take(lean_object*, lean_object*); lean_object* l_Lean_getOptionDecl(lean_object*, lean_object*); @@ -244,12 +255,15 @@ lean_object* l___regBuiltin_Lean_Elab_Tactic_evalChoice(lean_object*); lean_object* l_Lean_Elab_Tactic_focus___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalFirst_loop(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_local_ctx_get(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalAnyGoals___closed__5; lean_object* l_Lean_Elab_Tactic_evalTacticSeqBracketed___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalIntro___closed__3; lean_object* lean_array_swap(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_evalRenameInaccessibles(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_mkInitialTacticInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalFirst___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_isStrLit_x3f(lean_object*); +lean_object* l_Lean_Elab_Tactic_evalAnyGoals___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalTacticSeq(lean_object*); static lean_object* l_Lean_Elab_Tactic_evalIntro___closed__11; lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_elabSetOption___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -260,6 +274,7 @@ lean_object* l_List_foldl___at_Array_appendList___spec__1___rarg(lean_object*, l lean_object* l___regBuiltin_Lean_Elab_Tactic_evalFailIfSuccess(lean_object*); lean_object* l_Lean_Elab_Tactic_closeUsingOrAdmit(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalFocus___closed__1; +lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_renameInaccessibles___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalTacticSeqBracketed___closed__3; lean_object* l_Lean_Elab_Tactic_evalIntro_introStep_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_withTacticInfoContext___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -274,6 +289,7 @@ lean_object* l_Lean_Elab_Tactic_evalDone___rarg___boxed(lean_object*, lean_objec static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalClear___closed__2; lean_object* l_Lean_Elab_OpenDecl_elabOpenDecl___at_Lean_Elab_Tactic_evalOpen___spec__3___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Tactic_BuiltinTactic_0__Lean_Elab_Tactic_getOptRotation___boxed(lean_object*); +lean_object* l_Lean_Elab_Tactic_evalAnyGoals_match__1___rarg(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_evalIntro___closed__34; lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_evalOpen___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalDone___boxed(lean_object*); @@ -291,6 +307,7 @@ lean_object* l_Lean_Elab_Tactic_getGoals___rarg(lean_object*, lean_object*, lean static lean_object* l_Lean_Elab_pushInfoLeaf___at_Lean_Elab_Tactic_elabSetOption___spec__3___closed__3; static lean_object* l_Lean_Elab_Tactic_evalAllGoals___closed__1; static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSeq1___closed__4; +lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_renameInaccessibles___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_evalContradiction___rarg___closed__1; static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalIntro___closed__1; lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_evalOpen___spec__26___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -306,9 +323,9 @@ static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalDone___closed__2; lean_object* l_Lean_Syntax_getId(lean_object*); lean_object* l_Lean_Elab_Tactic_saveTacticInfoForToken(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_elabSetOption___closed__4; -lean_object* l_Lean_Elab_Tactic_evalCase___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_revert(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalChoice___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalAnyGoals___closed__4; lean_object* l_Lean_resolveGlobalName___at_Lean_Elab_Tactic_evalOpen___spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_evalIntro___closed__26; static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalUnknown___closed__5; @@ -356,6 +373,7 @@ lean_object* l_Lean_Elab_Tactic_evalCase_match__1___rarg(lean_object*, lean_obje extern lean_object* l_Lean_instInhabitedSyntax; lean_object* l_Lean_Elab_OpenDecl_elabOpenDecl___at_Lean_Elab_Tactic_evalOpen___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_assumption(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_evalAnyGoals___closed__3; lean_object* l_Lean_Meta_introNCore(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_evalIntro___closed__44; lean_object* l_Array_qsort_sort___at___private_Lean_Elab_Tactic_BuiltinTactic_0__Lean_Elab_Tactic_sortFVarIds___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); @@ -363,6 +381,7 @@ lean_object* l_Lean_Elab_Tactic_evalFirst___lambda__1___boxed(lean_object*, lean lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_evalOpen___spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalAllGoals___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalRotateRight___closed__5; +static lean_object* l_Lean_Elab_Tactic_evalAnyGoals___closed__1; static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalContradiction___closed__5; static lean_object* l_Lean_Elab_Tactic_evalFailIfSuccess___closed__2; lean_object* l_Lean_ResolveName_resolveGlobalName(lean_object*, lean_object*, lean_object*, lean_object*); @@ -380,7 +399,6 @@ static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalParen___closed__5; static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalUnknown___closed__4; lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_evalOpen___spec__24(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); -lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_evalCase___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalFirst(lean_object*); extern lean_object* l_Lean_Elab_Tactic_tacticElabAttribute; static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalRotateLeft___closed__5; @@ -409,6 +427,7 @@ static lean_object* l_Lean_Elab_elabSetOption___at_Lean_Elab_Tactic_elabSetOptio lean_object* l_Lean_Meta_mkFreshExprMVarAt(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_evalIntros___closed__2; lean_object* l_Lean_throwUnknownConstant___at_Lean_Elab_Tactic_evalOpen___spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_evalAnyGoals___closed__2; lean_object* l_List_filterAux___at_Lean_resolveGlobalConstCore___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_saveState___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_evalOpen___spec__16(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -419,6 +438,7 @@ static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalRotateRight___closed__2; lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_evalSeq1___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_evalIntro___closed__24; lean_object* l___private_Lean_Elab_Open_0__Lean_Elab_OpenDecl_elabOpenSimple___at_Lean_Elab_Tactic_evalOpen___spec__23(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_renameInaccessibles___closed__1; lean_object* l_Lean_Elab_Tactic_evalIntroMatch___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_goalsToMessageData(lean_object*); lean_object* l_Std_PersistentArray_push___rarg(lean_object*, lean_object*); @@ -431,16 +451,18 @@ lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSeq1(lean_object*); lean_object* l_Lean_Syntax_getSepArgs(lean_object*); static lean_object* l_Lean_Elab_Tactic_evalFailIfSuccess___closed__1; lean_object* l_Lean_Elab_Tactic_evalRotateRight___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalAnyGoals___closed__2; static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalRotateRight___closed__1; +lean_object* l_Lean_Elab_Tactic_evalAnyGoals(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getNumArgs(lean_object*); lean_object* l_Lean_Elab_Tactic_evalParen(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalTraceState___closed__4; -lean_object* l_Lean_Elab_Tactic_evalCase_match__2___rarg(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalFocus(lean_object*); static lean_object* l_Lean_Elab_OpenDecl_elabOpenDecl___at_Lean_Elab_Tactic_evalOpen___spec__3___closed__5; static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalTraceState___closed__1; lean_object* l___private_Lean_Elab_Tactic_BuiltinTactic_0__Lean_Elab_Tactic_sortFVarIds(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_resolveGlobalName___at_Lean_Elab_Tactic_evalOpen___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalAnyGoals___closed__1; static lean_object* l_Lean_Elab_Tactic_evalSubst___closed__2; static lean_object* l_Lean_Elab_Tactic_evalIntro___closed__37; static lean_object* l_Lean_Elab_Tactic_evalRevert___closed__1; @@ -448,7 +470,6 @@ uint8_t lean_nat_dec_le(lean_object*, lean_object*); lean_object* l_List_rotateRight___rarg(lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalFailIfSuccess___closed__2; static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSubst___closed__2; -lean_object* l_Lean_Elab_Tactic_evalCase___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_qpartition_loop___at___private_Lean_Elab_Tactic_BuiltinTactic_0__Lean_Elab_Tactic_sortFVarIds___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_evalTacticSeqBracketed___closed__1; static lean_object* l_Lean_Elab_OpenDecl_elabOpenDecl___at_Lean_Elab_Tactic_evalOpen___spec__3___closed__3; @@ -457,11 +478,11 @@ static lean_object* l_Lean_Elab_Tactic_evalIntro___closed__4; lean_object* l_Lean_Elab_Tactic_evalFirst___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l_Lean_Name_append(lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_evalCase_match__3(lean_object*); lean_object* l_Lean_Elab_Tactic_evalRotateLeft(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getKind(lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalAllGoals___closed__4; lean_object* l___private_Lean_Elab_Tactic_BuiltinTactic_0__Lean_Elab_Tactic_sortFVarIds___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_renameInaccessibles_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getFVarId(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Name_isSuffixOf(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_evalIntro___closed__1; @@ -472,18 +493,18 @@ static lean_object* l_Lean_Elab_Tactic_evalIntro___closed__17; static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalTraceState___closed__2; lean_object* l___private_Lean_Elab_Open_0__Lean_Elab_OpenDecl_elabOpenRenaming___at_Lean_Elab_Tactic_evalOpen___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_setGoals(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_evalCase___spec__3___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_evalIntro___closed__27; static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalOpen___closed__2; static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSkip___closed__2; lean_object* l_Lean_KVMap_insertCore(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_renameInaccessibles___closed__2; lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Tactic_evalIntro___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_evalAnyGoals___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_evalIntro___closed__9; lean_object* l_Lean_Elab_Tactic_evalFailIfSuccess(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_toString___at_Lean_resolveGlobalConstNoOverloadCore___spec__1(lean_object*); lean_object* l_Lean_Elab_Tactic_evalIntros_match__1(lean_object*); lean_object* l_Lean_Meta_isExprMVarAssigned(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_evalCase___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_evalIntro___closed__45; lean_object* l_Lean_Elab_Tactic_evalChoiceAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_OpenDecl_elabOpenDecl___at_Lean_Elab_Tactic_evalOpen___spec__3___closed__10; @@ -491,6 +512,7 @@ static lean_object* l_Lean_Elab_elabSetOption___at_Lean_Elab_Tactic_elabSetOptio static lean_object* l_Lean_Elab_Tactic_evalIntro___closed__33; static lean_object* l_Lean_Elab_Tactic_evalIntro___closed__5; static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalAllGoals___closed__2; +lean_object* l_Lean_Elab_Tactic_renameInaccessibles(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_logException___at_Lean_Elab_Tactic_closeUsingOrAdmit___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalAllGoals___closed__1; static lean_object* l___regBuiltin_Lean_Elab_Tactic_elabSetOption___closed__5; @@ -512,7 +534,6 @@ static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalTacticSeqBracketed___clo lean_object* l_Lean_Elab_Tactic_evalAssumption___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_OpenDecl_elabOpenDecl___at_Lean_Elab_Tactic_evalOpen___spec__3___closed__9; lean_object* l_Lean_Elab_Tactic_evalCase_match__1(lean_object*); -lean_object* l_Lean_Elab_Tactic_evalCase___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_evalIntro___closed__22; lean_object* l_Lean_Elab_Tactic_getFVarIds(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalIntro_introStep___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -521,6 +542,7 @@ static lean_object* l_Lean_Elab_Tactic_evalIntros___closed__3; static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalFirst___closed__1; lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_evalOpen___spec__21___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_qsort_sort___at___private_Lean_Elab_Tactic_BuiltinTactic_0__Lean_Elab_Tactic_sortFVarIds___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_renameInaccessibles_match__1(lean_object*); lean_object* l_Lean_Meta_getMVarDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_OpenDecl_elabOpenDecl___at_Lean_Elab_Tactic_evalOpen___spec__3___closed__4; static lean_object* l_Lean_Elab_Tactic_evalIntro___closed__29; @@ -546,6 +568,7 @@ static lean_object* l_Lean_Elab_Tactic_evalIntro___closed__28; lean_object* l_Lean_Elab_elabSetOption___at_Lean_Elab_Tactic_elabSetOption___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_evalSubst___closed__1; lean_object* l_Lean_Elab_Tactic_evalIntros(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_evalAnyGoals_match__1(lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); lean_object* l_Lean_Syntax_toNat(lean_object*); lean_object* l_Lean_Elab_Tactic_evalTacticSeqBracketed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -585,12 +608,10 @@ lean_object* l_Lean_Elab_addCompletionInfo___at_Lean_Elab_Tactic_elabSetOption__ lean_object* l___regBuiltin_Lean_Elab_Tactic_evalCase(lean_object*); lean_object* l_Lean_Elab_Tactic_withCaseRef___at_Lean_Elab_Tactic_evalCase___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalRevert___closed__3; -lean_object* l_Lean_Elab_Tactic_evalCase_match__2(lean_object*); static lean_object* l_Lean_Elab_Tactic_evalRevert___closed__2; lean_object* l_Lean_mkConst(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_evalIntro___closed__25; static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalTacticSeq___closed__1; -lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_evalCase___spec__3___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_evalClear___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSeq1___closed__1; lean_object* l_Lean_Elab_pushInfoTree___at_Lean_Elab_Tactic_elabSetOption___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -601,6 +622,7 @@ lean_object* l_Lean_ScopedEnvExtension_activateScoped___rarg(lean_object*, lean_ static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalFailIfSuccess___closed__5; lean_object* l___regBuiltin_Lean_Elab_Tactic_evalContradiction(lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalChoiceAux___spec__1___rarg(lean_object*); +lean_object* l___regBuiltin_Lean_Elab_Tactic_evalAnyGoals(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalParen(lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirst___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_evalIntro___closed__6; @@ -7740,6 +7762,684 @@ x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } +lean_object* l_Lean_Elab_Tactic_evalAnyGoals_match__1___rarg(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); +x_4 = lean_ctor_get(x_1, 1); +lean_inc(x_4); +lean_dec(x_1); +x_5 = lean_apply_2(x_2, x_3, x_4); +return x_5; +} +} +lean_object* l_Lean_Elab_Tactic_evalAnyGoals_match__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalAnyGoals_match__1___rarg), 2, 0); +return x_2; +} +} +lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_evalAnyGoals___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +if (lean_obj_tag(x_3) == 0) +{ +lean_object* x_14; +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_2); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_4); +lean_ctor_set(x_14, 1, x_13); +return x_14; +} +else +{ +uint8_t x_15; +x_15 = !lean_is_exclusive(x_3); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_28; +x_16 = lean_ctor_get(x_3, 0); +x_17 = lean_ctor_get(x_3, 1); +x_28 = !lean_is_exclusive(x_4); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; +x_29 = lean_ctor_get(x_4, 0); +x_30 = lean_ctor_get(x_4, 1); +lean_inc(x_16); +x_31 = l_Lean_Meta_isExprMVarAssigned(x_16, x_9, x_10, x_11, x_12, x_13); +x_32 = lean_ctor_get(x_31, 0); +lean_inc(x_32); +x_33 = lean_unbox(x_32); +lean_dec(x_32); +if (x_33 == 0) +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_34 = lean_ctor_get(x_31, 1); +lean_inc(x_34); +lean_dec(x_31); +lean_inc(x_2); +lean_inc(x_16); +lean_ctor_set(x_3, 1, x_2); +x_35 = l_Lean_Elab_Tactic_setGoals(x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_34); +x_36 = lean_ctor_get(x_35, 1); +lean_inc(x_36); +lean_dec(x_35); +x_37 = lean_unsigned_to_nat(1u); +x_38 = l_Lean_Syntax_getArg(x_1, x_37); +x_39 = l_Lean_Elab_Tactic_saveState___rarg(x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_36); +x_40 = lean_ctor_get(x_39, 0); +lean_inc(x_40); +x_41 = lean_ctor_get(x_39, 1); +lean_inc(x_41); +lean_dec(x_39); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_42 = l_Lean_Elab_Tactic_evalTacticAux(x_38, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_41); +if (lean_obj_tag(x_42) == 0) +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; uint8_t x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; +lean_dec(x_40); +lean_dec(x_29); +lean_dec(x_16); +x_43 = lean_ctor_get(x_42, 1); +lean_inc(x_43); +lean_dec(x_42); +x_44 = l_Lean_Elab_Tactic_getUnsolvedGoals(x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_43); +x_45 = lean_ctor_get(x_44, 0); +lean_inc(x_45); +x_46 = lean_ctor_get(x_44, 1); +lean_inc(x_46); +lean_dec(x_44); +x_47 = l_List_foldl___at_Array_appendList___spec__1___rarg(x_30, x_45); +x_48 = 1; +x_49 = lean_box(x_48); +lean_ctor_set(x_4, 1, x_47); +lean_ctor_set(x_4, 0, x_49); +x_50 = lean_box(0); +x_51 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_4); +x_18 = x_51; +x_19 = x_46; +goto block_27; +} +else +{ +lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_52 = lean_ctor_get(x_42, 1); +lean_inc(x_52); +lean_dec(x_42); +x_53 = l_Lean_Elab_Tactic_SavedState_restore(x_40, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_52); +x_54 = lean_ctor_get(x_53, 1); +lean_inc(x_54); +lean_dec(x_53); +x_55 = lean_array_push(x_30, x_16); +lean_ctor_set(x_4, 1, x_55); +x_56 = lean_box(0); +x_57 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_57, 0, x_56); +lean_ctor_set(x_57, 1, x_4); +x_18 = x_57; +x_19 = x_54; +goto block_27; +} +} +else +{ +lean_object* x_58; +lean_free_object(x_3); +lean_dec(x_16); +x_58 = lean_ctor_get(x_31, 1); +lean_inc(x_58); +lean_dec(x_31); +x_3 = x_17; +x_13 = x_58; +goto _start; +} +} +else +{ +lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; uint8_t x_64; +x_60 = lean_ctor_get(x_4, 0); +x_61 = lean_ctor_get(x_4, 1); +lean_inc(x_61); +lean_inc(x_60); +lean_dec(x_4); +lean_inc(x_16); +x_62 = l_Lean_Meta_isExprMVarAssigned(x_16, x_9, x_10, x_11, x_12, x_13); +x_63 = lean_ctor_get(x_62, 0); +lean_inc(x_63); +x_64 = lean_unbox(x_63); +lean_dec(x_63); +if (x_64 == 0) +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; +x_65 = lean_ctor_get(x_62, 1); +lean_inc(x_65); +lean_dec(x_62); +lean_inc(x_2); +lean_inc(x_16); +lean_ctor_set(x_3, 1, x_2); +x_66 = l_Lean_Elab_Tactic_setGoals(x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_65); +x_67 = lean_ctor_get(x_66, 1); +lean_inc(x_67); +lean_dec(x_66); +x_68 = lean_unsigned_to_nat(1u); +x_69 = l_Lean_Syntax_getArg(x_1, x_68); +x_70 = l_Lean_Elab_Tactic_saveState___rarg(x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_67); +x_71 = lean_ctor_get(x_70, 0); +lean_inc(x_71); +x_72 = lean_ctor_get(x_70, 1); +lean_inc(x_72); +lean_dec(x_70); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_73 = l_Lean_Elab_Tactic_evalTacticAux(x_69, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_72); +if (lean_obj_tag(x_73) == 0) +{ +lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; uint8_t x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; +lean_dec(x_71); +lean_dec(x_60); +lean_dec(x_16); +x_74 = lean_ctor_get(x_73, 1); +lean_inc(x_74); +lean_dec(x_73); +x_75 = l_Lean_Elab_Tactic_getUnsolvedGoals(x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_74); +x_76 = lean_ctor_get(x_75, 0); +lean_inc(x_76); +x_77 = lean_ctor_get(x_75, 1); +lean_inc(x_77); +lean_dec(x_75); +x_78 = l_List_foldl___at_Array_appendList___spec__1___rarg(x_61, x_76); +x_79 = 1; +x_80 = lean_box(x_79); +x_81 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_81, 0, x_80); +lean_ctor_set(x_81, 1, x_78); +x_82 = lean_box(0); +x_83 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_83, 0, x_82); +lean_ctor_set(x_83, 1, x_81); +x_18 = x_83; +x_19 = x_77; +goto block_27; +} +else +{ +lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; +x_84 = lean_ctor_get(x_73, 1); +lean_inc(x_84); +lean_dec(x_73); +x_85 = l_Lean_Elab_Tactic_SavedState_restore(x_71, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_84); +x_86 = lean_ctor_get(x_85, 1); +lean_inc(x_86); +lean_dec(x_85); +x_87 = lean_array_push(x_61, x_16); +x_88 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_88, 0, x_60); +lean_ctor_set(x_88, 1, x_87); +x_89 = lean_box(0); +x_90 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_90, 0, x_89); +lean_ctor_set(x_90, 1, x_88); +x_18 = x_90; +x_19 = x_86; +goto block_27; +} +} +else +{ +lean_object* x_91; lean_object* x_92; +lean_free_object(x_3); +lean_dec(x_16); +x_91 = lean_ctor_get(x_62, 1); +lean_inc(x_91); +lean_dec(x_62); +x_92 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_92, 0, x_60); +lean_ctor_set(x_92, 1, x_61); +x_3 = x_17; +x_4 = x_92; +x_13 = x_91; +goto _start; +} +} +block_27: +{ +lean_object* x_20; uint8_t x_21; +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec(x_18); +x_21 = !lean_is_exclusive(x_20); +if (x_21 == 0) +{ +x_3 = x_17; +x_4 = x_20; +x_13 = x_19; +goto _start; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_20, 0); +x_24 = lean_ctor_get(x_20, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_20); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set(x_25, 1, x_24); +x_3 = x_17; +x_4 = x_25; +x_13 = x_19; +goto _start; +} +} +} +else +{ +lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; uint8_t x_110; +x_94 = lean_ctor_get(x_3, 0); +x_95 = lean_ctor_get(x_3, 1); +lean_inc(x_95); +lean_inc(x_94); +lean_dec(x_3); +x_105 = lean_ctor_get(x_4, 0); +lean_inc(x_105); +x_106 = lean_ctor_get(x_4, 1); +lean_inc(x_106); +if (lean_is_exclusive(x_4)) { + lean_ctor_release(x_4, 0); + lean_ctor_release(x_4, 1); + x_107 = x_4; +} else { + lean_dec_ref(x_4); + x_107 = lean_box(0); +} +lean_inc(x_94); +x_108 = l_Lean_Meta_isExprMVarAssigned(x_94, x_9, x_10, x_11, x_12, x_13); +x_109 = lean_ctor_get(x_108, 0); +lean_inc(x_109); +x_110 = lean_unbox(x_109); +lean_dec(x_109); +if (x_110 == 0) +{ +lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; +x_111 = lean_ctor_get(x_108, 1); +lean_inc(x_111); +lean_dec(x_108); +lean_inc(x_2); +lean_inc(x_94); +x_112 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_112, 0, x_94); +lean_ctor_set(x_112, 1, x_2); +x_113 = l_Lean_Elab_Tactic_setGoals(x_112, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_111); +x_114 = lean_ctor_get(x_113, 1); +lean_inc(x_114); +lean_dec(x_113); +x_115 = lean_unsigned_to_nat(1u); +x_116 = l_Lean_Syntax_getArg(x_1, x_115); +x_117 = l_Lean_Elab_Tactic_saveState___rarg(x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_114); +x_118 = lean_ctor_get(x_117, 0); +lean_inc(x_118); +x_119 = lean_ctor_get(x_117, 1); +lean_inc(x_119); +lean_dec(x_117); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_120 = l_Lean_Elab_Tactic_evalTacticAux(x_116, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_119); +if (lean_obj_tag(x_120) == 0) +{ +lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; uint8_t x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; +lean_dec(x_118); +lean_dec(x_105); +lean_dec(x_94); +x_121 = lean_ctor_get(x_120, 1); +lean_inc(x_121); +lean_dec(x_120); +x_122 = l_Lean_Elab_Tactic_getUnsolvedGoals(x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_121); +x_123 = lean_ctor_get(x_122, 0); +lean_inc(x_123); +x_124 = lean_ctor_get(x_122, 1); +lean_inc(x_124); +lean_dec(x_122); +x_125 = l_List_foldl___at_Array_appendList___spec__1___rarg(x_106, x_123); +x_126 = 1; +x_127 = lean_box(x_126); +if (lean_is_scalar(x_107)) { + x_128 = lean_alloc_ctor(0, 2, 0); +} else { + x_128 = x_107; +} +lean_ctor_set(x_128, 0, x_127); +lean_ctor_set(x_128, 1, x_125); +x_129 = lean_box(0); +x_130 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_130, 0, x_129); +lean_ctor_set(x_130, 1, x_128); +x_96 = x_130; +x_97 = x_124; +goto block_104; +} +else +{ +lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; +x_131 = lean_ctor_get(x_120, 1); +lean_inc(x_131); +lean_dec(x_120); +x_132 = l_Lean_Elab_Tactic_SavedState_restore(x_118, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_131); +x_133 = lean_ctor_get(x_132, 1); +lean_inc(x_133); +lean_dec(x_132); +x_134 = lean_array_push(x_106, x_94); +if (lean_is_scalar(x_107)) { + x_135 = lean_alloc_ctor(0, 2, 0); +} else { + x_135 = x_107; +} +lean_ctor_set(x_135, 0, x_105); +lean_ctor_set(x_135, 1, x_134); +x_136 = lean_box(0); +x_137 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_137, 0, x_136); +lean_ctor_set(x_137, 1, x_135); +x_96 = x_137; +x_97 = x_133; +goto block_104; +} +} +else +{ +lean_object* x_138; lean_object* x_139; +lean_dec(x_94); +x_138 = lean_ctor_get(x_108, 1); +lean_inc(x_138); +lean_dec(x_108); +if (lean_is_scalar(x_107)) { + x_139 = lean_alloc_ctor(0, 2, 0); +} else { + x_139 = x_107; +} +lean_ctor_set(x_139, 0, x_105); +lean_ctor_set(x_139, 1, x_106); +x_3 = x_95; +x_4 = x_139; +x_13 = x_138; +goto _start; +} +block_104: +{ +lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; +x_98 = lean_ctor_get(x_96, 1); +lean_inc(x_98); +lean_dec(x_96); +x_99 = lean_ctor_get(x_98, 0); +lean_inc(x_99); +x_100 = lean_ctor_get(x_98, 1); +lean_inc(x_100); +if (lean_is_exclusive(x_98)) { + lean_ctor_release(x_98, 0); + lean_ctor_release(x_98, 1); + x_101 = x_98; +} else { + lean_dec_ref(x_98); + x_101 = lean_box(0); +} +if (lean_is_scalar(x_101)) { + x_102 = lean_alloc_ctor(0, 2, 0); +} else { + x_102 = x_101; +} +lean_ctor_set(x_102, 0, x_99); +lean_ctor_set(x_102, 1, x_100); +x_3 = x_95; +x_4 = x_102; +x_13 = x_97; +goto _start; +} +} +} +} +} +lean_object* l_Lean_Elab_Tactic_evalAnyGoals___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_array_to_list(lean_box(0), x_1); +x_13 = l_Lean_Elab_Tactic_setGoals(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_13; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_evalAnyGoals___closed__1() { +_start: +{ +uint8_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = 0; +x_2 = l_Lean_Elab_Tactic_evalAllGoals___closed__1; +x_3 = lean_box(x_1); +x_4 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_4, 0, x_3); +lean_ctor_set(x_4, 1, x_2); +return x_4; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_evalAnyGoals___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("failed on all goals"); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_evalAnyGoals___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_evalAnyGoals___closed__2; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +lean_object* l_Lean_Elab_Tactic_evalAnyGoals(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; +x_11 = l_Lean_Elab_Tactic_getGoals___rarg(x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +x_13 = lean_ctor_get(x_11, 1); +lean_inc(x_13); +lean_dec(x_11); +x_14 = lean_box(0); +x_15 = l_Lean_Elab_Tactic_evalAnyGoals___closed__1; +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_16 = l_List_forIn_loop___at_Lean_Elab_Tactic_evalAnyGoals___spec__1(x_1, x_14, x_12, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_13); +lean_dec(x_1); +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_unbox(x_18); +lean_dec(x_18); +if (x_19 == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; +lean_dec(x_17); +x_20 = lean_ctor_get(x_16, 1); +lean_inc(x_20); +lean_dec(x_16); +x_21 = l_Lean_Elab_Tactic_evalAnyGoals___closed__3; +x_22 = l_Lean_throwError___at_Lean_Elab_Tactic_evalTacticAux___spec__2(x_21, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_20); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_23 = !lean_is_exclusive(x_22); +if (x_23 == 0) +{ +return x_22; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_22, 0); +x_25 = lean_ctor_get(x_22, 1); +lean_inc(x_25); +lean_inc(x_24); +lean_dec(x_22); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +return x_26; +} +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_27 = lean_ctor_get(x_16, 1); +lean_inc(x_27); +lean_dec(x_16); +x_28 = lean_ctor_get(x_17, 1); +lean_inc(x_28); +lean_dec(x_17); +x_29 = lean_box(0); +x_30 = l_Lean_Elab_Tactic_evalAnyGoals___lambda__1(x_28, x_29, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_27); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_30; +} +} +} +lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_evalAnyGoals___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_14; +x_14 = l_List_forIn_loop___at_Lean_Elab_Tactic_evalAnyGoals___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_1); +return x_14; +} +} +lean_object* l_Lean_Elab_Tactic_evalAnyGoals___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_Lean_Elab_Tactic_evalAnyGoals___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_12; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalAnyGoals___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("anyGoals"); +return x_1; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalAnyGoals___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_Lean_Elab_Tactic_evalDone___closed__6; +x_2 = l___regBuiltin_Lean_Elab_Tactic_evalAnyGoals___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalAnyGoals___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("evalAnyGoals"); +return x_1; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalAnyGoals___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_Lean_Elab_Tactic_evalDone___closed__11; +x_2 = l___regBuiltin_Lean_Elab_Tactic_evalAnyGoals___closed__3; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalAnyGoals___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalAnyGoals), 10, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Elab_Tactic_evalAnyGoals(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_2 = l_Lean_Elab_Tactic_tacticElabAttribute; +x_3 = l___regBuiltin_Lean_Elab_Tactic_evalAnyGoals___closed__2; +x_4 = l___regBuiltin_Lean_Elab_Tactic_evalAnyGoals___closed__4; +x_5 = l___regBuiltin_Lean_Elab_Tactic_evalAnyGoals___closed__5; +x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); +return x_6; +} +} lean_object* l_Lean_Elab_Tactic_evalTacticSeq(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { @@ -13037,7 +13737,7 @@ lean_dec(x_3); return x_12; } } -lean_object* l_Lean_Elab_Tactic_evalCase_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Elab_Tactic_renameInaccessibles_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -13060,15 +13760,15 @@ return x_7; } } } -lean_object* l_Lean_Elab_Tactic_evalCase_match__1(lean_object* x_1) { +lean_object* l_Lean_Elab_Tactic_renameInaccessibles_match__1(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalCase_match__1___rarg), 3, 0); +x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_renameInaccessibles_match__1___rarg), 3, 0); return x_2; } } -lean_object* l_Lean_Elab_Tactic_evalCase_match__2___rarg(lean_object* x_1, lean_object* x_2) { +lean_object* l_Lean_Elab_Tactic_renameInaccessibles_match__2___rarg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; @@ -13081,165 +13781,15 @@ x_5 = lean_apply_2(x_2, x_3, x_4); return x_5; } } -lean_object* l_Lean_Elab_Tactic_evalCase_match__2(lean_object* x_1) { +lean_object* l_Lean_Elab_Tactic_renameInaccessibles_match__2(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalCase_match__2___rarg), 2, 0); +x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_renameInaccessibles_match__2___rarg), 2, 0); return x_2; } } -lean_object* l_Lean_Elab_Tactic_evalCase_match__3___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -if (lean_obj_tag(x_1) == 0) -{ -lean_object* x_4; -lean_dec(x_2); -x_4 = lean_apply_1(x_3, x_1); -return x_4; -} -else -{ -lean_object* x_5; lean_object* x_6; -lean_dec(x_3); -x_5 = lean_ctor_get(x_1, 0); -lean_inc(x_5); -lean_dec(x_1); -x_6 = lean_apply_1(x_2, x_5); -return x_6; -} -} -} -lean_object* l_Lean_Elab_Tactic_evalCase_match__3(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalCase_match__3___rarg), 3, 0); -return x_2; -} -} -lean_object* l_List_erase___at_Lean_Elab_Tactic_evalCase___spec__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -if (lean_obj_tag(x_1) == 0) -{ -lean_object* x_3; -x_3 = lean_box(0); -return x_3; -} -else -{ -uint8_t x_4; -x_4 = !lean_is_exclusive(x_1); -if (x_4 == 0) -{ -lean_object* x_5; lean_object* x_6; uint8_t x_7; -x_5 = lean_ctor_get(x_1, 0); -x_6 = lean_ctor_get(x_1, 1); -x_7 = lean_name_eq(x_5, x_2); -if (x_7 == 0) -{ -lean_object* x_8; -x_8 = l_List_erase___at_Lean_Elab_Tactic_evalCase___spec__1(x_6, x_2); -lean_ctor_set(x_1, 1, x_8); -return x_1; -} -else -{ -lean_free_object(x_1); -lean_dec(x_5); -return x_6; -} -} -else -{ -lean_object* x_9; lean_object* x_10; uint8_t x_11; -x_9 = lean_ctor_get(x_1, 0); -x_10 = lean_ctor_get(x_1, 1); -lean_inc(x_10); -lean_inc(x_9); -lean_dec(x_1); -x_11 = lean_name_eq(x_9, x_2); -if (x_11 == 0) -{ -lean_object* x_12; lean_object* x_13; -x_12 = l_List_erase___at_Lean_Elab_Tactic_evalCase___spec__1(x_10, x_2); -x_13 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_13, 0, x_9); -lean_ctor_set(x_13, 1, x_12); -return x_13; -} -else -{ -lean_dec(x_9); -return x_10; -} -} -} -} -} -lean_object* l_Lean_Elab_Tactic_withCaseRef___at_Lean_Elab_Tactic_evalCase___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; -x_13 = l_Lean_Elab_Tactic_evalIntro___closed__6; -x_14 = lean_array_push(x_13, x_1); -x_15 = lean_array_push(x_14, x_2); -x_16 = l_Lean_nullKind; -x_17 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_17, 0, x_16); -lean_ctor_set(x_17, 1, x_15); -x_18 = !lean_is_exclusive(x_10); -if (x_18 == 0) -{ -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_10, 3); -x_20 = l_Lean_replaceRef(x_17, x_19); -lean_dec(x_19); -lean_dec(x_17); -lean_ctor_set(x_10, 3, x_20); -x_21 = lean_apply_9(x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -return x_21; -} -else -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; -x_22 = lean_ctor_get(x_10, 0); -x_23 = lean_ctor_get(x_10, 1); -x_24 = lean_ctor_get(x_10, 2); -x_25 = lean_ctor_get(x_10, 3); -x_26 = lean_ctor_get(x_10, 4); -x_27 = lean_ctor_get(x_10, 5); -x_28 = lean_ctor_get(x_10, 6); -x_29 = lean_ctor_get(x_10, 7); -lean_inc(x_29); -lean_inc(x_28); -lean_inc(x_27); -lean_inc(x_26); -lean_inc(x_25); -lean_inc(x_24); -lean_inc(x_23); -lean_inc(x_22); -lean_dec(x_10); -x_30 = l_Lean_replaceRef(x_17, x_25); -lean_dec(x_25); -lean_dec(x_17); -x_31 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_31, 0, x_22); -lean_ctor_set(x_31, 1, x_23); -lean_ctor_set(x_31, 2, x_24); -lean_ctor_set(x_31, 3, x_30); -lean_ctor_set(x_31, 4, x_26); -lean_ctor_set(x_31, 5, x_27); -lean_ctor_set(x_31, 6, x_28); -lean_ctor_set(x_31, 7, x_29); -x_32 = lean_apply_9(x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_31, x_11, x_12); -return x_32; -} -} -} -lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_evalCase___spec__3___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_renameInaccessibles___spec__1___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; uint8_t x_14; @@ -13273,15 +13823,15 @@ return x_20; } } } -static lean_object* _init_l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_evalCase___spec__3___closed__1() { +static lean_object* _init_l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_renameInaccessibles___spec__1___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_evalCase___spec__3___lambda__1___boxed), 12, 0); +x_1 = lean_alloc_closure((void*)(l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_renameInaccessibles___spec__1___lambda__1___boxed), 12, 0); return x_1; } } -lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_evalCase___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_renameInaccessibles___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { lean_object* x_15; uint8_t x_16; @@ -13344,7 +13894,7 @@ else lean_object* x_36; lean_object* x_37; uint8_t x_38; lean_free_object(x_5); x_36 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_23); -x_37 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_evalCase___spec__3___closed__1; +x_37 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_renameInaccessibles___spec__1___closed__1; x_38 = l_Lean_Syntax_isIdent(x_36); if (x_38 == 0) { @@ -13631,7 +14181,7 @@ else { lean_object* x_94; lean_object* x_95; uint8_t x_96; x_94 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_79); -x_95 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_evalCase___spec__3___closed__1; +x_95 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_renameInaccessibles___spec__1___closed__1; x_96 = l_Lean_Syntax_isIdent(x_94); if (x_96 == 0) { @@ -13897,112 +14447,202 @@ return x_133; } } } -lean_object* l_Lean_Elab_Tactic_evalCase___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +lean_object* l_Lean_Elab_Tactic_renameInaccessibles___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_16 = lean_box(0); -lean_inc(x_5); -x_17 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_17, 0, x_5); -lean_ctor_set(x_17, 1, x_16); -x_18 = l_Lean_Elab_Tactic_setGoals(x_17, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); -x_19 = lean_ctor_get(x_18, 1); -lean_inc(x_19); -lean_dec(x_18); -lean_inc(x_5); -x_20 = l_Lean_Meta_getMVarTag(x_5, x_11, x_12, x_13, x_14, x_19); -if (lean_obj_tag(x_20) == 0) -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; -x_21 = lean_ctor_get(x_20, 0); -lean_inc(x_21); -x_22 = lean_ctor_get(x_20, 1); -lean_inc(x_22); -lean_dec(x_20); -x_23 = lean_box(0); -lean_inc(x_5); -x_24 = l_Lean_Meta_setMVarTag(x_5, x_23, x_11, x_12, x_13, x_14, x_22); -x_25 = lean_ctor_get(x_24, 1); -lean_inc(x_25); -lean_dec(x_24); -lean_inc(x_1); -x_26 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalTactic), 10, 1); -lean_closure_set(x_26, 0, x_1); -x_27 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_withTacticInfoContext___rarg), 11, 2); -lean_closure_set(x_27, 0, x_2); -lean_closure_set(x_27, 1, x_26); -x_28 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_closeUsingOrAdmit), 10, 1); -lean_closure_set(x_28, 0, x_27); +lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; +x_14 = lean_ctor_get(x_1, 4); lean_inc(x_14); -lean_inc(x_13); -lean_inc(x_12); -lean_inc(x_11); +x_15 = lean_ctor_get(x_1, 2); +lean_inc(x_15); +x_16 = lean_ctor_get(x_1, 0); +lean_inc(x_16); +lean_dec(x_1); +x_17 = 2; +x_18 = lean_unsigned_to_nat(0u); +x_19 = l_Lean_Meta_mkFreshExprMVarAt(x_2, x_14, x_15, x_17, x_16, x_18, x_9, x_10, x_11, x_12, x_13); +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +x_21 = lean_ctor_get(x_19, 1); +lean_inc(x_21); +lean_dec(x_19); +lean_inc(x_20); +x_22 = l_Lean_Meta_assignExprMVar(x_3, x_20, x_9, x_10, x_11, x_12, x_21); +x_23 = !lean_is_exclusive(x_22); +if (x_23 == 0) +{ +lean_object* x_24; lean_object* x_25; +x_24 = lean_ctor_get(x_22, 0); +lean_dec(x_24); +x_25 = l_Lean_Expr_mvarId_x21(x_20); +lean_dec(x_20); +lean_ctor_set(x_22, 0, x_25); +return x_22; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_22, 1); +lean_inc(x_26); +lean_dec(x_22); +x_27 = l_Lean_Expr_mvarId_x21(x_20); +lean_dec(x_20); +x_28 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_28, 0, x_27); +lean_ctor_set(x_28, 1, x_26); +return x_28; +} +} +} +static lean_object* _init_l_Lean_Elab_Tactic_renameInaccessibles___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("too many variable names provided"); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_renameInaccessibles___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Tactic_renameInaccessibles___closed__1; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +lean_object* l_Lean_Elab_Tactic_renameInaccessibles(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +uint8_t x_12; +x_12 = l_Array_isEmpty___rarg(x_2); +if (x_12 == 0) +{ +lean_object* x_13; +lean_inc(x_1); +x_13 = l_Lean_Meta_getMVarDecl(x_1, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +x_15 = lean_ctor_get(x_13, 1); +lean_inc(x_15); +lean_dec(x_13); +x_16 = lean_ctor_get(x_14, 1); +lean_inc(x_16); +lean_inc(x_16); +x_17 = lean_local_ctx_num_indices(x_16); +x_18 = lean_unsigned_to_nat(0u); +x_19 = lean_unsigned_to_nat(1u); +lean_inc(x_17); +x_20 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_20, 0, x_18); +lean_ctor_set(x_20, 1, x_17); +lean_ctor_set(x_20, 2, x_19); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_16); +lean_ctor_set(x_21, 1, x_2); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_29 = l_Lean_Elab_Tactic_withCaseRef___at_Lean_Elab_Tactic_evalCase___spec__2(x_3, x_1, x_28, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_25); -if (lean_obj_tag(x_29) == 0) +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_17); +x_22 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_renameInaccessibles___spec__1(x_17, x_20, x_17, x_18, x_21, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_15); +lean_dec(x_20); +lean_dec(x_17); +if (lean_obj_tag(x_22) == 0) { -lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; -x_30 = lean_ctor_get(x_29, 1); -lean_inc(x_30); -lean_dec(x_29); -x_31 = l_Lean_Meta_setMVarTag(x_5, x_21, x_11, x_12, x_13, x_14, x_30); -x_32 = lean_ctor_get(x_31, 1); -lean_inc(x_32); -lean_dec(x_31); -lean_inc(x_14); -lean_inc(x_13); -lean_inc(x_12); -lean_inc(x_11); +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = lean_ctor_get(x_23, 0); +lean_inc(x_25); +x_26 = lean_ctor_get(x_23, 1); +lean_inc(x_26); +lean_dec(x_23); +x_27 = l_Array_isEmpty___rarg(x_26); +lean_dec(x_26); +if (x_27 == 0) +{ +lean_object* x_28; uint8_t x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_28 = l_Lean_Elab_Tactic_renameInaccessibles___closed__2; +x_29 = 2; lean_inc(x_10); lean_inc(x_9); +lean_inc(x_8); lean_inc(x_7); -x_33 = l_Lean_Elab_Tactic_done(x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_32); -if (lean_obj_tag(x_33) == 0) -{ -lean_object* x_34; lean_object* x_35; -x_34 = lean_ctor_get(x_33, 1); -lean_inc(x_34); -lean_dec(x_33); -x_35 = l_Lean_Elab_Tactic_setGoals(x_4, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_34); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_30 = l_Lean_Elab_log___at_Lean_Elab_Tactic_closeUsingOrAdmit___spec__3(x_28, x_29, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_24); +x_31 = lean_ctor_get(x_30, 0); +lean_inc(x_31); +x_32 = lean_ctor_get(x_30, 1); +lean_inc(x_32); +lean_dec(x_30); +x_33 = l_Lean_Elab_Tactic_renameInaccessibles___lambda__1(x_14, x_25, x_1, x_31, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_32); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_31); +return x_33; +} +else +{ +lean_object* x_34; lean_object* x_35; +x_34 = lean_box(0); +x_35 = l_Lean_Elab_Tactic_renameInaccessibles___lambda__1(x_14, x_25, x_1, x_34, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_24); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); return x_35; } +} else { uint8_t x_36; lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); lean_dec(x_4); -x_36 = !lean_is_exclusive(x_33); +lean_dec(x_3); +lean_dec(x_1); +x_36 = !lean_is_exclusive(x_22); if (x_36 == 0) { -return x_33; +return x_22; } else { lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_37 = lean_ctor_get(x_33, 0); -x_38 = lean_ctor_get(x_33, 1); +x_37 = lean_ctor_get(x_22, 0); +x_38 = lean_ctor_get(x_22, 1); lean_inc(x_38); lean_inc(x_37); -lean_dec(x_33); +lean_dec(x_22); x_39 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_39, 0, x_37); lean_ctor_set(x_39, 1, x_38); @@ -14012,111 +14652,248 @@ return x_39; } else { -lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_4); -x_40 = lean_ctor_get(x_29, 0); -lean_inc(x_40); -x_41 = lean_ctor_get(x_29, 1); -lean_inc(x_41); -lean_dec(x_29); -x_42 = l_Lean_Meta_setMVarTag(x_5, x_21, x_11, x_12, x_13, x_14, x_41); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -x_43 = !lean_is_exclusive(x_42); -if (x_43 == 0) -{ -lean_object* x_44; -x_44 = lean_ctor_get(x_42, 0); -lean_dec(x_44); -lean_ctor_set_tag(x_42, 1); -lean_ctor_set(x_42, 0, x_40); -return x_42; -} -else -{ -lean_object* x_45; lean_object* x_46; -x_45 = lean_ctor_get(x_42, 1); -lean_inc(x_45); -lean_dec(x_42); -x_46 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_46, 0, x_40); -lean_ctor_set(x_46, 1, x_45); -return x_46; -} -} -} -else -{ -uint8_t x_47; -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); +uint8_t x_40; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); +lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_47 = !lean_is_exclusive(x_20); -if (x_47 == 0) +x_40 = !lean_is_exclusive(x_13); +if (x_40 == 0) { -return x_20; +return x_13; } else { -lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_48 = lean_ctor_get(x_20, 0); -x_49 = lean_ctor_get(x_20, 1); -lean_inc(x_49); -lean_inc(x_48); -lean_dec(x_20); -x_50 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_50, 0, x_48); -lean_ctor_set(x_50, 1, x_49); -return x_50; +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_13, 0); +x_42 = lean_ctor_get(x_13, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_13); +x_43 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +return x_43; } } } +else +{ +lean_object* x_44; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_44 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_44, 0, x_1); +lean_ctor_set(x_44, 1, x_11); +return x_44; } -lean_object* l_Lean_Elab_Tactic_evalCase___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +} +} +lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_renameInaccessibles___spec__1___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { -lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_15 = lean_ctor_get(x_1, 4); -lean_inc(x_15); -x_16 = lean_ctor_get(x_1, 2); -lean_inc(x_16); -x_17 = lean_ctor_get(x_1, 0); -lean_inc(x_17); +lean_object* x_13; +x_13 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_renameInaccessibles___spec__1___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_13; +} +} +lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_renameInaccessibles___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +_start: +{ +lean_object* x_15; +x_15 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_renameInaccessibles___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +lean_dec(x_2); lean_dec(x_1); -x_18 = 2; -x_19 = lean_unsigned_to_nat(0u); -x_20 = l_Lean_Meta_mkFreshExprMVarAt(x_2, x_15, x_16, x_18, x_17, x_19, x_10, x_11, x_12, x_13, x_14); -x_21 = lean_ctor_get(x_20, 0); -lean_inc(x_21); -x_22 = lean_ctor_get(x_20, 1); -lean_inc(x_22); -lean_dec(x_20); -lean_inc(x_21); -x_23 = l_Lean_Meta_assignExprMVar(x_4, x_21, x_10, x_11, x_12, x_13, x_22); -x_24 = lean_ctor_get(x_23, 1); +return x_15; +} +} +lean_object* l_Lean_Elab_Tactic_renameInaccessibles___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_14; +x_14 = l_Lean_Elab_Tactic_renameInaccessibles___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_14; +} +} +lean_object* l_Lean_Elab_Tactic_evalCase_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_4; +lean_dec(x_2); +x_4 = lean_apply_1(x_3, x_1); +return x_4; +} +else +{ +lean_object* x_5; lean_object* x_6; +lean_dec(x_3); +x_5 = lean_ctor_get(x_1, 0); +lean_inc(x_5); +lean_dec(x_1); +x_6 = lean_apply_1(x_2, x_5); +return x_6; +} +} +} +lean_object* l_Lean_Elab_Tactic_evalCase_match__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalCase_match__1___rarg), 3, 0); +return x_2; +} +} +lean_object* l_List_erase___at_Lean_Elab_Tactic_evalCase___spec__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_3; +x_3 = lean_box(0); +return x_3; +} +else +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_1); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; uint8_t x_7; +x_5 = lean_ctor_get(x_1, 0); +x_6 = lean_ctor_get(x_1, 1); +x_7 = lean_name_eq(x_5, x_2); +if (x_7 == 0) +{ +lean_object* x_8; +x_8 = l_List_erase___at_Lean_Elab_Tactic_evalCase___spec__1(x_6, x_2); +lean_ctor_set(x_1, 1, x_8); +return x_1; +} +else +{ +lean_free_object(x_1); +lean_dec(x_5); +return x_6; +} +} +else +{ +lean_object* x_9; lean_object* x_10; uint8_t x_11; +x_9 = lean_ctor_get(x_1, 0); +x_10 = lean_ctor_get(x_1, 1); +lean_inc(x_10); +lean_inc(x_9); +lean_dec(x_1); +x_11 = lean_name_eq(x_9, x_2); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; +x_12 = l_List_erase___at_Lean_Elab_Tactic_evalCase___spec__1(x_10, x_2); +x_13 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_13, 0, x_9); +lean_ctor_set(x_13, 1, x_12); +return x_13; +} +else +{ +lean_dec(x_9); +return x_10; +} +} +} +} +} +lean_object* l_Lean_Elab_Tactic_withCaseRef___at_Lean_Elab_Tactic_evalCase___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +_start: +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; +x_13 = l_Lean_Elab_Tactic_evalIntro___closed__6; +x_14 = lean_array_push(x_13, x_1); +x_15 = lean_array_push(x_14, x_2); +x_16 = l_Lean_nullKind; +x_17 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set(x_17, 1, x_15); +x_18 = !lean_is_exclusive(x_10); +if (x_18 == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_10, 3); +x_20 = l_Lean_replaceRef(x_17, x_19); +lean_dec(x_19); +lean_dec(x_17); +lean_ctor_set(x_10, 3, x_20); +x_21 = lean_apply_9(x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +return x_21; +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_22 = lean_ctor_get(x_10, 0); +x_23 = lean_ctor_get(x_10, 1); +x_24 = lean_ctor_get(x_10, 2); +x_25 = lean_ctor_get(x_10, 3); +x_26 = lean_ctor_get(x_10, 4); +x_27 = lean_ctor_get(x_10, 5); +x_28 = lean_ctor_get(x_10, 6); +x_29 = lean_ctor_get(x_10, 7); +lean_inc(x_29); +lean_inc(x_28); +lean_inc(x_27); +lean_inc(x_26); +lean_inc(x_25); lean_inc(x_24); -lean_dec(x_23); -x_25 = l_Lean_Expr_mvarId_x21(x_21); -lean_dec(x_21); -x_26 = lean_box(0); -x_27 = lean_apply_11(x_3, x_25, x_26, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_24); -return x_27; +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_10); +x_30 = l_Lean_replaceRef(x_17, x_25); +lean_dec(x_25); +lean_dec(x_17); +x_31 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_31, 0, x_22); +lean_ctor_set(x_31, 1, x_23); +lean_ctor_set(x_31, 2, x_24); +lean_ctor_set(x_31, 3, x_30); +lean_ctor_set(x_31, 4, x_26); +lean_ctor_set(x_31, 5, x_27); +lean_ctor_set(x_31, 6, x_28); +lean_ctor_set(x_31, 7, x_29); +x_32 = lean_apply_9(x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_31, x_11, x_12); +return x_32; +} } } static lean_object* _init_l_Lean_Elab_Tactic_evalCase___closed__1() { @@ -14154,23 +14931,6 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Tactic_evalCase___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("too many variable names provided at 'case'"); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_evalCase___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Tactic_evalCase___closed__5; -x_2 = l_Lean_stringToMessageData(x_1); -return x_2; -} -} lean_object* l_Lean_Elab_Tactic_evalCase(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { @@ -14271,7 +15031,7 @@ return x_34; } else { -lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; x_35 = lean_ctor_get(x_30, 1); lean_inc(x_35); lean_dec(x_30); @@ -14279,46 +15039,6 @@ x_36 = lean_ctor_get(x_31, 0); lean_inc(x_36); lean_dec(x_31); x_37 = l_List_erase___at_Lean_Elab_Tactic_evalCase___spec__1(x_28, x_36); -lean_inc(x_37); -lean_inc(x_19); -lean_inc(x_1); -lean_inc(x_21); -x_38 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalCase___lambda__1___boxed), 15, 4); -lean_closure_set(x_38, 0, x_21); -lean_closure_set(x_38, 1, x_1); -lean_closure_set(x_38, 2, x_19); -lean_closure_set(x_38, 3, x_37); -x_39 = l_Array_isEmpty___rarg(x_25); -if (x_39 == 0) -{ -lean_object* x_40; -lean_dec(x_37); -lean_dec(x_21); -lean_dec(x_19); -lean_dec(x_1); -lean_inc(x_36); -x_40 = l_Lean_Meta_getMVarDecl(x_36, x_6, x_7, x_8, x_9, x_35); -if (lean_obj_tag(x_40) == 0) -{ -lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; -x_41 = lean_ctor_get(x_40, 0); -lean_inc(x_41); -x_42 = lean_ctor_get(x_40, 1); -lean_inc(x_42); -lean_dec(x_40); -x_43 = lean_ctor_get(x_41, 1); -lean_inc(x_43); -lean_inc(x_43); -x_44 = lean_local_ctx_num_indices(x_43); -x_45 = lean_unsigned_to_nat(0u); -lean_inc(x_44); -x_46 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_46, 0, x_45); -lean_ctor_set(x_46, 1, x_44); -lean_ctor_set(x_46, 2, x_14); -x_47 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_47, 0, x_43); -lean_ctor_set(x_47, 1, x_25); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); @@ -14327,30 +15047,48 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); lean_inc(x_2); -lean_inc(x_44); -x_48 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_evalCase___spec__3(x_44, x_46, x_44, x_45, x_47, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_42); -lean_dec(x_46); -lean_dec(x_44); -if (lean_obj_tag(x_48) == 0) +x_38 = l_Lean_Elab_Tactic_renameInaccessibles(x_36, x_25, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_35); +if (lean_obj_tag(x_38) == 0) { -lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; uint8_t x_53; -x_49 = lean_ctor_get(x_48, 0); -lean_inc(x_49); -x_50 = lean_ctor_get(x_48, 1); +lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_39 = lean_ctor_get(x_38, 0); +lean_inc(x_39); +x_40 = lean_ctor_get(x_38, 1); +lean_inc(x_40); +lean_dec(x_38); +x_41 = lean_box(0); +lean_inc(x_39); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_39); +lean_ctor_set(x_42, 1, x_41); +x_43 = l_Lean_Elab_Tactic_setGoals(x_42, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_40); +x_44 = lean_ctor_get(x_43, 1); +lean_inc(x_44); +lean_dec(x_43); +lean_inc(x_39); +x_45 = l_Lean_Meta_getMVarTag(x_39, x_6, x_7, x_8, x_9, x_44); +if (lean_obj_tag(x_45) == 0) +{ +lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_46 = lean_ctor_get(x_45, 0); +lean_inc(x_46); +x_47 = lean_ctor_get(x_45, 1); +lean_inc(x_47); +lean_dec(x_45); +x_48 = lean_box(0); +lean_inc(x_39); +x_49 = l_Lean_Meta_setMVarTag(x_39, x_48, x_6, x_7, x_8, x_9, x_47); +x_50 = lean_ctor_get(x_49, 1); lean_inc(x_50); -lean_dec(x_48); -x_51 = lean_ctor_get(x_49, 0); -lean_inc(x_51); -x_52 = lean_ctor_get(x_49, 1); -lean_inc(x_52); lean_dec(x_49); -x_53 = l_Array_isEmpty___rarg(x_52); -lean_dec(x_52); -if (x_53 == 0) -{ -lean_object* x_54; uint8_t x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_54 = l_Lean_Elab_Tactic_evalCase___closed__6; -x_55 = 2; +lean_inc(x_21); +x_51 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalTactic), 10, 1); +lean_closure_set(x_51, 0, x_21); +x_52 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_withTacticInfoContext___rarg), 11, 2); +lean_closure_set(x_52, 0, x_1); +lean_closure_set(x_52, 1, x_51); +x_53 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_closeUsingOrAdmit), 10, 1); +lean_closure_set(x_53, 0, x_52); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); @@ -14359,30 +15097,32 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); lean_inc(x_2); -x_56 = l_Lean_Elab_log___at_Lean_Elab_Tactic_closeUsingOrAdmit___spec__3(x_54, x_55, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_50); -x_57 = lean_ctor_get(x_56, 0); +x_54 = l_Lean_Elab_Tactic_withCaseRef___at_Lean_Elab_Tactic_evalCase___spec__2(x_19, x_21, x_53, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_50); +if (lean_obj_tag(x_54) == 0) +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_55 = lean_ctor_get(x_54, 1); +lean_inc(x_55); +lean_dec(x_54); +x_56 = l_Lean_Meta_setMVarTag(x_39, x_46, x_6, x_7, x_8, x_9, x_55); +x_57 = lean_ctor_get(x_56, 1); lean_inc(x_57); -x_58 = lean_ctor_get(x_56, 1); -lean_inc(x_58); lean_dec(x_56); -x_59 = l_Lean_Elab_Tactic_evalCase___lambda__2(x_41, x_51, x_38, x_36, x_57, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_58); -lean_dec(x_57); -return x_59; -} -else +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_2); +x_58 = l_Lean_Elab_Tactic_done(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_57); +if (lean_obj_tag(x_58) == 0) { -lean_object* x_60; lean_object* x_61; -x_60 = lean_box(0); -x_61 = l_Lean_Elab_Tactic_evalCase___lambda__2(x_41, x_51, x_38, x_36, x_60, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_50); -return x_61; -} -} -else -{ -uint8_t x_62; -lean_dec(x_41); -lean_dec(x_38); -lean_dec(x_36); +lean_object* x_59; lean_object* x_60; +x_59 = lean_ctor_get(x_58, 1); +lean_inc(x_59); +lean_dec(x_58); +x_60 = l_Lean_Elab_Tactic_setGoals(x_37, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_59); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -14391,67 +15131,77 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_62 = !lean_is_exclusive(x_48); -if (x_62 == 0) -{ -return x_48; +return x_60; } else { -lean_object* x_63; lean_object* x_64; lean_object* x_65; -x_63 = lean_ctor_get(x_48, 0); -x_64 = lean_ctor_get(x_48, 1); -lean_inc(x_64); +uint8_t x_61; +lean_dec(x_37); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_61 = !lean_is_exclusive(x_58); +if (x_61 == 0) +{ +return x_58; +} +else +{ +lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_62 = lean_ctor_get(x_58, 0); +x_63 = lean_ctor_get(x_58, 1); lean_inc(x_63); -lean_dec(x_48); -x_65 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_65, 0, x_63); -lean_ctor_set(x_65, 1, x_64); -return x_65; +lean_inc(x_62); +lean_dec(x_58); +x_64 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_64, 0, x_62); +lean_ctor_set(x_64, 1, x_63); +return x_64; } } } else { -uint8_t x_66; -lean_dec(x_38); -lean_dec(x_36); -lean_dec(x_25); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); +lean_object* x_65; lean_object* x_66; lean_object* x_67; uint8_t x_68; +lean_dec(x_37); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_66 = !lean_is_exclusive(x_40); -if (x_66 == 0) +x_65 = lean_ctor_get(x_54, 0); +lean_inc(x_65); +x_66 = lean_ctor_get(x_54, 1); +lean_inc(x_66); +lean_dec(x_54); +x_67 = l_Lean_Meta_setMVarTag(x_39, x_46, x_6, x_7, x_8, x_9, x_66); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_68 = !lean_is_exclusive(x_67); +if (x_68 == 0) { -return x_40; -} -else -{ -lean_object* x_67; lean_object* x_68; lean_object* x_69; -x_67 = lean_ctor_get(x_40, 0); -x_68 = lean_ctor_get(x_40, 1); -lean_inc(x_68); -lean_inc(x_67); -lean_dec(x_40); -x_69 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_69, 0, x_67); -lean_ctor_set(x_69, 1, x_68); -return x_69; -} -} +lean_object* x_69; +x_69 = lean_ctor_get(x_67, 0); +lean_dec(x_69); +lean_ctor_set_tag(x_67, 1); +lean_ctor_set(x_67, 0, x_65); +return x_67; } else { lean_object* x_70; lean_object* x_71; -lean_dec(x_38); -lean_dec(x_25); -x_70 = lean_box(0); -x_71 = l_Lean_Elab_Tactic_evalCase___lambda__1(x_21, x_1, x_19, x_37, x_36, x_70, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_35); +x_70 = lean_ctor_get(x_67, 1); +lean_inc(x_70); +lean_dec(x_67); +x_71 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_71, 0, x_65); +lean_ctor_set(x_71, 1, x_70); return x_71; } } @@ -14459,6 +15209,78 @@ return x_71; else { uint8_t x_72; +lean_dec(x_39); +lean_dec(x_37); +lean_dec(x_21); +lean_dec(x_19); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_72 = !lean_is_exclusive(x_45); +if (x_72 == 0) +{ +return x_45; +} +else +{ +lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_73 = lean_ctor_get(x_45, 0); +x_74 = lean_ctor_get(x_45, 1); +lean_inc(x_74); +lean_inc(x_73); +lean_dec(x_45); +x_75 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_75, 0, x_73); +lean_ctor_set(x_75, 1, x_74); +return x_75; +} +} +} +else +{ +uint8_t x_76; +lean_dec(x_37); +lean_dec(x_21); +lean_dec(x_19); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_76 = !lean_is_exclusive(x_38); +if (x_76 == 0) +{ +return x_38; +} +else +{ +lean_object* x_77; lean_object* x_78; lean_object* x_79; +x_77 = lean_ctor_get(x_38, 0); +x_78 = lean_ctor_get(x_38, 1); +lean_inc(x_78); +lean_inc(x_77); +lean_dec(x_38); +x_79 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_79, 0, x_77); +lean_ctor_set(x_79, 1, x_78); +return x_79; +} +} +} +} +else +{ +uint8_t x_80; lean_dec(x_28); lean_dec(x_25); lean_dec(x_21); @@ -14472,23 +15294,23 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_72 = !lean_is_exclusive(x_30); -if (x_72 == 0) +x_80 = !lean_is_exclusive(x_30); +if (x_80 == 0) { return x_30; } else { -lean_object* x_73; lean_object* x_74; lean_object* x_75; -x_73 = lean_ctor_get(x_30, 0); -x_74 = lean_ctor_get(x_30, 1); -lean_inc(x_74); -lean_inc(x_73); +lean_object* x_81; lean_object* x_82; lean_object* x_83; +x_81 = lean_ctor_get(x_30, 0); +x_82 = lean_ctor_get(x_30, 1); +lean_inc(x_82); +lean_inc(x_81); lean_dec(x_30); -x_75 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_75, 0, x_73); -lean_ctor_set(x_75, 1, x_74); -return x_75; +x_83 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_83, 0, x_81); +lean_ctor_set(x_83, 1, x_82); +return x_83; } } } @@ -14504,51 +15326,6 @@ lean_dec(x_2); return x_3; } } -lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_evalCase___spec__3___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -lean_object* x_13; -x_13 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_evalCase___spec__3___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -return x_13; -} -} -lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_evalCase___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { -_start: -{ -lean_object* x_15; -x_15 = l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_evalCase___spec__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); -lean_dec(x_2); -lean_dec(x_1); -return x_15; -} -} -lean_object* l_Lean_Elab_Tactic_evalCase___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { -_start: -{ -lean_object* x_16; -x_16 = l_Lean_Elab_Tactic_evalCase___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); -lean_dec(x_6); -return x_16; -} -} -lean_object* l_Lean_Elab_Tactic_evalCase___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { -_start: -{ -lean_object* x_15; -x_15 = l_Lean_Elab_Tactic_evalCase___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); -lean_dec(x_5); -return x_15; -} -} static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalCase___closed__1() { _start: { @@ -14587,6 +15364,198 @@ x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } +static lean_object* _init_l_Lean_Elab_Tactic_evalRenameInaccessibles___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("renameI"); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Tactic_evalRenameInaccessibles___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_Lean_Elab_Tactic_evalDone___closed__6; +x_2 = l_Lean_Elab_Tactic_evalRenameInaccessibles___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* l_Lean_Elab_Tactic_evalRenameInaccessibles(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; uint8_t x_12; +x_11 = l_Lean_Elab_Tactic_evalRenameInaccessibles___closed__2; +lean_inc(x_1); +x_12 = l_Lean_Syntax_isOfKind(x_1, x_11); +if (x_12 == 0) +{ +lean_object* x_13; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_13 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalChoiceAux___spec__1___rarg(x_10); +return x_13; +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_14 = lean_unsigned_to_nat(1u); +x_15 = l_Lean_Syntax_getArg(x_1, x_14); +lean_dec(x_1); +x_16 = l_Lean_Syntax_getArgs(x_15); +lean_dec(x_15); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_17 = l_Lean_Elab_Tactic_getMainGoal(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_17) == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_17, 1); +lean_inc(x_19); +lean_dec(x_17); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_20 = l_Lean_Elab_Tactic_renameInaccessibles(x_18, x_16, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_19); +if (lean_obj_tag(x_20) == 0) +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +x_22 = lean_ctor_get(x_20, 1); +lean_inc(x_22); +lean_dec(x_20); +x_23 = lean_box(0); +x_24 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_24, 0, x_21); +lean_ctor_set(x_24, 1, x_23); +x_25 = l_Lean_Elab_Tactic_replaceMainGoal(x_24, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_22); +return x_25; +} +else +{ +uint8_t x_26; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_26 = !lean_is_exclusive(x_20); +if (x_26 == 0) +{ +return x_20; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_ctor_get(x_20, 0); +x_28 = lean_ctor_get(x_20, 1); +lean_inc(x_28); +lean_inc(x_27); +lean_dec(x_20); +x_29 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_29, 0, x_27); +lean_ctor_set(x_29, 1, x_28); +return x_29; +} +} +} +else +{ +uint8_t x_30; +lean_dec(x_16); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_30 = !lean_is_exclusive(x_17); +if (x_30 == 0) +{ +return x_17; +} +else +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_31 = lean_ctor_get(x_17, 0); +x_32 = lean_ctor_get(x_17, 1); +lean_inc(x_32); +lean_inc(x_31); +lean_dec(x_17); +x_33 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_33, 0, x_31); +lean_ctor_set(x_33, 1, x_32); +return x_33; +} +} +} +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalRenameInaccessibles___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("evalRenameInaccessibles"); +return x_1; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalRenameInaccessibles___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_Lean_Elab_Tactic_evalDone___closed__11; +x_2 = l___regBuiltin_Lean_Elab_Tactic_evalRenameInaccessibles___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalRenameInaccessibles___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalRenameInaccessibles), 10, 0); +return x_1; +} +} +lean_object* l___regBuiltin_Lean_Elab_Tactic_evalRenameInaccessibles(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_2 = l_Lean_Elab_Tactic_tacticElabAttribute; +x_3 = l_Lean_Elab_Tactic_evalRenameInaccessibles___closed__2; +x_4 = l___regBuiltin_Lean_Elab_Tactic_evalRenameInaccessibles___closed__2; +x_5 = l___regBuiltin_Lean_Elab_Tactic_evalRenameInaccessibles___closed__3; +x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); +return x_6; +} +} lean_object* l_Lean_Elab_Tactic_evalFirst_loop(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { @@ -15086,6 +16055,25 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalAllGoals___closed__5); res = l___regBuiltin_Lean_Elab_Tactic_evalAllGoals(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Elab_Tactic_evalAnyGoals___closed__1 = _init_l_Lean_Elab_Tactic_evalAnyGoals___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalAnyGoals___closed__1); +l_Lean_Elab_Tactic_evalAnyGoals___closed__2 = _init_l_Lean_Elab_Tactic_evalAnyGoals___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalAnyGoals___closed__2); +l_Lean_Elab_Tactic_evalAnyGoals___closed__3 = _init_l_Lean_Elab_Tactic_evalAnyGoals___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalAnyGoals___closed__3); +l___regBuiltin_Lean_Elab_Tactic_evalAnyGoals___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_evalAnyGoals___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalAnyGoals___closed__1); +l___regBuiltin_Lean_Elab_Tactic_evalAnyGoals___closed__2 = _init_l___regBuiltin_Lean_Elab_Tactic_evalAnyGoals___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalAnyGoals___closed__2); +l___regBuiltin_Lean_Elab_Tactic_evalAnyGoals___closed__3 = _init_l___regBuiltin_Lean_Elab_Tactic_evalAnyGoals___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalAnyGoals___closed__3); +l___regBuiltin_Lean_Elab_Tactic_evalAnyGoals___closed__4 = _init_l___regBuiltin_Lean_Elab_Tactic_evalAnyGoals___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalAnyGoals___closed__4); +l___regBuiltin_Lean_Elab_Tactic_evalAnyGoals___closed__5 = _init_l___regBuiltin_Lean_Elab_Tactic_evalAnyGoals___closed__5(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalAnyGoals___closed__5); +res = l___regBuiltin_Lean_Elab_Tactic_evalAnyGoals(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l___regBuiltin_Lean_Elab_Tactic_evalTacticSeq___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_evalTacticSeq___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalTacticSeq___closed__1); l___regBuiltin_Lean_Elab_Tactic_evalTacticSeq___closed__2 = _init_l___regBuiltin_Lean_Elab_Tactic_evalTacticSeq___closed__2(); @@ -15368,8 +16356,12 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalSubst___closed__3); res = l___regBuiltin_Lean_Elab_Tactic_evalSubst(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_evalCase___spec__3___closed__1 = _init_l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_evalCase___spec__3___closed__1(); -lean_mark_persistent(l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_evalCase___spec__3___closed__1); +l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_renameInaccessibles___spec__1___closed__1 = _init_l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_renameInaccessibles___spec__1___closed__1(); +lean_mark_persistent(l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_renameInaccessibles___spec__1___closed__1); +l_Lean_Elab_Tactic_renameInaccessibles___closed__1 = _init_l_Lean_Elab_Tactic_renameInaccessibles___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_renameInaccessibles___closed__1); +l_Lean_Elab_Tactic_renameInaccessibles___closed__2 = _init_l_Lean_Elab_Tactic_renameInaccessibles___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_renameInaccessibles___closed__2); l_Lean_Elab_Tactic_evalCase___closed__1 = _init_l_Lean_Elab_Tactic_evalCase___closed__1(); lean_mark_persistent(l_Lean_Elab_Tactic_evalCase___closed__1); l_Lean_Elab_Tactic_evalCase___closed__2 = _init_l_Lean_Elab_Tactic_evalCase___closed__2(); @@ -15378,10 +16370,6 @@ l_Lean_Elab_Tactic_evalCase___closed__3 = _init_l_Lean_Elab_Tactic_evalCase___cl lean_mark_persistent(l_Lean_Elab_Tactic_evalCase___closed__3); l_Lean_Elab_Tactic_evalCase___closed__4 = _init_l_Lean_Elab_Tactic_evalCase___closed__4(); lean_mark_persistent(l_Lean_Elab_Tactic_evalCase___closed__4); -l_Lean_Elab_Tactic_evalCase___closed__5 = _init_l_Lean_Elab_Tactic_evalCase___closed__5(); -lean_mark_persistent(l_Lean_Elab_Tactic_evalCase___closed__5); -l_Lean_Elab_Tactic_evalCase___closed__6 = _init_l_Lean_Elab_Tactic_evalCase___closed__6(); -lean_mark_persistent(l_Lean_Elab_Tactic_evalCase___closed__6); l___regBuiltin_Lean_Elab_Tactic_evalCase___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_evalCase___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalCase___closed__1); l___regBuiltin_Lean_Elab_Tactic_evalCase___closed__2 = _init_l___regBuiltin_Lean_Elab_Tactic_evalCase___closed__2(); @@ -15391,6 +16379,19 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalCase___closed__3); res = l___regBuiltin_Lean_Elab_Tactic_evalCase(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Elab_Tactic_evalRenameInaccessibles___closed__1 = _init_l_Lean_Elab_Tactic_evalRenameInaccessibles___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalRenameInaccessibles___closed__1); +l_Lean_Elab_Tactic_evalRenameInaccessibles___closed__2 = _init_l_Lean_Elab_Tactic_evalRenameInaccessibles___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalRenameInaccessibles___closed__2); +l___regBuiltin_Lean_Elab_Tactic_evalRenameInaccessibles___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_evalRenameInaccessibles___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalRenameInaccessibles___closed__1); +l___regBuiltin_Lean_Elab_Tactic_evalRenameInaccessibles___closed__2 = _init_l___regBuiltin_Lean_Elab_Tactic_evalRenameInaccessibles___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalRenameInaccessibles___closed__2); +l___regBuiltin_Lean_Elab_Tactic_evalRenameInaccessibles___closed__3 = _init_l___regBuiltin_Lean_Elab_Tactic_evalRenameInaccessibles___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalRenameInaccessibles___closed__3); +res = l___regBuiltin_Lean_Elab_Tactic_evalRenameInaccessibles(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l___regBuiltin_Lean_Elab_Tactic_evalFirst___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_evalFirst___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalFirst___closed__1); l___regBuiltin_Lean_Elab_Tactic_evalFirst___closed__2 = _init_l___regBuiltin_Lean_Elab_Tactic_evalFirst___closed__2(); diff --git a/stage0/stdlib/Lean/Elab/Tactic/ElabTerm.c b/stage0/stdlib/Lean/Elab/Tactic/ElabTerm.c index d24313dc6a..1b64aa4293 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/ElabTerm.c +++ b/stage0/stdlib/Lean/Elab/Tactic/ElabTerm.c @@ -18,6 +18,7 @@ lean_object* l_Lean_Meta_assert(lean_object*, lean_object*, lean_object*, lean_o lean_object* l_Std_PersistentArray_findSomeRevM_x3f___at_Lean_Elab_Tactic_evalRename___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalApplyLikeTactic(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_compileDecl___at_Lean_Elab_Term_evalExpr___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_evalRename___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalApplyLikeTactic___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t l_USize_add(size_t, size_t); lean_object* l_Lean_Elab_Tactic_evalWithReducibleAndInstances(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -33,7 +34,6 @@ static lean_object* l_Lean_Elab_Tactic_elabAsFVar___lambda__1___closed__1; lean_object* l_Std_PersistentArray_findSomeRevM_x3f___at_Lean_Elab_Tactic_evalRename___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalDecide___closed__2; lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_elabTermWithHoles___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_SavedState_restore(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); uint8_t l_USize_decEq(size_t, size_t); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalExact(lean_object*); @@ -41,6 +41,7 @@ lean_object* lean_array_uget(lean_object*, size_t); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalNativeDecide(lean_object*); lean_object* l_Lean_Elab_Tactic_elabTermForApply_match__1(lean_object*); lean_object* l_Lean_Elab_throwAbortTactic___at___private_Lean_Elab_Tactic_ElabTerm_0__Lean_Elab_Tactic_logUnassignedAndAbort___spec__1___rarg(lean_object*); +lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_withoutModifyingStateWithInfoAndMessagesImpl___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalWithReducible(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalWithReducible___closed__3; lean_object* l_Lean_Elab_Tactic_closeMainGoalUsing___lambda__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -48,12 +49,12 @@ static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalWithReducible___closed__ static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalWithReducibleAndInstances___closed__3; uint8_t l_Lean_MetavarKind_isNatural(uint8_t); lean_object* l_Lean_Elab_Tactic_evalExistsIntro(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalExact___closed__6; lean_object* l___private_Lean_Elab_Tactic_ElabTerm_0__Lean_Elab_Tactic_mkNativeAuxDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalDecide(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalRefine_x27(lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalExact___spec__1___rarg(lean_object*); +static lean_object* l_Lean_Elab_Tactic_evalRename___lambda__1___closed__3; lean_object* l_Lean_Elab_Tactic_elabTermEnsuringType_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_closeMainGoalUsing(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalTacticAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -80,13 +81,15 @@ static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalRefine___closed__2; lean_object* l_Lean_Elab_Tactic_evalNativeDecide___boxed(lean_object*); lean_object* l_Lean_Elab_Tactic_elabAsFVar_match__3(lean_object*); lean_object* l_Lean_Elab_Tactic_elabAsFVar___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_evalRename___lambda__1___closed__1; lean_object* l_Lean_Elab_Tactic_evalApply(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_withoutModifyingStateWithInfoAndMessages___at_Lean_Elab_Tactic_evalRename___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_evalNativeDecide___rarg___lambda__1___closed__2; static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalExact___spec__1___rarg___closed__1; lean_object* l_Lean_Elab_Term_mkAuxName(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalDecide___closed__5; static lean_object* l_Lean_Elab_Tactic_evalDecide___rarg___lambda__1___closed__4; -lean_object* l_Lean_Elab_Tactic_evalRename___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_evalRename___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_appArg_x21(lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalExistsIntro___closed__2; lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -96,6 +99,7 @@ static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalExistsIntro___closed__1; static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalConstructor___closed__1; lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_getFVarId___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_evalDecide___rarg___lambda__1___closed__3; +static lean_object* l_Lean_Elab_Tactic_evalRename___lambda__1___closed__2; lean_object* l_Lean_Elab_Tactic_elabTermEnsuringType_match__1(lean_object*); static lean_object* l_Lean_Elab_Tactic_evalDecide___rarg___lambda__1___closed__5; lean_object* l_Lean_Meta_mkDecide(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -106,21 +110,18 @@ lean_object* l_Lean_Meta_mkEqRefl(lean_object*, lean_object*, lean_object*, lean lean_object* l___private_Lean_Elab_Tactic_ElabTerm_0__Lean_Elab_Tactic_filterOldMVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_apply(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Tactic_ElabTerm_0__Lean_Elab_Tactic_filterOldMVars___spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); -static lean_object* l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9___lambda__1___closed__4; lean_object* l_Array_findSomeRevM_x3f_find___at_Lean_Elab_Tactic_evalRename___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalExistsIntro___closed__3; lean_object* l_Lean_throwError___at___private_Lean_Elab_Term_0__Lean_Elab_Term_applyAttributesCore___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_evalRename___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_evalRename___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_intro1Core(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_evalNativeDecide___rarg___lambda__1___closed__7; -static lean_object* l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9___lambda__1___closed__1; lean_object* l_Lean_Elab_Tactic_elabTermWithHoles(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); lean_object* l_Array_findSomeRevM_x3f_find___at_Lean_Elab_Tactic_evalRename___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_evalDecide___rarg___lambda__2___closed__2; static lean_object* l_Lean_Elab_Tactic_evalNativeDecide___rarg___closed__1; -lean_object* l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getMVarsNoDelayed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_evalRename___closed__2; static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalDecide___closed__4; @@ -137,6 +138,7 @@ lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalExact_ lean_object* l_Lean_Elab_Term_elabTerm(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_evalExact___closed__4; lean_object* l_Lean_Elab_Tactic_evalConstructor___boxed(lean_object*); +static lean_object* l_Lean_Elab_Tactic_evalRename___lambda__1___closed__4; static lean_object* l_Lean_Elab_Tactic_evalExact___closed__8; lean_object* l_Lean_replaceRef(lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalWithReducibleAndInstances___closed__2; @@ -146,7 +148,6 @@ extern lean_object* l_Lean_Elab_abortTacticExceptionId; static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalWithReducible___closed__1; lean_object* l_Lean_Elab_Tactic_getMainTarget(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_evalExact___closed__1; -static lean_object* l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9___lambda__1___closed__2; static lean_object* l_Lean_Elab_Tactic_evalDecide___rarg___lambda__1___closed__6; static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalWithReducibleAndInstances___closed__1; lean_object* l_Lean_Elab_Tactic_elabTermForApply___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -196,17 +197,14 @@ lean_object* l_Lean_LocalDecl_type(lean_object*); static lean_object* l_Lean_Elab_Tactic_evalNativeDecide___rarg___lambda__1___closed__1; static lean_object* l___private_Lean_Elab_Tactic_ElabTerm_0__Lean_Elab_Tactic_preprocessPropToDecide___lambda__2___closed__2; lean_object* l_Lean_Elab_Tactic_evalExact___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalNativeDecide___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_elabAsFVar_match__3___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_elabTermEnsuringType___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_saveState___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_assignExprMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_evalRefine___closed__1; lean_object* l_Lean_Meta_getMVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalExistsIntro___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalExact___closed__1; -static lean_object* l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9___lambda__1___closed__3; lean_object* l_Lean_Elab_throwAbortTactic___at___private_Lean_Elab_Tactic_ElabTerm_0__Lean_Elab_Tactic_logUnassignedAndAbort___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_evalApply___closed__3; static lean_object* l_Lean_Elab_Tactic_evalNativeDecide___rarg___lambda__1___closed__4; @@ -270,7 +268,6 @@ extern lean_object* l_Lean_Elab_unsupportedSyntaxExceptionId; static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalRefine___closed__1; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); lean_object* l_Lean_LocalContext_findDeclRevM_x3f___at_Lean_Elab_Tactic_evalRename___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalWithReducibleAndInstances(lean_object*); lean_object* l_Lean_Elab_Tactic_refineCore___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalContext_setUserName(lean_object*, lean_object*, lean_object*); @@ -296,6 +293,7 @@ lean_object* l_Lean_Elab_Tactic_closeMainGoalUsing___lambda__1___boxed(lean_obje static lean_object* l_Lean_Elab_Tactic_evalExistsIntro___closed__2; lean_object* l_Lean_mkConst(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_refineCore(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Tactic_evalRename___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalExact(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_elabTerm___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_evalNativeDecide___rarg___lambda__1___closed__5; @@ -6240,105 +6238,59 @@ x_2 = lean_alloc_closure((void*)(l_Lean_Meta_withNewMCtxDepth___at_Lean_Elab_Tac return x_2; } } -lean_object* l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l_Lean_Elab_withoutModifyingStateWithInfoAndMessages___at_Lean_Elab_Tactic_evalRename___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; -x_11 = l_Lean_Elab_Tactic_saveState___rarg(x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -x_12 = lean_ctor_get(x_11, 0); -lean_inc(x_12); -x_13 = lean_ctor_get(x_11, 1); -lean_inc(x_13); -lean_dec(x_11); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_2); -x_14 = lean_apply_9(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_13); -if (lean_obj_tag(x_14) == 0) +lean_object* x_11; lean_object* x_12; +x_11 = lean_apply_2(x_1, x_2, x_3); +x_12 = l___private_Lean_Elab_Term_0__Lean_Elab_Term_withoutModifyingStateWithInfoAndMessagesImpl___rarg(x_11, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_12) == 0) { -lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; -x_15 = lean_ctor_get(x_14, 0); +uint8_t x_13; +x_13 = !lean_is_exclusive(x_12); +if (x_13 == 0) +{ +return x_12; +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_14 = lean_ctor_get(x_12, 0); +x_15 = lean_ctor_get(x_12, 1); lean_inc(x_15); -x_16 = lean_ctor_get(x_14, 1); -lean_inc(x_16); -lean_dec(x_14); -x_17 = l_Lean_Elab_Tactic_SavedState_restore(x_12, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_16); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_18 = !lean_is_exclusive(x_17); -if (x_18 == 0) -{ -lean_object* x_19; -x_19 = lean_ctor_get(x_17, 0); -lean_dec(x_19); -lean_ctor_set(x_17, 0, x_15); -return x_17; -} -else -{ -lean_object* x_20; lean_object* x_21; -x_20 = lean_ctor_get(x_17, 1); -lean_inc(x_20); -lean_dec(x_17); -x_21 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_21, 0, x_15); -lean_ctor_set(x_21, 1, x_20); -return x_21; +lean_inc(x_14); +lean_dec(x_12); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_14); +lean_ctor_set(x_16, 1, x_15); +return x_16; } } else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; -x_22 = lean_ctor_get(x_14, 0); -lean_inc(x_22); -x_23 = lean_ctor_get(x_14, 1); -lean_inc(x_23); -lean_dec(x_14); -x_24 = l_Lean_Elab_Tactic_SavedState_restore(x_12, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_23); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_25 = !lean_is_exclusive(x_24); -if (x_25 == 0) +uint8_t x_17; +x_17 = !lean_is_exclusive(x_12); +if (x_17 == 0) { -lean_object* x_26; -x_26 = lean_ctor_get(x_24, 0); -lean_dec(x_26); -lean_ctor_set_tag(x_24, 1); -lean_ctor_set(x_24, 0, x_22); -return x_24; +return x_12; } else { -lean_object* x_27; lean_object* x_28; -x_27 = lean_ctor_get(x_24, 1); -lean_inc(x_27); -lean_dec(x_24); -x_28 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_28, 0, x_22); -lean_ctor_set(x_28, 1, x_27); -return x_28; +lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_18 = lean_ctor_get(x_12, 0); +x_19 = lean_ctor_get(x_12, 1); +lean_inc(x_19); +lean_inc(x_18); +lean_dec(x_12); +x_20 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_20, 0, x_18); +lean_ctor_set(x_20, 1, x_19); +return x_20; } } } } -static lean_object* _init_l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9___lambda__1___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_evalRename___lambda__1___closed__1() { _start: { lean_object* x_1; @@ -6346,16 +6298,16 @@ x_1 = lean_mk_string("failed to find a hypothesis with type"); return x_1; } } -static lean_object* _init_l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9___lambda__1___closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_evalRename___lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9___lambda__1___closed__1; +x_1 = l_Lean_Elab_Tactic_evalRename___lambda__1___closed__1; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9___lambda__1___closed__3() { +static lean_object* _init_l_Lean_Elab_Tactic_evalRename___lambda__1___closed__3() { _start: { lean_object* x_1; @@ -6363,16 +6315,16 @@ x_1 = lean_mk_string(""); return x_1; } } -static lean_object* _init_l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9___lambda__1___closed__4() { +static lean_object* _init_l_Lean_Elab_Tactic_evalRename___lambda__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9___lambda__1___closed__3; +x_1 = l_Lean_Elab_Tactic_evalRename___lambda__1___closed__3; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -lean_object* l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Lean_Elab_Tactic_evalRename___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { uint8_t x_12; lean_object* x_13; @@ -6414,11 +6366,11 @@ x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); lean_dec(x_17); x_20 = l_Lean_indentExpr(x_14); -x_21 = l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9___lambda__1___closed__2; +x_21 = l_Lean_Elab_Tactic_evalRename___lambda__1___closed__2; x_22 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_22, 0, x_21); lean_ctor_set(x_22, 1, x_20); -x_23 = l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9___lambda__1___closed__4; +x_23 = l_Lean_Elab_Tactic_evalRename___lambda__1___closed__4; x_24 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_24, 0, x_22); lean_ctor_set(x_24, 1, x_23); @@ -6533,19 +6485,10 @@ return x_39; } } } -lean_object* l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Lean_Elab_Tactic_evalRename___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_12 = lean_alloc_closure((void*)(l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9___lambda__1___boxed), 11, 2); -lean_closure_set(x_12, 0, x_1); -lean_closure_set(x_12, 1, x_2); -x_13 = l_Lean_Elab_Tactic_saveState___rarg(x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_14 = lean_ctor_get(x_13, 0); -lean_inc(x_14); -x_15 = lean_ctor_get(x_13, 1); -lean_inc(x_15); -lean_dec(x_13); +lean_object* x_12; lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); @@ -6554,118 +6497,25 @@ lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_16 = l_Lean_Meta_withNewMCtxDepth___at_Lean_Elab_Tactic_evalRename___spec__7___rarg(x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_15); -if (lean_obj_tag(x_16) == 0) +x_12 = l_Lean_Elab_withoutModifyingStateWithInfoAndMessages___at_Lean_Elab_Tactic_evalRename___spec__8(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_12) == 0) { -lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_17 = lean_ctor_get(x_16, 0); -lean_inc(x_17); -x_18 = lean_ctor_get(x_16, 1); -lean_inc(x_18); -lean_dec(x_16); -x_19 = l_Lean_Elab_Tactic_SavedState_restore(x_14, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_18); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_20 = !lean_is_exclusive(x_19); -if (x_20 == 0) -{ -lean_object* x_21; -x_21 = lean_ctor_get(x_19, 0); -lean_dec(x_21); -lean_ctor_set(x_19, 0, x_17); -return x_19; -} -else -{ -lean_object* x_22; lean_object* x_23; -x_22 = lean_ctor_get(x_19, 1); -lean_inc(x_22); -lean_dec(x_19); -x_23 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_23, 0, x_17); -lean_ctor_set(x_23, 1, x_22); -return x_23; -} -} -else -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; -x_24 = lean_ctor_get(x_16, 0); -lean_inc(x_24); -x_25 = lean_ctor_get(x_16, 1); -lean_inc(x_25); -lean_dec(x_16); -x_26 = l_Lean_Elab_Tactic_SavedState_restore(x_14, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_25); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_27 = !lean_is_exclusive(x_26); -if (x_27 == 0) -{ -lean_object* x_28; -x_28 = lean_ctor_get(x_26, 0); -lean_dec(x_28); -lean_ctor_set_tag(x_26, 1); -lean_ctor_set(x_26, 0, x_24); -return x_26; -} -else -{ -lean_object* x_29; lean_object* x_30; -x_29 = lean_ctor_get(x_26, 1); -lean_inc(x_29); -lean_dec(x_26); -x_30 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_30, 0, x_24); -lean_ctor_set(x_30, 1, x_29); -return x_30; -} -} -} -} -lean_object* l_Lean_Elab_Tactic_evalRename___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -lean_object* x_13; -lean_inc(x_11); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -x_13 = l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9(x_1, x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_14 = lean_ctor_get(x_13, 0); +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +x_14 = lean_ctor_get(x_12, 1); lean_inc(x_14); -x_15 = lean_ctor_get(x_13, 1); +lean_dec(x_12); +x_15 = lean_ctor_get(x_7, 1); lean_inc(x_15); -lean_dec(x_13); -x_16 = lean_ctor_get(x_8, 1); -lean_inc(x_16); -x_17 = l_Lean_Syntax_getId(x_3); -x_18 = l_Lean_LocalContext_setUserName(x_16, x_14, x_17); -x_19 = l_Lean_Meta_getLocalInstances(x_8, x_9, x_10, x_11, x_15); -x_20 = lean_ctor_get(x_19, 0); +x_16 = l_Lean_Syntax_getId(x_2); +x_17 = l_Lean_LocalContext_setUserName(x_15, x_13, x_16); +x_18 = l_Lean_Meta_getLocalInstances(x_7, x_8, x_9, x_10, x_14); +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 1); lean_inc(x_20); -x_21 = lean_ctor_get(x_19, 1); -lean_inc(x_21); -lean_dec(x_19); -lean_inc(x_11); +lean_dec(x_18); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); @@ -6673,16 +6523,16 @@ lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -x_22 = l_Lean_Elab_Tactic_getMainTarget(x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_21); -if (lean_obj_tag(x_22) == 0) +lean_inc(x_3); +x_21 = l_Lean_Elab_Tactic_getMainTarget(x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_20); +if (lean_obj_tag(x_21) == 0) { -lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_23 = lean_ctor_get(x_22, 0); +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_21, 0); +lean_inc(x_22); +x_23 = lean_ctor_get(x_21, 1); lean_inc(x_23); -x_24 = lean_ctor_get(x_22, 1); -lean_inc(x_24); -lean_dec(x_22); -lean_inc(x_11); +lean_dec(x_21); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); @@ -6690,24 +6540,24 @@ lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -x_25 = l_Lean_Elab_Tactic_getMainTag(x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_24); -if (lean_obj_tag(x_25) == 0) +lean_inc(x_3); +x_24 = l_Lean_Elab_Tactic_getMainTag(x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_23); +if (lean_obj_tag(x_24) == 0) { -lean_object* x_26; lean_object* x_27; uint8_t x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; -x_26 = lean_ctor_get(x_25, 0); +lean_object* x_25; lean_object* x_26; uint8_t x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_25 = lean_ctor_get(x_24, 0); +lean_inc(x_25); +x_26 = lean_ctor_get(x_24, 1); lean_inc(x_26); -x_27 = lean_ctor_get(x_25, 1); -lean_inc(x_27); -lean_dec(x_25); -x_28 = 2; -x_29 = lean_unsigned_to_nat(0u); -x_30 = l_Lean_Meta_mkFreshExprMVarAt(x_18, x_20, x_23, x_28, x_26, x_29, x_8, x_9, x_10, x_11, x_27); -x_31 = lean_ctor_get(x_30, 0); +lean_dec(x_24); +x_27 = 2; +x_28 = lean_unsigned_to_nat(0u); +x_29 = l_Lean_Meta_mkFreshExprMVarAt(x_17, x_19, x_22, x_27, x_25, x_28, x_7, x_8, x_9, x_10, x_26); +x_30 = lean_ctor_get(x_29, 0); +lean_inc(x_30); +x_31 = lean_ctor_get(x_29, 1); lean_inc(x_31); -x_32 = lean_ctor_get(x_30, 1); -lean_inc(x_32); -lean_dec(x_30); -lean_inc(x_11); +lean_dec(x_29); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); @@ -6715,34 +6565,34 @@ lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -x_33 = l_Lean_Elab_Tactic_getMainGoal(x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_32); -if (lean_obj_tag(x_33) == 0) +lean_inc(x_3); +x_32 = l_Lean_Elab_Tactic_getMainGoal(x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_31); +if (lean_obj_tag(x_32) == 0) { -lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_34 = lean_ctor_get(x_33, 0); +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_33 = lean_ctor_get(x_32, 0); +lean_inc(x_33); +x_34 = lean_ctor_get(x_32, 1); lean_inc(x_34); -x_35 = lean_ctor_get(x_33, 1); -lean_inc(x_35); -lean_dec(x_33); -lean_inc(x_31); -x_36 = l_Lean_Meta_assignExprMVar(x_34, x_31, x_8, x_9, x_10, x_11, x_35); -x_37 = lean_ctor_get(x_36, 1); -lean_inc(x_37); -lean_dec(x_36); -x_38 = l_Lean_Expr_mvarId_x21(x_31); -lean_dec(x_31); -x_39 = lean_box(0); -x_40 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_40, 0, x_38); -lean_ctor_set(x_40, 1, x_39); -x_41 = l_Lean_Elab_Tactic_replaceMainGoal(x_40, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_37); -return x_41; +lean_dec(x_32); +lean_inc(x_30); +x_35 = l_Lean_Meta_assignExprMVar(x_33, x_30, x_7, x_8, x_9, x_10, x_34); +x_36 = lean_ctor_get(x_35, 1); +lean_inc(x_36); +lean_dec(x_35); +x_37 = l_Lean_Expr_mvarId_x21(x_30); +lean_dec(x_30); +x_38 = lean_box(0); +x_39 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_39, 0, x_37); +lean_ctor_set(x_39, 1, x_38); +x_40 = l_Lean_Elab_Tactic_replaceMainGoal(x_39, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_36); +return x_40; } else { -uint8_t x_42; -lean_dec(x_31); -lean_dec(x_11); +uint8_t x_41; +lean_dec(x_30); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -6750,97 +6600,33 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_42 = !lean_is_exclusive(x_33); -if (x_42 == 0) +lean_dec(x_3); +x_41 = !lean_is_exclusive(x_32); +if (x_41 == 0) { -return x_33; +return x_32; } else { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_33, 0); -x_44 = lean_ctor_get(x_33, 1); -lean_inc(x_44); +lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_42 = lean_ctor_get(x_32, 0); +x_43 = lean_ctor_get(x_32, 1); lean_inc(x_43); -lean_dec(x_33); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_43); -lean_ctor_set(x_45, 1, x_44); -return x_45; +lean_inc(x_42); +lean_dec(x_32); +x_44 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_44, 0, x_42); +lean_ctor_set(x_44, 1, x_43); +return x_44; } } } else { -uint8_t x_46; -lean_dec(x_23); -lean_dec(x_20); -lean_dec(x_18); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_46 = !lean_is_exclusive(x_25); -if (x_46 == 0) -{ -return x_25; -} -else -{ -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_25, 0); -x_48 = lean_ctor_get(x_25, 1); -lean_inc(x_48); -lean_inc(x_47); -lean_dec(x_25); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_47); -lean_ctor_set(x_49, 1, x_48); -return x_49; -} -} -} -else -{ -uint8_t x_50; -lean_dec(x_20); -lean_dec(x_18); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_50 = !lean_is_exclusive(x_22); -if (x_50 == 0) -{ -return x_22; -} -else -{ -lean_object* x_51; lean_object* x_52; lean_object* x_53; -x_51 = lean_ctor_get(x_22, 0); -x_52 = lean_ctor_get(x_22, 1); -lean_inc(x_52); -lean_inc(x_51); +uint8_t x_45; lean_dec(x_22); -x_53 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_53, 0, x_51); -lean_ctor_set(x_53, 1, x_52); -return x_53; -} -} -} -else -{ -uint8_t x_54; -lean_dec(x_11); +lean_dec(x_19); +lean_dec(x_17); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -6848,23 +6634,88 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_54 = !lean_is_exclusive(x_13); -if (x_54 == 0) +lean_dec(x_3); +x_45 = !lean_is_exclusive(x_24); +if (x_45 == 0) { -return x_13; +return x_24; } else { -lean_object* x_55; lean_object* x_56; lean_object* x_57; -x_55 = lean_ctor_get(x_13, 0); -x_56 = lean_ctor_get(x_13, 1); -lean_inc(x_56); +lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_46 = lean_ctor_get(x_24, 0); +x_47 = lean_ctor_get(x_24, 1); +lean_inc(x_47); +lean_inc(x_46); +lean_dec(x_24); +x_48 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_48, 0, x_46); +lean_ctor_set(x_48, 1, x_47); +return x_48; +} +} +} +else +{ +uint8_t x_49; +lean_dec(x_19); +lean_dec(x_17); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_49 = !lean_is_exclusive(x_21); +if (x_49 == 0) +{ +return x_21; +} +else +{ +lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_50 = lean_ctor_get(x_21, 0); +x_51 = lean_ctor_get(x_21, 1); +lean_inc(x_51); +lean_inc(x_50); +lean_dec(x_21); +x_52 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_52, 0, x_50); +lean_ctor_set(x_52, 1, x_51); +return x_52; +} +} +} +else +{ +uint8_t x_53; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_53 = !lean_is_exclusive(x_12); +if (x_53 == 0) +{ +return x_12; +} +else +{ +lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_54 = lean_ctor_get(x_12, 0); +x_55 = lean_ctor_get(x_12, 1); lean_inc(x_55); -lean_dec(x_13); -x_57 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_57, 0, x_55); -lean_ctor_set(x_57, 1, x_56); -return x_57; +lean_inc(x_54); +lean_dec(x_12); +x_56 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_56, 0, x_54); +lean_ctor_set(x_56, 1, x_55); +return x_56; } } } @@ -6956,14 +6807,18 @@ return x_20; } else { -lean_object* x_21; lean_object* x_22; lean_object* x_23; +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; x_21 = lean_box(0); -x_22 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalRename___lambda__1___boxed), 12, 3); +x_22 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalRename___lambda__1___boxed), 11, 2); lean_closure_set(x_22, 0, x_15); lean_closure_set(x_22, 1, x_21); -lean_closure_set(x_22, 2, x_17); -x_23 = l_Lean_Elab_Tactic_withMainContext___rarg(x_22, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_23; +x_23 = lean_alloc_closure((void*)(l_Lean_Meta_withNewMCtxDepth___at_Lean_Elab_Tactic_evalRename___spec__7___rarg), 10, 1); +lean_closure_set(x_23, 0, x_22); +x_24 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalRename___lambda__2___boxed), 11, 2); +lean_closure_set(x_24, 0, x_23); +lean_closure_set(x_24, 1, x_17); +x_25 = l_Lean_Elab_Tactic_withMainContext___rarg(x_24, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_25; } } } @@ -7035,22 +6890,22 @@ lean_dec(x_4); return x_12; } } -lean_object* l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Lean_Elab_Tactic_evalRename___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l_Lean_Elab_Tactic_evalRename___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_4); return x_12; } } -lean_object* l_Lean_Elab_Tactic_evalRename___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l_Lean_Elab_Tactic_evalRename___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -lean_object* x_13; -x_13 = l_Lean_Elab_Tactic_evalRename___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -lean_dec(x_3); -return x_13; +lean_object* x_12; +x_12 = l_Lean_Elab_Tactic_evalRename___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_2); +return x_12; } } static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalRename___closed__1() { @@ -7144,7 +6999,7 @@ x_14 = l___private_Lean_Elab_Tactic_ElabTerm_0__Lean_Elab_Tactic_preprocessPropT x_15 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_15, 0, x_14); lean_ctor_set(x_15, 1, x_13); -x_16 = l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9___lambda__1___closed__4; +x_16 = l_Lean_Elab_Tactic_evalRename___lambda__1___closed__4; x_17 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_17, 0, x_15); lean_ctor_set(x_17, 1, x_16); @@ -7177,7 +7032,7 @@ x_24 = l___private_Lean_Elab_Tactic_ElabTerm_0__Lean_Elab_Tactic_preprocessPropT x_25 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_23); -x_26 = l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9___lambda__1___closed__4; +x_26 = l_Lean_Elab_Tactic_evalRename___lambda__1___closed__4; x_27 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_27, 0, x_25); lean_ctor_set(x_27, 1, x_26); @@ -7591,7 +7446,7 @@ x_34 = l_Lean_Elab_Tactic_evalDecide___rarg___lambda__2___closed__2; x_35 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_35, 0, x_34); lean_ctor_set(x_35, 1, x_33); -x_36 = l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9___lambda__1___closed__4; +x_36 = l_Lean_Elab_Tactic_evalRename___lambda__1___closed__4; x_37 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_37, 0, x_35); lean_ctor_set(x_37, 1, x_36); @@ -7730,7 +7585,7 @@ x_69 = l_Lean_Elab_Tactic_evalDecide___rarg___lambda__2___closed__2; x_70 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_70, 0, x_69); lean_ctor_set(x_70, 1, x_68); -x_71 = l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9___lambda__1___closed__4; +x_71 = l_Lean_Elab_Tactic_evalRename___lambda__1___closed__4; x_72 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_72, 0, x_70); lean_ctor_set(x_72, 1, x_71); @@ -8723,14 +8578,14 @@ l_Lean_Elab_Tactic_elabAsFVar___lambda__1___closed__1 = _init_l_Lean_Elab_Tactic lean_mark_persistent(l_Lean_Elab_Tactic_elabAsFVar___lambda__1___closed__1); l_Lean_Elab_Tactic_elabAsFVar___lambda__1___closed__2 = _init_l_Lean_Elab_Tactic_elabAsFVar___lambda__1___closed__2(); lean_mark_persistent(l_Lean_Elab_Tactic_elabAsFVar___lambda__1___closed__2); -l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9___lambda__1___closed__1 = _init_l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9___lambda__1___closed__1(); -lean_mark_persistent(l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9___lambda__1___closed__1); -l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9___lambda__1___closed__2 = _init_l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9___lambda__1___closed__2(); -lean_mark_persistent(l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9___lambda__1___closed__2); -l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9___lambda__1___closed__3 = _init_l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9___lambda__1___closed__3(); -lean_mark_persistent(l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9___lambda__1___closed__3); -l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9___lambda__1___closed__4 = _init_l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9___lambda__1___closed__4(); -lean_mark_persistent(l_Lean_withoutModifyingState___at_Lean_Elab_Tactic_evalRename___spec__8___at_Lean_Elab_Tactic_evalRename___spec__9___lambda__1___closed__4); +l_Lean_Elab_Tactic_evalRename___lambda__1___closed__1 = _init_l_Lean_Elab_Tactic_evalRename___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalRename___lambda__1___closed__1); +l_Lean_Elab_Tactic_evalRename___lambda__1___closed__2 = _init_l_Lean_Elab_Tactic_evalRename___lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalRename___lambda__1___closed__2); +l_Lean_Elab_Tactic_evalRename___lambda__1___closed__3 = _init_l_Lean_Elab_Tactic_evalRename___lambda__1___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalRename___lambda__1___closed__3); +l_Lean_Elab_Tactic_evalRename___lambda__1___closed__4 = _init_l_Lean_Elab_Tactic_evalRename___lambda__1___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_evalRename___lambda__1___closed__4); l_Lean_Elab_Tactic_evalRename___closed__1 = _init_l_Lean_Elab_Tactic_evalRename___closed__1(); lean_mark_persistent(l_Lean_Elab_Tactic_evalRename___closed__1); l_Lean_Elab_Tactic_evalRename___closed__2 = _init_l_Lean_Elab_Tactic_evalRename___closed__2(); diff --git a/stage0/stdlib/Lean/Elab/Term.c b/stage0/stdlib/Lean/Elab/Term.c index e89b2e6d16..be2b238e58 100644 --- a/stage0/stdlib/Lean/Elab/Term.c +++ b/stage0/stdlib/Lean/Elab/Term.c @@ -17,7 +17,6 @@ lean_object* l_Lean_Elab_Term_instMonadLogTermElabM___lambda__2(lean_object*, le lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_addAutoBoundImplicits___spec__6(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_resolveId_x3f___lambda__3___closed__2; lean_object* l_Lean_Elab_Term_saveContext(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4400____closed__1; lean_object* l_Lean_Elab_Term_getLevelNames(lean_object*); lean_object* l_List_reverse___rarg(lean_object*); lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_mkConsts_match__1(lean_object*); @@ -28,6 +27,7 @@ static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFn lean_object* l_Lean_Elab_Term_observing_match__1(lean_object*); lean_object* l_Lean_getConstInfo___at_Lean_Elab_Term_mkConst___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_ContainsPendingMVar_visit_match__1(lean_object*); +lean_object* l_Lean_Elab_withoutModifyingStateWithInfoAndMessages(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_instInhabitedSavedState___closed__11; lean_object* l_Lean_Elab_Term_instMonadMacroAdapterTermElabM; uint8_t l_Lean_isRecCore(lean_object*, lean_object*); @@ -134,9 +134,9 @@ lean_object* l_Lean_Elab_Term_getFVarLocalDecl_x21___boxed(lean_object*, lean_ob lean_object* l_Lean_Elab_Term_getFVarLocalDecl_x21_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_instToStringSyntheticMVarKind(lean_object*); lean_object* l_Array_append___rarg(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_withoutModifyingStateWithInfoAndMessagesImpl___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore___closed__2; static lean_object* l_Lean_Elab_Term_termElabAttribute___closed__12; -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4400____closed__2; lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFnsAux_match__3(lean_object*); static lean_object* l_Lean_Elab_Term_throwErrorIfErrors___closed__1; lean_object* l_Lean_Elab_Term_commitIfNoErrors_x3f___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -196,7 +196,6 @@ lean_object* l_Lean_Elab_Term_applyResult___rarg___boxed(lean_object*, lean_obje lean_object* l_Lean_Meta_saveState___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_anyMUnsafe_any___at_Lean_Elab_Term_logUnassignedUsingErrorInfos___spec__3(lean_object*, lean_object*, size_t, size_t); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_10002____closed__1; lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___spec__12___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkMVar(lean_object*); uint8_t l___private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImplicit(lean_object*); @@ -226,6 +225,7 @@ lean_object* l_Std_PersistentArray_append___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkAuxName_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_id___rarg___boxed(lean_object*); lean_object* l_Lean_Elab_Term_State_messages___default; +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4454____closed__4; lean_object* l_Lean_Elab_throwAbortCommand___at_Lean_Elab_Term_ensureNoUnassignedMVars___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_isLocalIdent_x3f_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_withoutErrToSorry(lean_object*); @@ -233,13 +233,13 @@ lean_object* lean_st_ref_get(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_mkCoe___closed__1; lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_throwErrorIfErrors___closed__2; -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_10002____closed__2; lean_object* l_Lean_Elab_liftMacroM___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_autoBoundImplicitExceptionId; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_withoutModifyingElabMetaStateWithInfo___spec__7(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_withoutModifyingElabMetaStateWithInfo___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_withDeclName(lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4454____closed__1; lean_object* l_Lean_throwError___at_Lean_Elab_Term_mkAuxName___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_isTypeAscription___closed__1; lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_useImplicitLambda_x3f_match__1___rarg(lean_object*, lean_object*, lean_object*); @@ -266,6 +266,7 @@ static lean_object* l_Lean_Elab_Term_instMonadLogTermElabM___closed__4; uint64_t l_Lean_Level_hash(lean_object*); lean_object* l_Lean_Elab_Term_withAutoBoundImplicit_loop_match__1(lean_object*); lean_object* l_Lean_Meta_isMonad_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4473____closed__4; static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_isNoImplicitLambda___closed__2; lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux_match__1(lean_object*); lean_object* lean_local_ctx_find_from_user_name(lean_object*, lean_object*); @@ -354,6 +355,7 @@ static lean_object* l_Lean_Elab_Term_mkExplicitBinder___closed__8; static lean_object* l_Lean_Elab_Term_instMetaEvalTermElabM___rarg___lambda__2___closed__1; static lean_object* l_Lean_Elab_Term_instMonadQuotationTermElabM___closed__4; lean_object* l_Lean_Meta_getPostponed___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4473____closed__1; static lean_object* l_Lean_Elab_Term_instToStringMVarErrorKind___closed__2; lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Term_0__Lean_Elab_Term_decorateErrorMessageWithLambdaImplicitVars___spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__18; @@ -381,7 +383,6 @@ static lean_object* l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__3; lean_object* l_Lean_Elab_Term_observing___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_instInhabitedSavedState___closed__21; static lean_object* l_Lean_Elab_throwAbortCommand___at_Lean_Elab_Term_ensureNoUnassignedMVars___spec__1___rarg___closed__1; -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4400____closed__3; lean_object* l_List_foldlM___at_Lean_Elab_Term_evalExpr___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentArray_mapM___at_Lean_Elab_Term_withoutModifyingElabMetaStateWithInfo___spec__3___boxed__const__1; lean_object* l_Lean_throwError___at_Lean_Elab_Term_throwErrorIfErrors___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -625,14 +626,15 @@ lean_object* l_Lean_throwError___at_Lean_Elab_Term_resolveId_x3f___spec__1(lean_ lean_object* l_List_findSome_x3f___rarg(lean_object*, lean_object*); lean_object* l_ReaderT_map___at_Lean_Elab_Term_instMetaEvalTermElabM___spec__13___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withMVarContext___at_Lean_Elab_Term_logUnassignedUsingErrorInfos___spec__4(lean_object*); +lean_object* l_Lean_Elab_withoutModifyingStateWithInfoAndMessages___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_commitIfDidNotPostpone(lean_object*); lean_object* l_Lean_Meta_getDelayedAssignment_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_mk_ref(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkTypeMismatchError_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFnsAux_match__2___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4419_(lean_object*); -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4400_(lean_object*); -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_10002_(lean_object*); +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4473_(lean_object*); +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4454_(lean_object*); +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_10056_(lean_object*); lean_object* l_Lean_mkAuxName___at_Lean_Elab_Term_mkAuxName___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_setElabConfig(lean_object*); static lean_object* l_Lean_Elab_Term_mkExplicitBinder___closed__14; @@ -641,7 +643,7 @@ lean_object* l_Lean_Elab_Term_getLetRecsToLift(lean_object*); lean_object* l_Lean_Elab_Term_liftLevelM___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Core_getMaxHeartbeats(lean_object*); lean_object* l_Lean_Expr_setAppPPExplicitForExposingMVars(lean_object*); -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_1567_(lean_object*); +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_1621_(lean_object*); static lean_object* l_Lean_Elab_Term_instMetaEvalTermElabM___rarg___closed__8; lean_object* l_Std_PersistentArray_forMAux___at_Lean_Elab_Term_instMetaEvalTermElabM___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryCoeSort___lambda__1___closed__8; @@ -714,7 +716,6 @@ lean_object* l_List_foldlM___at_Lean_Elab_Term_evalExpr___spec__8___boxed(lean_o lean_object* l_Lean_Elab_Term_getMessageLog___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore___lambda__1___closed__2; lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_Term_logUnassignedUsingErrorInfos___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12398____closed__1; lean_object* l_Std_PersistentArray_mapMAux___at_Lean_Elab_Term_withoutModifyingElabMetaStateWithInfo___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__13; static lean_object* l_Lean_Elab_Term_instInhabitedSavedState___closed__6; @@ -828,6 +829,7 @@ static lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore___lambda__1___closed lean_object* l_Lean_Elab_Term_mkConst(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_dropTermParens___closed__2; static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_mkSomeContext___closed__2; +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_10056____closed__2; lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_instMetaEvalTermElabM___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withMVarContextImp___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_resolveName___closed__4; @@ -851,7 +853,6 @@ lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Elab_Term_0__Lean_Ela lean_object* l_Lean_Elab_Term_Context_sectionVars___default; static lean_object* l_Lean_Elab_Term_tryPostponeIfHasMVars___closed__2; lean_object* l_Lean_Elab_Term_resolveId_x3f_match__1(lean_object*); -static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12398____closed__2; lean_object* l_Lean_Elab_Term_mkFreshBinderName___rarg(lean_object*, lean_object*); lean_object* l_Lean_evalConst___at_Lean_Elab_Term_evalExpr___spec__11(lean_object*); static lean_object* l_Lean_Elab_Term_instMonadQuotationTermElabM___closed__14; @@ -896,6 +897,7 @@ lean_object* l_Lean_Elab_withInfoContext_x27___at_Lean_Elab_Term_addTermInfo___s lean_object* l_Std_PersistentArray_push___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_isAutoBoundImplicitLocalException_x3f(lean_object*); static lean_object* l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__4; +static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12493____closed__3; lean_object* l_Lean_Meta_getMVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_mkSomeContext; lean_object* l_Lean_Elab_Term_mkFreshBinderName(lean_object*); @@ -936,10 +938,8 @@ uint8_t lean_expr_eqv(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabImplicitLambda_loop(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_instMetaEvalTermElabM___rarg___lambda__3(lean_object*); lean_object* l_Lean_Elab_Term_tryCoeThunk_x3f_match__1(lean_object*); -static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12398____closed__3; lean_object* l_Lean_throwError___at_Lean_Elab_Term_throwTypeMismatchError___spec__1(lean_object*); static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___lambda__6___closed__1; -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4419____closed__3; static lean_object* l_Lean_Elab_Term_instMonadInfoTreeTermElabM___closed__1; uint8_t l_Lean_Expr_isMVar(lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_addAutoBoundImplicits___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1010,10 +1010,12 @@ lean_object* l_Lean_Elab_Term_Context_autoBoundImplicits___default; static lean_object* l_Lean_Elab_Term_instMonadQuotationTermElabM___closed__7; lean_object* l_Lean_Elab_Term_liftLevelM___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_instMonadTermElabM___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12493____closed__1; lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFnsAux___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_is_aux_recursor(lean_object*, lean_object*); lean_object* l_Lean_Elab_log___at_Lean_Elab_Term_traceAtCmdPos___spec__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KVMap_insertCore(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4473____closed__3; static lean_object* l_Lean_Elab_Term_instMonadInfoTreeTermElabM___closed__2; lean_object* l_Lean_Elab_Term_withDeclName___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_logAt___at_Lean_Elab_Term_traceAtCmdPos___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1021,6 +1023,7 @@ lean_object* l_Lean_throwError___at_Lean_Elab_Term_throwErrorIfErrors___spec__1_ lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_isHole___boxed(lean_object*); static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_isExplicit___closed__2; lean_object* l_Lean_Elab_Term_mkAuxName_match__1(lean_object*); +static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12493____closed__2; lean_object* l_Lean_Elab_Term_tryPostponeIfMVar___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_saveContext___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_mkSomeContext___closed__3; @@ -1029,6 +1032,7 @@ lean_object* l_Lean_Elab_Term_saveState(lean_object*); lean_object* l_Lean_Elab_Term_Context_sectionFVars___default; static lean_object* l_Lean_Elab_Term_instInhabitedSavedState___closed__4; lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImplicit___boxed(lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4454____closed__3; static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_isHole___closed__1; lean_object* l_Lean_throwError___at_Lean_Elab_Term_mkAuxName___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_instToStringSyntheticMVarKind___closed__2; @@ -1061,6 +1065,7 @@ lean_object* l_Lean_Elab_Term_ContainsPendingMVar_visit_match__1___rarg(lean_obj lean_object* l_Lean_Elab_Term_adaptExpander(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getLevel(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_tryPostponeIfMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_withoutModifyingStateWithInfoAndMessagesImpl(lean_object*); lean_object* lean_nat_mul(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_evalExpr___rarg___closed__1; lean_object* l_Lean_Elab_Term_termElabAttribute___lambda__8(lean_object*); @@ -1083,6 +1088,7 @@ lean_object* l_Lean_resolveGlobalName___at_Lean_Elab_Term_resolveName___spec__1( static lean_object* l_Lean_Elab_Term_getFVarLocalDecl_x21___closed__3; lean_object* l_Lean_mkForall(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_tryCoeThunk_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4473____closed__2; lean_object* l_Lean_Elab_Term_instMonadLogTermElabM___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkSyntheticSorry(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1102,15 +1108,14 @@ lean_object* l_Lean_Meta_isExprDefEq(lean_object*, lean_object*, lean_object*, l lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryCoeSort___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_tryPostponeIfHasMVars___closed__3; -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4419____closed__4; lean_object* l_Lean_Elab_Term_getLetRecsToLift___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_resolveName_process___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getMainModule___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Term_resolveName_x27___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4454____closed__2; lean_object* l_Lean_Elab_Term_instMonadLogTermElabM___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryCoeSort___lambda__1___closed__12; lean_object* l_instHashableProd___rarg___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4419____closed__2; static lean_object* l_Lean_Elab_Term_instInhabitedSavedState___closed__20; lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImplicit___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_getFVarLocalDecl_x21___closed__5; @@ -1140,6 +1145,7 @@ lean_object* l_Lean_Elab_Term_throwTypeMismatchError___rarg(lean_object*, lean_o lean_object* l_Lean_Elab_Term_addDotCompletionInfo___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_instBEqExpr; lean_object* l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Term_withoutModifyingElabMetaStateWithInfo___spec__1(lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_10056____closed__1; static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___closed__2; lean_object* l_Lean_Elab_Term_ContainsPendingMVar_visit(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_mkExplicitBinder___closed__4; @@ -1193,8 +1199,7 @@ lean_object* l_IO_println___at_Lean_instEval___spec__1(lean_object*, lean_object lean_object* l_ReaderT_pure___at_Lean_Elab_Term_addTermInfo___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_throwErrorIfErrors(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_NameSet_contains(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4419____closed__1; -lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12398_(lean_object*); +lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12493_(lean_object*); static lean_object* l_Lean_Elab_Term_termElabAttribute___closed__10; lean_object* l_Lean_throwError___at_Lean_Elab_Term_evalExpr___spec__13(lean_object*); lean_object* l_Lean_Elab_Term_addAutoBoundImplicits(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1203,6 +1208,7 @@ static lean_object* l_Lean_Elab_Term_instMonadQuotationTermElabM___closed__2; static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryLiftAndCoe___closed__11; lean_object* l_Lean_Elab_Term_termElabAttribute___lambda__8___boxed(lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_instMetaEvalTermElabM___spec__5(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_withoutModifyingStateWithInfoAndMessages___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkFreshLevelMVar___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_resolveName_process___closed__2; @@ -1227,7 +1233,6 @@ static lean_object* l_Lean_Elab_Term_MVarErrorInfo_logError___closed__9; lean_object* l_Lean_Elab_Term_getFVarLocalDecl_x21_match__1(lean_object*); static lean_object* l_Lean_Elab_Term_instMonadQuotationTermElabM___closed__15; lean_object* l_Std_HashSetImp_expand___at___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___spec__5(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4400____closed__4; lean_object* lean_compile_decl(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_resolveName___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_resolveName_x27_match__1(lean_object*); @@ -7875,6 +7880,432 @@ lean_dec(x_5); return x_14; } } +lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_withoutModifyingStateWithInfoAndMessagesImpl___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_9 = l_Lean_Elab_Term_saveState___rarg(x_3, x_4, x_5, x_6, x_7, x_8); +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_9, 1); +lean_inc(x_11); +lean_dec(x_9); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_12 = lean_apply_7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_11); +if (lean_obj_tag(x_12) == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +x_14 = lean_ctor_get(x_12, 1); +lean_inc(x_14); +lean_dec(x_12); +x_15 = lean_st_ref_get(x_7, x_14); +x_16 = lean_ctor_get(x_15, 1); +lean_inc(x_16); +lean_dec(x_15); +x_17 = lean_st_ref_get(x_3, x_16); +x_18 = lean_ctor_get(x_10, 1); +lean_inc(x_18); +x_19 = lean_ctor_get(x_17, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_17, 1); +lean_inc(x_20); +lean_dec(x_17); +x_21 = !lean_is_exclusive(x_10); +if (x_21 == 0) +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; +x_22 = lean_ctor_get(x_10, 1); +lean_dec(x_22); +x_23 = lean_ctor_get(x_18, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_18, 1); +lean_inc(x_24); +x_25 = lean_ctor_get(x_18, 2); +lean_inc(x_25); +x_26 = lean_ctor_get(x_18, 4); +lean_inc(x_26); +lean_dec(x_18); +x_27 = !lean_is_exclusive(x_19); +if (x_27 == 0) +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; lean_object* x_33; uint8_t x_34; +x_28 = lean_ctor_get(x_19, 4); +lean_dec(x_28); +x_29 = lean_ctor_get(x_19, 2); +lean_dec(x_29); +x_30 = lean_ctor_get(x_19, 1); +lean_dec(x_30); +x_31 = lean_ctor_get(x_19, 0); +lean_dec(x_31); +lean_ctor_set(x_19, 4, x_26); +lean_ctor_set(x_19, 2, x_25); +lean_ctor_set(x_19, 1, x_24); +lean_ctor_set(x_19, 0, x_23); +lean_ctor_set(x_10, 1, x_19); +x_32 = 0; +x_33 = l_Lean_Elab_Term_SavedState_restore(x_10, x_32, x_2, x_3, x_4, x_5, x_6, x_7, x_20); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_34 = !lean_is_exclusive(x_33); +if (x_34 == 0) +{ +lean_object* x_35; +x_35 = lean_ctor_get(x_33, 0); +lean_dec(x_35); +lean_ctor_set(x_33, 0, x_13); +return x_33; +} +else +{ +lean_object* x_36; lean_object* x_37; +x_36 = lean_ctor_get(x_33, 1); +lean_inc(x_36); +lean_dec(x_33); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_13); +lean_ctor_set(x_37, 1, x_36); +return x_37; +} +} +else +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; uint8_t x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_38 = lean_ctor_get(x_19, 3); +x_39 = lean_ctor_get(x_19, 5); +lean_inc(x_39); +lean_inc(x_38); +lean_dec(x_19); +x_40 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_40, 0, x_23); +lean_ctor_set(x_40, 1, x_24); +lean_ctor_set(x_40, 2, x_25); +lean_ctor_set(x_40, 3, x_38); +lean_ctor_set(x_40, 4, x_26); +lean_ctor_set(x_40, 5, x_39); +lean_ctor_set(x_10, 1, x_40); +x_41 = 0; +x_42 = l_Lean_Elab_Term_SavedState_restore(x_10, x_41, x_2, x_3, x_4, x_5, x_6, x_7, x_20); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_43 = lean_ctor_get(x_42, 1); +lean_inc(x_43); +if (lean_is_exclusive(x_42)) { + lean_ctor_release(x_42, 0); + lean_ctor_release(x_42, 1); + x_44 = x_42; +} else { + lean_dec_ref(x_42); + x_44 = lean_box(0); +} +if (lean_is_scalar(x_44)) { + x_45 = lean_alloc_ctor(0, 2, 0); +} else { + x_45 = x_44; +} +lean_ctor_set(x_45, 0, x_13); +lean_ctor_set(x_45, 1, x_43); +return x_45; +} +} +else +{ +lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; uint8_t x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_46 = lean_ctor_get(x_10, 0); +lean_inc(x_46); +lean_dec(x_10); +x_47 = lean_ctor_get(x_18, 0); +lean_inc(x_47); +x_48 = lean_ctor_get(x_18, 1); +lean_inc(x_48); +x_49 = lean_ctor_get(x_18, 2); +lean_inc(x_49); +x_50 = lean_ctor_get(x_18, 4); +lean_inc(x_50); +lean_dec(x_18); +x_51 = lean_ctor_get(x_19, 3); +lean_inc(x_51); +x_52 = lean_ctor_get(x_19, 5); +lean_inc(x_52); +if (lean_is_exclusive(x_19)) { + lean_ctor_release(x_19, 0); + lean_ctor_release(x_19, 1); + lean_ctor_release(x_19, 2); + lean_ctor_release(x_19, 3); + lean_ctor_release(x_19, 4); + lean_ctor_release(x_19, 5); + x_53 = x_19; +} else { + lean_dec_ref(x_19); + x_53 = lean_box(0); +} +if (lean_is_scalar(x_53)) { + x_54 = lean_alloc_ctor(0, 6, 0); +} else { + x_54 = x_53; +} +lean_ctor_set(x_54, 0, x_47); +lean_ctor_set(x_54, 1, x_48); +lean_ctor_set(x_54, 2, x_49); +lean_ctor_set(x_54, 3, x_51); +lean_ctor_set(x_54, 4, x_50); +lean_ctor_set(x_54, 5, x_52); +x_55 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_55, 0, x_46); +lean_ctor_set(x_55, 1, x_54); +x_56 = 0; +x_57 = l_Lean_Elab_Term_SavedState_restore(x_55, x_56, x_2, x_3, x_4, x_5, x_6, x_7, x_20); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_58 = lean_ctor_get(x_57, 1); +lean_inc(x_58); +if (lean_is_exclusive(x_57)) { + lean_ctor_release(x_57, 0); + lean_ctor_release(x_57, 1); + x_59 = x_57; +} else { + lean_dec_ref(x_57); + x_59 = lean_box(0); +} +if (lean_is_scalar(x_59)) { + x_60 = lean_alloc_ctor(0, 2, 0); +} else { + x_60 = x_59; +} +lean_ctor_set(x_60, 0, x_13); +lean_ctor_set(x_60, 1, x_58); +return x_60; +} +} +else +{ +lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; uint8_t x_69; +x_61 = lean_ctor_get(x_12, 0); +lean_inc(x_61); +x_62 = lean_ctor_get(x_12, 1); +lean_inc(x_62); +lean_dec(x_12); +x_63 = lean_st_ref_get(x_7, x_62); +x_64 = lean_ctor_get(x_63, 1); +lean_inc(x_64); +lean_dec(x_63); +x_65 = lean_st_ref_get(x_3, x_64); +x_66 = lean_ctor_get(x_10, 1); +lean_inc(x_66); +x_67 = lean_ctor_get(x_65, 0); +lean_inc(x_67); +x_68 = lean_ctor_get(x_65, 1); +lean_inc(x_68); +lean_dec(x_65); +x_69 = !lean_is_exclusive(x_10); +if (x_69 == 0) +{ +lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; uint8_t x_75; +x_70 = lean_ctor_get(x_10, 1); +lean_dec(x_70); +x_71 = lean_ctor_get(x_66, 0); +lean_inc(x_71); +x_72 = lean_ctor_get(x_66, 1); +lean_inc(x_72); +x_73 = lean_ctor_get(x_66, 2); +lean_inc(x_73); +x_74 = lean_ctor_get(x_66, 4); +lean_inc(x_74); +lean_dec(x_66); +x_75 = !lean_is_exclusive(x_67); +if (x_75 == 0) +{ +lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; uint8_t x_80; lean_object* x_81; uint8_t x_82; +x_76 = lean_ctor_get(x_67, 4); +lean_dec(x_76); +x_77 = lean_ctor_get(x_67, 2); +lean_dec(x_77); +x_78 = lean_ctor_get(x_67, 1); +lean_dec(x_78); +x_79 = lean_ctor_get(x_67, 0); +lean_dec(x_79); +lean_ctor_set(x_67, 4, x_74); +lean_ctor_set(x_67, 2, x_73); +lean_ctor_set(x_67, 1, x_72); +lean_ctor_set(x_67, 0, x_71); +lean_ctor_set(x_10, 1, x_67); +x_80 = 0; +x_81 = l_Lean_Elab_Term_SavedState_restore(x_10, x_80, x_2, x_3, x_4, x_5, x_6, x_7, x_68); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_82 = !lean_is_exclusive(x_81); +if (x_82 == 0) +{ +lean_object* x_83; +x_83 = lean_ctor_get(x_81, 0); +lean_dec(x_83); +lean_ctor_set_tag(x_81, 1); +lean_ctor_set(x_81, 0, x_61); +return x_81; +} +else +{ +lean_object* x_84; lean_object* x_85; +x_84 = lean_ctor_get(x_81, 1); +lean_inc(x_84); +lean_dec(x_81); +x_85 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_85, 0, x_61); +lean_ctor_set(x_85, 1, x_84); +return x_85; +} +} +else +{ +lean_object* x_86; lean_object* x_87; lean_object* x_88; uint8_t x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; +x_86 = lean_ctor_get(x_67, 3); +x_87 = lean_ctor_get(x_67, 5); +lean_inc(x_87); +lean_inc(x_86); +lean_dec(x_67); +x_88 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_88, 0, x_71); +lean_ctor_set(x_88, 1, x_72); +lean_ctor_set(x_88, 2, x_73); +lean_ctor_set(x_88, 3, x_86); +lean_ctor_set(x_88, 4, x_74); +lean_ctor_set(x_88, 5, x_87); +lean_ctor_set(x_10, 1, x_88); +x_89 = 0; +x_90 = l_Lean_Elab_Term_SavedState_restore(x_10, x_89, x_2, x_3, x_4, x_5, x_6, x_7, x_68); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_91 = lean_ctor_get(x_90, 1); +lean_inc(x_91); +if (lean_is_exclusive(x_90)) { + lean_ctor_release(x_90, 0); + lean_ctor_release(x_90, 1); + x_92 = x_90; +} else { + lean_dec_ref(x_90); + x_92 = lean_box(0); +} +if (lean_is_scalar(x_92)) { + x_93 = lean_alloc_ctor(1, 2, 0); +} else { + x_93 = x_92; + lean_ctor_set_tag(x_93, 1); +} +lean_ctor_set(x_93, 0, x_61); +lean_ctor_set(x_93, 1, x_91); +return x_93; +} +} +else +{ +lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; uint8_t x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; +x_94 = lean_ctor_get(x_10, 0); +lean_inc(x_94); +lean_dec(x_10); +x_95 = lean_ctor_get(x_66, 0); +lean_inc(x_95); +x_96 = lean_ctor_get(x_66, 1); +lean_inc(x_96); +x_97 = lean_ctor_get(x_66, 2); +lean_inc(x_97); +x_98 = lean_ctor_get(x_66, 4); +lean_inc(x_98); +lean_dec(x_66); +x_99 = lean_ctor_get(x_67, 3); +lean_inc(x_99); +x_100 = lean_ctor_get(x_67, 5); +lean_inc(x_100); +if (lean_is_exclusive(x_67)) { + lean_ctor_release(x_67, 0); + lean_ctor_release(x_67, 1); + lean_ctor_release(x_67, 2); + lean_ctor_release(x_67, 3); + lean_ctor_release(x_67, 4); + lean_ctor_release(x_67, 5); + x_101 = x_67; +} else { + lean_dec_ref(x_67); + x_101 = lean_box(0); +} +if (lean_is_scalar(x_101)) { + x_102 = lean_alloc_ctor(0, 6, 0); +} else { + x_102 = x_101; +} +lean_ctor_set(x_102, 0, x_95); +lean_ctor_set(x_102, 1, x_96); +lean_ctor_set(x_102, 2, x_97); +lean_ctor_set(x_102, 3, x_99); +lean_ctor_set(x_102, 4, x_98); +lean_ctor_set(x_102, 5, x_100); +x_103 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_103, 0, x_94); +lean_ctor_set(x_103, 1, x_102); +x_104 = 0; +x_105 = l_Lean_Elab_Term_SavedState_restore(x_103, x_104, x_2, x_3, x_4, x_5, x_6, x_7, x_68); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_106 = lean_ctor_get(x_105, 1); +lean_inc(x_106); +if (lean_is_exclusive(x_105)) { + lean_ctor_release(x_105, 0); + lean_ctor_release(x_105, 1); + x_107 = x_105; +} else { + lean_dec_ref(x_105); + x_107 = lean_box(0); +} +if (lean_is_scalar(x_107)) { + x_108 = lean_alloc_ctor(1, 2, 0); +} else { + x_108 = x_107; + lean_ctor_set_tag(x_108, 1); +} +lean_ctor_set(x_108, 0, x_61); +lean_ctor_set(x_108, 1, x_106); +return x_108; +} +} +} +} +lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_withoutModifyingStateWithInfoAndMessagesImpl(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Term_0__Lean_Elab_Term_withoutModifyingStateWithInfoAndMessagesImpl___rarg), 8, 0); +return x_2; +} +} static lean_object* _init_l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__1() { _start: { @@ -8084,7 +8515,7 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_1567_(lean_object* x_1) { +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_1621_(lean_object* x_1) { _start: { lean_object* x_2; @@ -18615,7 +19046,7 @@ lean_dec(x_3); return x_12; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4400____closed__1() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4454____closed__1() { _start: { lean_object* x_1; @@ -18623,17 +19054,17 @@ x_1 = lean_mk_string("autoLift"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4400____closed__2() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4454____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4400____closed__1; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4454____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4400____closed__3() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4454____closed__3() { _start: { lean_object* x_1; @@ -18641,13 +19072,13 @@ x_1 = lean_mk_string("insert monadic lifts (i.e., `liftM` and `liftCoeM`) when n return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4400____closed__4() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4454____closed__4() { _start: { uint8_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = 1; x_2 = l_Lean_Elab_Term_mkTermElabAttribute___closed__1; -x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4400____closed__3; +x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4454____closed__3; x_4 = lean_box(x_1); x_5 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_5, 0, x_4); @@ -18656,12 +19087,12 @@ lean_ctor_set(x_5, 2, x_3); return x_5; } } -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4400_(lean_object* x_1) { +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4454_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4400____closed__2; -x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4400____closed__4; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4454____closed__2; +x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4454____closed__4; x_4 = l_Lean_Option_register___at_Lean_Elab_initFn____x40_Lean_Elab_AutoBound___hyg_4____spec__1(x_2, x_3, x_1); return x_4; } @@ -18679,7 +19110,7 @@ lean_ctor_set(x_4, 1, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4419____closed__1() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4473____closed__1() { _start: { lean_object* x_1; @@ -18687,17 +19118,17 @@ x_1 = lean_mk_string("maxCoeSize"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4419____closed__2() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4473____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4419____closed__1; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4473____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4419____closed__3() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4473____closed__3() { _start: { lean_object* x_1; @@ -18705,13 +19136,13 @@ x_1 = lean_mk_string("maximum number of instances used to construct an automatic return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4419____closed__4() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4473____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = lean_unsigned_to_nat(16u); x_2 = l_Lean_Elab_Term_mkTermElabAttribute___closed__1; -x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4419____closed__3; +x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4473____closed__3; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -18719,12 +19150,12 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4419_(lean_object* x_1) { +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4473_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4419____closed__2; -x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4419____closed__4; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4473____closed__2; +x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4473____closed__4; x_4 = l_Lean_Option_register___at_Lean_initFn____x40_Lean_Util_RecDepth___hyg_4____spec__1(x_2, x_3, x_1); return x_4; } @@ -39746,7 +40177,7 @@ lean_dec(x_3); return x_10; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_10002____closed__1() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_10056____closed__1() { _start: { lean_object* x_1; @@ -39754,21 +40185,21 @@ x_1 = lean_mk_string("letrec"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_10002____closed__2() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_10056____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_MVarErrorInfo_logError___closed__12; -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_10002____closed__1; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_10056____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_10002_(lean_object* x_1) { +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_10056_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_10002____closed__2; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_10056____closed__2; x_3 = l_Lean_registerTraceClass(x_2, x_1); return x_3; } @@ -40047,7 +40478,7 @@ lean_object* l_Lean_Elab_Term_isLetRecAuxMVar(lean_object* x_1, lean_object* x_2 _start: { lean_object* x_9; uint8_t x_10; lean_object* x_11; lean_object* x_39; lean_object* x_40; lean_object* x_41; uint8_t x_42; -x_9 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_10002____closed__2; +x_9 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_10056____closed__2; x_39 = lean_st_ref_get(x_7, x_8); x_40 = lean_ctor_get(x_39, 0); lean_inc(x_40); @@ -50592,7 +51023,44 @@ lean_dec(x_3); return x_11; } } -static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12398____closed__1() { +lean_object* l_Lean_Elab_withoutModifyingStateWithInfoAndMessages___rarg___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; lean_object* x_11; +x_10 = lean_apply_2(x_2, lean_box(0), x_1); +x_11 = l___private_Lean_Elab_Term_0__Lean_Elab_Term_withoutModifyingStateWithInfoAndMessagesImpl___rarg(x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_11; +} +} +lean_object* l_Lean_Elab_withoutModifyingStateWithInfoAndMessages___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_4 = lean_ctor_get(x_2, 1); +lean_inc(x_4); +lean_dec(x_2); +x_5 = lean_alloc_closure((void*)(l_Lean_Elab_withoutModifyingStateWithInfoAndMessages___rarg___lambda__1), 9, 1); +lean_closure_set(x_5, 0, x_3); +x_6 = lean_ctor_get(x_1, 0); +lean_inc(x_6); +x_7 = lean_apply_2(x_6, lean_box(0), x_5); +x_8 = lean_ctor_get(x_1, 1); +lean_inc(x_8); +lean_dec(x_1); +x_9 = lean_apply_1(x_8, lean_box(0)); +x_10 = lean_apply_4(x_4, lean_box(0), lean_box(0), x_7, x_9); +return x_10; +} +} +lean_object* l_Lean_Elab_withoutModifyingStateWithInfoAndMessages(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l_Lean_Elab_withoutModifyingStateWithInfoAndMessages___rarg), 3, 0); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12493____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -50602,7 +51070,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12398____closed__2() { +static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12493____closed__2() { _start: { lean_object* x_1; @@ -50610,17 +51078,17 @@ x_1 = lean_mk_string("debug"); return x_1; } } -static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12398____closed__3() { +static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12493____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_MVarErrorInfo_logError___closed__12; -x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12398____closed__2; +x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12493____closed__2; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12398_(lean_object* x_1) { +lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12493_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -50632,7 +51100,7 @@ lean_object* x_4; lean_object* x_5; lean_object* x_6; x_4 = lean_ctor_get(x_3, 1); lean_inc(x_4); lean_dec(x_3); -x_5 = l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12398____closed__1; +x_5 = l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12493____closed__1; x_6 = l_Lean_registerTraceClass(x_5, x_4); if (lean_obj_tag(x_6) == 0) { @@ -50640,7 +51108,7 @@ lean_object* x_7; lean_object* x_8; lean_object* x_9; x_7 = lean_ctor_get(x_6, 1); lean_inc(x_7); lean_dec(x_6); -x_8 = l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12398____closed__3; +x_8 = l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12493____closed__3; x_9 = l_Lean_registerTraceClass(x_8, x_7); return x_9; } @@ -51080,7 +51548,7 @@ l_Lean_Elab_Term_termElabAttribute___closed__15 = _init_l_Lean_Elab_Term_termEla lean_mark_persistent(l_Lean_Elab_Term_termElabAttribute___closed__15); l_Lean_Elab_Term_termElabAttribute___closed__16 = _init_l_Lean_Elab_Term_termElabAttribute___closed__16(); lean_mark_persistent(l_Lean_Elab_Term_termElabAttribute___closed__16); -res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_1567_(lean_io_mk_world()); +res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_1621_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_Elab_Term_termElabAttribute = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Elab_Term_termElabAttribute); @@ -51217,32 +51685,32 @@ l_Lean_Elab_Term_synthesizeInstMVarCore___closed__3 = _init_l_Lean_Elab_Term_syn lean_mark_persistent(l_Lean_Elab_Term_synthesizeInstMVarCore___closed__3); l_Lean_Elab_Term_synthesizeInstMVarCore___closed__4 = _init_l_Lean_Elab_Term_synthesizeInstMVarCore___closed__4(); lean_mark_persistent(l_Lean_Elab_Term_synthesizeInstMVarCore___closed__4); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4400____closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4400____closed__1(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4400____closed__1); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4400____closed__2 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4400____closed__2(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4400____closed__2); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4400____closed__3 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4400____closed__3(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4400____closed__3); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4400____closed__4 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4400____closed__4(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4400____closed__4); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4454____closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4454____closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4454____closed__1); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4454____closed__2 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4454____closed__2(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4454____closed__2); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4454____closed__3 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4454____closed__3(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4454____closed__3); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4454____closed__4 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4454____closed__4(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4454____closed__4); l_Lean_Elab_Term_autoLift___closed__1 = _init_l_Lean_Elab_Term_autoLift___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_autoLift___closed__1); -res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4400_(lean_io_mk_world()); +res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4454_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_Elab_Term_autoLift = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Elab_Term_autoLift); lean_dec_ref(res); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4419____closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4419____closed__1(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4419____closed__1); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4419____closed__2 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4419____closed__2(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4419____closed__2); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4419____closed__3 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4419____closed__3(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4419____closed__3); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4419____closed__4 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4419____closed__4(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4419____closed__4); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4473____closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4473____closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4473____closed__1); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4473____closed__2 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4473____closed__2(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4473____closed__2); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4473____closed__3 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4473____closed__3(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4473____closed__3); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4473____closed__4 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4473____closed__4(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4473____closed__4); l_Lean_Elab_Term_maxCoeSize___closed__1 = _init_l_Lean_Elab_Term_maxCoeSize___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_maxCoeSize___closed__1); -res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4419_(lean_io_mk_world()); +res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_4473_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_Elab_Term_maxCoeSize = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Elab_Term_maxCoeSize); @@ -51487,11 +51955,11 @@ l_Lean_Elab_Term_mkAuxName___closed__1 = _init_l_Lean_Elab_Term_mkAuxName___clos lean_mark_persistent(l_Lean_Elab_Term_mkAuxName___closed__1); l_Lean_Elab_Term_mkAuxName___closed__2 = _init_l_Lean_Elab_Term_mkAuxName___closed__2(); lean_mark_persistent(l_Lean_Elab_Term_mkAuxName___closed__2); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_10002____closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_10002____closed__1(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_10002____closed__1); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_10002____closed__2 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_10002____closed__2(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_10002____closed__2); -res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_10002_(lean_io_mk_world()); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_10056____closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_10056____closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_10056____closed__1); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_10056____closed__2 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_10056____closed__2(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_10056____closed__2); +res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_10056_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Elab_Term_isLetRecAuxMVar___lambda__2___closed__1 = _init_l_Lean_Elab_Term_isLetRecAuxMVar___lambda__2___closed__1(); @@ -51618,13 +52086,13 @@ l___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___closed_ lean_mark_persistent(l___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___closed__3); l___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___closed__4 = _init_l___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___closed__4(); lean_mark_persistent(l___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___closed__4); -l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12398____closed__1 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12398____closed__1(); -lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12398____closed__1); -l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12398____closed__2 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12398____closed__2(); -lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12398____closed__2); -l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12398____closed__3 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12398____closed__3(); -lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12398____closed__3); -res = l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12398_(lean_io_mk_world()); +l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12493____closed__1 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12493____closed__1(); +lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12493____closed__1); +l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12493____closed__2 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12493____closed__2(); +lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12493____closed__2); +l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12493____closed__3 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12493____closed__3(); +lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12493____closed__3); +res = l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12493_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Builtins.c b/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Builtins.c index a18a6a1c7e..db8f893b22 100644 --- a/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Builtins.c +++ b/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Builtins.c @@ -773,6 +773,7 @@ static lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabNameMkStr static lean_object* l_Lean_PrettyPrinter_Delaborator_delabOfScientific___lambda__1___closed__4; uint8_t l_Lean_BinderInfo_isExplicit(uint8_t); lean_object* l_Lean_Syntax_getKind(lean_object*); +lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(size_t, size_t, lean_object*); static lean_object* l_Lean_PrettyPrinter_Delaborator_getParamKinds___closed__2; uint8_t l_Lean_PrettyPrinter_Delaborator_AppMatchState_motiveNamed___default; lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delab___spec__3___rarg(lean_object*, lean_object*, lean_object*); @@ -911,7 +912,6 @@ lean_object* l_Lean_PrettyPrinter_Delaborator_shouldShowMotive(lean_object*, lea static lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabFVar___closed__6; lean_object* l_Lean_PrettyPrinter_Delaborator_SubExpr_withMDataExpr___at_Lean_PrettyPrinter_Delaborator_isRegularApp___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_string_length(lean_object*); -lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(size_t, size_t, lean_object*); static lean_object* l___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_skippingBinders_loop___rarg___lambda__1___closed__2; static lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabNameMkNum___closed__4; lean_object* l_Lean_PrettyPrinter_Delaborator_unexpandRegularApp_match__1(lean_object*); @@ -4178,7 +4178,7 @@ x_52 = lean_array_get_size(x_51); x_53 = lean_usize_of_nat(x_52); lean_dec(x_52); x_54 = x_51; -x_55 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6434____spec__3(x_53, x_48, x_54); +x_55 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_6830____spec__3(x_53, x_48, x_54); x_56 = x_55; x_57 = l_Lean_PrettyPrinter_Delaborator_delabConst___lambda__3___closed__10; x_58 = l_Lean_mkSepArray(x_56, x_57);