diff --git a/stage0/src/Init/Notation.lean b/stage0/src/Init/Notation.lean index 71bd756ec6..6d6be5fe53 100644 --- a/stage0/src/Init/Notation.lean +++ b/stage0/src/Init/Notation.lean @@ -271,7 +271,7 @@ syntax (name := simpAll) "simp_all " ("(" &"config" " := " term ")")? (&"only ") -- Auxiliary macro for lifting have/suffices/let/... -- It makes sure the "continuation" `?_` is the main goal after refining -macro "refineLift " e:term : tactic => `(focus (refine $e; rotateRight)) +macro "refineLift " e:term : tactic => `(focus (refine noImplicitLambda% $e; rotateRight)) macro "have " d:haveDecl : tactic => `(refineLift have $d:haveDecl; ?_) /- We use a priority > default, to avoid ambiguity with previous `have` notation -/ @@ -284,7 +284,7 @@ macro_rules | `(tactic| let rec $d:letRecDecls) => `(tactic| refineLift let rec $d:letRecDecls; ?_) -- Similar to `refineLift`, but using `refine'` -macro "refineLift' " e:term : tactic => `(focus (refine' $e; rotateRight)) +macro "refineLift' " e:term : tactic => `(focus (refine' noImplicitLambda% $e; rotateRight)) macro "have' " d:haveDecl : tactic => `(refineLift' have $d:haveDecl; ?_) macro (priority := high) "have'" x:ident " := " p:term : tactic => `(have' $x:ident : _ := $p) macro "let' " d:letDecl : tactic => `(refineLift' let $d:letDecl; ?_) diff --git a/stage0/src/Lean/CoreM.lean b/stage0/src/Lean/CoreM.lean index 9379c2a448..f755ccc713 100644 --- a/stage0/src/Lean/CoreM.lean +++ b/stage0/src/Lean/CoreM.lean @@ -74,7 +74,8 @@ instance : MonadResolveName CoreM where getOpenDecls := return (← read).openDecls @[inline] def liftIOCore (x : IO α) : CoreM α := do - IO.toEIO (fun (err : IO.Error) => Exception.error (← getRef) (toString err)) x + let ref ← getRef + IO.toEIO (fun (err : IO.Error) => Exception.error ref (toString err)) x instance : MonadLift IO CoreM where monadLift := liftIOCore diff --git a/stage0/src/Lean/Elab/Command.lean b/stage0/src/Lean/Elab/Command.lean index 07173b00b4..a8c438b9dd 100644 --- a/stage0/src/Lean/Elab/Command.lean +++ b/stage0/src/Lean/Elab/Command.lean @@ -131,7 +131,8 @@ private def ioErrorToMessage (ctx : Context) (ref : Syntax) (err : IO.Error) : M @[inline] def liftEIO {α} (x : EIO Exception α) : CommandElabM α := liftM x @[inline] def liftIO {α} (x : IO α) : CommandElabM α := do - IO.toEIO (fun (ex : IO.Error) => Exception.error (← read).ref ex.toString) x + let ctx ← read + IO.toEIO (fun (ex : IO.Error) => Exception.error ctx.ref ex.toString) x instance : MonadLiftT IO CommandElabM where monadLift := liftIO diff --git a/stage0/src/Lean/Elab/Do.lean b/stage0/src/Lean/Elab/Do.lean index a62cd4143b..50e3b9a7eb 100644 --- a/stage0/src/Lean/Elab/Do.lean +++ b/stage0/src/Lean/Elab/Do.lean @@ -29,13 +29,18 @@ private def getDoSeq (doStx : Syntax) : Syntax := /-- Return true if we should not lift `(<- ...)` actions nested in the syntax nodes with the given kind. -/ private def liftMethodDelimiter (k : SyntaxNodeKind) : Bool := - k == `Lean.Parser.Term.do || - k == `Lean.Parser.Term.doSeqIndent || - k == `Lean.Parser.Term.doSeqBracketed || - k == `Lean.Parser.Term.termReturn || - k == `Lean.Parser.Term.termUnless || - k == `Lean.Parser.Term.termTry || - k == `Lean.Parser.Term.termFor + k == ``Lean.Parser.Term.do || + k == ``Lean.Parser.Term.doSeqIndent || + k == ``Lean.Parser.Term.doSeqBracketed || + k == ``Lean.Parser.Term.termReturn || + k == ``Lean.Parser.Term.termUnless || + k == ``Lean.Parser.Term.termTry || + k == ``Lean.Parser.Term.termFor + +/-- Return true if we should generate an error message when lifting a method over this kind of syntax. -/ +private def liftMethodForbiddenBinder (k : SyntaxNodeKind) : Bool := + k == ``Lean.Parser.Term.fun || + k == ``Lean.Parser.Term.matchAlts private partial def hasLiftMethod : Syntax → Bool | Syntax.node k args => @@ -634,7 +639,8 @@ private def expandDoIf? (stx : Syntax) : MacroM (Option Syntax) := match stx wit e ← withRef cond <| match cond with | `(doIfCond|let $pat := $d) => `(doElem| match%$i $d:term with | $pat:term => $t | _ => $e) | `(doIfCond|let $pat ← $d) => `(doElem| match%$i ← $d with | $pat:term => $t | _ => $e) - | _ => `(doElem| if%$i $cond:doIfCond then $t else $e) + | `(doIfCond|$cond:doIfProp) => `(doElem| if%$i $cond:doIfProp then $t else $e) + | _ => `(doElem| if%$i $(Syntax.missing) then $t else $e) eIsSeq := false return some e | _ => pure none @@ -1126,27 +1132,30 @@ def ensureEOS (doElems : List Syntax) : M Unit := unless doElems.isEmpty do throwError "must be last element in a 'do' sequence" -private partial def expandLiftMethodAux (inQuot : Bool) : Syntax → StateT (List Syntax) MacroM Syntax +private partial def expandLiftMethodAux (inQuot : Bool) (inBinder : Bool) : Syntax → StateT (List Syntax) MacroM Syntax | stx@(Syntax.node k args) => if liftMethodDelimiter k then - pure stx + return stx else if k == `Lean.Parser.Term.liftMethod && !inQuot then withFreshMacroScope do + if inBinder then + Macro.throwErrorAt stx "cannot lift `(<- ...)` over a binder, this error usually happens when you are trying to lift a method nested in a `fun` or `match`-alternative, and it can often be fixed by adding a missing `do`" let term := args[1] - let term ← expandLiftMethodAux inQuot term + let term ← expandLiftMethodAux inQuot inBinder term let auxDoElem ← `(doElem| let a ← $term:term) modify fun s => s ++ [auxDoElem] `(a) else do let inAntiquot := stx.isAntiquot && !stx.isEscapedAntiquot - let args ← args.mapM (expandLiftMethodAux (inQuot && !inAntiquot || stx.isQuot)) - pure $ Syntax.node k args + let inBinder := inBinder || (!inQuot && liftMethodForbiddenBinder k) + let args ← args.mapM (expandLiftMethodAux (inQuot && !inAntiquot || stx.isQuot) inBinder) + return Syntax.node k args | stx => pure stx def expandLiftMethod (doElem : Syntax) : MacroM (List Syntax × Syntax) := do if !hasLiftMethod doElem then pure ([], doElem) else - let (doElem, doElemsNew) ← (expandLiftMethodAux false doElem).run [] + let (doElem, doElemsNew) ← (expandLiftMethodAux false false doElem).run [] pure (doElemsNew, doElem) def checkLetArrowRHS (doElem : Syntax) : M Unit := do @@ -1451,7 +1460,8 @@ mutual partial def doSeqToCode : List Syntax → M CodeBlock | [] => do liftMacroM mkPureUnitAction - | doElem::doElems => withRef doElem do + | doElem::doElems => withIncRecDepth <| withRef doElem do + checkMaxHeartbeats "'do'-expander" match (← liftMacroM <| expandMacro? doElem) with | some doElem => doSeqToCode (doElem::doElems) | none => diff --git a/stage0/src/Lean/Elab/Frontend.lean b/stage0/src/Lean/Elab/Frontend.lean index cebd5772c6..d648d89f0e 100644 --- a/stage0/src/Lean/Elab/Frontend.lean +++ b/stage0/src/Lean/Elab/Frontend.lean @@ -49,6 +49,11 @@ def setParserState (ps : Parser.ModuleParserState) : FrontendM Unit := modify fu def setMessages (msgs : MessageLog) : FrontendM Unit := modify fun s => { s with commandState := { s.commandState with messages := msgs } } def getInputContext : FrontendM Parser.InputContext := do pure (← read).inputCtx +register_builtin_option showPartialSyntaxErrors : Bool := { + defValue := false + descr := "show elaboration errors from partial syntax tree (i.e. after parser recovery)" +} + def processCommand : FrontendM Bool := do updateCmdPos let cmdState ← getCommandState @@ -57,15 +62,18 @@ def processCommand : FrontendM Bool := do let scope := cmdState.scopes.head! let pmctx := { env := cmdState.env, options := scope.opts, currNamespace := scope.currNamespace, openDecls := scope.openDecls } let pos := ictx.fileMap.toPosition pstate.pos - match profileit "parsing" scope.opts fun _ => Parser.parseCommand ictx pmctx pstate cmdState.messages with - | (cmd, ps, messages) => + match profileit "parsing" scope.opts fun _ => Parser.parseCommand ictx pmctx pstate {} with + | (cmd, ps, parseMessages) => modify fun s => { s with commands := s.commands.push cmd } setParserState ps - setMessages messages + setMessages (cmdState.messages ++ parseMessages) if Parser.isEOI cmd || Parser.isExitCommand cmd then pure true -- Done else profileitM IO.Error "elaboration" scope.opts <| elabCommandAtFrontend cmd + if parseMessages.hasErrors && !showPartialSyntaxErrors.get scope.opts then + -- discard elaboration errors + setMessages (cmdState.messages ++ parseMessages) pure false partial def processCommands : FrontendM Unit := do diff --git a/stage0/src/Lean/Elab/InfoTree.lean b/stage0/src/Lean/Elab/InfoTree.lean index 1fa0cfaa12..1abdeb5218 100644 --- a/stage0/src/Lean/Elab/InfoTree.lean +++ b/stage0/src/Lean/Elab/InfoTree.lean @@ -255,10 +255,12 @@ def mkInfoNode (info : Info) : m Unit := do Prod.fst <$> MonadFinally.tryFinally' x fun a? => do match a? with | none => modifyInfoTrees fun _ => treesSaved - | some a => modifyInfoTrees fun trees => - match (← mkInfo a) with - | Sum.inl info => treesSaved.push <| InfoTree.node info trees - | Sum.inr mvaId => treesSaved.push <| InfoTree.hole mvaId + | some a => + let info ← mkInfo a + modifyInfoTrees fun trees => + match info with + | Sum.inl info => treesSaved.push <| InfoTree.node info trees + | Sum.inr mvaId => treesSaved.push <| InfoTree.hole mvaId else x diff --git a/stage0/src/Lean/Elab/Match.lean b/stage0/src/Lean/Elab/Match.lean index cc6dada59a..39affaa00a 100644 --- a/stage0/src/Lean/Elab/Match.lean +++ b/stage0/src/Lean/Elab/Match.lean @@ -66,12 +66,27 @@ def isAuxDiscrName (n : Name) : Bool := /- We treat `@x` as atomic to avoid unnecessary extra local declarations from being inserted into the local context. Recall that `expandMatchAltsIntoMatch` uses `@` modifier. - Thus this is kind of discriminant is quite common. -/ + Thus this is kind of discriminant is quite common. + + Remark: if the discriminat is `Systax.missing`, we abort the elaboration of the `match`-expression. + This can happen due to error recovery. Example + ``` + example : (p ∨ p) → p := fun h => match + ``` + If we don't abort, the elaborator loops because we will keep trying to expand + ``` + match + ``` + into + ``` + let d := ; match + ``` + Recall that `Syntax.setArg stx i arg` is a no-op when `i` is out-of-bounds. -/ def isAtomicDiscr? (discr : Syntax) : TermElabM (Option Expr) := do match discr with | `($x:ident) => isLocalIdent? x | `(@$x:ident) => isLocalIdent? x - | _ => return none + | _ => if discr.isMissing then throwAbortTerm else return none -- See expandNonAtomicDiscrs? private def elabAtomicDiscr (discr : Syntax) : TermElabM Expr := do diff --git a/stage0/src/Lean/Elab/PreDefinition/Structural.lean b/stage0/src/Lean/Elab/PreDefinition/Structural.lean index d3876530c8..ec56bf6a64 100644 --- a/stage0/src/Lean/Elab/PreDefinition/Structural.lean +++ b/stage0/src/Lean/Elab/PreDefinition/Structural.lean @@ -7,6 +7,7 @@ import Lean.Util.ForEachExpr import Lean.Meta.ForEachExpr import Lean.Meta.RecursorInfo import Lean.Meta.Match.Match +import Lean.Meta.Transform import Lean.Elab.PreDefinition.Basic namespace Lean.Elab namespace Structural @@ -263,19 +264,20 @@ private def recArgHasLooseBVarsAt (recFnName : Name) (recArgInfo : RecArgInfo) ( app?.isSome private partial def replaceRecApps (recFnName : Name) (recArgInfo : RecArgInfo) (below : Expr) (e : Expr) : M Expr := - let rec loop : Expr → Expr → M Expr - | below, e@(Expr.lam n d b c) => do + let rec loop (below : Expr) (e : Expr) : M Expr := do + match e with + | Expr.lam n d b c => withLocalDecl n c.binderInfo (← loop below d) fun x => do mkLambdaFVars #[x] (← loop below (b.instantiate1 x)) - | below, e@(Expr.forallE n d b c) => do + | Expr.forallE n d b c => withLocalDecl n c.binderInfo (← loop below d) fun x => do mkForallFVars #[x] (← loop below (b.instantiate1 x)) - | below, Expr.letE n type val body _ => do + | Expr.letE n type val body _ => withLetDecl n (← loop below type) (← loop below val) fun x => do mkLetFVars #[x] (← loop below (body.instantiate1 x)) - | below, Expr.mdata d e _ => do pure $ mkMData d (← loop below e) - | below, Expr.proj n i e _ => do pure $ mkProj n i (← loop below e) - | below, e@(Expr.app _ _ _) => do + | Expr.mdata d e _ => return mkMData d (← loop below e) + | Expr.proj n i e _ => return mkProj n i (← loop below e) + | Expr.app _ _ _ => let processApp (e : Expr) : M Expr := e.withApp fun f args => do if f.isConstOf recFnName then @@ -296,9 +298,9 @@ private partial def replaceRecApps (recFnName : Name) (recArgInfo : RecArgInfo) let arg := argsNonFixed[i] let arg ← replaceRecApps recFnName recArgInfo below arg fArgs := fArgs.push arg - pure $ mkAppN f fArgs + return mkAppN f fArgs else - pure $ mkAppN (← loop below f) (← args.mapM (loop below)) + return mkAppN (← loop below f) (← args.mapM (loop below)) let matcherApp? ← matchMatcherApp? e match matcherApp? with | some matcherApp => @@ -333,7 +335,7 @@ private partial def replaceRecApps (recFnName : Name) (recArgInfo : RecArgInfo) mkLambdaFVars xs (← loop belowForAlt altBody) pure { matcherApp with alts := altsNew }.toExpr | none => processApp e - | _, e => ensureNoRecFn recFnName e + | e => ensureNoRecFn recFnName e loop below e private def mkBRecOn (recFnName : Name) (recArgInfo : RecArgInfo) (value : Expr) : M Expr := do @@ -375,9 +377,34 @@ private def mkBRecOn (recFnName : Name) (recArgInfo : RecArgInfo) (value : Expr) let brecOn := mkApp brecOn Farg pure $ mkAppN brecOn otherArgs +private def shouldBetaReduce (e : Expr) (recFnName : Name) : Bool := + if e.isHeadBetaTarget then + e.getAppFn.find? (·.isConstOf recFnName) |>.isSome + else + false + +/-- + Beta reduce terms where the recursive function occurs in the lambda term. + This is useful to improve the effectiveness of `elimRecursion`. + Example: + ``` + def f : Nat → Nat + | 0 => 1 + | i+1 => (fun x => f x) i + ``` +-/ +private def preprocess (e : Expr) (recFnName : Name) : CoreM Expr := + Core.transform e + fun e => return TransformStep.visit <| + if shouldBetaReduce e recFnName then + e.headBeta + else + e + private def elimRecursion (preDef : PreDefinition) : M PreDefinition := withoutModifyingEnv do lambdaTelescope preDef.value fun xs value => do addAsAxiom preDef + let value ← preprocess value preDef.declName trace[Elab.definition.structural] "{preDef.declName} {xs} :=\n{value}" let numFixed ← getFixedPrefix preDef.declName xs value trace[Elab.definition.structural] "numFixed: {numFixed}" diff --git a/stage0/src/Lean/Elab/Quotation.lean b/stage0/src/Lean/Elab/Quotation.lean index e69fdbf9b2..9dcd2dea0e 100644 --- a/stage0/src/Lean/Elab/Quotation.lean +++ b/stage0/src/Lean/Elab/Quotation.lean @@ -114,7 +114,8 @@ private partial def quoteSyntax : Syntax → TermElabM Syntax | none => Array.empty) | _ => let arr ← ids[:ids.size-1].foldrM (fun id arr => `(Array.zip $id $arr)) ids.back - `(Array.map (fun $(← mkTuple ids) => $(inner[0])) $arr) + let tuple ← mkTuple ids + `(Array.map (fun $tuple => $(inner[0])) $arr) let arr ← if k == `sepBy then `(mkSepArray $arr (mkAtom $(getSepFromSplice arg))) diff --git a/stage0/src/Lean/Elab/SetOption.lean b/stage0/src/Lean/Elab/SetOption.lean index 60c0880b2d..4bcfab4cfb 100644 --- a/stage0/src/Lean/Elab/SetOption.lean +++ b/stage0/src/Lean/Elab/SetOption.lean @@ -26,8 +26,9 @@ def elabSetOption (id : Syntax) (val : Syntax) : m Options := do throwError "unexpected set_option value {val}" where setOption (optionName : Name) (val : DataValue) : m Options := do - let decl ← IO.toEIO (fun (ex : IO.Error) => Exception.error (← getRef) ex.toString) (getOptionDecl optionName) + let ref ← getRef + let decl ← IO.toEIO (fun (ex : IO.Error) => Exception.error ref ex.toString) (getOptionDecl optionName) unless decl.defValue.sameCtor val do throwError "type mismatch at set_option" return (← getOptions).insert optionName val -end Lean.Elab \ No newline at end of file +end Lean.Elab diff --git a/stage0/src/Lean/Elab/StructInst.lean b/stage0/src/Lean/Elab/StructInst.lean index 8d0c6c16ed..77c3c11068 100644 --- a/stage0/src/Lean/Elab/StructInst.lean +++ b/stage0/src/Lean/Elab/StructInst.lean @@ -47,10 +47,13 @@ private def expandNonAtomicExplicitSource (stx : Syntax) : TermElabM (Option Syn match (← isLocalIdent? source) with | some _ => pure none | none => - let src ← `(src) - let sourceOpt := sourceOpt.setArg 0 src - let stxNew := stx.setArg 1 sourceOpt - `(let src := $source; $stxNew) + if source.isMissing then + throwAbortTerm + else + let src ← `(src) + let sourceOpt := sourceOpt.setArg 0 src + let stxNew := stx.setArg 1 sourceOpt + `(let src := $source; $stxNew) inductive Source where | none -- structure instance source has not been provieded diff --git a/stage0/src/Lean/Elab/Syntax.lean b/stage0/src/Lean/Elab/Syntax.lean index 230895a5bc..ef60a800c9 100644 --- a/stage0/src/Lean/Elab/Syntax.lean +++ b/stage0/src/Lean/Elab/Syntax.lean @@ -113,8 +113,9 @@ where let candidates ← resolveGlobalConstWithInfos (← getRef) parserName /- Convert `candidates` in a list of pairs `(c, isDescr)`, where `c` is the parser name, and `isDescr` is true iff `c` has type `Lean.ParserDescr` or `Lean.TrailingParser` -/ + let env ← getEnv candidates.filterMap fun c => - match (← getEnv).find? c with + match env.find? c with | none => none | some info => match info.type with diff --git a/stage0/src/Lean/Elab/Tactic/Induction.lean b/stage0/src/Lean/Elab/Tactic/Induction.lean index b819e39eae..960485c90d 100644 --- a/stage0/src/Lean/Elab/Tactic/Induction.lean +++ b/stage0/src/Lean/Elab/Tactic/Induction.lean @@ -128,7 +128,8 @@ partial def mkElimApp (elimName : Name) (elimInfo : ElimInfo) (targets : Array E addNewArg arg | _ => let arg ← mkFreshExprSyntheticOpaqueMVar (← getArgExpectedType) (tag := appendTag tag binderName) - modify fun s => { s with alts := s.alts.push (← getBindingName, arg.mvarId!) } + let x ← getBindingName + modify fun s => { s with alts := s.alts.push (x, arg.mvarId!) } addNewArg arg loop | _ => @@ -277,13 +278,16 @@ where Collect forward dependencies that are not in the forbidden set, and depend on some variable in `targets`. Remark: this method assumes `targets` are free variables. + + Remark: we *not* collect instance implicit arguments nor auxiliary declarations for compiling + recursive declarations. -/ private def collectForwardDeps (targets : Array Expr) (forbidden : NameSet) : MetaM NameSet := do let mut s : NameSet := targets.foldl (init := {}) fun s target => s.insert target.fvarId! let mut r : NameSet := {} for localDecl in (← getLCtx) do unless forbidden.contains localDecl.fvarId do - unless localDecl.isAuxDecl do + unless localDecl.isAuxDecl || localDecl.binderInfo.isInstImplicit do if (← getMCtx).findLocalDeclDependsOn localDecl fun fvarId => s.contains fvarId then r := r.insert localDecl.fvarId s := s.insert localDecl.fvarId diff --git a/stage0/src/Lean/Elab/Term.lean b/stage0/src/Lean/Elab/Term.lean index 1b6f3193f7..8321f112ad 100644 --- a/stage0/src/Lean/Elab/Term.lean +++ b/stage0/src/Lean/Elab/Term.lean @@ -1392,7 +1392,8 @@ def resolveName (stx : Syntax) (n : Name) (preresolved : List (Name × List Stri throwError "invalid use of explicit universe parameters, '{e}' is a local" return [(e, projs)] -- check for section variable capture by a quotation - if let some (e, projs) := preresolved.findSome? fun (n, projs) => (← read).sectionFVars.find? n |>.map (·, projs) then + let ctx ← read + if let some (e, projs) := preresolved.findSome? fun (n, projs) => ctx.sectionFVars.find? n |>.map (·, projs) then return [(e, projs)] -- section variables should shadow global decls if preresolved.isEmpty then process (← resolveGlobalName n) diff --git a/stage0/src/Lean/Meta/LevelDefEq.lean b/stage0/src/Lean/Meta/LevelDefEq.lean index bfb68753c9..17d734a08a 100644 --- a/stage0/src/Lean/Meta/LevelDefEq.lean +++ b/stage0/src/Lean/Meta/LevelDefEq.lean @@ -82,7 +82,9 @@ private def solveSelfMax (mvarId : MVarId) (v : Level) : MetaM Unit := do assignLevelMVar mvarId <| mkMaxArgsDiff mvarId v n private def postponeIsLevelDefEq (lhs : Level) (rhs : Level) : MetaM Unit := do - modifyPostponed fun postponed => postponed.push { lhs := lhs, rhs := rhs, ref := (← getRef), ctx? := (← read).defEqCtx? } + let ref ← getRef + let ctx ← read + modifyPostponed fun postponed => postponed.push { lhs := lhs, rhs := rhs, ref := ref, ctx? := ctx.defEqCtx? } mutual diff --git a/stage0/src/Lean/Meta/SizeOf.lean b/stage0/src/Lean/Meta/SizeOf.lean index 93bf664cbb..1780df4624 100644 --- a/stage0/src/Lean/Meta/SizeOf.lean +++ b/stage0/src/Lean/Meta/SizeOf.lean @@ -79,7 +79,7 @@ private partial def mkSizeOfMinors {α} (motiveFVars : Array Expr) (minorFVars : where loop (i : Nat) (minors : Array Expr) : MetaM α := do if i < minorFVars.size then - forallTelescopeReducing (← inferType minorFVars[i]) fun xs _ => + forallTelescopeReducing (← inferType minorFVars[i]) fun xs _ => do forallBoundedTelescope (← inferType minorFVars'[i]) xs.size fun xs' _ => do let mut minor ← mkNumeral (mkConst ``Nat) 1 for x in xs, x' in xs' do diff --git a/stage0/src/Lean/Server/Snapshots.lean b/stage0/src/Lean/Server/Snapshots.lean index 103c4f81aa..cea14928a4 100644 --- a/stage0/src/Lean/Server/Snapshots.lean +++ b/stage0/src/Lean/Server/Snapshots.lean @@ -6,8 +6,7 @@ Authors: Wojciech Nawrocki -/ import Init.System.IO -import Lean.Elab.Import -import Lean.Elab.Command +import Lean.Elab.Frontend /-! One can think of this module as being a partial reimplementation of Lean.Elab.Frontend which also stores a snapshot of the world after @@ -91,13 +90,13 @@ def compileNextCmd (contents : String) (snap : Snapshot) : IO (Sum Snapshot Mess let cmdState := snap.cmdState let scope := cmdState.scopes.head! let pmctx := { env := cmdState.env, options := scope.opts, currNamespace := scope.currNamespace, openDecls := scope.openDecls } - let (cmdStx, cmdParserState, msgLog) := - Parser.parseCommand inputCtx pmctx snap.mpState snap.msgLog + let (cmdStx, cmdParserState, parserMessages) := + Parser.parseCommand inputCtx pmctx snap.mpState {} let cmdPos := cmdStx.getPos?.get! if Parser.isEOI cmdStx || Parser.isExitCommand cmdStx then - Sum.inr msgLog + Sum.inr (snap.msgLog ++ parserMessages) else - let cmdStateRef ← IO.mkRef { snap.cmdState with messages := msgLog } + let cmdStateRef ← IO.mkRef { snap.cmdState with messages := snap.msgLog ++ parserMessages } let cmdCtx : Elab.Command.Context := { cmdPos := snap.endPos fileName := inputCtx.fileName @@ -107,7 +106,10 @@ def compileNextCmd (contents : String) (snap : Snapshot) : IO (Sum Snapshot Mess Elab.Command.catchExceptions (Elab.Command.elabCommand cmdStx) cmdCtx cmdStateRef - let postCmdState ← cmdStateRef.get + let mut postCmdState ← cmdStateRef.get + if parserMessages.hasErrors && !Frontend.showPartialSyntaxErrors.get scope.opts then + -- discard elaboration errors + postCmdState := { postCmdState with messages := snap.msgLog ++ parserMessages } let postCmdSnap : Snapshot := { beginPos := cmdPos stx := cmdStx diff --git a/stage0/src/shell/CMakeLists.txt b/stage0/src/shell/CMakeLists.txt index 0611478228..d2b79a457f 100644 --- a/stage0/src/shell/CMakeLists.txt +++ b/stage0/src/shell/CMakeLists.txt @@ -1,7 +1,7 @@ add_library(shell OBJECT lean.cpp) add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/bin/lean${CMAKE_EXECUTABLE_SUFFIX} - COMMAND sh -c "${CMAKE_BINARY_DIR}/bin/leanc -x none ${CMAKE_EXE_LINKER_FLAGS} $ -o ${CMAKE_BINARY_DIR}/bin/lean${CMAKE_EXECUTABLE_SUFFIX}" + COMMAND sh -c "LEANC_GMP=${GMP_LIBRARIES} ${CMAKE_BINARY_DIR}/bin/leanc -x none ${CMAKE_EXE_LINKER_FLAGS} $ -o ${CMAKE_BINARY_DIR}/bin/lean${CMAKE_EXECUTABLE_SUFFIX}" DEPENDS Init Std Lean leancpp shell) add_custom_target(lean ALL diff --git a/stage0/stdlib/Init/Data/Repr.c b/stage0/stdlib/Init/Data/Repr.c index 417296effb..090573b1b2 100644 --- a/stage0/stdlib/Init/Data/Repr.c +++ b/stage0/stdlib/Init/Data/Repr.c @@ -98,7 +98,6 @@ lean_object* l_reprStr___rarg(lean_object*, lean_object*); lean_object* l_Nat_digitChar___boxed(lean_object*); lean_object* l_Int_repr(lean_object*); lean_object* l_Char_quoteCore___closed__2; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; lean_object* l_Int_repr_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Data_Repr_0__reprSourceInfo____x40_Init_Data_Repr___hyg_1449____closed__6; lean_object* l_instReprInt___boxed(lean_object*, lean_object*); @@ -109,6 +108,7 @@ lean_object* l_instReprDecidable(lean_object*); lean_object* l_instReprFin___boxed(lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_reprArg___rarg(lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; lean_object* l_instReprTuple(lean_object*); lean_object* l_instReprSubstring___boxed(lean_object*, lean_object*); lean_object* l_instReprString(lean_object*, lean_object*); @@ -407,7 +407,7 @@ static lean_object* _init_l_instReprBool___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; diff --git a/stage0/stdlib/Init/Data/ToString/Basic.c b/stage0/stdlib/Init/Data/ToString/Basic.c index 4d5120c88d..227009b484 100644 --- a/stage0/stdlib/Init/Data/ToString/Basic.c +++ b/stage0/stdlib/Init/Data/ToString/Basic.c @@ -63,10 +63,10 @@ lean_object* l_instToStringFormat(lean_object*); lean_object* l_instToStringUInt32(uint32_t); lean_object* l_instToStringDecidable(lean_object*); lean_object* l_instReprExcept___rarg___closed__2; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; lean_object* l_instToStringUInt8___boxed(lean_object*); lean_object* l_instToStringId__1(lean_object*); lean_object* l_instToStringOption_match__1(lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_instToStringUnit___boxed(lean_object*); lean_object* l_String_toInt_x3f___closed__3; @@ -286,7 +286,7 @@ _start: if (x_1 == 0) { lean_object* x_2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; return x_2; } else @@ -350,7 +350,7 @@ _start: if (x_1 == 0) { lean_object* x_2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; return x_2; } else diff --git a/stage0/stdlib/Init/Meta.c b/stage0/stdlib/Init/Meta.c index f8385943e8..fa3037271b 100644 --- a/stage0/stdlib/Init/Meta.c +++ b/stage0/stdlib/Init/Meta.c @@ -186,7 +186,6 @@ lean_object* lean_string_utf8_next(lean_object*, lean_object*); lean_object* l_Lean_termEval__prio_____closed__2; lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_113____spec__1(lean_object*, lean_object*); lean_object* l_Lean_Syntax_getTrailingSize_match__1___rarg(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; lean_object* l_Lean_instQuoteSubstring___closed__2; lean_object* l_Lean_Syntax_isLit_x3f___boxed(lean_object*, lean_object*); lean_object* l___private_Init_Meta_0__Lean_quoteName___closed__8; @@ -223,6 +222,7 @@ lean_object* l_Array_isEqvAux___at_Lean_Syntax_structEq___spec__1___boxed(lean_o lean_object* l_Lean_Syntax_setHeadInfoAux_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_SepArray_ofElemsUsingRef___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_instDecidableNot___rarg(uint8_t); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; lean_object* l_Lean_Syntax_mkStrLit___boxed(lean_object*, lean_object*); lean_object* l_Lean_Syntax_mkApp_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_expandInterpolatedStr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -8877,7 +8877,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_instQuoteBool___closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } diff --git a/stage0/stdlib/Init/Notation.c b/stage0/stdlib/Init/Notation.c index fd8d0f2eba..cccd7d96f2 100644 --- a/stage0/stdlib/Init/Notation.c +++ b/stage0/stdlib/Init/Notation.c @@ -46,7 +46,6 @@ lean_object* l_rawNatLit___closed__9; lean_object* l_Lean_Parser_Tactic_tacticRepeat_____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_4969____closed__9; lean_object* l_term_u2039___u203a___closed__7; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_11579____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_3499____closed__8; lean_object* l_term___x25_____closed__1; @@ -239,7 +238,7 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_1966_(lean_object*, lean_objec lean_object* l_myMacro____x40_Init_Notation___hyg_2278_(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_2140_(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_2523_(lean_object*, lean_object*, lean_object*); -lean_object* l_myMacro____x40_Init_Notation___hyg_22312_(lean_object*, lean_object*, lean_object*); +lean_object* l_myMacro____x40_Init_Notation___hyg_22344_(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_15419_(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_14874_(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_13954_(lean_object*, lean_object*, lean_object*); @@ -275,7 +274,6 @@ lean_object* l_term___x7c_x7c_x7c_____closed__1; lean_object* l_term___x7e_x3d_____closed__1; lean_object* l_term___u2245_____closed__1; lean_object* l_prio_x28___x29___closed__6; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21326____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_10390____closed__6; lean_object* l_termIfThenElse___closed__9; lean_object* l_Lean_Parser_Attr_simp___closed__2; @@ -284,12 +282,11 @@ lean_object* l_Lean_Parser_Tactic_tacticSuffices_____closed__1; lean_object* l_Lean_Parser_Tactic_induction___closed__2; lean_object* l_term___x3c_x3c_x3c_____closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_10870____closed__6; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__7; lean_object* l_Lean_Parser_Tactic_simpLemma___closed__3; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__6; lean_object* l_myMacro____x40_Init_Notation___hyg_13765____closed__6; lean_object* l_termDepIfThenElse___closed__31; lean_object* l_stx___x3c_x7c_x3e_____closed__1; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21326____closed__1; lean_object* l_Lean_SourceInfo_fromRef(lean_object*); lean_object* l_Lean_Parser_Tactic_simpAll___closed__8; lean_object* l_myMacro____x40_Init_Notation___hyg_4724____closed__5; @@ -374,7 +371,7 @@ lean_object* l_term___x5e_____closed__7; lean_object* l_Lean_Parser_Tactic_tacticUnhygienic_____closed__6; lean_object* l_Lean_Parser_Tactic_simp___closed__19; lean_object* l_Lean_Parser_Tactic_skip___closed__2; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__8; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20874____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_7602____closed__3; lean_object* l_term___x7c_x7c_x7c_____closed__2; lean_object* l_Lean_Parser_Tactic_injection___closed__8; @@ -414,8 +411,8 @@ lean_object* l_Lean_Parser_Tactic_tacticTrivial___closed__4; lean_object* l_Lean_Parser_Tactic_case___closed__11; lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__12; lean_object* l_Lean_Parser_Tactic_tacticLet_____closed__4; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_7847____closed__1; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__5; lean_object* l_Lean_Parser_Tactic_rwRule___closed__8; lean_object* l_rawNatLit___closed__8; lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__16; @@ -452,7 +449,6 @@ lean_object* lean_array_push(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_injection___closed__9; lean_object* l_myMacro____x40_Init_Notation___hyg_14874____closed__3; lean_object* lean_array_get_size(lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__4; lean_object* l_termDepIfThenElse; lean_object* l_myMacro____x40_Init_Notation___hyg_10870____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_5680____closed__8; @@ -479,7 +475,6 @@ lean_object* l_Lean_Parser_Tactic_subst___closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_5680____closed__7; lean_object* l_term___x5e_____closed__3; lean_object* l_term_x7e_x7e_x7e__; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__2; lean_object* l_term___x3c__; lean_object* l_Lean_Parser_Tactic_erewriteSeq___closed__3; lean_object* l_Lean_Parser_Tactic_tacticInferInstance___closed__5; @@ -497,7 +492,6 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_11089____closed__4; lean_object* l_term___u2218_____closed__1; lean_object* l_Lean_Parser_Tactic_clear___closed__4; lean_object* l_Lean_Parser_Tactic_existsIntro___closed__4; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__6; lean_object* l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__5; lean_object* l_term___x3c_x2a_____closed__4; lean_object* l_stx___x3c_x7c_x3e__; @@ -523,10 +517,10 @@ lean_object* l_Lean_Parser_Tactic_revert___closed__4; lean_object* l_termMax__prec___closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_7120____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_3009____closed__2; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21683____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_1481____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_tacticRefineLift_x27_____closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_10870____closed__1; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__1; lean_object* l_Lean_Parser_Tactic_rwRule___closed__6; lean_object* l_term_x2d_____closed__2; lean_object* l_term_x21_____closed__3; @@ -535,10 +529,9 @@ lean_object* l_Lean_Parser_Tactic_location___closed__5; lean_object* l_term___x26_x26__; lean_object* l_term___x24_______closed__5; lean_object* l_Lean_Parser_Tactic_injection___closed__1; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20842____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_case___closed__10; lean_object* l_Lean_Parser_Tactic_locationHyp___closed__7; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__3; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__7; lean_object* l_myMacro____x40_Init_Notation___hyg_11089____closed__7; lean_object* l_Lean_Parser_Tactic_done___closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_6393____closed__3; @@ -560,10 +553,8 @@ lean_object* l_termIfThenElse___closed__11; lean_object* l_myMacro____x40_Init_Notation___hyg_7120____closed__1; lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_15637____closed__4; lean_object* l_Lean_Parser_Tactic_apply___closed__5; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__9; lean_object* l_Lean_Parser_Tactic_focus___closed__2; lean_object* l_Lean_Parser_Tactic_assumption___closed__4; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__3; lean_object* l_Lean_Parser_Tactic_existsIntro; lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__14; lean_object* l_Lean_Parser_Tactic_intros___closed__6; @@ -574,6 +565,7 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_12559____closed__9; lean_object* l_Lean_Parser_Tactic_contradiction; lean_object* l_Lean_Parser_Tactic_rw___closed__1; lean_object* l_Lean_Parser_Tactic_clear___closed__1; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__1; lean_object* l_termWithout__expected__type_____closed__2; lean_object* l_Lean_Parser_Tactic_clear___closed__2; lean_object* l_Lean_Parser_Tactic_clear; @@ -588,8 +580,8 @@ lean_object* l_Lean_Parser_Tactic_rotateLeft___closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_7602____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_15419____closed__3; lean_object* l_Lean_Parser_Tactic_simp___closed__17; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__4; lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17460____closed__2; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20179____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_11334____closed__8; lean_object* l_term___x3c_x7c_x3e_____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_11824____closed__2; @@ -620,7 +612,7 @@ lean_object* l_prioDefault___closed__4; lean_object* l_termDepIfThenElse___closed__16; lean_object* l_myMacro____x40_Init_Notation___hyg_557____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_tacticHave_____closed__7; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21756____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit_match__1___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__18; lean_object* l_term_x21_____closed__5; @@ -629,7 +621,6 @@ lean_object* l_precMin___closed__2; lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_113____spec__1(lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_1346____closed__6; lean_object* l_term___x3c_x3d_____closed__1; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; lean_object* l_stx___x3f___closed__1; lean_object* l_term___x24_______closed__8; lean_object* l_Lean_Parser_Tactic_tacticAdmit___closed__3; @@ -646,7 +637,6 @@ lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__7; lean_object* l_Lean_Parser_Tactic_rewrite; lean_object* l_myMacro____x40_Init_Notation___hyg_11334____closed__4; lean_object* l_Lean_Parser_Tactic_focus___closed__4; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__2; lean_object* l_term___x7c_x7c_____closed__1; lean_object* l_Lean_Parser_Tactic_rotateLeft___closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_13954____closed__6; @@ -665,6 +655,7 @@ lean_object* l_term___x24_______closed__1; lean_object* l_Lean_Parser_Tactic_simp___closed__8; lean_object* l_term___x3c_x24_x3e_____closed__3; lean_object* l_term_x21_____closed__2; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__4; lean_object* l_term___x7c_x7c_x7c_____closed__6; lean_object* l_term___x5c_x2f_____closed__5; lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__10; @@ -684,7 +675,6 @@ lean_object* l_term___x3e_x3e_____closed__4; lean_object* l_term___xd7_____closed__7; lean_object* l_term___x3d_____closed__4; lean_object* l_termDepIfThenElse___closed__20; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__2; lean_object* l_term___u2228__; lean_object* l_term_xac__; lean_object* l_Lean_Parser_Tactic_tacticHave__; @@ -721,13 +711,14 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_15419____closed__5; lean_object* l_Lean_Parser_Tactic_refine___closed__3; lean_object* l_Lean_Parser_Tactic_induction___closed__16; lean_object* l_termWithout__expected__type_____closed__4; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; lean_object* l_Lean_Parser_Tactic_withReducibleAndInstances___closed__2; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__7; lean_object* l_Lean_Parser_Tactic_cases; lean_object* l_myMacro____x40_Init_Notation___hyg_7602____closed__2; lean_object* l_term_u2039___u203a___closed__1; lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__9; lean_object* l_term___x3c_x7c_x3e_____closed__4; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__1; lean_object* l_term_x21_____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_6638____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_12804____closed__2; @@ -784,8 +775,8 @@ lean_object* l_stx___x3c_x7c_x3e_____closed__3; lean_object* l_Lean_Parser_Tactic_simpErase___closed__1; lean_object* l_term___u2218_____closed__7; lean_object* l_term___x3c_x24_x3e_____closed__5; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21797____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_tacticAdmit___closed__5; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__3; lean_object* l_term___x3e_x3d_____closed__3; lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_6638____closed__1; @@ -802,12 +793,11 @@ lean_object* l_term___x3c_x7c_____closed__5; lean_object* l_Lean_Parser_Tactic_locationTargets; lean_object* l_Lean_Parser_Tactic_tacticSuffices_____closed__4; lean_object* l_Lean_Parser_Tactic_change___closed__8; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__1; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__2; lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16699____closed__5; lean_object* l_Lean_Parser_Tactic_tacticSuffices_____closed__8; lean_object* l_myMacro____x40_Init_Notation___hyg_3989____closed__5; lean_object* l_Lean_Parser_Syntax_addPrec___closed__3; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__2; lean_object* l_stx___x2c_x2a___closed__4; lean_object* l_Lean_Parser_Tactic_traceState___closed__2; lean_object* l_term___x2f_____closed__3; @@ -832,6 +822,7 @@ lean_object* l_term___x3e_x3e_x3d_____closed__1; lean_object* l_Lean_Parser_Tactic_withReducibleAndInstances___closed__1; lean_object* l_stx___x3f___closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_4234____closed__9; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_4724____closed__8; lean_object* l_Lean_Parser_Tactic_expandERw(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_intro___closed__11; @@ -840,10 +831,10 @@ lean_object* l_termDepIfThenElse___closed__23; lean_object* l_term___u2218_____closed__3; lean_object* l_precMin; lean_object* l_term___x2a_x3e_____closed__5; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__4; lean_object* l_Lean_Parser_Tactic_refine_x27___closed__5; lean_object* l_prioLow___closed__1; lean_object* l_Lean_Parser_Tactic_erewrite___closed__2; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__9; lean_object* l_myMacro____x40_Init_Notation___hyg_3744____closed__3; lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_addPrec___closed__15; @@ -897,7 +888,6 @@ lean_object* l_term___u2264_____closed__6; lean_object* l_prio_x28___x29; lean_object* l_term___x2d__; lean_object* l_term___x5c_x2f_____closed__2; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__5; lean_object* l_Lean_Parser_Tactic_tacticRfl___closed__3; lean_object* l_Lean_Parser_Tactic_simpAll___closed__6; lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_15637____closed__1; @@ -912,12 +902,9 @@ lean_object* l_precLead; lean_object* l_myMacro____x40_Init_Notation___hyg_5214____closed__3; lean_object* l_precMin1___closed__5; lean_object* l_prioHigh___closed__5; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_term___u2227_____closed__4; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_13954____closed__11; lean_object* l_term_x25_x5b___x7c___x5d___closed__7; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20163____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_13765____closed__3; lean_object* l_Lean_Parser_Tactic_simp___closed__21; lean_object* l_Lean_Parser_Tactic_changeWith___closed__7; @@ -929,7 +916,6 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_12559____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_11824____closed__8; lean_object* l_Lean_Parser_Tactic_rw___closed__3; lean_object* l_Lean_Parser_Tactic_letrec___closed__11; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__4; lean_object* l_Lean_Parser_Tactic_revert___closed__3; lean_object* l_Lean_Parser_Tactic_intros___closed__1; lean_object* l_term___x5e_x5e_x5e_____closed__7; @@ -956,9 +942,9 @@ lean_object* l_Lean_Parser_Tactic_revert___closed__6; lean_object* l_term___x2a_____closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_3009____closed__1; lean_object* l_prioDefault___closed__2; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__1; lean_object* l_Lean_Parser_Tactic_generalize___closed__11; lean_object* l_term___x7c_x7c_x7c__; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20676____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_term___u2227_____closed__6; lean_object* l_prioMid___closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_11089____closed__2; @@ -967,6 +953,7 @@ lean_object* l_Lean_Parser_Tactic_simpLemma___closed__4; lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_15637____closed__2; lean_object* l_term___x3a_x3a_____closed__1; lean_object* l_precLead___closed__1; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_casesTarget___closed__1; lean_object* l_term___x3e_x3d__; lean_object* l_prioDefault; @@ -974,7 +961,6 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_1244____closed__4; lean_object* l_term___x3c_x7c_x3e_____closed__3; lean_object* l_Lean_Parser_Tactic_changeWith___closed__4; lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__8; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__1; lean_object* l_Lean_Parser_Tactic_letrec___closed__1; lean_object* l_termDepIfThenElse___closed__6; lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__14; @@ -983,14 +969,13 @@ lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__14; lean_object* l_term___x24_______closed__13; lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17460____closed__3; lean_object* l_termIfThenElse___closed__10; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20644____boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__4; lean_object* l_Lean_Parser_Syntax_addPrio___closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_4969____closed__4; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20448____closed__1; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_12559____closed__8; lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__5; lean_object* l_Lean_Parser_Tactic_rwRuleSeq; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20448____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_1346____closed__3; lean_object* l_Lean_Parser_Tactic_rewrite___closed__1; lean_object* l_Lean_Parser_Tactic_cases___closed__8; @@ -1014,6 +999,7 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_12559____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_2764____closed__9; lean_object* l_term___x7e_x3d__; lean_object* l_myMacro____x40_Init_Notation___hyg_12069____closed__2; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__2; lean_object* l_term___x3c_x24_x3e_____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_4969____closed__1; lean_object* l_Lean_Parser_Tactic_erewrite; @@ -1037,6 +1023,7 @@ lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__3; lean_object* l_prio_x28___x29___closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_12804____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_13352____closed__13; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_10171____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_3989____closed__4; lean_object* l_prioLow___closed__4; @@ -1072,7 +1059,6 @@ lean_object* l_term___x3e_____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_410____closed__1; lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____closed__5; lean_object* l_Lean_Parser_Tactic_induction___closed__10; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19351____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__1; lean_object* l_Lean_Parser_Tactic_paren___closed__3; lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17334____closed__1; @@ -1102,6 +1088,7 @@ lean_object* l_Lean_Parser_Tactic_injection___closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_13352____closed__7; lean_object* l_Lean_Parser_Tactic_tacticRfl___closed__4; lean_object* l_term___x3e_____closed__2; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__5; lean_object* l_Lean_Parser_Tactic_tacticHave_x27__; lean_object* l_myMacro____x40_Init_Notation___hyg_4234____closed__8; lean_object* l_Lean_Parser_Tactic_expandRw(lean_object*, lean_object*, lean_object*); @@ -1112,16 +1099,15 @@ lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_unexpand____x40_Init_Notation lean_object* l_Lean_Parser_Tactic_change___closed__5; lean_object* l_Lean_Parser_Tactic_erw___closed__1; lean_object* l_stx___x2c_x2a___closed__3; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_6393____closed__6; lean_object* l_Lean_Parser_Tactic_rotateRight___closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_5903____closed__1; lean_object* l_Lean_Parser_Tactic_tacticSuffices_____closed__7; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19351____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_3744____closed__9; lean_object* l_termIfThenElse___closed__3; lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_10171____closed__5; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__1; lean_object* l_stx___x2a___closed__4; lean_object* l_Lean_Parser_Syntax_subPrec___closed__4; lean_object* l_term___x26_x26_x26_____closed__6; @@ -1146,6 +1132,7 @@ lean_object* l_term___x3e_x3e_x3d_____closed__2; lean_object* l_Lean_Parser_Tactic_tacticShow_____closed__5; lean_object* l_termWithout__expected__type_____closed__5; lean_object* l_Lean_Parser_Tactic_withReducibleAndInstances___closed__4; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_10171____closed__3; lean_object* l_Lean_Parser_Syntax_addPrio___closed__6; lean_object* l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__1; @@ -1160,6 +1147,7 @@ lean_object* l_termDepIfThenElse___closed__30; lean_object* l_term_xac_____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_1481____closed__7; lean_object* l_myMacro____x40_Init_Notation___hyg_5903____closed__2; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__3; lean_object* l_Lean_Parser_Tactic_apply; lean_object* l_Lean_Parser_Syntax_addPrec___closed__10; lean_object* l_term___x7e_x3d_____closed__4; @@ -1172,6 +1160,7 @@ lean_object* l_Lean_Parser_Tactic_failIfSuccess; lean_object* l_Lean_Parser_Tactic_simpAll___closed__2; lean_object* l_Lean_Parser_Tactic_paren___closed__1; lean_object* l_stx___x2c_x2a___closed__5; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_5458____closed__9; lean_object* l_myMacro____x40_Init_Notation___hyg_13352____closed__4; lean_object* l_term___x2a__; @@ -1211,6 +1200,7 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_4479____closed__6; lean_object* l_term___x25_____closed__4; lean_object* l_Lean_Parser_Tactic_erw___closed__4; lean_object* l_Lean_Parser_Tactic_erewriteSeq___closed__4; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__3; lean_object* l_Lean_Parser_Tactic_tacticShow_____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_3744____closed__5; lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__6; @@ -1264,7 +1254,6 @@ lean_object* l_unexpand____x40_Init_Notation___hyg_6373_(lean_object*, lean_obje lean_object* l_unexpand____x40_Init_Notation___hyg_6128_(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____closed__3; lean_object* l_Lean_Parser_Tactic_allGoals___closed__6; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19351____closed__2; lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_11824____closed__1; lean_object* l_term___x5e_____closed__1; @@ -1278,10 +1267,13 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_3009____closed__6; lean_object* l_Lean_Parser_Tactic_existsIntro___closed__3; lean_object* l_rawNatLit___closed__7; lean_object* l_Lean_Parser_Tactic_tacticLet_x27_____closed__1; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20480____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_tacticShow_____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_14874____closed__9; lean_object* l_precArg___closed__5; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_11824____closed__6; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20480____closed__1; extern lean_object* l_Lean_nullKind___closed__2; lean_object* l_term___x5c_x2f_____closed__1; lean_object* l_Lean_Parser_Tactic_tacticLet__; @@ -1294,6 +1286,7 @@ lean_object* l_termIfThenElse___closed__7; lean_object* l_term___x3e_x3e_____closed__6; lean_object* l_term___x5c_x2f_____closed__4; lean_object* l_stx___x3f; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__2; lean_object* l_Lean_Parser_Tactic_existsIntro___closed__5; lean_object* l_term___x3d_____closed__6; lean_object* l_Lean_Parser_Tactic_change___closed__6; @@ -1309,8 +1302,6 @@ lean_object* l_Lean_Parser_Tactic_intro___closed__16; lean_object* l_myMacro____x40_Init_Notation___hyg_3254____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_7361____closed__1; lean_object* l_Lean_mkAtomFrom(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__6; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; lean_object* l_term___x5e_____closed__4; uint8_t l_Lean_Syntax_isNodeOf(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_1040____closed__6; @@ -1333,23 +1324,23 @@ lean_object* l_precMin___closed__4; lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__2; lean_object* l_Lean_Parser_Tactic_tacticLet_x27_____closed__3; lean_object* l_Lean_Parser_Tactic_existsIntro___closed__6; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21797_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21724_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21651_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21326_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20842_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20644_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20448_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20163_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19536_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19351_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21756_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21829_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21683_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21358_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20874_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20676_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20480_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20179_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19552_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973_(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672_(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17460_(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17334_(lean_object*, lean_object*, lean_object*); @@ -1378,6 +1369,7 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_3254____closed__5; lean_object* l_term___u2265_____closed__6; lean_object* l_myMacro____x40_Init_Notation___hyg_3989____closed__8; lean_object* l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__2; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_term_x5b___x5d___closed__5; lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__13; lean_object* l_Lean_Parser_Tactic_rwRule; @@ -1394,14 +1386,16 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_5458____closed__6; lean_object* l_Lean_Parser_Tactic_tacticLet_x27_____closed__6; lean_object* l_Lean_Parser_Tactic_refine___closed__2; lean_object* l_Lean_Parser_Tactic_tacticRefineLift_x27_____closed__1; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__3; lean_object* l_Lean_Parser_Tactic_first___closed__3; lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__1; lean_object* l_Lean_Parser_Tactic_case___closed__3; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19552____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_refine_x27___closed__3; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__1; lean_object* l_stx___x2c_x2b___closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_8308____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_2523____closed__5; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__6; lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__2; lean_object* l_Lean_Parser_Tactic_tacticHave_x27_____x3a_x3d_____closed__3; lean_object* l_term___x2b_x2b_____closed__1; @@ -1430,7 +1424,6 @@ lean_object* l_Lean_Parser_Tactic_tacticHave_____x3a_x3d__; lean_object* l_prioDefault___closed__5; lean_object* l_prec_x28___x29___closed__9; lean_object* l_stx___x3c_x7c_x3e_____closed__5; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21724____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_15637____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_11579____closed__6; lean_object* l_myMacro____x40_Init_Notation___hyg_13049____closed__9; @@ -1441,7 +1434,6 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_12069____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_13954____closed__10; lean_object* l_term_x21__; lean_object* l_Lean_Parser_Tactic_simp___closed__18; -lean_object* l_myMacro____x40_Init_Notation___hyg_22312____closed__3; lean_object* l_Lean_Parser_Tactic_simp___closed__15; lean_object* l_myMacro____x40_Init_Notation___hyg_4234____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_10390____closed__4; @@ -1451,11 +1443,13 @@ lean_object* l_Lean_Parser_Tactic_tacticTry_____closed__3; lean_object* l_precMax___closed__1; lean_object* l_termWithout__expected__type_____closed__6; lean_object* l_Lean_Parser_Tactic_exact; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__8; lean_object* l_term___u2228_____closed__5; lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_15637____closed__5; lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__17; lean_object* l_Lean_Parser_Tactic_first___closed__5; lean_object* l_Lean_Parser_Tactic_erw___closed__2; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367____closed__2; lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16699____closed__2; lean_object* l_stx___x2c_x2b___closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_11334____closed__1; @@ -1473,16 +1467,16 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_13049____closed__4; lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17205____closed__4; lean_object* l_term___x2f_____closed__2; lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__13; -lean_object* l_myMacro____x40_Init_Notation___hyg_22312____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_2523____closed__3; lean_object* l_term___x26_x26_x26_____closed__4; lean_object* l_Lean_Parser_Tactic_revert___closed__7; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19536____boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__2; lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__2; lean_object* l_Lean_Parser_Tactic_allGoals___closed__5; lean_object* l_Lean_Parser_Tactic_induction___closed__15; lean_object* l_myMacro____x40_Init_Notation___hyg_1346____closed__1; lean_object* l_term___x24_______closed__12; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_3009____closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_631____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_13049____closed__1; @@ -1500,8 +1494,8 @@ lean_object* l_rawNatLit___closed__3; lean_object* l_term_x5b___x5d___closed__6; lean_object* l_myMacro____x40_Init_Notation___hyg_3009____closed__3; lean_object* l_Lean_Parser_Tactic_erewrite___closed__5; -lean_object* l_myMacro____x40_Init_Notation___hyg_22312____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_13049____closed__2; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__4; lean_object* l_Lean_Parser_Tactic_failIfSuccess___closed__4; lean_object* l_Lean_Parser_Tactic_simp___closed__1; lean_object* l_Lean_Parser_Tactic_contradiction___closed__2; @@ -1510,6 +1504,7 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_631____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_3744____closed__1; lean_object* l_Lean_Parser_Tactic_locationHyp___closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_5680____closed__9; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_4479____closed__2; lean_object* l_Lean_Parser_Tactic_rename___closed__8; lean_object* l_term___u2245_____closed__6; @@ -1524,7 +1519,6 @@ lean_object* l_term___u2228_____closed__1; lean_object* l_term___x26_x26_____closed__7; lean_object* l_Lean_Parser_Tactic_tacticRfl___closed__2; lean_object* l_Lean_Parser_Tactic_letrec; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_11089____closed__8; lean_object* l_Lean_Parser_Tactic_tacticRepeat_____closed__6; lean_object* l_term_x7b_____x3a___x2f_x2f___x7d; @@ -1542,6 +1536,7 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_5903____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_1640____closed__3; lean_object* l_term___x3c_x7c_x3e_____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_13765____closed__2; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__2; lean_object* l_term___x3c_x2a_____closed__5; lean_object* l_Lean_Parser_Tactic_assumption___closed__3; lean_object* l_Lean_Parser_Tactic_done___closed__1; @@ -1557,7 +1552,6 @@ lean_object* l_Lean_Parser_Tactic_tacticHave_____closed__2; lean_object* l_termIfLet___x3a_x3d__Then__Else__; lean_object* l_stx___x2b___closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_2764____closed__6; -lean_object* l_myMacro____x40_Init_Notation___hyg_22312____closed__1; lean_object* l_Lean_Parser_Tactic_simpAll___closed__3; lean_object* l_Lean_Parser_Tactic_induction___closed__18; lean_object* l_Lean_Parser_Syntax_subPrec___closed__6; @@ -1581,6 +1575,7 @@ lean_object* l_term___x2f_x5c_____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_5903____closed__8; lean_object* l_Lean_Parser_Tactic_rename___closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_3744____closed__2; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__2; lean_object* l_term___x3e_x3e__; lean_object* l_termMax__prec___closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_11824____closed__4; @@ -1589,7 +1584,6 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_1040____closed__2; lean_object* l_Lean_Parser_Tactic_rwRule___closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_1481____closed__2; lean_object* l_term___x3c_x3d_____closed__7; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__5; lean_object* l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__2; lean_object* l_Lean_Parser_Tactic_tacticRefineLift_x27_____closed__4; lean_object* l_Lean_Parser_Tactic_intro___closed__6; @@ -1598,6 +1592,7 @@ lean_object* l_Lean_Parser_Syntax_addPrec___closed__12; lean_object* l_stx___x2c_x2b; lean_object* l_Lean_Parser_Tactic_simp___closed__24; lean_object* l_term_x7e_x7e_x7e_____closed__1; +lean_object* l_myMacro____x40_Init_Notation___hyg_22344____closed__3; lean_object* l_Lean_Parser_Tactic_simp___closed__7; lean_object* l_myMacro____x40_Init_Notation___hyg_14874____closed__6; lean_object* l_term___x3a_x3a_____closed__7; @@ -1644,7 +1639,10 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_1640____closed__1; lean_object* l_Lean_Parser_Tactic_tacticTrivial___closed__3; lean_object* l_term___x2a_x3e_____closed__1; lean_object* l_prio_x28___x29___closed__2; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__5; lean_object* l_prec_x28___x29___closed__10; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__1; lean_object* l_termDepIfThenElse___closed__17; lean_object* l_term___x26_x26_x26_____closed__7; lean_object* l_Lean_Parser_Tactic_exact___closed__4; @@ -1654,10 +1652,11 @@ lean_object* l_Lean_Parser_Tactic_done___closed__4; lean_object* l_Lean_Parser_Tactic_erw___closed__6; lean_object* l___private_Init_Notation_0__Lean_Parser_Tactic_withCheapRefl(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_tacticInferInstance; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__2; lean_object* l_termDepIfThenElse___closed__27; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_7602____closed__8; lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_15637____closed__7; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__4; lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_term___x3e_x3e_x3e__; lean_object* l_Lean_Parser_Tactic_location___closed__10; @@ -1683,17 +1682,20 @@ lean_object* l_term___x7c_x3e__; lean_object* l_Lean_Parser_Tactic_first___closed__6; lean_object* l_precArg___closed__2; lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_113____spec__1___boxed(lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__3; lean_object* l_Lean_Parser_Tactic_erw___closed__5; lean_object* l_Lean_Parser_Tactic_generalize___closed__7; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); lean_object* l_term_x7e_x7e_x7e_____closed__3; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__5; lean_object* l_Lean_Parser_Tactic_tacticInferInstance___closed__2; lean_object* l_Lean_Parser_Tactic_induction___closed__4; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_853____closed__1; lean_object* l_stx_x21_____closed__4; +lean_object* l_myMacro____x40_Init_Notation___hyg_22344____closed__2; lean_object* l_term___x3d_x3d_____closed__2; lean_object* l_Lean_Parser_Tactic_tacticRepeat_____closed__1; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_4479____closed__7; lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__7; lean_object* l_term___xd7__; @@ -1717,7 +1719,6 @@ lean_object* l_Lean_Parser_Tactic_tacticRefineLift_x27_____closed__2; lean_object* l_Lean_Parser_Tactic_tacticTry_____closed__1; lean_object* l_Lean_Parser_Tactic_tacticLet_____closed__2; lean_object* l_term___x2a_____closed__1; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__3; lean_object* l_Lean_Parser_Tactic_injection; lean_object* l_prec_x28___x29___closed__7; lean_object* l_Lean_Parser_Tactic_exact___closed__2; @@ -1730,15 +1731,18 @@ lean_object* l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__4; lean_object* l_prioHigh___closed__2; lean_object* l_Lean_Parser_Tactic_intro___closed__2; lean_object* l_term___x3e_x3e_x3d_____closed__6; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__6; lean_object* l_Lean_Parser_Tactic_focus___closed__3; lean_object* l_term___x26_x26_x26_____closed__5; lean_object* l_Lean_Parser_Tactic_rwSeq___closed__2; lean_object* l_Lean_Parser_Tactic_changeWith___closed__3; +lean_object* l_myMacro____x40_Init_Notation___hyg_22344____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_3009____closed__7; lean_object* l_prec_x28___x29; lean_object* l_rawNatLit___closed__6; lean_object* l_term___x5e_x5e_x5e_____closed__1; lean_object* l_stx___x2c_x2b_x2c_x3f___closed__3; +lean_object* l_myMacro____x40_Init_Notation___hyg_22344____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_tacticInferInstance___closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_2278____closed__4; lean_object* l_Lean_Parser_Tactic_simpLemma___closed__2; @@ -1760,7 +1764,6 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_1142____closed__4; lean_object* l_term_x7e_x7e_x7e_____closed__6; lean_object* l_term___x26_x26_____closed__1; lean_object* l_term___x26_x26_____closed__2; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__7; lean_object* l_precMax; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_14227____boxed(lean_object*, lean_object*, lean_object*); @@ -1785,13 +1788,11 @@ lean_object* l_Lean_Parser_Tactic_rwRuleSeq___closed__3; lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__11; lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_1142____closed__1; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_10171____closed__6; lean_object* l_term_x2d_____closed__7; lean_object* l_myMacro____x40_Init_Notation___hyg_12559____closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_4479____closed__8; lean_object* l_Lean_Parser_Tactic_tacticLet_____closed__7; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_853____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_tacticRefineLift_x27_____closed__3; lean_object* l_Lean_Parser_Tactic_locationHyp___closed__2; @@ -1838,6 +1839,7 @@ lean_object* l_term___u2265_____closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_1142____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_4234____closed__7; lean_object* l_Lean_Parser_Syntax_addPrec___closed__11; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_4724____closed__7; lean_object* l_term_x7e_x7e_x7e_____closed__2; lean_object* l_Lean_Parser_Tactic_casesTarget; @@ -1846,6 +1848,7 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_2140____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_5458____closed__8; lean_object* l_Lean_Parser_Tactic_letrec___closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_11089____closed__6; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21829____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_simpPre___closed__5; lean_object* l_term___x7c_x3e_____closed__4; lean_object* l_term___x5e_x5e_x5e_____closed__4; @@ -1855,9 +1858,9 @@ lean_object* l_Lean_Parser_Syntax_subPrec___closed__2; lean_object* l_term_x5b___x5d___closed__2; lean_object* l_Lean_Parser_Tactic_rotateLeft___closed__4; lean_object* l_Lean_Parser_Tactic_locationHyp___closed__1; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_skip; lean_object* l_term___x3e_x3e_x3e_____closed__3; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__7; lean_object* l_Lean_Parser_Attr_simp___closed__1; lean_object* l_term___x3c_x7c_____closed__6; lean_object* l_Lean_Parser_Tactic_rwRule___closed__3; @@ -1870,12 +1873,13 @@ lean_object* l_stx___x2c_x2b_x2c_x3f___closed__4; lean_object* l_stx___x2c_x2b_x2c_x3f; lean_object* l_myMacro____x40_Init_Notation___hyg_7361____closed__3; lean_object* l_term___xd7_____closed__4; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__1; lean_object* l_Lean_Parser_Tactic_expandRwSeq(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21358____closed__1; lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__1; lean_object* l_term___x3e_____closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_11579____closed__7; lean_object* l_Lean_Parser_Tactic_existsIntro___closed__1; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__3; lean_object* l_Lean_Parser_Tactic_allGoals___closed__1; lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__12; lean_object* l_Lean_Parser_Tactic_traceState; @@ -1895,8 +1899,8 @@ lean_object* l_Lean_Parser_Tactic_erewriteSeq; lean_object* l_term___x3d_____closed__3; lean_object* l_Lean_Parser_Tactic_rewriteSeq___closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_1640____closed__2; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__1; lean_object* l_term___x7c_x3e_____closed__6; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21358____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_paren; lean_object* l_Lean_Parser_Tactic_erw___closed__3; lean_object* l_Lean_Parser_Tactic_simp___closed__22; @@ -1923,6 +1927,7 @@ lean_object* l_Lean_Parser_Tactic_tacticSuffices_____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_15419____closed__10; lean_object* l_term_x7e_x7e_x7e_____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_14434____boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__3; lean_object* l_Lean_Parser_Tactic_generalize___closed__5; lean_object* l_precArg___closed__4; lean_object* l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__3; @@ -1934,7 +1939,7 @@ lean_object* l_term___x7e_x3d_____closed__3; lean_object* l_term_xac_____closed__5; lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__11; lean_object* l_term___x3e_x3e_____closed__2; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__7; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_12314____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_3499____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_15419____closed__9; @@ -1944,7 +1949,6 @@ lean_object* l_Lean_Parser_Syntax_subPrec___closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_14874____closed__2; lean_object* l_Lean_Parser_Tactic_rwRule___closed__5; lean_object* l_Lean_Parser_Tactic_skip___closed__4; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21651____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_rwRule___closed__7; lean_object* l_term___x26_x26_____closed__6; lean_object* l_term___x7c_x7c_x7c_____closed__4; @@ -1991,16 +1995,15 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_13352____closed__12; lean_object* l_Lean_Parser_Tactic_tacticSuffices_____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_2764____closed__7; lean_object* l_Lean_Parser_Tactic_rwSeq___closed__5; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__6; lean_object* l_Lean_Parser_Tactic_tacticRepeat_____closed__4; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_11334____closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_7847____closed__6; lean_object* l_term___u2245_____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_5458____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_4969____closed__7; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16913____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Attr_simp___closed__8; lean_object* l_termWithout__expected__type__; @@ -32628,6 +32631,32 @@ 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_18672____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("noImplicitLambda"); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____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_18672____closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("noImplicitLambda%"); +return x_1; +} +} lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -32655,7 +32684,7 @@ x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_ x_11 = !lean_is_exclusive(x_10); 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; 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_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; 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; x_12 = lean_ctor_get(x_10, 0); x_13 = l_Lean_Parser_Tactic_focus___closed__1; lean_inc(x_12); @@ -32676,228 +32705,250 @@ x_21 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_21, 0, x_12); lean_ctor_set(x_21, 1, x_20); x_22 = lean_array_push(x_15, x_21); -x_23 = lean_array_push(x_22, x_9); -x_24 = l_Lean_Parser_Tactic_refine___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); -x_26 = lean_array_push(x_15, x_25); -x_27 = l_myMacro____x40_Init_Notation___hyg_15419____closed__12; +x_23 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__3; lean_inc(x_12); -x_28 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_28, 0, x_12); -lean_ctor_set(x_28, 1, x_27); -x_29 = lean_array_push(x_15, x_28); -x_30 = l_Lean_nullKind___closed__2; +x_24 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_24, 0, x_12); +lean_ctor_set(x_24, 1, x_23); +x_25 = lean_array_push(x_15, x_24); +x_26 = lean_array_push(x_25, x_9); +x_27 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__2; +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_22, x_28); +x_30 = l_Lean_Parser_Tactic_refine___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); -x_32 = lean_array_push(x_26, x_31); -x_33 = l_Lean_groupKind___closed__2; -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_15, x_34); -x_36 = l_Lean_Parser_Tactic_rotateRight___closed__1; +x_32 = lean_array_push(x_15, x_31); +x_33 = l_myMacro____x40_Init_Notation___hyg_15419____closed__12; lean_inc(x_12); -x_37 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_37, 0, x_12); -lean_ctor_set(x_37, 1, x_36); -x_38 = lean_array_push(x_15, x_37); -x_39 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; -x_40 = lean_array_push(x_38, x_39); -x_41 = l_Lean_Parser_Tactic_rotateRight___closed__2; -x_42 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_42, 0, x_41); -lean_ctor_set(x_42, 1, x_40); -x_43 = lean_array_push(x_15, x_42); -x_44 = lean_array_push(x_43, x_39); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_33); -lean_ctor_set(x_45, 1, x_44); -x_46 = lean_array_push(x_35, x_45); -x_47 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_47, 0, x_30); -lean_ctor_set(x_47, 1, x_46); -x_48 = lean_array_push(x_15, x_47); -x_49 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16699____closed__5; -x_50 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_50, 0, x_49); -lean_ctor_set(x_50, 1, x_48); -x_51 = lean_array_push(x_15, x_50); -x_52 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16699____closed__3; +x_34 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_34, 0, x_12); +lean_ctor_set(x_34, 1, x_33); +x_35 = lean_array_push(x_15, x_34); +x_36 = l_Lean_nullKind___closed__2; +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_32, x_37); +x_39 = l_Lean_groupKind___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); +x_41 = lean_array_push(x_15, x_40); +x_42 = l_Lean_Parser_Tactic_rotateRight___closed__1; +lean_inc(x_12); +x_43 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_43, 0, x_12); +lean_ctor_set(x_43, 1, x_42); +x_44 = lean_array_push(x_15, x_43); +x_45 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; +x_46 = lean_array_push(x_44, x_45); +x_47 = l_Lean_Parser_Tactic_rotateRight___closed__2; +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_15, x_48); +x_50 = lean_array_push(x_49, x_45); +x_51 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_51, 0, x_39); +lean_ctor_set(x_51, 1, x_50); +x_52 = lean_array_push(x_41, x_51); 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_19, x_53); -x_55 = l_prec_x28___x29___closed__7; -x_56 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_56, 0, x_12); -lean_ctor_set(x_56, 1, x_55); -x_57 = lean_array_push(x_54, x_56); -x_58 = l_Lean_Parser_Tactic_paren___closed__1; +lean_ctor_set(x_53, 0, x_36); +lean_ctor_set(x_53, 1, x_52); +x_54 = lean_array_push(x_15, x_53); +x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16699____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_15, x_56); +x_58 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16699____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); -x_60 = lean_array_push(x_15, x_59); -x_61 = lean_array_push(x_60, x_39); -x_62 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_62, 0, x_33); +x_60 = lean_array_push(x_19, x_59); +x_61 = l_prec_x28___x29___closed__7; +x_62 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_62, 0, x_12); lean_ctor_set(x_62, 1, x_61); -x_63 = lean_array_push(x_15, x_62); -x_64 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_64, 0, x_30); -lean_ctor_set(x_64, 1, x_63); -x_65 = lean_array_push(x_15, x_64); -x_66 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_66, 0, x_49); -lean_ctor_set(x_66, 1, x_65); -x_67 = lean_array_push(x_15, x_66); +x_63 = lean_array_push(x_60, x_62); +x_64 = l_Lean_Parser_Tactic_paren___closed__1; +x_65 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_65, 0, x_64); +lean_ctor_set(x_65, 1, x_63); +x_66 = lean_array_push(x_15, x_65); +x_67 = lean_array_push(x_66, x_45); x_68 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_68, 0, x_52); +lean_ctor_set(x_68, 0, x_39); lean_ctor_set(x_68, 1, x_67); -x_69 = lean_array_push(x_16, x_68); -x_70 = l_Lean_Parser_Tactic_focus___closed__2; -x_71 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_71, 0, x_70); -lean_ctor_set(x_71, 1, x_69); -x_72 = lean_array_push(x_15, x_71); -x_73 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_73, 0, x_30); -lean_ctor_set(x_73, 1, x_72); -x_74 = lean_array_push(x_15, x_73); -x_75 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16699____closed__2; -x_76 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_76, 0, x_75); -lean_ctor_set(x_76, 1, x_74); -lean_ctor_set(x_10, 0, x_76); +x_69 = lean_array_push(x_15, x_68); +x_70 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_70, 0, x_36); +lean_ctor_set(x_70, 1, x_69); +x_71 = lean_array_push(x_15, x_70); +x_72 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_72, 0, x_55); +lean_ctor_set(x_72, 1, x_71); +x_73 = lean_array_push(x_15, x_72); +x_74 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_74, 0, x_58); +lean_ctor_set(x_74, 1, x_73); +x_75 = lean_array_push(x_16, x_74); +x_76 = l_Lean_Parser_Tactic_focus___closed__2; +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 = lean_array_push(x_15, x_77); +x_79 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_79, 0, x_36); +lean_ctor_set(x_79, 1, x_78); +x_80 = lean_array_push(x_15, x_79); +x_81 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16699____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); +lean_ctor_set(x_10, 0, x_82); return x_10; } else { -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; 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; lean_object* x_142; lean_object* x_143; -x_77 = lean_ctor_get(x_10, 0); -x_78 = lean_ctor_get(x_10, 1); -lean_inc(x_78); -lean_inc(x_77); +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; 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; 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; +x_83 = lean_ctor_get(x_10, 0); +x_84 = lean_ctor_get(x_10, 1); +lean_inc(x_84); +lean_inc(x_83); lean_dec(x_10); -x_79 = l_Lean_Parser_Tactic_focus___closed__1; -lean_inc(x_77); -x_80 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_80, 0, x_77); -lean_ctor_set(x_80, 1, x_79); -x_81 = l_Array_empty___closed__1; -x_82 = lean_array_push(x_81, x_80); -x_83 = l_prec_x28___x29___closed__3; -lean_inc(x_77); -x_84 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_84, 0, x_77); -lean_ctor_set(x_84, 1, x_83); -x_85 = lean_array_push(x_81, x_84); -x_86 = l_Lean_Parser_Tactic_refine___closed__1; -lean_inc(x_77); -x_87 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_87, 0, x_77); -lean_ctor_set(x_87, 1, x_86); -x_88 = lean_array_push(x_81, x_87); -x_89 = lean_array_push(x_88, x_9); -x_90 = l_Lean_Parser_Tactic_refine___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); -x_92 = lean_array_push(x_81, x_91); -x_93 = l_myMacro____x40_Init_Notation___hyg_15419____closed__12; -lean_inc(x_77); -x_94 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_94, 0, x_77); -lean_ctor_set(x_94, 1, x_93); -x_95 = lean_array_push(x_81, x_94); -x_96 = l_Lean_nullKind___closed__2; -x_97 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_97, 0, x_96); -lean_ctor_set(x_97, 1, x_95); -x_98 = lean_array_push(x_92, x_97); -x_99 = l_Lean_groupKind___closed__2; +x_85 = l_Lean_Parser_Tactic_focus___closed__1; +lean_inc(x_83); +x_86 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_86, 0, x_83); +lean_ctor_set(x_86, 1, x_85); +x_87 = l_Array_empty___closed__1; +x_88 = lean_array_push(x_87, x_86); +x_89 = l_prec_x28___x29___closed__3; +lean_inc(x_83); +x_90 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_90, 0, x_83); +lean_ctor_set(x_90, 1, x_89); +x_91 = lean_array_push(x_87, x_90); +x_92 = l_Lean_Parser_Tactic_refine___closed__1; +lean_inc(x_83); +x_93 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_93, 0, x_83); +lean_ctor_set(x_93, 1, x_92); +x_94 = lean_array_push(x_87, x_93); +x_95 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__3; +lean_inc(x_83); +x_96 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_96, 0, x_83); +lean_ctor_set(x_96, 1, x_95); +x_97 = lean_array_push(x_87, x_96); +x_98 = lean_array_push(x_97, x_9); +x_99 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__2; x_100 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_100, 0, x_99); lean_ctor_set(x_100, 1, x_98); -x_101 = lean_array_push(x_81, x_100); -x_102 = l_Lean_Parser_Tactic_rotateRight___closed__1; -lean_inc(x_77); -x_103 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_103, 0, x_77); -lean_ctor_set(x_103, 1, x_102); -x_104 = lean_array_push(x_81, x_103); -x_105 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; -x_106 = lean_array_push(x_104, x_105); -x_107 = l_Lean_Parser_Tactic_rotateRight___closed__2; -x_108 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_108, 0, x_107); -lean_ctor_set(x_108, 1, x_106); -x_109 = lean_array_push(x_81, x_108); -x_110 = lean_array_push(x_109, x_105); -x_111 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_111, 0, x_99); -lean_ctor_set(x_111, 1, x_110); -x_112 = lean_array_push(x_101, x_111); -x_113 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_113, 0, x_96); -lean_ctor_set(x_113, 1, x_112); -x_114 = lean_array_push(x_81, x_113); -x_115 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16699____closed__5; -x_116 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_116, 0, x_115); -lean_ctor_set(x_116, 1, x_114); -x_117 = lean_array_push(x_81, x_116); -x_118 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16699____closed__3; -x_119 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_119, 0, x_118); -lean_ctor_set(x_119, 1, x_117); -x_120 = lean_array_push(x_85, x_119); -x_121 = l_prec_x28___x29___closed__7; -x_122 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_122, 0, x_77); -lean_ctor_set(x_122, 1, x_121); -x_123 = lean_array_push(x_120, x_122); -x_124 = l_Lean_Parser_Tactic_paren___closed__1; +x_101 = lean_array_push(x_94, x_100); +x_102 = l_Lean_Parser_Tactic_refine___closed__2; +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 = lean_array_push(x_87, x_103); +x_105 = l_myMacro____x40_Init_Notation___hyg_15419____closed__12; +lean_inc(x_83); +x_106 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_106, 0, x_83); +lean_ctor_set(x_106, 1, x_105); +x_107 = lean_array_push(x_87, x_106); +x_108 = l_Lean_nullKind___closed__2; +x_109 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_109, 0, x_108); +lean_ctor_set(x_109, 1, x_107); +x_110 = lean_array_push(x_104, x_109); +x_111 = l_Lean_groupKind___closed__2; +x_112 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_112, 0, x_111); +lean_ctor_set(x_112, 1, x_110); +x_113 = lean_array_push(x_87, x_112); +x_114 = l_Lean_Parser_Tactic_rotateRight___closed__1; +lean_inc(x_83); +x_115 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_115, 0, x_83); +lean_ctor_set(x_115, 1, x_114); +x_116 = lean_array_push(x_87, x_115); +x_117 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; +x_118 = lean_array_push(x_116, x_117); +x_119 = l_Lean_Parser_Tactic_rotateRight___closed__2; +x_120 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_120, 0, x_119); +lean_ctor_set(x_120, 1, x_118); +x_121 = lean_array_push(x_87, x_120); +x_122 = lean_array_push(x_121, x_117); +x_123 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_123, 0, x_111); +lean_ctor_set(x_123, 1, x_122); +x_124 = lean_array_push(x_113, x_123); x_125 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_125, 0, x_124); -lean_ctor_set(x_125, 1, x_123); -x_126 = lean_array_push(x_81, x_125); -x_127 = lean_array_push(x_126, x_105); +lean_ctor_set(x_125, 0, x_108); +lean_ctor_set(x_125, 1, x_124); +x_126 = lean_array_push(x_87, x_125); +x_127 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16699____closed__5; x_128 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_128, 0, x_99); -lean_ctor_set(x_128, 1, x_127); -x_129 = lean_array_push(x_81, x_128); -x_130 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_130, 0, x_96); -lean_ctor_set(x_130, 1, x_129); -x_131 = lean_array_push(x_81, x_130); -x_132 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_132, 0, x_115); -lean_ctor_set(x_132, 1, x_131); -x_133 = lean_array_push(x_81, x_132); -x_134 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_134, 0, x_118); +lean_ctor_set(x_128, 0, x_127); +lean_ctor_set(x_128, 1, x_126); +x_129 = lean_array_push(x_87, x_128); +x_130 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16699____closed__3; +x_131 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_131, 0, x_130); +lean_ctor_set(x_131, 1, x_129); +x_132 = lean_array_push(x_91, x_131); +x_133 = l_prec_x28___x29___closed__7; +x_134 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_134, 0, x_83); lean_ctor_set(x_134, 1, x_133); -x_135 = lean_array_push(x_82, x_134); -x_136 = l_Lean_Parser_Tactic_focus___closed__2; +x_135 = lean_array_push(x_132, x_134); +x_136 = l_Lean_Parser_Tactic_paren___closed__1; x_137 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_137, 0, x_136); lean_ctor_set(x_137, 1, x_135); -x_138 = lean_array_push(x_81, x_137); -x_139 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_139, 0, x_96); -lean_ctor_set(x_139, 1, x_138); -x_140 = lean_array_push(x_81, x_139); -x_141 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16699____closed__2; +x_138 = lean_array_push(x_87, x_137); +x_139 = lean_array_push(x_138, x_117); +x_140 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_140, 0, x_111); +lean_ctor_set(x_140, 1, x_139); +x_141 = lean_array_push(x_87, x_140); x_142 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_142, 0, x_141); -lean_ctor_set(x_142, 1, x_140); -x_143 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_143, 0, x_142); -lean_ctor_set(x_143, 1, x_78); -return x_143; +lean_ctor_set(x_142, 0, x_108); +lean_ctor_set(x_142, 1, x_141); +x_143 = lean_array_push(x_87, x_142); +x_144 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_144, 0, x_127); +lean_ctor_set(x_144, 1, x_143); +x_145 = lean_array_push(x_87, x_144); +x_146 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_146, 0, x_130); +lean_ctor_set(x_146, 1, x_145); +x_147 = lean_array_push(x_88, x_146); +x_148 = l_Lean_Parser_Tactic_focus___closed__2; +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 = lean_array_push(x_87, x_149); +x_151 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_151, 0, x_108); +lean_ctor_set(x_151, 1, x_150); +x_152 = lean_array_push(x_87, x_151); +x_153 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16699____closed__2; +x_154 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_154, 0, x_153); +lean_ctor_set(x_154, 1, x_152); +x_155 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_155, 0, x_154); +lean_ctor_set(x_155, 1, x_84); +return x_155; } } } @@ -33013,7 +33064,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_18957____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__1() { _start: { lean_object* x_1; @@ -33021,7 +33072,7 @@ x_1 = lean_mk_string("refineLift"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__2() { _start: { lean_object* x_1; @@ -33029,17 +33080,17 @@ x_1 = lean_mk_string("have"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__2; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____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_18957____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__4() { _start: { lean_object* x_1; @@ -33047,17 +33098,17 @@ x_1 = lean_mk_string("syntheticHole"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__4; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____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_18957_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -33086,14 +33137,14 @@ 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; x_12 = lean_ctor_get(x_10, 0); -x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__1; +x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____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_Array_empty___closed__1; x_16 = lean_array_push(x_15, x_14); -x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__2; +x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__2; lean_inc(x_12); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_12); @@ -33127,12 +33178,12 @@ 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_29, x_34); -x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; +x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; 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_26, x_37); -x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__3; +x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__3; x_40 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_40, 0, x_39); lean_ctor_set(x_40, 1, x_38); @@ -33161,14 +33212,14 @@ x_50 = lean_ctor_get(x_10, 1); lean_inc(x_50); lean_inc(x_49); lean_dec(x_10); -x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__1; +x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__1; lean_inc(x_49); x_52 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_52, 0, x_49); lean_ctor_set(x_52, 1, x_51); x_53 = l_Array_empty___closed__1; x_54 = lean_array_push(x_53, x_52); -x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__2; +x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__2; lean_inc(x_49); x_56 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_56, 0, x_49); @@ -33202,12 +33253,12 @@ 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_67, x_72); -x_74 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; +x_74 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; 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 = lean_array_push(x_64, x_75); -x_77 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__3; +x_77 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__3; x_78 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_78, 0, x_77); lean_ctor_set(x_78, 1, x_76); @@ -33233,11 +33284,11 @@ return x_87; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -33264,7 +33315,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_18957____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__2; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -33336,7 +33387,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_19153____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -33346,7 +33397,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_19153____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__2() { _start: { lean_object* x_1; @@ -33354,17 +33405,17 @@ x_1 = lean_mk_string("haveAssign"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__2; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__2; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -33395,7 +33446,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; x_14 = lean_ctor_get(x_12, 0); -x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__2; +x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__2; lean_inc(x_14); x_16 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_16, 0, x_14); @@ -33431,12 +33482,12 @@ lean_ctor_set(x_33, 0, x_14); lean_ctor_set(x_33, 1, x_32); x_34 = lean_array_push(x_17, x_33); x_35 = lean_array_push(x_34, x_11); -x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__3; +x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____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_31, x_37); -x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__1; +x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__1; x_40 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_40, 0, x_39); lean_ctor_set(x_40, 1, x_38); @@ -33465,7 +33516,7 @@ x_50 = lean_ctor_get(x_12, 1); lean_inc(x_50); lean_inc(x_49); lean_dec(x_12); -x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__2; +x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__2; lean_inc(x_49); x_52 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_52, 0, x_49); @@ -33501,12 +33552,12 @@ lean_ctor_set(x_69, 0, x_49); lean_ctor_set(x_69, 1, x_68); x_70 = lean_array_push(x_53, x_69); x_71 = lean_array_push(x_70, x_11); -x_72 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__3; +x_72 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__3; x_73 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_73, 0, x_72); lean_ctor_set(x_73, 1, x_71); x_74 = lean_array_push(x_67, x_73); -x_75 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__1; +x_75 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__1; x_76 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_76, 0, x_75); lean_ctor_set(x_76, 1, x_74); @@ -33532,11 +33583,11 @@ return x_85; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -33643,7 +33694,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_19351____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367____closed__1() { _start: { lean_object* x_1; @@ -33651,17 +33702,17 @@ x_1 = lean_mk_string("suffices"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19351____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19351____closed__1; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367____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_19351_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -33690,14 +33741,14 @@ 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; x_12 = lean_ctor_get(x_10, 0); -x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__1; +x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____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_Array_empty___closed__1; x_16 = lean_array_push(x_15, x_14); -x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19351____closed__1; +x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367____closed__1; lean_inc(x_12); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_12); @@ -33731,12 +33782,12 @@ 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_29, x_34); -x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; +x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; 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_26, x_37); -x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19351____closed__2; +x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367____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); @@ -33765,14 +33816,14 @@ x_50 = lean_ctor_get(x_10, 1); lean_inc(x_50); lean_inc(x_49); lean_dec(x_10); -x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__1; +x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__1; lean_inc(x_49); x_52 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_52, 0, x_49); lean_ctor_set(x_52, 1, x_51); x_53 = l_Array_empty___closed__1; x_54 = lean_array_push(x_53, x_52); -x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19351____closed__1; +x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367____closed__1; lean_inc(x_49); x_56 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_56, 0, x_49); @@ -33806,12 +33857,12 @@ 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_67, x_72); -x_74 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; +x_74 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; 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 = lean_array_push(x_64, x_75); -x_77 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19351____closed__2; +x_77 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367____closed__2; x_78 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_78, 0, x_77); lean_ctor_set(x_78, 1, x_76); @@ -33837,11 +33888,11 @@ return x_87; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19351____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19351_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -33932,7 +33983,7 @@ x_1 = l_Lean_Parser_Tactic_tacticLet_____closed__7; return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19536_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19552_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -33961,7 +34012,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; x_12 = lean_ctor_get(x_10, 0); -x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__1; +x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__1; lean_inc(x_12); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_12); @@ -34002,7 +34053,7 @@ 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_29, x_34); -x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; +x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; x_37 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_37, 0, x_36); lean_ctor_set(x_37, 1, x_35); @@ -34036,7 +34087,7 @@ x_50 = lean_ctor_get(x_10, 1); lean_inc(x_50); lean_inc(x_49); lean_dec(x_10); -x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__1; +x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__1; lean_inc(x_49); x_52 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_52, 0, x_49); @@ -34077,7 +34128,7 @@ 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_67, x_72); -x_74 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; +x_74 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; x_75 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_75, 0, x_74); lean_ctor_set(x_75, 1, x_73); @@ -34108,11 +34159,11 @@ return x_87; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19536____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19552____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19536_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19552_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -34191,7 +34242,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_19722____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__1() { _start: { lean_object* x_1; @@ -34199,17 +34250,17 @@ x_1 = lean_mk_string("show"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__1; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____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_19722____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__3() { _start: { lean_object* x_1; @@ -34217,17 +34268,17 @@ x_1 = lean_mk_string("fromTerm"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__3; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____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_19722____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__5() { _start: { lean_object* x_1; @@ -34235,7 +34286,7 @@ x_1 = lean_mk_string("from"); return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -34264,21 +34315,21 @@ 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; x_12 = lean_ctor_get(x_10, 0); -x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__1; +x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____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_Array_empty___closed__1; x_16 = lean_array_push(x_15, x_14); -x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__1; +x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__1; 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 = lean_array_push(x_15, x_18); x_20 = lean_array_push(x_19, x_9); -x_21 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__5; +x_21 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__5; lean_inc(x_12); x_22 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_22, 0, x_12); @@ -34300,17 +34351,17 @@ 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_26, x_31); -x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; +x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____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_23, x_34); -x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__4; +x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__4; 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_20, x_37); -x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__2; +x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____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); @@ -34340,21 +34391,21 @@ x_51 = lean_ctor_get(x_10, 1); lean_inc(x_51); lean_inc(x_50); lean_dec(x_10); -x_52 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__1; +x_52 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__1; lean_inc(x_50); x_53 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_53, 0, x_50); lean_ctor_set(x_53, 1, x_52); x_54 = l_Array_empty___closed__1; x_55 = lean_array_push(x_54, x_53); -x_56 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__1; +x_56 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__1; lean_inc(x_50); x_57 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_57, 0, x_50); lean_ctor_set(x_57, 1, x_56); x_58 = lean_array_push(x_54, x_57); x_59 = lean_array_push(x_58, x_9); -x_60 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__5; +x_60 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__5; lean_inc(x_50); x_61 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_61, 0, x_50); @@ -34376,17 +34427,17 @@ x_70 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_70, 0, x_69); lean_ctor_set(x_70, 1, x_68); x_71 = lean_array_push(x_65, x_70); -x_72 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; +x_72 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; x_73 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_73, 0, x_72); lean_ctor_set(x_73, 1, x_71); x_74 = lean_array_push(x_62, x_73); -x_75 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__4; +x_75 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____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); x_77 = lean_array_push(x_59, x_76); -x_78 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__2; +x_78 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__2; x_79 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_79, 0, x_78); lean_ctor_set(x_79, 1, x_77); @@ -34413,11 +34464,11 @@ return x_89; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -34574,7 +34625,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_19927____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -34584,7 +34635,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_19927____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -34594,7 +34645,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_19927____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__3() { _start: { lean_object* x_1; @@ -34602,7 +34653,7 @@ x_1 = lean_mk_string("rec"); return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -34642,7 +34693,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_19927____closed__1; +x_16 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__1; lean_inc(x_15); x_17 = l_Lean_Syntax_isOfKind(x_15, x_16); if (x_17 == 0) @@ -34664,7 +34715,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; x_22 = lean_ctor_get(x_20, 0); -x_23 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__1; +x_23 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__1; lean_inc(x_22); x_24 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_24, 0, x_22); @@ -34677,7 +34728,7 @@ x_28 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_28, 0, x_22); lean_ctor_set(x_28, 1, x_27); x_29 = lean_array_push(x_25, x_28); -x_30 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__3; +x_30 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__3; lean_inc(x_22); x_31 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_31, 0, x_22); @@ -34715,12 +34766,12 @@ x_49 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_49, 0, x_48); lean_ctor_set(x_49, 1, x_47); x_50 = lean_array_push(x_44, x_49); -x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; +x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; 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_41, x_52); -x_54 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__2; +x_54 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__2; x_55 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_55, 0, x_54); lean_ctor_set(x_55, 1, x_53); @@ -34740,7 +34791,7 @@ x_60 = lean_ctor_get(x_20, 1); lean_inc(x_60); lean_inc(x_59); lean_dec(x_20); -x_61 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__1; +x_61 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__1; lean_inc(x_59); x_62 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_62, 0, x_59); @@ -34753,7 +34804,7 @@ x_66 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_66, 0, x_59); lean_ctor_set(x_66, 1, x_65); x_67 = lean_array_push(x_63, x_66); -x_68 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__3; +x_68 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__3; lean_inc(x_59); x_69 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_69, 0, x_59); @@ -34791,12 +34842,12 @@ 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_82, x_87); -x_89 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; +x_89 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; 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_79, x_90); -x_92 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__2; +x_92 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____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); @@ -34815,11 +34866,11 @@ return x_97; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -34898,7 +34949,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_20163_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20179_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -34925,7 +34976,7 @@ x_10 = l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_ x_11 = !lean_is_exclusive(x_10); 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; 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_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; 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; x_12 = lean_ctor_get(x_10, 0); x_13 = l_Lean_Parser_Tactic_focus___closed__1; lean_inc(x_12); @@ -34946,237 +34997,259 @@ x_21 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_21, 0, x_12); lean_ctor_set(x_21, 1, x_20); x_22 = lean_array_push(x_15, x_21); -x_23 = lean_array_push(x_22, x_9); -x_24 = l_Lean_Parser_Tactic_refine_x27___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); -x_26 = lean_array_push(x_15, x_25); -x_27 = l_myMacro____x40_Init_Notation___hyg_15419____closed__12; +x_23 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__3; lean_inc(x_12); -x_28 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_28, 0, x_12); -lean_ctor_set(x_28, 1, x_27); -x_29 = lean_array_push(x_15, x_28); -x_30 = l_Lean_nullKind___closed__2; +x_24 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_24, 0, x_12); +lean_ctor_set(x_24, 1, x_23); +x_25 = lean_array_push(x_15, x_24); +x_26 = lean_array_push(x_25, x_9); +x_27 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__2; +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_22, x_28); +x_30 = l_Lean_Parser_Tactic_refine_x27___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); -x_32 = lean_array_push(x_26, x_31); -x_33 = l_Lean_groupKind___closed__2; -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_15, x_34); -x_36 = l_Lean_Parser_Tactic_rotateRight___closed__1; +x_32 = lean_array_push(x_15, x_31); +x_33 = l_myMacro____x40_Init_Notation___hyg_15419____closed__12; lean_inc(x_12); -x_37 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_37, 0, x_12); -lean_ctor_set(x_37, 1, x_36); -x_38 = lean_array_push(x_15, x_37); -x_39 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; -x_40 = lean_array_push(x_38, x_39); -x_41 = l_Lean_Parser_Tactic_rotateRight___closed__2; -x_42 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_42, 0, x_41); -lean_ctor_set(x_42, 1, x_40); -x_43 = lean_array_push(x_15, x_42); -x_44 = lean_array_push(x_43, x_39); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_33); -lean_ctor_set(x_45, 1, x_44); -x_46 = lean_array_push(x_35, x_45); -x_47 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_47, 0, x_30); -lean_ctor_set(x_47, 1, x_46); -x_48 = lean_array_push(x_15, x_47); -x_49 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16699____closed__5; -x_50 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_50, 0, x_49); -lean_ctor_set(x_50, 1, x_48); -x_51 = lean_array_push(x_15, x_50); -x_52 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16699____closed__3; +x_34 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_34, 0, x_12); +lean_ctor_set(x_34, 1, x_33); +x_35 = lean_array_push(x_15, x_34); +x_36 = l_Lean_nullKind___closed__2; +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_32, x_37); +x_39 = l_Lean_groupKind___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); +x_41 = lean_array_push(x_15, x_40); +x_42 = l_Lean_Parser_Tactic_rotateRight___closed__1; +lean_inc(x_12); +x_43 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_43, 0, x_12); +lean_ctor_set(x_43, 1, x_42); +x_44 = lean_array_push(x_15, x_43); +x_45 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; +x_46 = lean_array_push(x_44, x_45); +x_47 = l_Lean_Parser_Tactic_rotateRight___closed__2; +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_15, x_48); +x_50 = lean_array_push(x_49, x_45); +x_51 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_51, 0, x_39); +lean_ctor_set(x_51, 1, x_50); +x_52 = lean_array_push(x_41, x_51); 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_19, x_53); -x_55 = l_prec_x28___x29___closed__7; -x_56 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_56, 0, x_12); -lean_ctor_set(x_56, 1, x_55); -x_57 = lean_array_push(x_54, x_56); -x_58 = l_Lean_Parser_Tactic_paren___closed__1; +lean_ctor_set(x_53, 0, x_36); +lean_ctor_set(x_53, 1, x_52); +x_54 = lean_array_push(x_15, x_53); +x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16699____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_15, x_56); +x_58 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16699____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); -x_60 = lean_array_push(x_15, x_59); -x_61 = lean_array_push(x_60, x_39); -x_62 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_62, 0, x_33); +x_60 = lean_array_push(x_19, x_59); +x_61 = l_prec_x28___x29___closed__7; +x_62 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_62, 0, x_12); lean_ctor_set(x_62, 1, x_61); -x_63 = lean_array_push(x_15, x_62); -x_64 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_64, 0, x_30); -lean_ctor_set(x_64, 1, x_63); -x_65 = lean_array_push(x_15, x_64); -x_66 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_66, 0, x_49); -lean_ctor_set(x_66, 1, x_65); -x_67 = lean_array_push(x_15, x_66); +x_63 = lean_array_push(x_60, x_62); +x_64 = l_Lean_Parser_Tactic_paren___closed__1; +x_65 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_65, 0, x_64); +lean_ctor_set(x_65, 1, x_63); +x_66 = lean_array_push(x_15, x_65); +x_67 = lean_array_push(x_66, x_45); x_68 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_68, 0, x_52); +lean_ctor_set(x_68, 0, x_39); lean_ctor_set(x_68, 1, x_67); -x_69 = lean_array_push(x_16, x_68); -x_70 = l_Lean_Parser_Tactic_focus___closed__2; -x_71 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_71, 0, x_70); -lean_ctor_set(x_71, 1, x_69); -x_72 = lean_array_push(x_15, x_71); -x_73 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_73, 0, x_30); -lean_ctor_set(x_73, 1, x_72); -x_74 = lean_array_push(x_15, x_73); -x_75 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16699____closed__2; -x_76 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_76, 0, x_75); -lean_ctor_set(x_76, 1, x_74); -lean_ctor_set(x_10, 0, x_76); +x_69 = lean_array_push(x_15, x_68); +x_70 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_70, 0, x_36); +lean_ctor_set(x_70, 1, x_69); +x_71 = lean_array_push(x_15, x_70); +x_72 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_72, 0, x_55); +lean_ctor_set(x_72, 1, x_71); +x_73 = lean_array_push(x_15, x_72); +x_74 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_74, 0, x_58); +lean_ctor_set(x_74, 1, x_73); +x_75 = lean_array_push(x_16, x_74); +x_76 = l_Lean_Parser_Tactic_focus___closed__2; +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 = lean_array_push(x_15, x_77); +x_79 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_79, 0, x_36); +lean_ctor_set(x_79, 1, x_78); +x_80 = lean_array_push(x_15, x_79); +x_81 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16699____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); +lean_ctor_set(x_10, 0, x_82); return x_10; } else { -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; 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; lean_object* x_142; lean_object* x_143; -x_77 = lean_ctor_get(x_10, 0); -x_78 = lean_ctor_get(x_10, 1); -lean_inc(x_78); -lean_inc(x_77); +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; 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; 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; +x_83 = lean_ctor_get(x_10, 0); +x_84 = lean_ctor_get(x_10, 1); +lean_inc(x_84); +lean_inc(x_83); lean_dec(x_10); -x_79 = l_Lean_Parser_Tactic_focus___closed__1; -lean_inc(x_77); -x_80 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_80, 0, x_77); -lean_ctor_set(x_80, 1, x_79); -x_81 = l_Array_empty___closed__1; -x_82 = lean_array_push(x_81, x_80); -x_83 = l_prec_x28___x29___closed__3; -lean_inc(x_77); -x_84 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_84, 0, x_77); -lean_ctor_set(x_84, 1, x_83); -x_85 = lean_array_push(x_81, x_84); -x_86 = l_Lean_Parser_Tactic_refine_x27___closed__1; -lean_inc(x_77); -x_87 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_87, 0, x_77); -lean_ctor_set(x_87, 1, x_86); -x_88 = lean_array_push(x_81, x_87); -x_89 = lean_array_push(x_88, x_9); -x_90 = l_Lean_Parser_Tactic_refine_x27___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); -x_92 = lean_array_push(x_81, x_91); -x_93 = l_myMacro____x40_Init_Notation___hyg_15419____closed__12; -lean_inc(x_77); -x_94 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_94, 0, x_77); -lean_ctor_set(x_94, 1, x_93); -x_95 = lean_array_push(x_81, x_94); -x_96 = l_Lean_nullKind___closed__2; -x_97 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_97, 0, x_96); -lean_ctor_set(x_97, 1, x_95); -x_98 = lean_array_push(x_92, x_97); -x_99 = l_Lean_groupKind___closed__2; +x_85 = l_Lean_Parser_Tactic_focus___closed__1; +lean_inc(x_83); +x_86 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_86, 0, x_83); +lean_ctor_set(x_86, 1, x_85); +x_87 = l_Array_empty___closed__1; +x_88 = lean_array_push(x_87, x_86); +x_89 = l_prec_x28___x29___closed__3; +lean_inc(x_83); +x_90 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_90, 0, x_83); +lean_ctor_set(x_90, 1, x_89); +x_91 = lean_array_push(x_87, x_90); +x_92 = l_Lean_Parser_Tactic_refine_x27___closed__1; +lean_inc(x_83); +x_93 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_93, 0, x_83); +lean_ctor_set(x_93, 1, x_92); +x_94 = lean_array_push(x_87, x_93); +x_95 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__3; +lean_inc(x_83); +x_96 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_96, 0, x_83); +lean_ctor_set(x_96, 1, x_95); +x_97 = lean_array_push(x_87, x_96); +x_98 = lean_array_push(x_97, x_9); +x_99 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__2; x_100 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_100, 0, x_99); lean_ctor_set(x_100, 1, x_98); -x_101 = lean_array_push(x_81, x_100); -x_102 = l_Lean_Parser_Tactic_rotateRight___closed__1; -lean_inc(x_77); -x_103 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_103, 0, x_77); -lean_ctor_set(x_103, 1, x_102); -x_104 = lean_array_push(x_81, x_103); -x_105 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; -x_106 = lean_array_push(x_104, x_105); -x_107 = l_Lean_Parser_Tactic_rotateRight___closed__2; -x_108 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_108, 0, x_107); -lean_ctor_set(x_108, 1, x_106); -x_109 = lean_array_push(x_81, x_108); -x_110 = lean_array_push(x_109, x_105); -x_111 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_111, 0, x_99); -lean_ctor_set(x_111, 1, x_110); -x_112 = lean_array_push(x_101, x_111); -x_113 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_113, 0, x_96); -lean_ctor_set(x_113, 1, x_112); -x_114 = lean_array_push(x_81, x_113); -x_115 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16699____closed__5; -x_116 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_116, 0, x_115); -lean_ctor_set(x_116, 1, x_114); -x_117 = lean_array_push(x_81, x_116); -x_118 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16699____closed__3; -x_119 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_119, 0, x_118); -lean_ctor_set(x_119, 1, x_117); -x_120 = lean_array_push(x_85, x_119); -x_121 = l_prec_x28___x29___closed__7; -x_122 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_122, 0, x_77); -lean_ctor_set(x_122, 1, x_121); -x_123 = lean_array_push(x_120, x_122); -x_124 = l_Lean_Parser_Tactic_paren___closed__1; +x_101 = lean_array_push(x_94, x_100); +x_102 = l_Lean_Parser_Tactic_refine_x27___closed__2; +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 = lean_array_push(x_87, x_103); +x_105 = l_myMacro____x40_Init_Notation___hyg_15419____closed__12; +lean_inc(x_83); +x_106 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_106, 0, x_83); +lean_ctor_set(x_106, 1, x_105); +x_107 = lean_array_push(x_87, x_106); +x_108 = l_Lean_nullKind___closed__2; +x_109 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_109, 0, x_108); +lean_ctor_set(x_109, 1, x_107); +x_110 = lean_array_push(x_104, x_109); +x_111 = l_Lean_groupKind___closed__2; +x_112 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_112, 0, x_111); +lean_ctor_set(x_112, 1, x_110); +x_113 = lean_array_push(x_87, x_112); +x_114 = l_Lean_Parser_Tactic_rotateRight___closed__1; +lean_inc(x_83); +x_115 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_115, 0, x_83); +lean_ctor_set(x_115, 1, x_114); +x_116 = lean_array_push(x_87, x_115); +x_117 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; +x_118 = lean_array_push(x_116, x_117); +x_119 = l_Lean_Parser_Tactic_rotateRight___closed__2; +x_120 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_120, 0, x_119); +lean_ctor_set(x_120, 1, x_118); +x_121 = lean_array_push(x_87, x_120); +x_122 = lean_array_push(x_121, x_117); +x_123 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_123, 0, x_111); +lean_ctor_set(x_123, 1, x_122); +x_124 = lean_array_push(x_113, x_123); x_125 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_125, 0, x_124); -lean_ctor_set(x_125, 1, x_123); -x_126 = lean_array_push(x_81, x_125); -x_127 = lean_array_push(x_126, x_105); +lean_ctor_set(x_125, 0, x_108); +lean_ctor_set(x_125, 1, x_124); +x_126 = lean_array_push(x_87, x_125); +x_127 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16699____closed__5; x_128 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_128, 0, x_99); -lean_ctor_set(x_128, 1, x_127); -x_129 = lean_array_push(x_81, x_128); -x_130 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_130, 0, x_96); -lean_ctor_set(x_130, 1, x_129); -x_131 = lean_array_push(x_81, x_130); -x_132 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_132, 0, x_115); -lean_ctor_set(x_132, 1, x_131); -x_133 = lean_array_push(x_81, x_132); -x_134 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_134, 0, x_118); +lean_ctor_set(x_128, 0, x_127); +lean_ctor_set(x_128, 1, x_126); +x_129 = lean_array_push(x_87, x_128); +x_130 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16699____closed__3; +x_131 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_131, 0, x_130); +lean_ctor_set(x_131, 1, x_129); +x_132 = lean_array_push(x_91, x_131); +x_133 = l_prec_x28___x29___closed__7; +x_134 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_134, 0, x_83); lean_ctor_set(x_134, 1, x_133); -x_135 = lean_array_push(x_82, x_134); -x_136 = l_Lean_Parser_Tactic_focus___closed__2; +x_135 = lean_array_push(x_132, x_134); +x_136 = l_Lean_Parser_Tactic_paren___closed__1; x_137 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_137, 0, x_136); lean_ctor_set(x_137, 1, x_135); -x_138 = lean_array_push(x_81, x_137); -x_139 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_139, 0, x_96); -lean_ctor_set(x_139, 1, x_138); -x_140 = lean_array_push(x_81, x_139); -x_141 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16699____closed__2; +x_138 = lean_array_push(x_87, x_137); +x_139 = lean_array_push(x_138, x_117); +x_140 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_140, 0, x_111); +lean_ctor_set(x_140, 1, x_139); +x_141 = lean_array_push(x_87, x_140); x_142 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_142, 0, x_141); -lean_ctor_set(x_142, 1, x_140); -x_143 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_143, 0, x_142); -lean_ctor_set(x_143, 1, x_78); -return x_143; +lean_ctor_set(x_142, 0, x_108); +lean_ctor_set(x_142, 1, x_141); +x_143 = lean_array_push(x_87, x_142); +x_144 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_144, 0, x_127); +lean_ctor_set(x_144, 1, x_143); +x_145 = lean_array_push(x_87, x_144); +x_146 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_146, 0, x_130); +lean_ctor_set(x_146, 1, x_145); +x_147 = lean_array_push(x_88, x_146); +x_148 = l_Lean_Parser_Tactic_focus___closed__2; +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 = lean_array_push(x_87, x_149); +x_151 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_151, 0, x_108); +lean_ctor_set(x_151, 1, x_150); +x_152 = lean_array_push(x_87, x_151); +x_153 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16699____closed__2; +x_154 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_154, 0, x_153); +lean_ctor_set(x_154, 1, x_152); +x_155 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_155, 0, x_154); +lean_ctor_set(x_155, 1, x_84); +return x_155; } } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20163____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20179____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20163_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20179_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -35255,7 +35328,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_20448____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20480____closed__1() { _start: { lean_object* x_1; @@ -35263,7 +35336,7 @@ x_1 = lean_mk_string("refineLift'"); return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20448_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20480_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -35292,14 +35365,14 @@ 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; x_12 = lean_ctor_get(x_10, 0); -x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20448____closed__1; +x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20480____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_Array_empty___closed__1; x_16 = lean_array_push(x_15, x_14); -x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__2; +x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__2; lean_inc(x_12); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_12); @@ -35333,12 +35406,12 @@ 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_29, x_34); -x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; +x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; 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_26, x_37); -x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__3; +x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__3; x_40 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_40, 0, x_39); lean_ctor_set(x_40, 1, x_38); @@ -35367,14 +35440,14 @@ x_50 = lean_ctor_get(x_10, 1); lean_inc(x_50); lean_inc(x_49); lean_dec(x_10); -x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20448____closed__1; +x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20480____closed__1; lean_inc(x_49); x_52 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_52, 0, x_49); lean_ctor_set(x_52, 1, x_51); x_53 = l_Array_empty___closed__1; x_54 = lean_array_push(x_53, x_52); -x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__2; +x_55 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__2; lean_inc(x_49); x_56 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_56, 0, x_49); @@ -35408,12 +35481,12 @@ 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_67, x_72); -x_74 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; +x_74 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; 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 = lean_array_push(x_64, x_75); -x_77 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__3; +x_77 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__3; x_78 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_78, 0, x_77); lean_ctor_set(x_78, 1, x_76); @@ -35439,11 +35512,11 @@ return x_87; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20448____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20480____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20448_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20480_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -35550,7 +35623,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_20644_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20676_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -35617,12 +35690,12 @@ lean_ctor_set(x_33, 0, x_14); lean_ctor_set(x_33, 1, x_32); x_34 = lean_array_push(x_17, x_33); x_35 = lean_array_push(x_34, x_11); -x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__3; +x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____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_31, x_37); -x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__1; +x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__1; x_40 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_40, 0, x_39); lean_ctor_set(x_40, 1, x_38); @@ -35687,12 +35760,12 @@ lean_ctor_set(x_69, 0, x_49); lean_ctor_set(x_69, 1, x_68); x_70 = lean_array_push(x_53, x_69); x_71 = lean_array_push(x_70, x_11); -x_72 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__3; +x_72 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__3; x_73 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_73, 0, x_72); lean_ctor_set(x_73, 1, x_71); x_74 = lean_array_push(x_67, x_73); -x_75 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__1; +x_75 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__1; x_76 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_76, 0, x_75); lean_ctor_set(x_76, 1, x_74); @@ -35718,11 +35791,11 @@ return x_85; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20644____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20676____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20644_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20676_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -35801,7 +35874,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_20842_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20874_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -35830,7 +35903,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; x_12 = lean_ctor_get(x_10, 0); -x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20448____closed__1; +x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20480____closed__1; lean_inc(x_12); x_14 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_14, 0, x_12); @@ -35871,7 +35944,7 @@ 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_29, x_34); -x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; +x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; x_37 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_37, 0, x_36); lean_ctor_set(x_37, 1, x_35); @@ -35905,7 +35978,7 @@ x_50 = lean_ctor_get(x_10, 1); lean_inc(x_50); lean_inc(x_49); lean_dec(x_10); -x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20448____closed__1; +x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20480____closed__1; lean_inc(x_49); x_52 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_52, 0, x_49); @@ -35946,7 +36019,7 @@ 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_67, x_72); -x_74 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; +x_74 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; x_75 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_75, 0, x_74); lean_ctor_set(x_75, 1, x_73); @@ -35977,11 +36050,11 @@ return x_87; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20842____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20874____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20842_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20874_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -36171,7 +36244,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_18957____closed__4; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -36978,7 +37051,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_21326____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21358____closed__1() { _start: { lean_object* x_1; @@ -36986,7 +37059,7 @@ x_1 = lean_mk_string("repeat"); return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21326_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21358_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -37082,7 +37155,7 @@ 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 = lean_array_push(x_21, x_44); -x_46 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21326____closed__1; +x_46 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21358____closed__1; lean_inc(x_18); x_47 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_47, 0, x_18); @@ -37211,7 +37284,7 @@ x_111 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_111, 0, x_110); lean_ctor_set(x_111, 1, x_109); x_112 = lean_array_push(x_88, x_111); -x_113 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21326____closed__1; +x_113 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21358____closed__1; lean_inc(x_84); x_114 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_114, 0, x_84); @@ -37290,11 +37363,11 @@ return x_151; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21326____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21358____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21326_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21358_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -37359,7 +37432,7 @@ x_1 = l_Lean_Parser_Tactic_tacticTrivial___closed__5; return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21651_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21683_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -37422,16 +37495,16 @@ return x_25; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21651____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21683____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21651_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21683_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21724_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21756_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -37494,16 +37567,16 @@ return x_25; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21724____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21756____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21724_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21756_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21797_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21829_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -37566,16 +37639,16 @@ return x_25; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21797____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21829____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21797_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21829_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__1() { _start: { lean_object* x_1; @@ -37583,22 +37656,22 @@ x_1 = lean_mk_string("True.intro"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____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_21870____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____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_21870____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____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); @@ -37606,7 +37679,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_21870____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__4() { _start: { lean_object* x_1; @@ -37614,51 +37687,51 @@ x_1 = lean_mk_string("True"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____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_21870____closed__4; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____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_21870____closed__6() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____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_21870____closed__5; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____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_21870____closed__7() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____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_21870____closed__6; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____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_21870____closed__8() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____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_21870____closed__7; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____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_21870_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -37695,10 +37768,10 @@ lean_ctor_set(x_14, 0, x_10); lean_ctor_set(x_14, 1, x_13); x_15 = l_Array_empty___closed__1; x_16 = lean_array_push(x_15, x_14); -x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__6; +x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__6; x_18 = l_Lean_addMacroScope(x_12, x_17, x_11); -x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__3; -x_20 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__8; +x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__3; +x_20 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__8; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_10); lean_ctor_set(x_21, 1, x_19); @@ -37732,10 +37805,10 @@ lean_ctor_set(x_30, 0, x_25); lean_ctor_set(x_30, 1, x_29); x_31 = l_Array_empty___closed__1; x_32 = lean_array_push(x_31, x_30); -x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__6; +x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__6; x_34 = l_Lean_addMacroScope(x_28, x_33, x_27); -x_35 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__3; -x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__8; +x_35 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__3; +x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__8; x_37 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_37, 0, x_25); lean_ctor_set(x_37, 1, x_35); @@ -37754,7 +37827,7 @@ return x_41; } } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__1() { _start: { lean_object* x_1; @@ -37762,22 +37835,22 @@ x_1 = lean_mk_string("And.intro"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____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_21966____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____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_21966____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____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); @@ -37785,7 +37858,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_21966____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -37795,31 +37868,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_21966____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____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_21966____closed__4; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____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_21966____closed__6() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____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_21966____closed__5; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____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_21966____closed__7() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__7() { _start: { lean_object* x_1; @@ -37827,7 +37900,7 @@ x_1 = lean_mk_string("<;>"); return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -37864,10 +37937,10 @@ lean_ctor_set(x_14, 0, x_10); lean_ctor_set(x_14, 1, x_13); x_15 = l_Array_empty___closed__1; x_16 = lean_array_push(x_15, x_14); -x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__4; +x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__4; x_18 = l_Lean_addMacroScope(x_12, x_17, x_11); -x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__3; -x_20 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__6; +x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__3; +x_20 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__6; lean_inc(x_10); x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_10); @@ -37880,7 +37953,7 @@ 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 = lean_array_push(x_15, x_24); -x_26 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__7; +x_26 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__7; lean_inc(x_10); x_27 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_27, 0, x_10); @@ -37922,10 +37995,10 @@ lean_ctor_set(x_41, 0, x_36); lean_ctor_set(x_41, 1, x_40); x_42 = l_Array_empty___closed__1; x_43 = lean_array_push(x_42, x_41); -x_44 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__4; +x_44 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__4; x_45 = l_Lean_addMacroScope(x_39, x_44, x_38); -x_46 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__3; -x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__6; +x_46 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__3; +x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__6; lean_inc(x_36); x_48 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_48, 0, x_36); @@ -37938,7 +38011,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_42, x_51); -x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__7; +x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__7; lean_inc(x_36); x_54 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_54, 0, x_36); @@ -38039,7 +38112,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_22119____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__1() { _start: { lean_object* x_1; @@ -38047,17 +38120,17 @@ x_1 = lean_mk_string("set_option"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____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_22119____closed__1; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____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_22119____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__3() { _start: { lean_object* x_1; @@ -38065,22 +38138,22 @@ x_1 = lean_mk_string("tactic.hygienic"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____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_22119____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____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_22119____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__3; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__4; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____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); @@ -38088,7 +38161,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_22119____closed__6() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__6() { _start: { lean_object* x_1; @@ -38096,17 +38169,17 @@ x_1 = lean_mk_string("hygienic"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__7() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____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_22119____closed__6; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____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_22119____closed__8() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8() { _start: { lean_object* x_1; @@ -38114,7 +38187,7 @@ x_1 = lean_mk_string("false"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__9() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__9() { _start: { lean_object* x_1; @@ -38122,7 +38195,7 @@ x_1 = lean_mk_string("in"); return x_1; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -38157,17 +38230,17 @@ 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_22119____closed__1; +x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____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_Array_empty___closed__1; x_18 = lean_array_push(x_17, x_16); -x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__7; +x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__7; x_20 = l_Lean_addMacroScope(x_14, x_19, x_13); x_21 = lean_box(0); -x_22 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__5; +x_22 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__5; lean_inc(x_12); x_23 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_23, 0, x_12); @@ -38175,19 +38248,19 @@ lean_ctor_set(x_23, 1, x_22); lean_ctor_set(x_23, 2, x_20); lean_ctor_set(x_23, 3, x_21); x_24 = lean_array_push(x_18, x_23); -x_25 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_25 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; lean_inc(x_12); x_26 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_26, 0, x_12); lean_ctor_set(x_26, 1, x_25); x_27 = lean_array_push(x_24, x_26); -x_28 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__9; +x_28 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__9; x_29 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_29, 0, x_12); lean_ctor_set(x_29, 1, x_28); x_30 = lean_array_push(x_27, x_29); x_31 = lean_array_push(x_30, x_9); -x_32 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__2; +x_32 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____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); @@ -38217,17 +38290,17 @@ lean_inc(x_42); x_43 = lean_ctor_get(x_2, 1); lean_inc(x_43); lean_dec(x_2); -x_44 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__1; +x_44 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__1; lean_inc(x_40); x_45 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_45, 0, x_40); lean_ctor_set(x_45, 1, x_44); x_46 = l_Array_empty___closed__1; x_47 = lean_array_push(x_46, x_45); -x_48 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__7; +x_48 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__7; x_49 = l_Lean_addMacroScope(x_43, x_48, x_42); x_50 = lean_box(0); -x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__5; +x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__5; lean_inc(x_40); x_52 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_52, 0, x_40); @@ -38235,19 +38308,19 @@ lean_ctor_set(x_52, 1, x_51); lean_ctor_set(x_52, 2, x_49); lean_ctor_set(x_52, 3, x_50); x_53 = lean_array_push(x_47, x_52); -x_54 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_54 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; lean_inc(x_40); x_55 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_55, 0, x_40); lean_ctor_set(x_55, 1, x_54); x_56 = lean_array_push(x_53, x_55); -x_57 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__9; +x_57 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__9; x_58 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_58, 0, x_40); lean_ctor_set(x_58, 1, x_57); x_59 = lean_array_push(x_56, x_58); x_60 = lean_array_push(x_59, x_9); -x_61 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__2; +x_61 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__2; x_62 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_62, 0, x_61); lean_ctor_set(x_62, 1, x_60); @@ -38475,7 +38548,7 @@ x_1 = l_term_u2039___u203a___closed__9; return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_22312____closed__1() { +static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_22344____closed__1() { _start: { lean_object* x_1; @@ -38483,17 +38556,17 @@ x_1 = lean_mk_string("byTactic"); return x_1; } } -static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_22312____closed__2() { +static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_22344____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2; -x_2 = l_myMacro____x40_Init_Notation___hyg_22312____closed__1; +x_2 = l_myMacro____x40_Init_Notation___hyg_22344____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_22312____closed__3() { +static lean_object* _init_l_myMacro____x40_Init_Notation___hyg_22344____closed__3() { _start: { lean_object* x_1; @@ -38501,7 +38574,7 @@ x_1 = lean_mk_string("by"); return x_1; } } -lean_object* l_myMacro____x40_Init_Notation___hyg_22312_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_myMacro____x40_Init_Notation___hyg_22344_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -38537,7 +38610,7 @@ lean_ctor_set(x_14, 0, x_12); lean_ctor_set(x_14, 1, x_13); x_15 = l_Array_empty___closed__1; x_16 = lean_array_push(x_15, x_14); -x_17 = l_myMacro____x40_Init_Notation___hyg_22312____closed__3; +x_17 = l_myMacro____x40_Init_Notation___hyg_22344____closed__3; lean_inc(x_12); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_12); @@ -38576,7 +38649,7 @@ x_38 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_38, 0, x_37); lean_ctor_set(x_38, 1, x_36); x_39 = lean_array_push(x_19, x_38); -x_40 = l_myMacro____x40_Init_Notation___hyg_22312____closed__2; +x_40 = l_myMacro____x40_Init_Notation___hyg_22344____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); @@ -38628,7 +38701,7 @@ lean_ctor_set(x_62, 0, x_59); lean_ctor_set(x_62, 1, x_61); x_63 = l_Array_empty___closed__1; x_64 = lean_array_push(x_63, x_62); -x_65 = l_myMacro____x40_Init_Notation___hyg_22312____closed__3; +x_65 = l_myMacro____x40_Init_Notation___hyg_22344____closed__3; lean_inc(x_59); x_66 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_66, 0, x_59); @@ -38667,7 +38740,7 @@ x_86 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_86, 0, x_85); lean_ctor_set(x_86, 1, x_84); x_87 = lean_array_push(x_67, x_86); -x_88 = l_myMacro____x40_Init_Notation___hyg_22312____closed__2; +x_88 = l_myMacro____x40_Init_Notation___hyg_22344____closed__2; x_89 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_89, 0, x_88); lean_ctor_set(x_89, 1, x_87); @@ -38709,11 +38782,11 @@ return x_107; } } } -lean_object* l_myMacro____x40_Init_Notation___hyg_22312____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_myMacro____x40_Init_Notation___hyg_22344____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_myMacro____x40_Init_Notation___hyg_22312_(x_1, x_2, x_3); +x_4 = l_myMacro____x40_Init_Notation___hyg_22344_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -41741,6 +41814,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_18672____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____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(); @@ -41761,16 +41840,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_18957____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__4); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__4); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____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(); @@ -41787,12 +41866,12 @@ 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_19153____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__3); 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(); @@ -41813,10 +41892,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_19351____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19351____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19351____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19351____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19351____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19351____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367____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(); @@ -41847,16 +41926,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_19722____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__4); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__5); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__4); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____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(); @@ -41885,12 +41964,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_19927____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____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(); @@ -41919,8 +41998,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_20448____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20448____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20448____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20480____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20480____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20480____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(); @@ -42129,8 +42208,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_21326____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21326____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21326____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21358____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21358____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21358____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(); @@ -42143,36 +42222,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_21870____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__4); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__5); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__6 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__6); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__7 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__7); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__8 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__8); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__4); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__5); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__6 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__6); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__7 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21966____closed__7); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__4); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__5); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__6 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__6); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__7 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__7); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__8 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__8(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__8); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__4); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__5); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__6 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__6); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__7 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21998____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(); @@ -42187,24 +42266,24 @@ 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_22119____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__4); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__5); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__6 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__6); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__7 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__7); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__9 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__9); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__4); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__5); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__6 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__6); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__7 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__7); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__9 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__9(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__9); 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(); @@ -42243,12 +42322,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_22312____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_22312____closed__1(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_22312____closed__1); -l_myMacro____x40_Init_Notation___hyg_22312____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_22312____closed__2(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_22312____closed__2); -l_myMacro____x40_Init_Notation___hyg_22312____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_22312____closed__3(); -lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_22312____closed__3); +l_myMacro____x40_Init_Notation___hyg_22344____closed__1 = _init_l_myMacro____x40_Init_Notation___hyg_22344____closed__1(); +lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_22344____closed__1); +l_myMacro____x40_Init_Notation___hyg_22344____closed__2 = _init_l_myMacro____x40_Init_Notation___hyg_22344____closed__2(); +lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_22344____closed__2); +l_myMacro____x40_Init_Notation___hyg_22344____closed__3 = _init_l_myMacro____x40_Init_Notation___hyg_22344____closed__3(); +lean_mark_persistent(l_myMacro____x40_Init_Notation___hyg_22344____closed__3); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Compiler/ConstFolding.c b/stage0/stdlib/Lean/Compiler/ConstFolding.c index 860ccf8b0d..d8800c18eb 100644 --- a/stage0/stdlib/Lean/Compiler/ConstFolding.c +++ b/stage0/stdlib/Lean/Compiler/ConstFolding.c @@ -118,7 +118,6 @@ lean_object* l_Lean_Compiler_binFoldFns; lean_object* l_Lean_Compiler_mkNatLe___closed__2; lean_object* l_Lean_mkDecIsTrue(lean_object*, lean_object*); lean_object* l_Lean_Compiler_foldStrictOr___rarg(lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; lean_object* l_Lean_Compiler_natFoldFns___closed__7; lean_object* l_Lean_Compiler_preUIntBinFoldFns___closed__21; lean_object* l_List_lookup___at_Lean_Compiler_findUnFoldFn___spec__1(lean_object*, lean_object*); @@ -132,6 +131,7 @@ lean_object* l_Lean_Compiler_foldNatDecEq(uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Compiler_foldUIntDiv___closed__1; lean_object* l_Lean_Compiler_toDecidableExpr___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_fold_un_op(uint8_t, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; lean_object* l_Lean_Compiler_toDecidableExpr___closed__1; lean_object* l_Lean_Compiler_boolFoldFns___closed__6; lean_object* l_Lean_Compiler_unFoldFns___closed__6; @@ -3270,7 +3270,7 @@ if (x_25 == 0) { lean_object* x_26; uint8_t x_27; lean_dec(x_2); -x_26 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_26 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; x_27 = lean_string_dec_eq(x_11, x_26); if (x_27 == 0) { @@ -3321,7 +3321,7 @@ if (x_38 == 0) { lean_object* x_39; uint8_t x_40; lean_dec(x_2); -x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; x_40 = lean_string_dec_eq(x_11, x_39); if (x_40 == 0) { @@ -3404,7 +3404,7 @@ if (x_58 == 0) { lean_object* x_59; uint8_t x_60; lean_dec(x_2); -x_59 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_59 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; x_60 = lean_string_dec_eq(x_11, x_59); if (x_60 == 0) { @@ -3507,7 +3507,7 @@ if (x_83 == 0) { lean_object* x_84; uint8_t x_85; lean_dec(x_2); -x_84 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_84 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; x_85 = lean_string_dec_eq(x_73, x_84); if (x_85 == 0) { @@ -3676,7 +3676,7 @@ x_11 = lean_string_dec_eq(x_5, x_10); if (x_11 == 0) { lean_object* x_12; uint8_t x_13; -x_12 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_12 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; x_13 = lean_string_dec_eq(x_5, x_12); if (x_13 == 0) { diff --git a/stage0/stdlib/Lean/Data/Json/Parser.c b/stage0/stdlib/Lean/Data/Json/Parser.c index 63a4bd0063..96cf6baa6d 100644 --- a/stage0/stdlib/Lean/Data/Json/Parser.c +++ b/stage0/stdlib/Lean/Data/Json/Parser.c @@ -57,11 +57,11 @@ lean_object* l_Lean_Json_Parser_escapedChar___boxed__const__2; lean_object* l_Lean_Quickparse_expect(lean_object*, lean_object*); lean_object* l_Lean_Json_Parser_anyCore___rarg___closed__6; lean_object* l_Lean_Quickparse_expect___boxed(lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; lean_object* l_Lean_Json_Parser_num___lambda__3___closed__2; lean_object* l_Lean_Json_Parser_anyCore___rarg(lean_object*); lean_object* l_Lean_Json_Parser_num___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Json_Parser_lookahead___rarg___closed__1; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; lean_object* l_Lean_Json_Parser_lookahead___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_String_Iterator_forward(lean_object*, lean_object*); lean_object* l_Lean_Json_Parser_natNumDigits(lean_object*); @@ -4793,7 +4793,7 @@ return x_87; else { lean_object* x_88; lean_object* x_89; -x_88 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_88 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; x_89 = l_Lean_Quickparse_expect(x_88, x_1); if (lean_obj_tag(x_89) == 0) { diff --git a/stage0/stdlib/Lean/Data/Json/Printer.c b/stage0/stdlib/Lean/Data/Json/Printer.c index 5a953de586..74269cf7bd 100644 --- a/stage0/stdlib/Lean/Data/Json/Printer.c +++ b/stage0/stdlib/Lean/Data/Json/Printer.c @@ -46,8 +46,8 @@ lean_object* l_Lean_Json_render___closed__8; lean_object* l___private_Lean_Data_Json_Printer_0__Lean_Json_escapeAux(lean_object*, uint32_t); lean_object* l_Lean_Json_render___closed__1; extern lean_object* l_Char_quoteCore___closed__2; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; lean_object* l_Lean_Json_render___closed__2; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; lean_object* l_Lean_Json_compress(lean_object*); lean_object* l_Std_instToFormatFormat___boxed(lean_object*); extern lean_object* l_instReprBool___closed__3; @@ -746,7 +746,7 @@ lean_dec(x_1); if (x_3 == 0) { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; return x_4; } else diff --git a/stage0/stdlib/Lean/Data/KVMap.c b/stage0/stdlib/Lean/Data/KVMap.c index 8daccb5f97..5acac3dd38 100644 --- a/stage0/stdlib/Lean/Data/KVMap.c +++ b/stage0/stdlib/Lean/Data/KVMap.c @@ -71,7 +71,6 @@ lean_object* lean_mk_bool_data_value(uint8_t); lean_object* l_Lean_Name_toStringWithSep(lean_object*, lean_object*); lean_object* l_Lean_KVMap_subsetAux_match__1(lean_object*); lean_object* l_Lean_KVMap_get_x3f___rarg___boxed(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; lean_object* l_Lean_KVMap_instValueName___closed__2; lean_object* l_Lean_KVMap_getNat_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KVMap_insert_match__1(lean_object*); @@ -81,6 +80,7 @@ lean_object* l_Lean_KVMap_instValueNat___closed__3; extern lean_object* l_optional___rarg___closed__1; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_KVMap_instValueString___closed__3; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; lean_object* l_Lean_KVMap_getBool___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_instCoeNameDataValue(lean_object*); lean_object* l_Lean_KVMap_insert_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -774,7 +774,7 @@ lean_dec(x_1); if (x_3 == 0) { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; return x_4; } else diff --git a/stage0/stdlib/Lean/Data/LBool.c b/stage0/stdlib/Lean/Data/LBool.c index f778f3e2bf..173098d9e8 100644 --- a/stage0/stdlib/Lean/Data/LBool.c +++ b/stage0/stdlib/Lean/Data/LBool.c @@ -27,7 +27,7 @@ lean_object* l_Bool_toLBool_match__1___rarg(uint8_t, lean_object*, lean_object*) lean_object* l___private_Lean_Data_LBool_0__Lean_beqLBool____x40_Lean_Data_LBool___hyg_11__match__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LBool_neg_match__1(lean_object*); lean_object* l_Lean_LBool_neg_match__1___rarg(uint8_t, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; uint8_t l_Lean_LBool_and(uint8_t, uint8_t); lean_object* l___private_Lean_Data_LBool_0__Lean_beqLBool____x40_Lean_Data_LBool___hyg_11__match__1___rarg(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LBool_and_match__1(lean_object*); @@ -424,7 +424,7 @@ switch (x_1) { case 0: { lean_object* x_2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; return x_2; } case 1: diff --git a/stage0/stdlib/Lean/Data/Options.c b/stage0/stdlib/Lean/Data/Options.c index 894d5ca62e..6bc0d383b5 100644 --- a/stage0/stdlib/Lean/Data/Options.c +++ b/stage0/stdlib/Lean/Data/Options.c @@ -66,7 +66,6 @@ lean_object* l_Lean_getNatOption(lean_object*); lean_object* l_Lean_getBoolOption___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Option_get___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_113____spec__1(lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; lean_object* l_Lean_Option_setIfNotSet___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerOption___closed__1; lean_object* l_Lean_registerOption___closed__2; @@ -77,6 +76,7 @@ lean_object* l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d___ lean_object* l_String_toName(lean_object*); lean_object* l_Lean_setOptionFromString___closed__4; lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_897____closed__1; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; lean_object* l_Lean_instMonadOptions(lean_object*, lean_object*); lean_object* l_Lean_getOptionDecl(lean_object*, lean_object*); lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_897____closed__8; @@ -1082,7 +1082,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_22119____closed__8; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } diff --git a/stage0/stdlib/Lean/Declaration.c b/stage0/stdlib/Lean/Declaration.c index 8c8df7be30..a74a0b9e3a 100644 --- a/stage0/stdlib/Lean/Declaration.c +++ b/stage0/stdlib/Lean/Declaration.c @@ -178,7 +178,6 @@ lean_object* l_Lean_ConstantInfo_isUnsafe_match__1(lean_object*); lean_object* l_Lean_instInhabitedDeclaration; lean_object* l_Lean_instInhabitedTheoremVal; lean_object* lean_mk_opaque_val(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__3; lean_object* l_Lean_ConstantInfo_numLevelParams___boxed(lean_object*); lean_object* l_Lean_InductiveVal_nctors(lean_object*); lean_object* l_Lean_ReducibilityHints_lt_match__1(lean_object*); @@ -199,6 +198,7 @@ lean_object* l_Lean_ConstantInfo_hints_match__1(lean_object*); lean_object* l_Lean_DefinitionVal_getSafetyEx___boxed(lean_object*); lean_object* l_List_lengthAux___rarg(lean_object*, lean_object*); lean_object* l_Lean_instReprDefinitionSafety___closed__1; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__3; lean_object* l_Lean_Declaration_isUnsafeInductiveDeclEx_match__1___rarg(lean_object*, lean_object*, lean_object*); uint8_t lean_axiom_val_is_unsafe(lean_object*); lean_object* lean_mk_axiom_val(lean_object*, lean_object*, lean_object*, uint8_t); @@ -3491,7 +3491,7 @@ lean_object* l_Lean_mkRecName(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__3; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } diff --git a/stage0/stdlib/Lean/Elab/App.c b/stage0/stdlib/Lean/Elab/App.c index b20482db79..eb9fefcbcb 100644 --- a/stage0/stdlib/Lean/Elab/App.c +++ b/stage0/stdlib/Lean/Elab/App.c @@ -428,12 +428,12 @@ lean_object* l_Lean_Elab_Term_ElabAppArgs_eraseNamedArgCore___boxed(lean_object* 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*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_normalizeFunType___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_14874____closed__9; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_addLValArg___spec__2___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* l_Lean_Elab_Term_elabProj(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux___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*); extern lean_object* l_Lean_Elab_Term_termElabAttribute; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_App_0__Lean_Elab_Term_getSuccess___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; uint8_t l_Lean_Syntax_isNodeOf(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFnId(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalDecl_type(lean_object*); @@ -473,7 +473,6 @@ lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_addLValArg___lambda__1( lean_object* l_Lean_Elab_Term_expandApp_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_addDotCompletionInfo(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_App_0__Lean_Elab_Term_addLValArg_match__3(lean_object*); -extern lean_object* l_myMacro____x40_Init_Notation___hyg_22312____closed__3; uint8_t lean_nat_dec_le(lean_object*, lean_object*); lean_object* l_Lean_mkApp(lean_object*, lean_object*); lean_object* l_Lean_mkPrivateName(lean_object*, lean_object*); @@ -497,7 +496,6 @@ lean_object* l_Lean_Elab_Term_throwInvalidNamedArg___rarg___closed__5; lean_object* l_Lean_Elab_Term_addTermInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabExplicit___closed__1; -extern lean_object* l_myMacro____x40_Init_Notation___hyg_22312____closed__2; lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFnId_toName_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_ElabAppArgs_State_etaArgs___default; lean_object* l_Lean_Elab_getRefPos___at___private_Lean_Elab_App_0__Lean_Elab_Term_toMessageData___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*); @@ -527,6 +525,7 @@ lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_expandArgs___spec__1(lean_o lean_object* l_Lean_Elab_Term_resolveName_x27(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_ElabAppArgs_eraseNamedArg___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_withoutPostponingUniverseConstraints___at_Lean_Elab_Term_elabPipeProj___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*); +extern lean_object* l_myMacro____x40_Init_Notation___hyg_22344____closed__3; lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_getRefPos___at___private_Lean_Elab_App_0__Lean_Elab_Term_toMessageData___spec__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabChoice___closed__1; @@ -574,6 +573,7 @@ uint8_t l_Lean_Expr_isOptParam(lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Term_expandArgs___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_mergeFailures_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop_match__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_myMacro____x40_Init_Notation___hyg_22344____closed__2; lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux___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_throwUnsupportedSyntax___at___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_consumeImplicits___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -4880,12 +4880,12 @@ x_5 = lean_name_eq(x_3, x_4); if (x_5 == 0) { lean_object* x_6; uint8_t x_7; -x_6 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; +x_6 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; x_7 = lean_name_eq(x_3, x_6); if (x_7 == 0) { lean_object* x_8; uint8_t x_9; -x_8 = l_myMacro____x40_Init_Notation___hyg_22312____closed__2; +x_8 = l_myMacro____x40_Init_Notation___hyg_22344____closed__2; x_9 = lean_name_eq(x_3, x_8); lean_dec(x_3); if (x_9 == 0) @@ -8198,7 +8198,7 @@ x_72 = l_Lean_Elab_Term_getMainModule___rarg(x_8, x_71); x_73 = lean_ctor_get(x_72, 1); lean_inc(x_73); lean_dec(x_72); -x_74 = l_myMacro____x40_Init_Notation___hyg_22312____closed__3; +x_74 = l_myMacro____x40_Init_Notation___hyg_22344____closed__3; x_75 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_75, 0, x_68); lean_ctor_set(x_75, 1, x_74); @@ -8210,7 +8210,7 @@ x_80 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_80, 0, x_79); lean_ctor_set(x_80, 1, x_78); x_81 = lean_array_push(x_77, x_80); -x_82 = l_myMacro____x40_Init_Notation___hyg_22312____closed__2; +x_82 = l_myMacro____x40_Init_Notation___hyg_22344____closed__2; x_83 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_83, 0, x_82); lean_ctor_set(x_83, 1, x_81); diff --git a/stage0/stdlib/Lean/Elab/Binders.c b/stage0/stdlib/Lean/Elab/Binders.c index 40c015850d..f24b48e26f 100644 --- a/stage0/stdlib/Lean/Elab/Binders.c +++ b/stage0/stdlib/Lean/Elab/Binders.c @@ -278,7 +278,6 @@ lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__19; extern lean_object* l_Array_forInUnsafe_loop___at_myMacro____x40_Init_NotationExtra___hyg_5484____spec__3___closed__2; extern lean_object* l_myMacro____x40_Init_Notation___hyg_13352____closed__7; lean_object* l___regBuiltin_Lean_Elab_Term_elabLetDelayedDecl(lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__2; lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_expandMatchAltsWhereDecls_loop___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_KernelException_toMessageData___closed__15; @@ -368,6 +367,7 @@ lean_object* l_Lean_Syntax_getKind(lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_ensureAtomicBinderName___closed__1; lean_object* l_Lean_Meta_saveAndResetSynthInstanceCache___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_ensureAtomicBinderName___closed__2; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__1; 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*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_15419____closed__12; @@ -381,6 +381,7 @@ extern lean_object* l_Lean_Parser_Tactic_match___elambda__1___closed__1; lean_object* l_Lean_Elab_Term_elabLetDeclCore_match__2(lean_object*); lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___spec__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__12; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabLetDelayedDecl___closed__1; lean_object* l_Lean_Elab_pushInfoTree___at_Lean_Elab_Term_addTermInfo___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_quoteAutoTactic_match__1(lean_object*); @@ -427,7 +428,6 @@ lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_elabBindersAux_loop lean_object* l_Lean_Elab_Term_elabBinders___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_Binders_0__Lean_Elab_Term_elabBinderViews___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_Term_mkLetIdDeclView(lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__3; extern lean_object* l_prec_x28___x29___closed__7; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___boxed__const__1; extern lean_object* l_myMacro____x40_Init_Notation___hyg_2278____closed__4; @@ -457,6 +457,7 @@ lean_object* l_Lean_Elab_Term_elabLetDeclAux___closed__3; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_elabForall___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); 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*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__3; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderType___boxed(lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLetDeclImp___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__2; @@ -466,7 +467,6 @@ 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*); 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*); extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_1131____closed__1; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__1; lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___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*); extern lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__1; lean_object* l_Lean_Elab_Term_FunBinders_State_fvars___default; @@ -18587,7 +18587,7 @@ lean_ctor_set(x_21, 0, x_19); lean_ctor_set(x_21, 1, x_20); x_22 = l_Array_empty___closed__1; x_23 = lean_array_push(x_22, x_21); -x_24 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__3; +x_24 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__3; lean_inc(x_19); x_25 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_25, 0, x_19); @@ -18608,7 +18608,7 @@ 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_22, x_34); -x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__1; +x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__1; x_37 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_37, 0, x_36); lean_ctor_set(x_37, 1, x_35); @@ -18623,7 +18623,7 @@ lean_ctor_set(x_42, 0, x_33); lean_ctor_set(x_42, 1, x_41); x_43 = lean_array_push(x_38, x_42); x_44 = lean_array_push(x_43, x_2); -x_45 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__2; +x_45 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__2; x_46 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_46, 0, x_45); lean_ctor_set(x_46, 1, x_44); @@ -18645,7 +18645,7 @@ lean_ctor_set(x_50, 0, x_47); lean_ctor_set(x_50, 1, x_49); x_51 = l_Array_empty___closed__1; x_52 = lean_array_push(x_51, x_50); -x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__3; +x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__3; lean_inc(x_47); x_54 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_54, 0, x_47); @@ -18666,7 +18666,7 @@ 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 = lean_array_push(x_51, x_63); -x_65 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__1; +x_65 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__1; x_66 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_66, 0, x_65); lean_ctor_set(x_66, 1, x_64); @@ -18681,7 +18681,7 @@ lean_ctor_set(x_71, 0, x_62); lean_ctor_set(x_71, 1, x_70); x_72 = lean_array_push(x_67, x_71); x_73 = lean_array_push(x_72, x_2); -x_74 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__2; +x_74 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__2; x_75 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_75, 0, x_74); lean_ctor_set(x_75, 1, x_73); diff --git a/stage0/stdlib/Lean/Elab/BuiltinNotation.c b/stage0/stdlib/Lean/Elab/BuiltinNotation.c index a334bc82a4..b12a7c4094 100644 --- a/stage0/stdlib/Lean/Elab/BuiltinNotation.c +++ b/stage0/stdlib/Lean/Elab/BuiltinNotation.c @@ -91,6 +91,7 @@ extern lean_object* l_myMacro____x40_Init_Data_ToString_Macro___hyg_23____closed lean_object* l___regBuiltin_Lean_Elab_Term_elabNoindex(lean_object*); lean_object* l_Lean_Elab_Term_elabSorry___closed__7; lean_object* l_Lean_Elab_Term_expandHave___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__5; extern lean_object* l_termS_x21_____closed__3; lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_expandAssert___closed__2; @@ -138,7 +139,6 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_1481____closed__8; uint8_t l_USize_decLt(size_t, size_t); lean_object* l_Lean_Elab_Term_expandEmptyC___closed__4; lean_object* l_Lean_Elab_Term_expandDbgTrace___closed__2; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__3; lean_object* l_Lean_Elab_Term_expandShow___closed__1; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__18; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__30; @@ -146,6 +146,7 @@ extern lean_object* l_termS_x21_____closed__2; extern lean_object* l_myMacro____x40_Init_Notation___hyg_13954____closed__13; lean_object* l___regBuiltin_Lean_Elab_Term_expandShow___closed__1; lean_object* lean_nat_add(lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__1; lean_object* l_Lean_Elab_Term_ensureHasType(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_elabSubst___lambda__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*); lean_object* l_Lean_Elab_Term_elabCDotFunctionAlias_x3f_match__1___rarg(lean_object*, lean_object*, lean_object*); @@ -168,7 +169,6 @@ lean_object* l_Lean_Elab_Term_expandHave___lambda__1___closed__3; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_expandCDot___spec__1(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_113____spec__1(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabPanic___closed__10; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; lean_object* l_Lean_Elab_Term_expandHave___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* l_Lean_Elab_Term_expandShow___closed__2; 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*); @@ -177,7 +177,6 @@ lean_object* l_Lean_Elab_Term_expandAssert_match__1___rarg(lean_object*, lean_ob lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__24; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabTParserMacroAux(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_Term_expandHave(lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__2; lean_object* l_Lean_Syntax_SepArray_getElems___rarg(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabPanic(lean_object*); lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabCDot___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -196,6 +195,7 @@ lean_object* l_Lean_Elab_Term_elabAnonymousCtor(lean_object*, lean_object*, lean uint8_t lean_nat_dec_eq(lean_object*, lean_object*); extern lean_object* l_Lean_setOptionFromString___closed__4; extern lean_object* l_myMacro____x40_Init_Notation___hyg_15419____closed__5; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; lean_object* l_Lean_Elab_Term_expandEmptyC___closed__3; lean_object* l_Lean_Elab_Term_elabStateRefT___lambda__2___closed__6; lean_object* l_Lean_Elab_Term_expandEmptyC___closed__5; @@ -213,15 +213,14 @@ lean_object* l_Lean_Elab_Term_expandDbgTrace(lean_object*, lean_object*, lean_ob lean_object* l_Lean_Elab_Term_elabTrailingParserMacro(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabAnonymousCtor___lambda__3___closed__3; lean_object* l_Lean_Elab_Term_mkPairs_loop___closed__1; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__2; lean_object* l_Lean_Elab_Term_elabAnonymousCtor___lambda__3___closed__5; lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingImp___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkEqSymm(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_2278____closed__3; lean_object* l_Lean_Elab_Term_expandHave_match__1(lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabStateRefT___closed__1; extern lean_object* l_Lean_Parser_Term_macroDollarArg___elambda__1___closed__2; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__4; 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*); lean_object* l_Lean_Elab_Term_elabStateRefT___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_Elab_Term_expandUnreachable(lean_object*); @@ -244,7 +243,6 @@ lean_object* l_Lean_Elab_Term_expandHave___lambda__1___boxed(lean_object*, lean_ lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux_match__2(lean_object*); lean_object* l_Lean_Elab_Term_expandEmptyC___closed__6; lean_object* l___regBuiltin_Lean_Elab_Term_expandSuffices(lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__1; lean_object* l_Lean_Elab_Term_elabNoindex(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabPanic___closed__5; lean_object* l_Lean_Elab_Term_elabSubst_match__2(lean_object*); @@ -263,18 +261,20 @@ uint8_t l_Array_isEqvAux___at_Lean_Elab_Term_elabCDotFunctionAlias_x3f___spec__1 uint8_t l_Lean_LocalDecl_binderInfo(lean_object*); lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabCDot(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabTParserMacroAux_match__1(lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__1; lean_object* l_Lean_Elab_addMacroStack___at_Lean_Elab_Term_instAddErrorMessageContextTermElabM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabParen___closed__1; lean_object* l_Lean_Elab_Term_elabLeadingParserMacro___closed__1; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__4; lean_object* l_Lean_Elab_Term_elabParen___lambda__1(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_Parser_maxPrec; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__2; lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Term_elabAnonymousCtor___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* l_Lean_Elab_Term_elabSubst___lambda__4(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_Lean_Meta_mkEqNDRec(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabStateRefT___lambda__2___closed__2; extern lean_object* l_myMacro____x40_Init_Notation___hyg_13352____closed__13; lean_object* l_Lean_Elab_Term_elabSorry___closed__2; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__1; lean_object* l_Lean_Elab_Term_getCurrMacroScope(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabStateRefT___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_Array_anyMUnsafe_any___at___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_hasCDot___spec__1___boxed(lean_object*, lean_object*, lean_object*); @@ -322,13 +322,13 @@ lean_object* l_Lean_Elab_Term_expandHave___lambda__3___boxed(lean_object*, lean_ lean_object* l___regBuiltin_Lean_Elab_Term_elabSorry___closed__1; lean_object* l_Lean_Elab_Term_elabAnonymousCtor___closed__10; extern lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__2; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__3; lean_object* l_Lean_Elab_Term_elabSubst___lambda__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* l_Lean_Elab_Term_elabCDotFunctionAlias_x3f_match__1(lean_object*); lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__22; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17334____closed__2; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__29; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19351____closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabTrailingParserMacro(lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__5___rarg(lean_object*); lean_object* l_Lean_Elab_Term_elabStateRefT___lambda__2___closed__7; @@ -359,7 +359,6 @@ lean_object* l_Lean_Elab_Term_elabLeadingParserMacro___lambda__1___closed__2; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__3; lean_object* l_Lean_Elab_Term_elabStateRefT___lambda__2___closed__3; lean_object* l_Lean_Elab_Term_elabSorry___closed__1; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__3; lean_object* l_Lean_Elab_Term_elabTrailingParserMacro___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___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabTParserMacroAux___closed__7; lean_object* l___regBuiltin_Lean_Elab_Term_expandShow(lean_object*); @@ -369,10 +368,10 @@ lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserM lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__28; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__14; lean_object* l_Lean_Elab_getRefPos___at_Lean_Elab_Term_elabPanic___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_myMacro____x40_Init_Notation___hyg_22312____closed__3; uint8_t lean_nat_dec_le(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabSorry___closed__8; lean_object* l_Lean_throwError___at_Lean_Elab_Term_elabAnonymousCtor___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367____closed__2; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabTParserMacroAux___closed__5; lean_object* l_Lean_Elab_Term_elabStateRefT___lambda__2___closed__5; lean_object* l_Lean_Syntax_getArgs(lean_object*); @@ -384,7 +383,6 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_15419____closed__12; lean_object* l_Lean_Elab_Term_expandEmptyC___closed__7; extern lean_object* l_Lean_Parser_Term_sufficesDecl___elambda__1___closed__1; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabTParserMacroAux_match__1___rarg(lean_object*, lean_object*, lean_object*); -extern lean_object* l_myMacro____x40_Init_Notation___hyg_22312____closed__2; lean_object* l_Array_appendCore___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabAnonymousCtor_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabStateRefT___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -394,7 +392,6 @@ lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserM lean_object* l___regBuiltin_Lean_Elab_Term_elabSubst(lean_object*); lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_expandCDot___boxed__const__1; lean_object* l_Lean_getConstInfoCtor___at_Lean_Elab_Term_elabAnonymousCtor___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_myMacro____x40_Init_Notation___hyg_22312____closed__1; lean_object* l_Lean_Elab_Term_adaptExpander___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_elabSorry___closed__5; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__15; @@ -404,10 +401,11 @@ uint8_t l_Array_anyMUnsafe_any___at___private_Lean_Elab_BuiltinNotation_0__Lean_ lean_object* l_Array_ofSubarray___rarg(lean_object*); 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*); extern lean_object* l_Lean_Syntax_expandInterpolatedStr___lambda__1___closed__1; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__5; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__2; extern lean_object* l_Lean_Parser_Term_panic___elambda__1___closed__2; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__17; lean_object* l_Lean_Elab_Term_elabType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_myMacro____x40_Init_Notation___hyg_22344____closed__3; lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandHave___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_borrowed___elambda__1___closed__2; @@ -442,16 +440,19 @@ lean_object* l_Lean_Elab_Term_elabPanic___closed__1; lean_object* l_Lean_Meta_instantiateMVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabSubst___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*); extern lean_object* l_Lean_Parser_Term_let__fun___elambda__1___closed__2; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__3; lean_object* l_Lean_Elab_Term_elabTrailingParserMacro___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandUnreachable___boxed(lean_object*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandUnreachable___rarg___boxed(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__2; +extern lean_object* l_myMacro____x40_Init_Notation___hyg_22344____closed__2; lean_object* l_Lean_Elab_Term_elabSorry___closed__9; extern lean_object* l_Lean_Parser_Term_let__fun___elambda__1___closed__1; lean_object* l_Lean_Elab_Term_mkPairs___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_prec_x28___x29___closed__7; lean_object* l_Lean_Elab_Term_elabSubst___closed__2; +extern lean_object* l_myMacro____x40_Init_Notation___hyg_22344____closed__1; lean_object* l___regBuiltin_Lean_Elab_Term_elabTrailingParserMacro___closed__1; extern lean_object* l_myMacro____x40_Init_Notation___hyg_2278____closed__4; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__8; @@ -552,7 +553,6 @@ lean_object* l_Lean_markBorrowed(lean_object*); lean_object* l_Lean_Syntax_mkLit(lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__2; lean_object* l_Lean_Meta_getFVarLocalDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Term_elabAnonymousCtor___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* l_Lean_Elab_Term_elabSubst___closed__1; @@ -2041,7 +2041,7 @@ lean_object* l_Lean_Elab_Term_expandShow(lean_object* x_1, lean_object* x_2, lea _start: { lean_object* x_4; uint8_t x_5; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__2; +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__2; lean_inc(x_1); x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); if (x_5 == 0) @@ -2061,14 +2061,14 @@ x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); x_10 = lean_unsigned_to_nat(2u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); -x_12 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__4; +x_12 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__4; lean_inc(x_11); x_13 = l_Lean_Syntax_isOfKind(x_11, x_12); if (x_13 == 0) { lean_object* x_14; uint8_t x_15; lean_dec(x_1); -x_14 = l_myMacro____x40_Init_Notation___hyg_22312____closed__2; +x_14 = l_myMacro____x40_Init_Notation___hyg_22344____closed__2; lean_inc(x_11); x_15 = l_Lean_Syntax_isOfKind(x_11, x_14); if (x_15 == 0) @@ -2110,7 +2110,7 @@ if (x_24 == 0) { 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; x_25 = lean_ctor_get(x_23, 0); -x_26 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__1; +x_26 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__1; lean_inc(x_25); x_27 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_27, 0, x_25); @@ -2118,13 +2118,13 @@ lean_ctor_set(x_27, 1, x_26); x_28 = l_Array_empty___closed__1; x_29 = lean_array_push(x_28, x_27); x_30 = lean_array_push(x_29, x_9); -x_31 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__5; +x_31 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__5; lean_inc(x_25); x_32 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_32, 0, x_25); lean_ctor_set(x_32, 1, x_31); x_33 = lean_array_push(x_28, x_32); -x_34 = l_myMacro____x40_Init_Notation___hyg_22312____closed__3; +x_34 = l_myMacro____x40_Init_Notation___hyg_22344____closed__3; x_35 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_35, 0, x_25); lean_ctor_set(x_35, 1, x_34); @@ -2152,7 +2152,7 @@ x_44 = lean_ctor_get(x_23, 1); lean_inc(x_44); lean_inc(x_43); lean_dec(x_23); -x_45 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__1; +x_45 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__1; lean_inc(x_43); x_46 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_46, 0, x_43); @@ -2160,13 +2160,13 @@ lean_ctor_set(x_46, 1, x_45); x_47 = l_Array_empty___closed__1; x_48 = lean_array_push(x_47, x_46); x_49 = lean_array_push(x_48, x_9); -x_50 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__5; +x_50 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__5; lean_inc(x_43); x_51 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_51, 0, x_43); lean_ctor_set(x_51, 1, x_50); x_52 = lean_array_push(x_47, x_51); -x_53 = l_myMacro____x40_Init_Notation___hyg_22312____closed__3; +x_53 = l_myMacro____x40_Init_Notation___hyg_22344____closed__3; x_54 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_54, 0, x_43); lean_ctor_set(x_54, 1, x_53); @@ -2365,7 +2365,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_macroAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__2; x_4 = l___regBuiltin_Lean_Elab_Term_expandShow___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -2445,20 +2445,20 @@ if (x_15 == 0) { 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; x_16 = lean_ctor_get(x_14, 0); -x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__2; +x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__2; lean_inc(x_16); x_18 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_18, 0, x_16); lean_ctor_set(x_18, 1, x_17); x_19 = l_Array_empty___closed__1; x_20 = lean_array_push(x_19, x_18); -x_21 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__5; +x_21 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__5; lean_inc(x_16); x_22 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_22, 0, x_16); lean_ctor_set(x_22, 1, x_21); x_23 = lean_array_push(x_19, x_22); -x_24 = l_myMacro____x40_Init_Notation___hyg_22312____closed__3; +x_24 = l_myMacro____x40_Init_Notation___hyg_22344____closed__3; lean_inc(x_16); x_25 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_25, 0, x_16); @@ -2543,20 +2543,20 @@ x_61 = lean_ctor_get(x_14, 1); lean_inc(x_61); lean_inc(x_60); lean_dec(x_14); -x_62 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__2; +x_62 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__2; lean_inc(x_60); x_63 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_63, 0, x_60); lean_ctor_set(x_63, 1, x_62); x_64 = l_Array_empty___closed__1; x_65 = lean_array_push(x_64, x_63); -x_66 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__5; +x_66 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__5; lean_inc(x_60); x_67 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_67, 0, x_60); lean_ctor_set(x_67, 1, x_66); x_68 = lean_array_push(x_64, x_67); -x_69 = l_myMacro____x40_Init_Notation___hyg_22312____closed__3; +x_69 = l_myMacro____x40_Init_Notation___hyg_22344____closed__3; lean_inc(x_60); x_70 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_70, 0, x_60); @@ -2760,7 +2760,7 @@ x_12 = lean_unsigned_to_nat(1u); x_13 = l_Lean_Syntax_getArg(x_1, x_12); x_14 = lean_unsigned_to_nat(2u); x_15 = l_Lean_Syntax_getArg(x_1, x_14); -x_16 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__3; +x_16 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__3; lean_inc(x_2); x_17 = lean_name_mk_string(x_2, x_16); lean_inc(x_15); @@ -2768,7 +2768,7 @@ x_18 = l_Lean_Syntax_isOfKind(x_15, x_17); if (x_18 == 0) { lean_object* x_19; lean_object* x_20; uint8_t x_21; -x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__2; +x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__2; lean_inc(x_2); x_20 = lean_name_mk_string(x_2, x_19); lean_inc(x_15); @@ -2777,7 +2777,7 @@ lean_dec(x_20); if (x_21 == 0) { lean_object* x_22; lean_object* x_23; uint8_t x_24; -x_22 = l_myMacro____x40_Init_Notation___hyg_22312____closed__1; +x_22 = l_myMacro____x40_Init_Notation___hyg_22344____closed__1; x_23 = lean_name_mk_string(x_2, x_22); lean_inc(x_15); x_24 = l_Lean_Syntax_isOfKind(x_15, x_23); @@ -2970,7 +2970,7 @@ lean_object* l_Lean_Elab_Term_expandHave(lean_object* x_1, lean_object* x_2, lea _start: { lean_object* x_4; uint8_t x_5; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__3; +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__3; lean_inc(x_1); x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); if (x_5 == 0) @@ -2988,7 +2988,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); -x_10 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__1; +x_10 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__1; lean_inc(x_9); x_11 = l_Lean_Syntax_isOfKind(x_9, x_10); if (x_11 == 0) @@ -3118,7 +3118,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_macroAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__3; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__3; x_4 = l___regBuiltin_Lean_Elab_Term_expandHave___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -3136,7 +3136,7 @@ if (x_14 == 0) { 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; x_15 = lean_ctor_get(x_13, 0); -x_16 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__2; +x_16 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__2; lean_inc(x_2); x_17 = lean_name_mk_string(x_2, x_16); lean_inc(x_15); @@ -3147,7 +3147,7 @@ x_19 = l_Array_empty___closed__1; x_20 = lean_array_push(x_19, x_18); x_21 = l_Lean_Parser_Tactic_tacticHave_____closed__5; x_22 = lean_name_mk_string(x_2, x_21); -x_23 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__5; +x_23 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__5; lean_inc(x_15); x_24 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_24, 0, x_15); @@ -3167,7 +3167,7 @@ x_31 = l_Lean_nullKind___closed__2; x_32 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); -x_33 = l_myMacro____x40_Init_Notation___hyg_22312____closed__3; +x_33 = l_myMacro____x40_Init_Notation___hyg_22344____closed__3; lean_inc(x_15); x_34 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_34, 0, x_15); @@ -3238,7 +3238,7 @@ x_63 = lean_ctor_get(x_13, 1); lean_inc(x_63); lean_inc(x_62); lean_dec(x_13); -x_64 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__2; +x_64 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__2; lean_inc(x_2); x_65 = lean_name_mk_string(x_2, x_64); lean_inc(x_62); @@ -3249,7 +3249,7 @@ x_67 = l_Array_empty___closed__1; x_68 = lean_array_push(x_67, x_66); x_69 = l_Lean_Parser_Tactic_tacticHave_____closed__5; x_70 = lean_name_mk_string(x_2, x_69); -x_71 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__5; +x_71 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__5; lean_inc(x_62); x_72 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_72, 0, x_62); @@ -3269,7 +3269,7 @@ x_79 = l_Lean_nullKind___closed__2; x_80 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_80, 0, x_79); lean_ctor_set(x_80, 1, x_78); -x_81 = l_myMacro____x40_Init_Notation___hyg_22312____closed__3; +x_81 = l_myMacro____x40_Init_Notation___hyg_22344____closed__3; lean_inc(x_62); x_82 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_82, 0, x_62); @@ -3350,7 +3350,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; x_14 = lean_ctor_get(x_12, 0); -x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__2; +x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__2; lean_inc(x_2); x_16 = lean_name_mk_string(x_2, x_15); lean_inc(x_14); @@ -3361,7 +3361,7 @@ x_18 = l_Array_empty___closed__1; x_19 = lean_array_push(x_18, x_17); x_20 = l_Lean_Parser_Tactic_tacticHave_____closed__5; x_21 = lean_name_mk_string(x_2, x_20); -x_22 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__5; +x_22 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__5; lean_inc(x_14); x_23 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_23, 0, x_14); @@ -3442,7 +3442,7 @@ x_57 = lean_ctor_get(x_12, 1); lean_inc(x_57); lean_inc(x_56); lean_dec(x_12); -x_58 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__2; +x_58 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__2; lean_inc(x_2); x_59 = lean_name_mk_string(x_2, x_58); lean_inc(x_56); @@ -3453,7 +3453,7 @@ x_61 = l_Array_empty___closed__1; x_62 = lean_array_push(x_61, x_60); x_63 = l_Lean_Parser_Tactic_tacticHave_____closed__5; x_64 = lean_name_mk_string(x_2, x_63); -x_65 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__5; +x_65 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__5; lean_inc(x_56); x_66 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_66, 0, x_56); @@ -3540,7 +3540,7 @@ x_9 = lean_unsigned_to_nat(1u); x_10 = l_Lean_Syntax_getArg(x_1, x_9); x_11 = lean_unsigned_to_nat(2u); x_12 = l_Lean_Syntax_getArg(x_1, x_11); -x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__3; +x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__3; lean_inc(x_2); x_14 = lean_name_mk_string(x_2, x_13); lean_inc(x_12); @@ -3548,7 +3548,7 @@ x_15 = l_Lean_Syntax_isOfKind(x_12, x_14); if (x_15 == 0) { lean_object* x_16; lean_object* x_17; uint8_t x_18; -x_16 = l_myMacro____x40_Init_Notation___hyg_22312____closed__1; +x_16 = l_myMacro____x40_Init_Notation___hyg_22344____closed__1; lean_inc(x_2); x_17 = lean_name_mk_string(x_2, x_16); lean_inc(x_12); @@ -3690,7 +3690,7 @@ lean_object* l_Lean_Elab_Term_expandSuffices(lean_object* x_1, lean_object* x_2, _start: { lean_object* x_4; uint8_t x_5; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19351____closed__2; +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367____closed__2; lean_inc(x_1); x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); if (x_5 == 0) @@ -3836,7 +3836,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_macroAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19351____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367____closed__2; x_4 = l___regBuiltin_Lean_Elab_Term_expandSuffices___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -7208,7 +7208,7 @@ static lean_object* _init_l_Lean_Elab_Term_elabSorry___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } @@ -7217,7 +7217,7 @@ static lean_object* _init_l_Lean_Elab_Term_elabSorry___closed__9() { _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_22119____closed__8; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; x_2 = lean_unsigned_to_nat(0u); x_3 = l_Lean_Elab_Term_elabSorry___closed__8; x_4 = lean_alloc_ctor(0, 3, 0); diff --git a/stage0/stdlib/Lean/Elab/Command.c b/stage0/stdlib/Lean/Elab/Command.c index 9b98ed0c7a..16baa678fa 100644 --- a/stage0/stdlib/Lean/Elab/Command.c +++ b/stage0/stdlib/Lean/Elab/Command.c @@ -315,7 +315,6 @@ lean_object* l_Lean_Elab_Command_instMonadResolveNameCommandElabM___closed__4; lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Command_runLinters___spec__4(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Command_0__Lean_Elab_Command_addTraceAsMessages___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_113____spec__1(lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; lean_object* l_Lean_Elab_log___at_Lean_Elab_Command_runLinters___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabCommand_match__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSynth(lean_object*, lean_object*, lean_object*, lean_object*); @@ -347,6 +346,7 @@ lean_object* l_Lean_addDocString_x27___at_Lean_Elab_Command_expandDeclId___spec_ lean_object* l_Lean_Elab_Command_elabCheck___closed__1; lean_object* l_Lean_Elab_Command_liftEIO___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_levelMVarToParam(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; lean_object* l_Lean_Elab_Command_runLinters(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_activateScoped___at___private_Lean_Elab_Command_0__Lean_Elab_Command_addScope___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabCheck___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -462,8 +462,8 @@ lean_object* l_Std_PersistentArray_foldlM___at___private_Lean_Elab_Command_0__Le lean_object* l___regBuiltin_Lean_Elab_Command_elabVariable___closed__1; lean_object* l_Lean_Core_getMaxHeartbeats(lean_object*); lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_174_(lean_object*); -lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_1121_(lean_object*); -lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_1426_(lean_object*); +lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_1118_(lean_object*); +lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_1423_(lean_object*); lean_object* l_Lean_Syntax_getId(lean_object*); lean_object* l_Lean_Elab_Command_State_ngen___default; lean_object* l_Lean_throwError___at_Lean_Elab_Command_elabExport___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); @@ -684,7 +684,6 @@ extern lean_object* l_Lean_Parser_Command_check__failure___elambda__1___closed__ lean_object* l_Lean_pushScope___at___private_Lean_Elab_Command_0__Lean_Elab_Command_addScope___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabReduce(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_modifyScope___at_Lean_Elab_Command_addUnivLevel___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_1426____closed__1; lean_object* l_Lean_Elab_logUnknownDecl___at_Lean_Elab_Command_elabOpen___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_modifyScope(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_elabCheck(lean_object*); @@ -696,6 +695,7 @@ lean_object* l_Lean_Syntax_getKind(lean_object*); lean_object* l_Lean_Declaration_foldExprM___at_Lean_Elab_Command_elabEvalUnsafe___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* l_Lean_Elab_Command_elabEnd___closed__1; lean_object* l_Lean_Environment_registerNamespace(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_1423____closed__1; lean_object* l_Lean_Elab_Command_elabEnd___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_instMonadMacroAdapterCommandElabM___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); @@ -5770,7 +5770,7 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_1121_(lean_object* x_1) { +lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_1118_(lean_object* x_1) { _start: { lean_object* x_2; @@ -8067,7 +8067,7 @@ lean_dec(x_2); return x_5; } } -static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_1426____closed__1() { +static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_1423____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -8077,11 +8077,11 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_1426_(lean_object* x_1) { +lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_1423_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_1426____closed__1; +x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_1423____closed__1; x_3 = l_Lean_registerTraceClass(x_2, x_1); return x_3; } @@ -8952,7 +8952,7 @@ lean_dec(x_129); x_131 = lean_ctor_get(x_130, 1); lean_inc(x_131); lean_dec(x_130); -x_132 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_1426____closed__1; +x_132 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_1423____closed__1; x_133 = l_Lean_checkTraceOption(x_131, x_132); lean_dec(x_131); if (x_133 == 0) @@ -9061,7 +9061,7 @@ lean_dec(x_155); x_157 = lean_ctor_get(x_156, 1); lean_inc(x_157); lean_dec(x_156); -x_158 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_1426____closed__1; +x_158 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_1423____closed__1; x_159 = l_Lean_checkTraceOption(x_157, x_158); lean_dec(x_157); if (x_159 == 0) @@ -9626,7 +9626,7 @@ lean_dec(x_293); x_295 = lean_ctor_get(x_294, 1); lean_inc(x_295); lean_dec(x_294); -x_296 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_1426____closed__1; +x_296 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_1423____closed__1; x_297 = l_Lean_checkTraceOption(x_295, x_296); lean_dec(x_295); if (x_297 == 0) @@ -10238,7 +10238,7 @@ lean_dec(x_441); x_443 = lean_ctor_get(x_442, 1); lean_inc(x_443); lean_dec(x_442); -x_444 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_1426____closed__1; +x_444 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_1423____closed__1; x_445 = l_Lean_checkTraceOption(x_443, x_444); lean_dec(x_443); if (x_445 == 0) @@ -12086,7 +12086,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_Command_getBracketedBinderIds___closed__1; x_2 = l_Lean_Elab_Command_getBracketedBinderIds___closed__2; -x_3 = lean_unsigned_to_nat(278u); +x_3 = lean_unsigned_to_nat(279u); x_4 = lean_unsigned_to_nat(56u); x_5 = l_Lean_Name_getString_x21___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -18089,7 +18089,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_Command_getBracketedBinderIds___closed__1; x_2 = l_Lean_Elab_Command_modifyScope___closed__1; -x_3 = lean_unsigned_to_nat(436u); +x_3 = lean_unsigned_to_nat(437u); x_4 = lean_unsigned_to_nat(16u); x_5 = l_Lean_Name_getString_x21___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -31121,7 +31121,7 @@ x_13 = lean_string_dec_eq(x_11, x_12); if (x_13 == 0) { lean_object* x_14; uint8_t x_15; -x_14 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_14 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; x_15 = lean_string_dec_eq(x_11, x_14); lean_dec(x_11); if (x_15 == 0) @@ -33523,7 +33523,7 @@ l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__8 = _init_l_Lean_Elab lean_mark_persistent(l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__8); l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__9 = _init_l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__9(); lean_mark_persistent(l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__9); -res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_1121_(lean_io_mk_world()); +res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_1118_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_Elab_Command_commandElabAttribute = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Elab_Command_commandElabAttribute); @@ -33556,9 +33556,9 @@ l_Lean_Elab_Command_withLogging___closed__1 = _init_l_Lean_Elab_Command_withLogg lean_mark_persistent(l_Lean_Elab_Command_withLogging___closed__1); l_Lean_Elab_Command_withLogging___closed__2 = _init_l_Lean_Elab_Command_withLogging___closed__2(); lean_mark_persistent(l_Lean_Elab_Command_withLogging___closed__2); -l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_1426____closed__1 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_1426____closed__1(); -lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_1426____closed__1); -res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_1426_(lean_io_mk_world()); +l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_1423____closed__1 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_1423____closed__1(); +lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_1423____closed__1); +res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_1423_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Elab_Command_elabCommand___closed__1 = _init_l_Lean_Elab_Command_elabCommand___closed__1(); diff --git a/stage0/stdlib/Lean/Elab/Deriving/BEq.c b/stage0/stdlib/Lean/Elab/Deriving/BEq.c index 6f7d0dbf20..71165d9350 100644 --- a/stage0/stdlib/Lean/Elab/Deriving/BEq.c +++ b/stage0/stdlib/Lean/Elab/Deriving/BEq.c @@ -67,7 +67,6 @@ lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_Deriving_BEq_mkBEqInstanceHandler___spec__3(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Deriving_BEq_mkMatch___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_948____closed__4; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; lean_object* l_Lean_Elab_Deriving_mkDiscrs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Deriving_BEq_0__Lean_Elab_Deriving_BEq_mkBEqInstanceCmds___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getConstInfoCtor___at_Lean_Elab_Deriving_BEq_mkMatch_mkAlts___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -78,6 +77,8 @@ lean_object* l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(lean_object*, le uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_List_forIn_loop___at_Lean_Elab_Deriving_BEq_mkMatch_mkAlts___spec__6___lambda__1___closed__2; extern lean_object* l_Lean_setOptionFromString___closed__4; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__1; lean_object* l_Lean_Elab_Deriving_mkInstanceCmds(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_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Deriving_mkInstImplicitBinders___spec__1___rarg(lean_object*, lean_object*, lean_object*); @@ -102,7 +103,6 @@ extern lean_object* l_Lean_instQuoteBool___closed__3; lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_5021____spec__3(size_t, size_t, lean_object*); lean_object* l_List_forIn_loop___at_Lean_Elab_Deriving_BEq_mkMatch_mkAlts___spec__6___lambda__1___closed__4; lean_object* l_Lean_Elab_Deriving_BEq_mkMatch_mkElseAlt___closed__3; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__1; lean_object* l_Lean_Elab_addMacroStack___at_Lean_Elab_Term_instAddErrorMessageContextTermElabM___spec__1(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_Deriving_BEq_mkMutualBlock___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*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_13352____closed__13; @@ -354,7 +354,7 @@ static lean_object* _init_l_Lean_Elab_Deriving_BEq_mkMatch_mkElseAlt___closed__1 _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } @@ -363,7 +363,7 @@ static lean_object* _init_l_Lean_Elab_Deriving_BEq_mkMatch_mkElseAlt___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_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; x_2 = lean_unsigned_to_nat(0u); x_3 = l_Lean_Elab_Deriving_BEq_mkMatch_mkElseAlt___closed__1; x_4 = lean_alloc_ctor(0, 3, 0); @@ -3808,7 +3808,7 @@ x_28 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_28, 0, x_19); lean_ctor_set(x_28, 1, x_27); x_29 = lean_array_push(x_14, x_28); -x_30 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__1; +x_30 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__1; lean_inc(x_19); x_31 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_31, 0, x_19); @@ -3869,7 +3869,7 @@ x_57 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_57, 0, x_19); lean_ctor_set(x_57, 1, x_56); x_58 = lean_array_push(x_14, x_57); -x_59 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__1; +x_59 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__1; lean_inc(x_19); x_60 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_60, 0, x_19); diff --git a/stage0/stdlib/Lean/Elab/Deriving/DecEq.c b/stage0/stdlib/Lean/Elab/Deriving/DecEq.c index a6a72621a1..3239f3c666 100644 --- a/stage0/stdlib/Lean/Elab/Deriving/DecEq.c +++ b/stage0/stdlib/Lean/Elab/Deriving/DecEq.c @@ -172,7 +172,6 @@ lean_object* l_Lean_Elab_addMacroStack___at_Lean_Elab_Command_instAddErrorMessag extern lean_object* l_myMacro____x40_Init_Notation___hyg_13954____closed__10; lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs_match__1(lean_object*); lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_myMacro____x40_Init_Notation___hyg_22312____closed__3; uint8_t lean_nat_dec_le(lean_object*, lean_object*); extern lean_object* l_term___x3d_____closed__2; extern lean_object* l_Lean_Parser_Command_private___elambda__1___closed__1; @@ -182,7 +181,6 @@ lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts lean_object* l_List_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts___spec__7___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*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_15419____closed__12; extern lean_object* l_Lean_Parser_Term_ellipsis___elambda__1___closed__2; -extern lean_object* l_myMacro____x40_Init_Notation___hyg_22312____closed__2; lean_object* l_Array_appendCore___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_2917_(lean_object*); extern lean_object* l_Lean_Core_betaReduce___closed__1; @@ -191,6 +189,7 @@ lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs(lean_object*, lean lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__3; lean_object* l_Lean_Elab_Command_getRef(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__15; +extern lean_object* l_myMacro____x40_Init_Notation___hyg_22344____closed__3; lean_object* lean_st_ref_set(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_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_2917____closed__1; @@ -203,6 +202,7 @@ extern lean_object* l_Lean_Parser_Tactic_apply___closed__1; lean_object* l_Lean_Elab_Deriving_DecEq_mkAuxFunction(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__14; lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__18; +extern lean_object* l_myMacro____x40_Init_Notation___hyg_22344____closed__2; extern lean_object* l_IO_Prim_fopenFlags___closed__4; extern lean_object* l_prec_x28___x29___closed__7; extern lean_object* l_Lean_Parser_Tactic_exact___closed__2; @@ -808,7 +808,7 @@ x_110 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_110, 0, x_79); lean_ctor_set(x_110, 1, x_109); x_111 = lean_array_push(x_108, x_110); -x_112 = l_myMacro____x40_Init_Notation___hyg_22312____closed__3; +x_112 = l_myMacro____x40_Init_Notation___hyg_22344____closed__3; lean_inc(x_79); x_113 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_113, 0, x_79); @@ -881,7 +881,7 @@ lean_ctor_set(x_150, 0, x_149); lean_ctor_set(x_150, 1, x_148); lean_inc(x_114); x_151 = lean_array_push(x_114, x_150); -x_152 = l_myMacro____x40_Init_Notation___hyg_22312____closed__2; +x_152 = l_myMacro____x40_Init_Notation___hyg_22344____closed__2; x_153 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_153, 0, x_152); lean_ctor_set(x_153, 1, x_151); @@ -1281,7 +1281,7 @@ x_349 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_349, 0, x_79); lean_ctor_set(x_349, 1, x_348); x_350 = lean_array_push(x_347, x_349); -x_351 = l_myMacro____x40_Init_Notation___hyg_22312____closed__3; +x_351 = l_myMacro____x40_Init_Notation___hyg_22344____closed__3; lean_inc(x_79); x_352 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_352, 0, x_79); @@ -1354,7 +1354,7 @@ lean_ctor_set(x_389, 0, x_388); lean_ctor_set(x_389, 1, x_387); lean_inc(x_353); x_390 = lean_array_push(x_353, x_389); -x_391 = l_myMacro____x40_Init_Notation___hyg_22312____closed__2; +x_391 = l_myMacro____x40_Init_Notation___hyg_22344____closed__2; x_392 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_392, 0, x_391); lean_ctor_set(x_392, 1, x_390); @@ -1758,7 +1758,7 @@ x_578 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_578, 0, x_547); lean_ctor_set(x_578, 1, x_577); x_579 = lean_array_push(x_576, x_578); -x_580 = l_myMacro____x40_Init_Notation___hyg_22312____closed__3; +x_580 = l_myMacro____x40_Init_Notation___hyg_22344____closed__3; lean_inc(x_547); x_581 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_581, 0, x_547); @@ -1831,7 +1831,7 @@ lean_ctor_set(x_618, 0, x_617); lean_ctor_set(x_618, 1, x_616); lean_inc(x_582); x_619 = lean_array_push(x_582, x_618); -x_620 = l_myMacro____x40_Init_Notation___hyg_22312____closed__2; +x_620 = l_myMacro____x40_Init_Notation___hyg_22344____closed__2; x_621 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_621, 0, x_620); lean_ctor_set(x_621, 1, x_619); @@ -2277,7 +2277,7 @@ x_817 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_817, 0, x_786); lean_ctor_set(x_817, 1, x_816); x_818 = lean_array_push(x_815, x_817); -x_819 = l_myMacro____x40_Init_Notation___hyg_22312____closed__3; +x_819 = l_myMacro____x40_Init_Notation___hyg_22344____closed__3; lean_inc(x_786); x_820 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_820, 0, x_786); @@ -2350,7 +2350,7 @@ lean_ctor_set(x_857, 0, x_856); lean_ctor_set(x_857, 1, x_855); lean_inc(x_821); x_858 = lean_array_push(x_821, x_857); -x_859 = l_myMacro____x40_Init_Notation___hyg_22312____closed__2; +x_859 = l_myMacro____x40_Init_Notation___hyg_22344____closed__2; x_860 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_860, 0, x_859); lean_ctor_set(x_860, 1, x_858); @@ -4283,7 +4283,7 @@ lean_ctor_set(x_95, 0, x_79); lean_ctor_set(x_95, 1, x_94); lean_inc(x_3); x_96 = lean_array_push(x_3, x_95); -x_97 = l_myMacro____x40_Init_Notation___hyg_22312____closed__3; +x_97 = l_myMacro____x40_Init_Notation___hyg_22344____closed__3; lean_inc(x_79); x_98 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_98, 0, x_79); @@ -4378,7 +4378,7 @@ x_139 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_139, 0, x_138); lean_ctor_set(x_139, 1, x_137); x_140 = lean_array_push(x_99, x_139); -x_141 = l_myMacro____x40_Init_Notation___hyg_22312____closed__2; +x_141 = l_myMacro____x40_Init_Notation___hyg_22344____closed__2; x_142 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_142, 0, x_141); lean_ctor_set(x_142, 1, x_140); diff --git a/stage0/stdlib/Lean/Elab/Do.c b/stage0/stdlib/Lean/Elab/Do.c index eab9aa0907..0b0a6cd13f 100644 --- a/stage0/stdlib/Lean/Elab/Do.c +++ b/stage0/stdlib/Lean/Elab/Do.c @@ -57,6 +57,7 @@ lean_object* l_Lean_Elab_Term_Do_ToTerm_breakToTerm___closed__1; lean_object* l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTerm___closed__18; lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_Do_concat___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_extractBind___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Term_doIdDecl___elambda__1___closed__1; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Do_ToTerm_mkJoinPoint___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__11(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, uint8_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*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_1346____closed__7; @@ -66,6 +67,7 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_14874____closed__8; lean_object* l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTerm___closed__5; lean_object* l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTerm___closed__13; lean_object* l_Lean_Elab_Term_Do_mkFreshJP___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___closed__1; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doForToCode___closed__17; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___lambda__4___closed__3; lean_object* l_Array_filterMapM___at_Lean_Elab_Term_Do_getPatternVarNames___spec__1___boxed(lean_object*, lean_object*, lean_object*); @@ -89,6 +91,7 @@ lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doForToCode___closed__8; extern lean_object* l_Lean_Parser_Term_doContinue___elambda__1___closed__2; extern lean_object* l_myMacro____x40_Init_Notation___hyg_13954____closed__7; lean_object* l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTerm___closed__14; +extern lean_object* l_Lean_withIncRecDepth___rarg___lambda__2___closed__2; lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTerm_match__1___rarg(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkIdentFromRef___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_destructTuple_destruct___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_breakToTerm___closed__17; @@ -97,7 +100,6 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_15419____closed__2; extern lean_object* l_Lean_nullKind; lean_object* l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTerm___closed__15; lean_object* l_Lean_Elab_Term_Do_convertTerminalActionIntoJmp_loop___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__5(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_seqToTerm___closed__2; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_run(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_eraseOptVar_match__1(lean_object*); @@ -139,7 +141,7 @@ lean_object* l_Lean_SourceInfo_fromRef(lean_object*); extern lean_object* l_Lean_Parser_Term_ensureExpectedType___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_Do_mkMatch___boxed__const__1; lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__11___closed__5; -lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkUnit___closed__5; lean_object* l_Lean_Meta_mkAppM(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -222,6 +224,7 @@ lean_object* l_Lean_Elab_Term_Do_ToTerm_mkNestedKind___closed__2; extern lean_object* l_Lean_Parser_Term_notFollowedByRedefinedTermToken___elambda__1___closed__14; lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_concat___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_throwError___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_isMutableLet___boxed(lean_object*); extern lean_object* l_instReprPUnit___closed__1; lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_extractBind(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -319,7 +322,6 @@ uint8_t l_Lean_Elab_Term_Do_isMutableLet(lean_object*); lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__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_Do_ToCodeBlock_doForToCode___closed__25; extern lean_object* l_Lean_Parser_Term_doUnless___elambda__1___closed__2; -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__5___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_elabDo___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_Do_mkFreshJP(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkTuple___spec__1___closed__5; @@ -387,17 +389,18 @@ lean_object* l_Lean_Elab_Term_Do_ToTerm_mkJoinPoint(lean_object*, lean_object*, lean_object* l_Lean_Elab_Term_Do_ToTerm_continueToTerm___closed__21; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_ToCodeBlock_doUnlessToCode___spec__3___rarg(lean_object*); extern lean_object* l_Lean_Parser_Term_doMatch___elambda__1___closed__1; -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_tryPostponeIfNoneOrMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___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_Elab_Term_Do_ToTerm_mkJoinPoint_match__1(lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___lambda__4___closed__1; lean_object* l_Lean_Elab_Term_Do_getLetDeclVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_expandTermReturn(lean_object*); -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__8___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_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__8___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_myMacro____x40_Init_Notation___hyg_13954____closed__12; extern lean_object* l_Lean_Parser_Term_termReturn___elambda__1___closed__2; +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__6(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabTermEnsuringType(lean_object*, lean_object*, uint8_t, uint8_t, 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_Lean_Elab_Term_Do_CodeBlocl_toMessageData_loop___closed__9; @@ -409,7 +412,7 @@ lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkMonadAlias(lean_obj lean_object* l_Lean_Elab_Term_Do_ToTerm_continueToTerm___closed__24; lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_elabCompletion___spec__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_Do_CodeBlocl_toMessageData_loop___closed__8; -lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_continueToTerm___closed__16; lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_union(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_ensureInsideFor___closed__1; @@ -417,11 +420,11 @@ uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_ensureInsideFor___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTerm___closed__10; -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkTuple___spec__1___closed__4; lean_object* l_Lean_Elab_Term_Do_CodeBlocl_toMessageData_loop___closed__4; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___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*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doForToCode___closed__29; lean_object* l_Lean_Elab_Term_Do_getDoLetVars___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTerm___closed__14; @@ -446,6 +449,7 @@ lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethod_match__1(lean_obje lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doReturnToCode___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_Do_ToTerm_breakToTerm___closed__2; +lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___lambda__1(lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_breakToTerm___closed__21; lean_object* l_Lean_throwError___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_Kind_isRegular_match__1(lean_object*); @@ -466,21 +470,23 @@ lean_object* l_Lean_Elab_Term_Do_hasExitPointPred_loop___at_Lean_Elab_Term_Do_ha lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doReassignArrowToCode___closed__4; extern lean_object* l_myMacro____x40_Init_Notation___hyg_13765____closed__4; lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_Do_ToCodeBlock_getTryCatchUpdatedVars___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodForbiddenBinder(lean_object*); lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkPureUnit___closed__7; lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_Do_getPatternVarNames___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_hasReturn_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabLiftMethod___closed__1; extern lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_897____closed__8; -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___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*); +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___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*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__5(size_t, size_t, lean_object*); lean_object* l_Lean_Elab_Term_Do_instInhabitedAlt___rarg(lean_object*); lean_object* l_Lean_Elab_Term_Do_addFreshJP___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_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_concat___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_mkIte___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkPureUnit___closed__2; +lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___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_throwError___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__1(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_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___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*); +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___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*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_2278____closed__3; lean_object* l_Lean_Elab_Term_Do_mkSimpleJmp___closed__2; extern lean_object* l_Lean_Parser_Term_doLetArrow___elambda__1___closed__2; @@ -614,7 +620,7 @@ lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode_ lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkTuple___spec__1___closed__1; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__3___closed__5; extern lean_object* l_Lean_Parser_Term_doLetArrow___elambda__1___closed__1; -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___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_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___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* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_ToCodeBlock_doUnlessToCode___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_extractBind___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_Term_Do_mkAuxDeclFor___at_Lean_Elab_Term_Do_pullExitPointsAux___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -629,6 +635,7 @@ extern lean_object* l_instMonadEST___closed__1; lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f_match__3___rarg(lean_object*, lean_object*); lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkTuple___spec__1___closed__2; extern lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_isMatchUnit_x3f_match__2___rarg___closed__1; +lean_object* l_Lean_throwError___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__10___boxed(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_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_doCatchMatch___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_Do_extendUpdatedVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -647,7 +654,6 @@ lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Do_ToTerm_mkUVarTuple___ lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_ToCodeBlock_doUnlessToCode___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_doReturn___elambda__1___closed__10; lean_object* l_Lean_Elab_Term_Do_getLetEqnsDeclVar___boxed(lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__2; lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_reverse___rarg(lean_object*); extern lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_897____closed__9; @@ -670,13 +676,15 @@ lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTerm___closed__23; lean_object* l_Lean_Elab_Term_Do_getPatternVarNames_match__1(lean_object*); lean_object* l_Lean_Elab_Term_Do_getDoHaveVar___closed__1; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__3(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___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*); +lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___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*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Term_Do_ToCodeBlock_checkReassignable___spec__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_Do_ToCodeBlock_checkLetArrowRHS___closed__1; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_ensureEOS___closed__2; lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_Do_elabDo(lean_object*); +lean_object* l_Lean_Core_checkMaxHeartbeats(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTerm___closed__34; +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_doSeqBracketed___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTerm___closed__11; lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux_match__1___rarg(lean_object*, lean_object*, lean_object*); @@ -716,6 +724,7 @@ lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_mkJmp___s extern lean_object* l_Lean_Meta_Closure_mkNewLevelParam___closed__2; extern lean_object* l_Lean_NameSet_empty; lean_object* l_Lean_Elab_Term_Do_ToTerm_reassignToTerm___closed__1; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__3; lean_object* l_Lean_addTrace___at___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); @@ -738,8 +747,10 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_14874____closed__9; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___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* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_withNewMutableVars(lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; extern lean_object* l_Lean_nullKind___closed__2; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_checkLetArrowRHS___closed__2; +lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___lambda__1___closed__2; lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkPureUnit(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_let__delayed___elambda__1___closed__1; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___lambda__2___closed__4; @@ -758,8 +769,8 @@ lean_object* l_Lean_Elab_Term_Do_mkReassignCore___lambda__1___boxed(lean_object* lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_ToCodeBlock_mkForInBody___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_dbgTrace___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__7___closed__2; +lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___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_mkAtomFrom(lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; lean_object* l_Lean_Elab_Term_Do_ToTerm_breakToTerm___closed__14; lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_Do_ToTerm_returnToTerm___spec__1___boxed(lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Do_convertTerminalActionIntoJmp_loop___spec__3(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); @@ -778,11 +789,13 @@ extern lean_object* l_Lean_Parser_Command_ctor___elambda__1___closed__10; lean_object* l_Lean_Elab_Term_Do_ToTerm_breakToTerm___closed__18; lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTerm___closed__1; lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_toDoElem(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__5(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_breakToTerm___closed__15; -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Do___hyg_28396_(lean_object*); +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Do___hyg_28723_(lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doForToCode___closed__24; lean_object* l_Lean_Elab_Term_Do_hasExitPointPred_loop___at_Lean_Elab_Term_Do_hasTerminalAction___spec__1___boxed(lean_object*); +lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___lambda__1___closed__1; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doReassignArrowToCode___closed__3; lean_object* l_Lean_Elab_Term_getPatternVars(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*); @@ -803,7 +816,6 @@ lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doReturnToCode___closed__1; lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___boxed(lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___lambda__2___closed__1; lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTerm___closed__17; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__3; lean_object* l_Lean_Syntax_getSepArgs(lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doForToCode___closed__6; lean_object* l_Lean_Elab_Term_Do_getDoPatDeclVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -870,7 +882,7 @@ lean_object* l_Lean_Elab_Term_Do_mkFreshJP_x27___boxed(lean_object*, lean_object lean_object* l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__8___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_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_Do_ToTerm_seqToTerm___spec__1___rarg___boxed(lean_object*, lean_object*); lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_Do_ToTerm_returnToTerm___spec__1___rarg___boxed(lean_object*, lean_object*); @@ -882,7 +894,6 @@ lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f_match_ lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_withNewMutableVars___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* l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTerm___closed__9; lean_object* l_Lean_Elab_Term_Do_getPatternVarNames_match__1___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___closed__1; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_ensureEOS___closed__1; lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTerm___closed__4; lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_Do_ToCodeBlock_checkReassignable___spec__2(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*); @@ -914,11 +925,12 @@ lean_object* l_Lean_Elab_Term_Do_mkVarDeclCore(lean_object*, lean_object*, lean_ extern lean_object* l_myMacro____x40_Init_Notation___hyg_13352____closed__3; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doForToCode___closed__2; lean_object* l_Lean_Elab_Term_Do_ToTerm_continueToTerm___closed__23; -lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___lambda__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* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___lambda__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*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__2; extern lean_object* l_Lean_Parser_Tactic_done___closed__1; lean_object* l_Lean_Elab_Term_Do_getLetEqnsDeclVar(lean_object*); lean_object* l_Lean_Elab_Term_Do_concat___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_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Do_ToTerm_mkJoinPoint___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_hasTerminalAction_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Do_ToTerm_mkJoinPoint___spec__1___closed__1; @@ -927,9 +939,9 @@ extern lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_897____ lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_CodeBlocl_toMessageData_loop___closed__7; extern lean_object* l_Lean_Parser_Term_doIfProp___closed__2; -lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___closed__2; lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_Quotation_getAntiquotationIds___spec__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_Do_ToCodeBlock_doForToCode___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_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__7(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_pullExitPointsAux___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_throwError___at_Lean_Elab_Term_Do_getLetDeclVars___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__9; @@ -978,8 +990,10 @@ lean_object* l_Lean_Macro_expandMacro_x3fImp(lean_object*, lean_object*, lean_ob lean_object* l_Lean_Elab_Term_Do_getLetDeclVars___closed__2; lean_object* l_Lean_Elab_Term_Do_mkJmp___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_Term_Do_extendUpdatedVarsAux_update_match__1___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___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___boxed__const__1; lean_object* l_Lean_throwError___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__7___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_Do_0__Lean_Elab_Term_liftMethodForbiddenBinder___boxed(lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__11___closed__13; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doForToCode___closed__26; lean_object* l_Lean_Elab_Term_Do_mkContinue(lean_object*); @@ -1023,10 +1037,12 @@ lean_object* l_Lean_Elab_Term_Do_convertTerminalActionIntoJmp(lean_object*, lean lean_object* l_Lean_Elab_Term_Do_ToTerm_continueToTerm___closed__4; extern lean_object* l_prec_x28___x29___closed__7; extern lean_object* l_Lean_Meta_mkAuxDefinition___closed__1; +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__7___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_mkJmp___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkTuple___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_indentD(lean_object*); extern lean_object* l_Lean_Parser_Term_doLet___elambda__1___closed__2; +lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___lambda__1___closed__3; extern lean_object* l_myMacro____x40_Init_Notation___hyg_2278____closed__4; uint8_t l_Lean_Syntax_isEscapedAntiquot(lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTerm___closed__31; @@ -1090,7 +1106,7 @@ lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_Do_ToCodeBlock_doTryT lean_object* l_Lean_Elab_Term_Do_getDoReassignVars___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_breakToTerm___closed__3; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___lambda__4___closed__4; -lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___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* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___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*); extern lean_object* l_Lean_Meta_substCore___lambda__1___closed__3; lean_object* l_Lean_Elab_Term_Do_ToTerm_continueToTerm___closed__9; lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTerm___closed__26; @@ -1106,7 +1122,7 @@ extern lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_897____ lean_object* l_Lean_Elab_Term_Do_ToTerm_seqToTerm(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_1131____closed__1; lean_object* l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(lean_object*); -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkTuple___spec__1___closed__7; extern lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_276____closed__2; extern lean_object* l_List_foldl___at_Lean_Meta_Match_Pattern_toMessageData___spec__1___closed__1; @@ -1128,7 +1144,7 @@ lean_object* l_Lean_mkConst(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTerm_match__1(lean_object*); uint8_t l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter(lean_object*); lean_object* l_Lean_Elab_Term_Do_getDoReassignVars___closed__1; -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___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*, lean_object*); +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___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*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_mkIdBindFor___closed__3; lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_Do_ToCodeBlock_checkLetArrowRHS___spec__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_mkIdentFromRef___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_destructTuple_destruct___spec__1(lean_object*, lean_object*, lean_object*); @@ -1174,6 +1190,7 @@ lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doForToCode___closed__22; lean_object* l_Lean_Elab_Term_Do_hasExitPoint___boxed(lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_13954____closed__5; extern lean_object* l_myMacro____x40_Init_Notation___hyg_13954____closed__14; +lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__11___boxed(lean_object**); extern lean_object* l_Lean_Meta_Match_Alt_toMessageData___closed__3; lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_destructTuple_destruct___closed__2; @@ -1187,7 +1204,7 @@ lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_extractBind_match__2___r lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doForToCode___closed__14; lean_object* l_Lean_throwError___at_Lean_Elab_Term_Do_ToCodeBlock_mkForInBody___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_toTerm_match__1(lean_object*); -lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___lambda__2(lean_object*, 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* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___lambda__2(lean_object*, lean_object*, 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* l_Lean_Elab_Term_Do_ToTerm_mkNestedTerm(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5021____closed__5; lean_object* l_Lean_Elab_Term_expandTermTry(lean_object*, lean_object*, lean_object*); @@ -1459,6 +1476,37 @@ x_3 = lean_box(x_2); return x_3; } } +uint8_t l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodForbiddenBinder(lean_object* x_1) { +_start: +{ +lean_object* x_2; uint8_t x_3; +x_2 = l_myMacro____x40_Init_Notation___hyg_13352____closed__10; +x_3 = lean_name_eq(x_1, x_2); +if (x_3 == 0) +{ +lean_object* x_4; uint8_t x_5; +x_4 = l_myMacro____x40_Init_Notation___hyg_13954____closed__8; +x_5 = lean_name_eq(x_1, x_4); +return x_5; +} +else +{ +uint8_t x_6; +x_6 = 1; +return x_6; +} +} +} +lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodForbiddenBinder___boxed(lean_object* x_1) { +_start: +{ +uint8_t x_2; lean_object* x_3; +x_2 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodForbiddenBinder(x_1); +lean_dec(x_1); +x_3 = lean_box(x_2); +return x_3; +} +} lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_hasLiftMethod_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -17687,166 +17735,164 @@ x_1 = lean_mk_string("then"); return x_1; } } -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___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, uint8_t x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___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, uint8_t x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { -lean_object* x_14; lean_object* x_15; uint8_t x_16; uint8_t x_17; -x_14 = l_Lean_Parser_Term_doIfLet___closed__1; +lean_object* x_15; lean_object* x_16; uint8_t x_17; uint8_t x_18; +x_15 = l_Lean_Parser_Term_doIfLet___closed__1; lean_inc(x_2); -x_15 = lean_name_mk_string(x_2, x_14); +x_16 = lean_name_mk_string(x_2, x_15); lean_inc(x_1); -x_16 = l_Lean_Syntax_isOfKind(x_1, x_15); -lean_dec(x_15); -x_17 = !lean_is_exclusive(x_12); +x_17 = l_Lean_Syntax_isOfKind(x_1, x_16); +lean_dec(x_16); +x_18 = !lean_is_exclusive(x_13); +if (x_18 == 0) +{ +lean_object* x_19; lean_object* x_20; +x_19 = lean_ctor_get(x_13, 5); +x_20 = l_Lean_replaceRef(x_1, x_19); +lean_dec(x_19); +lean_ctor_set(x_13, 5, x_20); if (x_17 == 0) { -lean_object* x_18; lean_object* x_19; -x_18 = lean_ctor_get(x_12, 5); -x_19 = l_Lean_replaceRef(x_1, x_18); -lean_dec(x_18); -lean_ctor_set(x_12, 5, x_19); -if (x_16 == 0) -{ -lean_object* x_20; uint8_t x_21; +uint8_t x_21; lean_dec(x_2); -x_20 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(x_12, x_13); -lean_dec(x_12); -x_21 = !lean_is_exclusive(x_20); +lean_inc(x_1); +x_21 = l_Lean_Syntax_isOfKind(x_1, x_3); 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; uint8_t x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_22 = lean_ctor_get(x_20, 0); -x_23 = l_Lean_Syntax_getHeadInfo(x_3); -x_24 = l_Lean_Parser_Term_notFollowedByRedefinedTermToken___elambda__1___closed__43; -x_25 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_25, 0, x_23); -lean_ctor_set(x_25, 1, x_24); -lean_inc(x_4); -x_26 = lean_array_push(x_4, x_25); -x_27 = lean_array_push(x_26, x_1); -x_28 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___lambda__1___closed__1; -lean_inc(x_22); -x_29 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_29, 0, x_22); -lean_ctor_set(x_29, 1, x_28); -x_30 = lean_array_push(x_27, x_29); -x_31 = lean_array_push(x_30, x_5); -x_32 = lean_array_push(x_31, x_6); -x_33 = l_termDepIfThenElse___closed__24; -x_34 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_34, 0, x_22); -lean_ctor_set(x_34, 1, x_33); -x_35 = lean_array_push(x_4, x_34); -x_36 = lean_array_push(x_35, x_11); -x_37 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_37, 0, x_7); -lean_ctor_set(x_37, 1, x_36); -x_38 = lean_array_push(x_32, x_37); -x_39 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_39, 0, x_8); -lean_ctor_set(x_39, 1, x_38); -x_40 = 0; -x_41 = lean_box(x_40); -x_42 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_42, 0, x_41); -lean_ctor_set(x_42, 1, x_39); -x_43 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_43, 0, x_42); -lean_ctor_set(x_20, 0, x_43); -return x_20; +lean_object* x_22; uint8_t x_23; +lean_dec(x_1); +x_22 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(x_13, x_14); +lean_dec(x_13); +x_23 = !lean_is_exclusive(x_22); +if (x_23 == 0) +{ +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; uint8_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_24 = lean_ctor_get(x_22, 0); +x_25 = l_Lean_Syntax_getHeadInfo(x_4); +x_26 = l_Lean_Parser_Term_notFollowedByRedefinedTermToken___elambda__1___closed__43; +x_27 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_27, 0, x_25); +lean_ctor_set(x_27, 1, x_26); +lean_inc(x_5); +x_28 = lean_array_push(x_5, x_27); +lean_inc(x_6); +lean_inc(x_5); +x_29 = lean_array_push(x_5, x_6); +x_30 = lean_box(0); +x_31 = lean_array_push(x_29, x_30); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_3); +lean_ctor_set(x_32, 1, x_31); +x_33 = lean_array_push(x_28, x_32); +x_34 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___lambda__1___closed__1; +lean_inc(x_24); +x_35 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_35, 0, x_24); +lean_ctor_set(x_35, 1, x_34); +x_36 = lean_array_push(x_33, x_35); +x_37 = lean_array_push(x_36, x_7); +x_38 = lean_array_push(x_37, x_6); +x_39 = l_termDepIfThenElse___closed__24; +x_40 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_40, 0, x_24); +lean_ctor_set(x_40, 1, x_39); +x_41 = lean_array_push(x_5, x_40); +x_42 = lean_array_push(x_41, x_12); +x_43 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_43, 0, x_8); +lean_ctor_set(x_43, 1, x_42); +x_44 = lean_array_push(x_38, x_43); +x_45 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_45, 0, x_9); +lean_ctor_set(x_45, 1, x_44); +x_46 = 0; +x_47 = lean_box(x_46); +x_48 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_48, 0, x_47); +lean_ctor_set(x_48, 1, x_45); +x_49 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_22, 0, x_49); +return x_22; } else { -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; uint8_t x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_44 = lean_ctor_get(x_20, 0); -x_45 = lean_ctor_get(x_20, 1); -lean_inc(x_45); -lean_inc(x_44); -lean_dec(x_20); -x_46 = l_Lean_Syntax_getHeadInfo(x_3); -x_47 = l_Lean_Parser_Term_notFollowedByRedefinedTermToken___elambda__1___closed__43; -x_48 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_48, 0, x_46); -lean_ctor_set(x_48, 1, x_47); -lean_inc(x_4); -x_49 = lean_array_push(x_4, x_48); -x_50 = lean_array_push(x_49, x_1); -x_51 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___lambda__1___closed__1; -lean_inc(x_44); -x_52 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_52, 0, x_44); -lean_ctor_set(x_52, 1, x_51); -x_53 = lean_array_push(x_50, x_52); -x_54 = lean_array_push(x_53, x_5); -x_55 = lean_array_push(x_54, x_6); -x_56 = l_termDepIfThenElse___closed__24; -x_57 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_57, 0, x_44); -lean_ctor_set(x_57, 1, x_56); -x_58 = lean_array_push(x_4, x_57); -x_59 = lean_array_push(x_58, x_11); -x_60 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_60, 0, x_7); -lean_ctor_set(x_60, 1, x_59); -x_61 = lean_array_push(x_55, x_60); -x_62 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_62, 0, x_8); +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; uint8_t x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; +x_50 = lean_ctor_get(x_22, 0); +x_51 = lean_ctor_get(x_22, 1); +lean_inc(x_51); +lean_inc(x_50); +lean_dec(x_22); +x_52 = l_Lean_Syntax_getHeadInfo(x_4); +x_53 = l_Lean_Parser_Term_notFollowedByRedefinedTermToken___elambda__1___closed__43; +x_54 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_54, 0, x_52); +lean_ctor_set(x_54, 1, x_53); +lean_inc(x_5); +x_55 = lean_array_push(x_5, x_54); +lean_inc(x_6); +lean_inc(x_5); +x_56 = lean_array_push(x_5, x_6); +x_57 = lean_box(0); +x_58 = lean_array_push(x_56, x_57); +x_59 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_59, 0, x_3); +lean_ctor_set(x_59, 1, x_58); +x_60 = lean_array_push(x_55, x_59); +x_61 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___lambda__1___closed__1; +lean_inc(x_50); +x_62 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_62, 0, x_50); lean_ctor_set(x_62, 1, x_61); -x_63 = 0; -x_64 = lean_box(x_63); -x_65 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_65, 0, x_64); -lean_ctor_set(x_65, 1, x_62); -x_66 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_66, 0, x_65); -x_67 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_67, 0, x_66); -lean_ctor_set(x_67, 1, x_45); -return x_67; +x_63 = lean_array_push(x_60, x_62); +x_64 = lean_array_push(x_63, x_7); +x_65 = lean_array_push(x_64, x_6); +x_66 = l_termDepIfThenElse___closed__24; +x_67 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_67, 0, x_50); +lean_ctor_set(x_67, 1, x_66); +x_68 = lean_array_push(x_5, x_67); +x_69 = lean_array_push(x_68, x_12); +x_70 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_70, 0, x_8); +lean_ctor_set(x_70, 1, x_69); +x_71 = lean_array_push(x_65, x_70); +x_72 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_72, 0, x_9); +lean_ctor_set(x_72, 1, x_71); +x_73 = 0; +x_74 = lean_box(x_73); +x_75 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_75, 0, x_74); +lean_ctor_set(x_75, 1, x_72); +x_76 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_76, 0, x_75); +x_77 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_77, 0, x_76); +lean_ctor_set(x_77, 1, x_51); +return x_77; } } else { -lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; uint8_t x_74; -x_68 = lean_unsigned_to_nat(1u); -x_69 = l_Lean_Syntax_getArg(x_1, x_68); -x_70 = lean_unsigned_to_nat(2u); -x_71 = l_Lean_Syntax_getArg(x_1, x_70); -x_72 = l_Lean_Parser_Term_doIfLetPure___elambda__1___closed__1; -lean_inc(x_2); -x_73 = lean_name_mk_string(x_2, x_72); -lean_inc(x_71); -x_74 = l_Lean_Syntax_isOfKind(x_71, x_73); -lean_dec(x_73); -if (x_74 == 0) -{ -lean_object* x_75; lean_object* x_76; uint8_t x_77; -x_75 = l_Lean_Parser_Term_doIfLetBind___elambda__1___closed__1; -lean_inc(x_2); -x_76 = lean_name_mk_string(x_2, x_75); -lean_inc(x_71); -x_77 = l_Lean_Syntax_isOfKind(x_71, x_76); -lean_dec(x_76); -if (x_77 == 0) -{ lean_object* x_78; uint8_t x_79; -lean_dec(x_71); -lean_dec(x_69); -lean_dec(x_2); -x_78 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(x_12, x_13); -lean_dec(x_12); +lean_dec(x_3); +x_78 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(x_13, x_14); +lean_dec(x_13); x_79 = !lean_is_exclusive(x_78); if (x_79 == 0) { 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; lean_object* x_95; lean_object* x_96; lean_object* x_97; uint8_t x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; x_80 = lean_ctor_get(x_78, 0); -x_81 = l_Lean_Syntax_getHeadInfo(x_3); +x_81 = l_Lean_Syntax_getHeadInfo(x_4); x_82 = l_Lean_Parser_Term_notFollowedByRedefinedTermToken___elambda__1___closed__43; x_83 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_83, 0, x_81); lean_ctor_set(x_83, 1, x_82); -lean_inc(x_4); -x_84 = lean_array_push(x_4, x_83); +lean_inc(x_5); +x_84 = lean_array_push(x_5, x_83); x_85 = lean_array_push(x_84, x_1); x_86 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___lambda__1___closed__1; lean_inc(x_80); @@ -17854,20 +17900,20 @@ x_87 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_87, 0, x_80); lean_ctor_set(x_87, 1, x_86); x_88 = lean_array_push(x_85, x_87); -x_89 = lean_array_push(x_88, x_5); +x_89 = lean_array_push(x_88, x_7); x_90 = lean_array_push(x_89, x_6); x_91 = l_termDepIfThenElse___closed__24; x_92 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_92, 0, x_80); lean_ctor_set(x_92, 1, x_91); -x_93 = lean_array_push(x_4, x_92); -x_94 = lean_array_push(x_93, x_11); +x_93 = lean_array_push(x_5, x_92); +x_94 = lean_array_push(x_93, x_12); x_95 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_95, 0, x_7); +lean_ctor_set(x_95, 0, x_8); lean_ctor_set(x_95, 1, x_94); x_96 = lean_array_push(x_90, x_95); x_97 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_97, 0, x_8); +lean_ctor_set(x_97, 0, x_9); lean_ctor_set(x_97, 1, x_96); x_98 = 0; x_99 = lean_box(x_98); @@ -17887,13 +17933,13 @@ x_103 = lean_ctor_get(x_78, 1); lean_inc(x_103); lean_inc(x_102); lean_dec(x_78); -x_104 = l_Lean_Syntax_getHeadInfo(x_3); +x_104 = l_Lean_Syntax_getHeadInfo(x_4); x_105 = l_Lean_Parser_Term_notFollowedByRedefinedTermToken___elambda__1___closed__43; x_106 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_106, 0, x_104); lean_ctor_set(x_106, 1, x_105); -lean_inc(x_4); -x_107 = lean_array_push(x_4, x_106); +lean_inc(x_5); +x_107 = lean_array_push(x_5, x_106); x_108 = lean_array_push(x_107, x_1); x_109 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___lambda__1___closed__1; lean_inc(x_102); @@ -17901,20 +17947,20 @@ x_110 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_110, 0, x_102); lean_ctor_set(x_110, 1, x_109); x_111 = lean_array_push(x_108, x_110); -x_112 = lean_array_push(x_111, x_5); +x_112 = lean_array_push(x_111, x_7); x_113 = lean_array_push(x_112, x_6); x_114 = l_termDepIfThenElse___closed__24; x_115 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_115, 0, x_102); lean_ctor_set(x_115, 1, x_114); -x_116 = lean_array_push(x_4, x_115); -x_117 = lean_array_push(x_116, x_11); +x_116 = lean_array_push(x_5, x_115); +x_117 = lean_array_push(x_116, x_12); x_118 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_118, 0, x_7); +lean_ctor_set(x_118, 0, x_8); lean_ctor_set(x_118, 1, x_117); x_119 = lean_array_push(x_113, x_118); x_120 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_120, 0, x_8); +lean_ctor_set(x_120, 0, x_9); lean_ctor_set(x_120, 1, x_119); x_121 = 0; x_122 = lean_box(x_121); @@ -17929,1028 +17975,1258 @@ lean_ctor_set(x_125, 1, x_103); return x_125; } } +} else { -lean_object* x_126; lean_object* x_127; uint8_t x_128; -lean_dec(x_8); +lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; uint8_t x_132; +x_126 = lean_unsigned_to_nat(1u); +x_127 = l_Lean_Syntax_getArg(x_1, x_126); +x_128 = lean_unsigned_to_nat(2u); +x_129 = l_Lean_Syntax_getArg(x_1, x_128); lean_dec(x_1); -x_126 = l_Lean_Syntax_getArg(x_71, x_68); -lean_dec(x_71); -x_127 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(x_12, x_13); -lean_dec(x_12); -x_128 = !lean_is_exclusive(x_127); -if (x_128 == 0) -{ -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; 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; 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; 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; uint8_t x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; -x_129 = lean_ctor_get(x_127, 0); -x_130 = l_Lean_Parser_Term_doMatch___elambda__1___closed__1; +x_130 = l_Lean_Parser_Term_doIfLetPure___elambda__1___closed__1; lean_inc(x_2); x_131 = lean_name_mk_string(x_2, x_130); -x_132 = l_Lean_Syntax_getHeadInfo(x_3); -x_133 = l_myMacro____x40_Init_Notation___hyg_13954____closed__1; -x_134 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_134, 0, x_132); -lean_ctor_set(x_134, 1, x_133); -lean_inc(x_4); -x_135 = lean_array_push(x_4, x_134); -x_136 = l_myMacro____x40_Init_Notation___hyg_13954____closed__3; +lean_inc(x_129); +x_132 = l_Lean_Syntax_isOfKind(x_129, x_131); +lean_dec(x_131); +if (x_132 == 0) +{ +lean_object* x_133; lean_object* x_134; uint8_t x_135; +x_133 = l_Lean_Parser_Term_doIfLetBind___elambda__1___closed__1; lean_inc(x_2); -x_137 = lean_name_mk_string(x_2, x_136); +x_134 = lean_name_mk_string(x_2, x_133); +lean_inc(x_129); +x_135 = l_Lean_Syntax_isOfKind(x_129, x_134); +lean_dec(x_134); +if (x_135 == 0) +{ +lean_object* x_136; uint8_t x_137; +lean_dec(x_129); +lean_dec(x_127); +lean_dec(x_2); +x_136 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(x_13, x_14); +lean_dec(x_13); +x_137 = !lean_is_exclusive(x_136); +if (x_137 == 0) +{ +lean_object* x_138; lean_object* x_139; lean_object* x_140; 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; uint8_t x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; +x_138 = lean_ctor_get(x_136, 0); +x_139 = l_Lean_Syntax_getHeadInfo(x_4); +x_140 = l_Lean_Parser_Term_notFollowedByRedefinedTermToken___elambda__1___closed__43; +x_141 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_141, 0, x_139); +lean_ctor_set(x_141, 1, x_140); +lean_inc(x_5); +x_142 = lean_array_push(x_5, x_141); lean_inc(x_6); -lean_inc(x_4); -x_138 = lean_array_push(x_4, x_6); -x_139 = l_Lean_Parser_Term_liftMethod___elambda__1___closed__1; -lean_inc(x_2); -x_140 = lean_name_mk_string(x_2, x_139); -x_141 = l_Lean_Parser_Tactic_rwRule___closed__3; -lean_inc(x_129); -x_142 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_142, 0, x_129); -lean_ctor_set(x_142, 1, x_141); -lean_inc(x_4); -x_143 = lean_array_push(x_4, x_142); -x_144 = lean_array_push(x_143, x_126); -x_145 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_145, 0, x_140); -lean_ctor_set(x_145, 1, x_144); -x_146 = lean_array_push(x_138, x_145); -x_147 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_147, 0, x_137); -lean_ctor_set(x_147, 1, x_146); -lean_inc(x_4); -x_148 = lean_array_push(x_4, x_147); -lean_inc(x_7); -x_149 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_149, 0, x_7); +lean_inc(x_5); +x_143 = lean_array_push(x_5, x_6); +x_144 = lean_box(0); +x_145 = lean_array_push(x_143, x_144); +x_146 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_146, 0, x_3); +lean_ctor_set(x_146, 1, x_145); +x_147 = lean_array_push(x_142, x_146); +x_148 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___lambda__1___closed__1; +lean_inc(x_138); +x_149 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_149, 0, x_138); lean_ctor_set(x_149, 1, x_148); -x_150 = lean_array_push(x_135, x_149); -x_151 = lean_array_push(x_150, x_6); -x_152 = l_myMacro____x40_Init_Notation___hyg_13954____closed__6; -lean_inc(x_129); -x_153 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_153, 0, x_129); -lean_ctor_set(x_153, 1, x_152); -x_154 = lean_array_push(x_151, x_153); -x_155 = l_myMacro____x40_Init_Notation___hyg_13954____closed__7; -lean_inc(x_2); -x_156 = lean_name_mk_string(x_2, x_155); -x_157 = l_myMacro____x40_Init_Notation___hyg_13954____closed__9; -lean_inc(x_2); -x_158 = lean_name_mk_string(x_2, x_157); -x_159 = l_myMacro____x40_Init_Notation___hyg_13954____closed__11; -lean_inc(x_129); -x_160 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_160, 0, x_129); -lean_ctor_set(x_160, 1, x_159); -lean_inc(x_4); -x_161 = lean_array_push(x_4, x_160); -lean_inc(x_4); -x_162 = lean_array_push(x_4, x_69); -lean_inc(x_7); -x_163 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_163, 0, x_7); -lean_ctor_set(x_163, 1, x_162); -lean_inc(x_161); -x_164 = lean_array_push(x_161, x_163); -x_165 = l_myMacro____x40_Init_Notation___hyg_13352____closed__13; -lean_inc(x_129); -x_166 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_166, 0, x_129); -lean_ctor_set(x_166, 1, x_165); -lean_inc(x_166); -x_167 = lean_array_push(x_164, x_166); -x_168 = lean_array_push(x_167, x_5); -lean_inc(x_158); -x_169 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_169, 0, x_158); -lean_ctor_set(x_169, 1, x_168); -lean_inc(x_4); -x_170 = lean_array_push(x_4, x_169); -x_171 = l_myMacro____x40_Init_Notation___hyg_13954____closed__12; -x_172 = lean_name_mk_string(x_2, x_171); -x_173 = l_myMacro____x40_Init_Notation___hyg_13954____closed__14; -x_174 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_174, 0, x_129); -lean_ctor_set(x_174, 1, x_173); -lean_inc(x_4); -x_175 = lean_array_push(x_4, x_174); -x_176 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_176, 0, x_172); +x_150 = lean_array_push(x_147, x_149); +x_151 = lean_array_push(x_150, x_7); +x_152 = lean_array_push(x_151, x_6); +x_153 = l_termDepIfThenElse___closed__24; +x_154 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_154, 0, x_138); +lean_ctor_set(x_154, 1, x_153); +x_155 = lean_array_push(x_5, x_154); +x_156 = lean_array_push(x_155, x_12); +x_157 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_157, 0, x_8); +lean_ctor_set(x_157, 1, x_156); +x_158 = lean_array_push(x_152, x_157); +x_159 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_159, 0, x_9); +lean_ctor_set(x_159, 1, x_158); +x_160 = 0; +x_161 = lean_box(x_160); +x_162 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_162, 0, x_161); +lean_ctor_set(x_162, 1, x_159); +x_163 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_163, 0, x_162); +lean_ctor_set(x_136, 0, x_163); +return x_136; +} +else +{ +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; 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; uint8_t x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; +x_164 = lean_ctor_get(x_136, 0); +x_165 = lean_ctor_get(x_136, 1); +lean_inc(x_165); +lean_inc(x_164); +lean_dec(x_136); +x_166 = l_Lean_Syntax_getHeadInfo(x_4); +x_167 = l_Lean_Parser_Term_notFollowedByRedefinedTermToken___elambda__1___closed__43; +x_168 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_168, 0, x_166); +lean_ctor_set(x_168, 1, x_167); +lean_inc(x_5); +x_169 = lean_array_push(x_5, x_168); +lean_inc(x_6); +lean_inc(x_5); +x_170 = lean_array_push(x_5, x_6); +x_171 = lean_box(0); +x_172 = lean_array_push(x_170, x_171); +x_173 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_173, 0, x_3); +lean_ctor_set(x_173, 1, x_172); +x_174 = lean_array_push(x_169, x_173); +x_175 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___lambda__1___closed__1; +lean_inc(x_164); +x_176 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_176, 0, x_164); lean_ctor_set(x_176, 1, x_175); -lean_inc(x_4); -x_177 = lean_array_push(x_4, x_176); -lean_inc(x_7); -x_178 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_178, 0, x_7); -lean_ctor_set(x_178, 1, x_177); -x_179 = lean_array_push(x_161, x_178); -x_180 = lean_array_push(x_179, x_166); -x_181 = lean_array_push(x_180, x_11); -x_182 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_182, 0, x_158); -lean_ctor_set(x_182, 1, x_181); -x_183 = lean_array_push(x_170, x_182); +x_177 = lean_array_push(x_174, x_176); +x_178 = lean_array_push(x_177, x_7); +x_179 = lean_array_push(x_178, x_6); +x_180 = l_termDepIfThenElse___closed__24; +x_181 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_181, 0, x_164); +lean_ctor_set(x_181, 1, x_180); +x_182 = lean_array_push(x_5, x_181); +x_183 = lean_array_push(x_182, x_12); x_184 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_184, 0, x_7); +lean_ctor_set(x_184, 0, x_8); lean_ctor_set(x_184, 1, x_183); -x_185 = lean_array_push(x_4, x_184); +x_185 = lean_array_push(x_179, x_184); x_186 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_186, 0, x_156); +lean_ctor_set(x_186, 0, x_9); lean_ctor_set(x_186, 1, x_185); -x_187 = lean_array_push(x_154, x_186); -x_188 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_188, 0, x_131); -lean_ctor_set(x_188, 1, x_187); -x_189 = 0; -x_190 = lean_box(x_189); +x_187 = 0; +x_188 = lean_box(x_187); +x_189 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_189, 0, x_188); +lean_ctor_set(x_189, 1, x_186); +x_190 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_190, 0, x_189); x_191 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_191, 0, x_190); -lean_ctor_set(x_191, 1, x_188); -x_192 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_192, 0, x_191); -lean_ctor_set(x_127, 0, x_192); -return x_127; +lean_ctor_set(x_191, 1, x_165); +return x_191; +} } else { -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; 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; 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_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; uint8_t x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; -x_193 = lean_ctor_get(x_127, 0); -x_194 = lean_ctor_get(x_127, 1); -lean_inc(x_194); -lean_inc(x_193); -lean_dec(x_127); -x_195 = l_Lean_Parser_Term_doMatch___elambda__1___closed__1; +lean_object* x_192; lean_object* x_193; uint8_t x_194; +lean_dec(x_9); +lean_dec(x_3); +x_192 = l_Lean_Syntax_getArg(x_129, x_126); +lean_dec(x_129); +x_193 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(x_13, x_14); +lean_dec(x_13); +x_194 = !lean_is_exclusive(x_193); +if (x_194 == 0) +{ +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; 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; 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_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; uint8_t x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; +x_195 = lean_ctor_get(x_193, 0); +x_196 = l_Lean_Parser_Term_doMatch___elambda__1___closed__1; lean_inc(x_2); -x_196 = lean_name_mk_string(x_2, x_195); -x_197 = l_Lean_Syntax_getHeadInfo(x_3); -x_198 = l_myMacro____x40_Init_Notation___hyg_13954____closed__1; -x_199 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_199, 0, x_197); -lean_ctor_set(x_199, 1, x_198); -lean_inc(x_4); -x_200 = lean_array_push(x_4, x_199); -x_201 = l_myMacro____x40_Init_Notation___hyg_13954____closed__3; +x_197 = lean_name_mk_string(x_2, x_196); +x_198 = l_Lean_Syntax_getHeadInfo(x_4); +x_199 = l_myMacro____x40_Init_Notation___hyg_13954____closed__1; +x_200 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_200, 0, x_198); +lean_ctor_set(x_200, 1, x_199); +lean_inc(x_5); +x_201 = lean_array_push(x_5, x_200); +x_202 = l_myMacro____x40_Init_Notation___hyg_13954____closed__3; lean_inc(x_2); -x_202 = lean_name_mk_string(x_2, x_201); +x_203 = lean_name_mk_string(x_2, x_202); lean_inc(x_6); -lean_inc(x_4); -x_203 = lean_array_push(x_4, x_6); -x_204 = l_Lean_Parser_Term_liftMethod___elambda__1___closed__1; +lean_inc(x_5); +x_204 = lean_array_push(x_5, x_6); +x_205 = l_Lean_Parser_Term_liftMethod___elambda__1___closed__1; lean_inc(x_2); -x_205 = lean_name_mk_string(x_2, x_204); -x_206 = l_Lean_Parser_Tactic_rwRule___closed__3; -lean_inc(x_193); -x_207 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_207, 0, x_193); -lean_ctor_set(x_207, 1, x_206); -lean_inc(x_4); -x_208 = lean_array_push(x_4, x_207); -x_209 = lean_array_push(x_208, x_126); -x_210 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_210, 0, x_205); -lean_ctor_set(x_210, 1, x_209); -x_211 = lean_array_push(x_203, x_210); -x_212 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_212, 0, x_202); -lean_ctor_set(x_212, 1, x_211); -lean_inc(x_4); -x_213 = lean_array_push(x_4, x_212); -lean_inc(x_7); -x_214 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_214, 0, x_7); -lean_ctor_set(x_214, 1, x_213); -x_215 = lean_array_push(x_200, x_214); -x_216 = lean_array_push(x_215, x_6); -x_217 = l_myMacro____x40_Init_Notation___hyg_13954____closed__6; -lean_inc(x_193); -x_218 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_218, 0, x_193); -lean_ctor_set(x_218, 1, x_217); -x_219 = lean_array_push(x_216, x_218); -x_220 = l_myMacro____x40_Init_Notation___hyg_13954____closed__7; +x_206 = lean_name_mk_string(x_2, x_205); +x_207 = l_Lean_Parser_Tactic_rwRule___closed__3; +lean_inc(x_195); +x_208 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_208, 0, x_195); +lean_ctor_set(x_208, 1, x_207); +lean_inc(x_5); +x_209 = lean_array_push(x_5, x_208); +x_210 = lean_array_push(x_209, x_192); +x_211 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_211, 0, x_206); +lean_ctor_set(x_211, 1, x_210); +x_212 = lean_array_push(x_204, x_211); +x_213 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_213, 0, x_203); +lean_ctor_set(x_213, 1, x_212); +lean_inc(x_5); +x_214 = lean_array_push(x_5, x_213); +lean_inc(x_8); +x_215 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_215, 0, x_8); +lean_ctor_set(x_215, 1, x_214); +x_216 = lean_array_push(x_201, x_215); +x_217 = lean_array_push(x_216, x_6); +x_218 = l_myMacro____x40_Init_Notation___hyg_13954____closed__6; +lean_inc(x_195); +x_219 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_219, 0, x_195); +lean_ctor_set(x_219, 1, x_218); +x_220 = lean_array_push(x_217, x_219); +x_221 = l_myMacro____x40_Init_Notation___hyg_13954____closed__7; lean_inc(x_2); -x_221 = lean_name_mk_string(x_2, x_220); -x_222 = l_myMacro____x40_Init_Notation___hyg_13954____closed__9; +x_222 = lean_name_mk_string(x_2, x_221); +x_223 = l_myMacro____x40_Init_Notation___hyg_13954____closed__9; lean_inc(x_2); -x_223 = lean_name_mk_string(x_2, x_222); -x_224 = l_myMacro____x40_Init_Notation___hyg_13954____closed__11; -lean_inc(x_193); -x_225 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_225, 0, x_193); -lean_ctor_set(x_225, 1, x_224); -lean_inc(x_4); -x_226 = lean_array_push(x_4, x_225); -lean_inc(x_4); -x_227 = lean_array_push(x_4, x_69); -lean_inc(x_7); -x_228 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_228, 0, x_7); -lean_ctor_set(x_228, 1, x_227); -lean_inc(x_226); -x_229 = lean_array_push(x_226, x_228); -x_230 = l_myMacro____x40_Init_Notation___hyg_13352____closed__13; -lean_inc(x_193); -x_231 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_231, 0, x_193); -lean_ctor_set(x_231, 1, x_230); -lean_inc(x_231); -x_232 = lean_array_push(x_229, x_231); -x_233 = lean_array_push(x_232, x_5); -lean_inc(x_223); -x_234 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_234, 0, x_223); -lean_ctor_set(x_234, 1, x_233); -lean_inc(x_4); -x_235 = lean_array_push(x_4, x_234); -x_236 = l_myMacro____x40_Init_Notation___hyg_13954____closed__12; -x_237 = lean_name_mk_string(x_2, x_236); -x_238 = l_myMacro____x40_Init_Notation___hyg_13954____closed__14; -x_239 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_239, 0, x_193); -lean_ctor_set(x_239, 1, x_238); -lean_inc(x_4); -x_240 = lean_array_push(x_4, x_239); -x_241 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_241, 0, x_237); -lean_ctor_set(x_241, 1, x_240); -lean_inc(x_4); -x_242 = lean_array_push(x_4, x_241); -lean_inc(x_7); -x_243 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_243, 0, x_7); -lean_ctor_set(x_243, 1, x_242); -x_244 = lean_array_push(x_226, x_243); -x_245 = lean_array_push(x_244, x_231); -x_246 = lean_array_push(x_245, x_11); -x_247 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_247, 0, x_223); -lean_ctor_set(x_247, 1, x_246); -x_248 = lean_array_push(x_235, x_247); -x_249 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_249, 0, x_7); -lean_ctor_set(x_249, 1, x_248); -x_250 = lean_array_push(x_4, x_249); -x_251 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_251, 0, x_221); -lean_ctor_set(x_251, 1, x_250); -x_252 = lean_array_push(x_219, x_251); -x_253 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_253, 0, x_196); -lean_ctor_set(x_253, 1, x_252); -x_254 = 0; -x_255 = lean_box(x_254); -x_256 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_256, 0, x_255); -lean_ctor_set(x_256, 1, x_253); -x_257 = lean_alloc_ctor(1, 1, 0); +x_224 = lean_name_mk_string(x_2, x_223); +x_225 = l_myMacro____x40_Init_Notation___hyg_13954____closed__11; +lean_inc(x_195); +x_226 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_226, 0, x_195); +lean_ctor_set(x_226, 1, x_225); +lean_inc(x_5); +x_227 = lean_array_push(x_5, x_226); +lean_inc(x_5); +x_228 = lean_array_push(x_5, x_127); +lean_inc(x_8); +x_229 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_229, 0, x_8); +lean_ctor_set(x_229, 1, x_228); +lean_inc(x_227); +x_230 = lean_array_push(x_227, x_229); +x_231 = l_myMacro____x40_Init_Notation___hyg_13352____closed__13; +lean_inc(x_195); +x_232 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_232, 0, x_195); +lean_ctor_set(x_232, 1, x_231); +lean_inc(x_232); +x_233 = lean_array_push(x_230, x_232); +x_234 = lean_array_push(x_233, x_7); +lean_inc(x_224); +x_235 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_235, 0, x_224); +lean_ctor_set(x_235, 1, x_234); +lean_inc(x_5); +x_236 = lean_array_push(x_5, x_235); +x_237 = l_myMacro____x40_Init_Notation___hyg_13954____closed__12; +x_238 = lean_name_mk_string(x_2, x_237); +x_239 = l_myMacro____x40_Init_Notation___hyg_13954____closed__14; +x_240 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_240, 0, x_195); +lean_ctor_set(x_240, 1, x_239); +lean_inc(x_5); +x_241 = lean_array_push(x_5, x_240); +x_242 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_242, 0, x_238); +lean_ctor_set(x_242, 1, x_241); +lean_inc(x_5); +x_243 = lean_array_push(x_5, x_242); +lean_inc(x_8); +x_244 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_244, 0, x_8); +lean_ctor_set(x_244, 1, x_243); +x_245 = lean_array_push(x_227, x_244); +x_246 = lean_array_push(x_245, x_232); +x_247 = lean_array_push(x_246, x_12); +x_248 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_248, 0, x_224); +lean_ctor_set(x_248, 1, x_247); +x_249 = lean_array_push(x_236, x_248); +x_250 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_250, 0, x_8); +lean_ctor_set(x_250, 1, x_249); +x_251 = lean_array_push(x_5, x_250); +x_252 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_252, 0, x_222); +lean_ctor_set(x_252, 1, x_251); +x_253 = lean_array_push(x_220, x_252); +x_254 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_254, 0, x_197); +lean_ctor_set(x_254, 1, x_253); +x_255 = 0; +x_256 = lean_box(x_255); +x_257 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_257, 0, x_256); -x_258 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_257, 1, x_254); +x_258 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_258, 0, x_257); -lean_ctor_set(x_258, 1, x_194); -return x_258; -} -} +lean_ctor_set(x_193, 0, x_258); +return x_193; } else { -lean_object* x_259; lean_object* x_260; uint8_t x_261; -lean_dec(x_8); -lean_dec(x_1); -x_259 = l_Lean_Syntax_getArg(x_71, x_68); -lean_dec(x_71); -x_260 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(x_12, x_13); -lean_dec(x_12); -x_261 = !lean_is_exclusive(x_260); -if (x_261 == 0) -{ -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; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; uint8_t x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; -x_262 = lean_ctor_get(x_260, 0); -x_263 = l_Lean_Parser_Term_doMatch___elambda__1___closed__1; +lean_object* x_259; lean_object* x_260; 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; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; uint8_t x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; +x_259 = lean_ctor_get(x_193, 0); +x_260 = lean_ctor_get(x_193, 1); +lean_inc(x_260); +lean_inc(x_259); +lean_dec(x_193); +x_261 = l_Lean_Parser_Term_doMatch___elambda__1___closed__1; lean_inc(x_2); -x_264 = lean_name_mk_string(x_2, x_263); -x_265 = l_Lean_Syntax_getHeadInfo(x_3); -x_266 = l_myMacro____x40_Init_Notation___hyg_13954____closed__1; -x_267 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_267, 0, x_265); -lean_ctor_set(x_267, 1, x_266); -lean_inc(x_4); -x_268 = lean_array_push(x_4, x_267); -x_269 = l_myMacro____x40_Init_Notation___hyg_13954____closed__3; +x_262 = lean_name_mk_string(x_2, x_261); +x_263 = l_Lean_Syntax_getHeadInfo(x_4); +x_264 = l_myMacro____x40_Init_Notation___hyg_13954____closed__1; +x_265 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_265, 0, x_263); +lean_ctor_set(x_265, 1, x_264); +lean_inc(x_5); +x_266 = lean_array_push(x_5, x_265); +x_267 = l_myMacro____x40_Init_Notation___hyg_13954____closed__3; lean_inc(x_2); -x_270 = lean_name_mk_string(x_2, x_269); +x_268 = lean_name_mk_string(x_2, x_267); lean_inc(x_6); -lean_inc(x_4); -x_271 = lean_array_push(x_4, x_6); -x_272 = lean_array_push(x_271, x_259); -x_273 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_273, 0, x_270); +lean_inc(x_5); +x_269 = lean_array_push(x_5, x_6); +x_270 = l_Lean_Parser_Term_liftMethod___elambda__1___closed__1; +lean_inc(x_2); +x_271 = lean_name_mk_string(x_2, x_270); +x_272 = l_Lean_Parser_Tactic_rwRule___closed__3; +lean_inc(x_259); +x_273 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_273, 0, x_259); lean_ctor_set(x_273, 1, x_272); -lean_inc(x_4); -x_274 = lean_array_push(x_4, x_273); -lean_inc(x_7); -x_275 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_275, 0, x_7); -lean_ctor_set(x_275, 1, x_274); -x_276 = lean_array_push(x_268, x_275); -x_277 = lean_array_push(x_276, x_6); -x_278 = l_myMacro____x40_Init_Notation___hyg_13954____closed__6; -lean_inc(x_262); -x_279 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_279, 0, x_262); -lean_ctor_set(x_279, 1, x_278); -x_280 = lean_array_push(x_277, x_279); -x_281 = l_myMacro____x40_Init_Notation___hyg_13954____closed__7; +lean_inc(x_5); +x_274 = lean_array_push(x_5, x_273); +x_275 = lean_array_push(x_274, x_192); +x_276 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_276, 0, x_271); +lean_ctor_set(x_276, 1, x_275); +x_277 = lean_array_push(x_269, x_276); +x_278 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_278, 0, x_268); +lean_ctor_set(x_278, 1, x_277); +lean_inc(x_5); +x_279 = lean_array_push(x_5, x_278); +lean_inc(x_8); +x_280 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_280, 0, x_8); +lean_ctor_set(x_280, 1, x_279); +x_281 = lean_array_push(x_266, x_280); +x_282 = lean_array_push(x_281, x_6); +x_283 = l_myMacro____x40_Init_Notation___hyg_13954____closed__6; +lean_inc(x_259); +x_284 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_284, 0, x_259); +lean_ctor_set(x_284, 1, x_283); +x_285 = lean_array_push(x_282, x_284); +x_286 = l_myMacro____x40_Init_Notation___hyg_13954____closed__7; lean_inc(x_2); -x_282 = lean_name_mk_string(x_2, x_281); -x_283 = l_myMacro____x40_Init_Notation___hyg_13954____closed__9; +x_287 = lean_name_mk_string(x_2, x_286); +x_288 = l_myMacro____x40_Init_Notation___hyg_13954____closed__9; lean_inc(x_2); -x_284 = lean_name_mk_string(x_2, x_283); -x_285 = l_myMacro____x40_Init_Notation___hyg_13954____closed__11; -lean_inc(x_262); -x_286 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_286, 0, x_262); -lean_ctor_set(x_286, 1, x_285); -lean_inc(x_4); -x_287 = lean_array_push(x_4, x_286); -lean_inc(x_4); -x_288 = lean_array_push(x_4, x_69); -lean_inc(x_7); -x_289 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_289, 0, x_7); -lean_ctor_set(x_289, 1, x_288); -lean_inc(x_287); -x_290 = lean_array_push(x_287, x_289); -x_291 = l_myMacro____x40_Init_Notation___hyg_13352____closed__13; -lean_inc(x_262); -x_292 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_292, 0, x_262); -lean_ctor_set(x_292, 1, x_291); +x_289 = lean_name_mk_string(x_2, x_288); +x_290 = l_myMacro____x40_Init_Notation___hyg_13954____closed__11; +lean_inc(x_259); +x_291 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_291, 0, x_259); +lean_ctor_set(x_291, 1, x_290); +lean_inc(x_5); +x_292 = lean_array_push(x_5, x_291); +lean_inc(x_5); +x_293 = lean_array_push(x_5, x_127); +lean_inc(x_8); +x_294 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_294, 0, x_8); +lean_ctor_set(x_294, 1, x_293); lean_inc(x_292); -x_293 = lean_array_push(x_290, x_292); -x_294 = lean_array_push(x_293, x_5); -lean_inc(x_284); -x_295 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_295, 0, x_284); -lean_ctor_set(x_295, 1, x_294); -lean_inc(x_4); -x_296 = lean_array_push(x_4, x_295); -x_297 = l_myMacro____x40_Init_Notation___hyg_13954____closed__12; -x_298 = lean_name_mk_string(x_2, x_297); -x_299 = l_myMacro____x40_Init_Notation___hyg_13954____closed__14; -x_300 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_300, 0, x_262); +x_295 = lean_array_push(x_292, x_294); +x_296 = l_myMacro____x40_Init_Notation___hyg_13352____closed__13; +lean_inc(x_259); +x_297 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_297, 0, x_259); +lean_ctor_set(x_297, 1, x_296); +lean_inc(x_297); +x_298 = lean_array_push(x_295, x_297); +x_299 = lean_array_push(x_298, x_7); +lean_inc(x_289); +x_300 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_300, 0, x_289); lean_ctor_set(x_300, 1, x_299); -lean_inc(x_4); -x_301 = lean_array_push(x_4, x_300); -x_302 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_302, 0, x_298); -lean_ctor_set(x_302, 1, x_301); -lean_inc(x_4); -x_303 = lean_array_push(x_4, x_302); -lean_inc(x_7); -x_304 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_304, 0, x_7); -lean_ctor_set(x_304, 1, x_303); -x_305 = lean_array_push(x_287, x_304); -x_306 = lean_array_push(x_305, x_292); -x_307 = lean_array_push(x_306, x_11); -x_308 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_308, 0, x_284); -lean_ctor_set(x_308, 1, x_307); -x_309 = lean_array_push(x_296, x_308); -x_310 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_310, 0, x_7); -lean_ctor_set(x_310, 1, x_309); -x_311 = lean_array_push(x_4, x_310); -x_312 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_312, 0, x_282); -lean_ctor_set(x_312, 1, x_311); -x_313 = lean_array_push(x_280, x_312); -x_314 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_314, 0, x_264); -lean_ctor_set(x_314, 1, x_313); -x_315 = 0; -x_316 = lean_box(x_315); -x_317 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_317, 0, x_316); -lean_ctor_set(x_317, 1, x_314); -x_318 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_318, 0, x_317); -lean_ctor_set(x_260, 0, x_318); -return x_260; +lean_inc(x_5); +x_301 = lean_array_push(x_5, x_300); +x_302 = l_myMacro____x40_Init_Notation___hyg_13954____closed__12; +x_303 = lean_name_mk_string(x_2, x_302); +x_304 = l_myMacro____x40_Init_Notation___hyg_13954____closed__14; +x_305 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_305, 0, x_259); +lean_ctor_set(x_305, 1, x_304); +lean_inc(x_5); +x_306 = lean_array_push(x_5, x_305); +x_307 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_307, 0, x_303); +lean_ctor_set(x_307, 1, x_306); +lean_inc(x_5); +x_308 = lean_array_push(x_5, x_307); +lean_inc(x_8); +x_309 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_309, 0, x_8); +lean_ctor_set(x_309, 1, x_308); +x_310 = lean_array_push(x_292, x_309); +x_311 = lean_array_push(x_310, x_297); +x_312 = lean_array_push(x_311, x_12); +x_313 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_313, 0, x_289); +lean_ctor_set(x_313, 1, x_312); +x_314 = lean_array_push(x_301, x_313); +x_315 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_315, 0, x_8); +lean_ctor_set(x_315, 1, x_314); +x_316 = lean_array_push(x_5, x_315); +x_317 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_317, 0, x_287); +lean_ctor_set(x_317, 1, x_316); +x_318 = lean_array_push(x_285, x_317); +x_319 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_319, 0, x_262); +lean_ctor_set(x_319, 1, x_318); +x_320 = 0; +x_321 = lean_box(x_320); +x_322 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_322, 0, x_321); +lean_ctor_set(x_322, 1, x_319); +x_323 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_323, 0, x_322); +x_324 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_324, 0, x_323); +lean_ctor_set(x_324, 1, x_260); +return x_324; +} +} } else { -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; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; uint8_t x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; -x_319 = lean_ctor_get(x_260, 0); -x_320 = lean_ctor_get(x_260, 1); -lean_inc(x_320); -lean_inc(x_319); -lean_dec(x_260); -x_321 = l_Lean_Parser_Term_doMatch___elambda__1___closed__1; +lean_object* x_325; lean_object* x_326; uint8_t x_327; +lean_dec(x_9); +lean_dec(x_3); +x_325 = l_Lean_Syntax_getArg(x_129, x_126); +lean_dec(x_129); +x_326 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(x_13, x_14); +lean_dec(x_13); +x_327 = !lean_is_exclusive(x_326); +if (x_327 == 0) +{ +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; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; uint8_t x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; +x_328 = lean_ctor_get(x_326, 0); +x_329 = l_Lean_Parser_Term_doMatch___elambda__1___closed__1; lean_inc(x_2); -x_322 = lean_name_mk_string(x_2, x_321); -x_323 = l_Lean_Syntax_getHeadInfo(x_3); -x_324 = l_myMacro____x40_Init_Notation___hyg_13954____closed__1; -x_325 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_325, 0, x_323); -lean_ctor_set(x_325, 1, x_324); -lean_inc(x_4); -x_326 = lean_array_push(x_4, x_325); -x_327 = l_myMacro____x40_Init_Notation___hyg_13954____closed__3; -lean_inc(x_2); -x_328 = lean_name_mk_string(x_2, x_327); -lean_inc(x_6); -lean_inc(x_4); -x_329 = lean_array_push(x_4, x_6); -x_330 = lean_array_push(x_329, x_259); -x_331 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_331, 0, x_328); -lean_ctor_set(x_331, 1, x_330); -lean_inc(x_4); -x_332 = lean_array_push(x_4, x_331); -lean_inc(x_7); -x_333 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_333, 0, x_7); +x_330 = lean_name_mk_string(x_2, x_329); +x_331 = l_Lean_Syntax_getHeadInfo(x_4); +x_332 = l_myMacro____x40_Init_Notation___hyg_13954____closed__1; +x_333 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_333, 0, x_331); lean_ctor_set(x_333, 1, x_332); -x_334 = lean_array_push(x_326, x_333); -x_335 = lean_array_push(x_334, x_6); -x_336 = l_myMacro____x40_Init_Notation___hyg_13954____closed__6; -lean_inc(x_319); -x_337 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_337, 0, x_319); -lean_ctor_set(x_337, 1, x_336); -x_338 = lean_array_push(x_335, x_337); -x_339 = l_myMacro____x40_Init_Notation___hyg_13954____closed__7; +lean_inc(x_5); +x_334 = lean_array_push(x_5, x_333); +x_335 = l_myMacro____x40_Init_Notation___hyg_13954____closed__3; lean_inc(x_2); -x_340 = lean_name_mk_string(x_2, x_339); -x_341 = l_myMacro____x40_Init_Notation___hyg_13954____closed__9; +x_336 = lean_name_mk_string(x_2, x_335); +lean_inc(x_6); +lean_inc(x_5); +x_337 = lean_array_push(x_5, x_6); +x_338 = lean_array_push(x_337, x_325); +x_339 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_339, 0, x_336); +lean_ctor_set(x_339, 1, x_338); +lean_inc(x_5); +x_340 = lean_array_push(x_5, x_339); +lean_inc(x_8); +x_341 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_341, 0, x_8); +lean_ctor_set(x_341, 1, x_340); +x_342 = lean_array_push(x_334, x_341); +x_343 = lean_array_push(x_342, x_6); +x_344 = l_myMacro____x40_Init_Notation___hyg_13954____closed__6; +lean_inc(x_328); +x_345 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_345, 0, x_328); +lean_ctor_set(x_345, 1, x_344); +x_346 = lean_array_push(x_343, x_345); +x_347 = l_myMacro____x40_Init_Notation___hyg_13954____closed__7; lean_inc(x_2); -x_342 = lean_name_mk_string(x_2, x_341); -x_343 = l_myMacro____x40_Init_Notation___hyg_13954____closed__11; -lean_inc(x_319); -x_344 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_344, 0, x_319); -lean_ctor_set(x_344, 1, x_343); -lean_inc(x_4); -x_345 = lean_array_push(x_4, x_344); -lean_inc(x_4); -x_346 = lean_array_push(x_4, x_69); -lean_inc(x_7); -x_347 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_347, 0, x_7); -lean_ctor_set(x_347, 1, x_346); -lean_inc(x_345); -x_348 = lean_array_push(x_345, x_347); -x_349 = l_myMacro____x40_Init_Notation___hyg_13352____closed__13; -lean_inc(x_319); -x_350 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_350, 0, x_319); -lean_ctor_set(x_350, 1, x_349); -lean_inc(x_350); -x_351 = lean_array_push(x_348, x_350); -x_352 = lean_array_push(x_351, x_5); -lean_inc(x_342); -x_353 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_353, 0, x_342); -lean_ctor_set(x_353, 1, x_352); -lean_inc(x_4); -x_354 = lean_array_push(x_4, x_353); -x_355 = l_myMacro____x40_Init_Notation___hyg_13954____closed__12; -x_356 = lean_name_mk_string(x_2, x_355); -x_357 = l_myMacro____x40_Init_Notation___hyg_13954____closed__14; +x_348 = lean_name_mk_string(x_2, x_347); +x_349 = l_myMacro____x40_Init_Notation___hyg_13954____closed__9; +lean_inc(x_2); +x_350 = lean_name_mk_string(x_2, x_349); +x_351 = l_myMacro____x40_Init_Notation___hyg_13954____closed__11; +lean_inc(x_328); +x_352 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_352, 0, x_328); +lean_ctor_set(x_352, 1, x_351); +lean_inc(x_5); +x_353 = lean_array_push(x_5, x_352); +lean_inc(x_5); +x_354 = lean_array_push(x_5, x_127); +lean_inc(x_8); +x_355 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_355, 0, x_8); +lean_ctor_set(x_355, 1, x_354); +lean_inc(x_353); +x_356 = lean_array_push(x_353, x_355); +x_357 = l_myMacro____x40_Init_Notation___hyg_13352____closed__13; +lean_inc(x_328); x_358 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_358, 0, x_319); +lean_ctor_set(x_358, 0, x_328); lean_ctor_set(x_358, 1, x_357); -lean_inc(x_4); -x_359 = lean_array_push(x_4, x_358); -x_360 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_360, 0, x_356); -lean_ctor_set(x_360, 1, x_359); -lean_inc(x_4); -x_361 = lean_array_push(x_4, x_360); -lean_inc(x_7); -x_362 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_362, 0, x_7); -lean_ctor_set(x_362, 1, x_361); -x_363 = lean_array_push(x_345, x_362); -x_364 = lean_array_push(x_363, x_350); -x_365 = lean_array_push(x_364, x_11); -x_366 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_366, 0, x_342); +lean_inc(x_358); +x_359 = lean_array_push(x_356, x_358); +x_360 = lean_array_push(x_359, x_7); +lean_inc(x_350); +x_361 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_361, 0, x_350); +lean_ctor_set(x_361, 1, x_360); +lean_inc(x_5); +x_362 = lean_array_push(x_5, x_361); +x_363 = l_myMacro____x40_Init_Notation___hyg_13954____closed__12; +x_364 = lean_name_mk_string(x_2, x_363); +x_365 = l_myMacro____x40_Init_Notation___hyg_13954____closed__14; +x_366 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_366, 0, x_328); lean_ctor_set(x_366, 1, x_365); -x_367 = lean_array_push(x_354, x_366); +lean_inc(x_5); +x_367 = lean_array_push(x_5, x_366); x_368 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_368, 0, x_7); +lean_ctor_set(x_368, 0, x_364); lean_ctor_set(x_368, 1, x_367); -x_369 = lean_array_push(x_4, x_368); +lean_inc(x_5); +x_369 = lean_array_push(x_5, x_368); +lean_inc(x_8); x_370 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_370, 0, x_340); +lean_ctor_set(x_370, 0, x_8); lean_ctor_set(x_370, 1, x_369); -x_371 = lean_array_push(x_338, x_370); -x_372 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_372, 0, x_322); -lean_ctor_set(x_372, 1, x_371); -x_373 = 0; -x_374 = lean_box(x_373); -x_375 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_375, 0, x_374); -lean_ctor_set(x_375, 1, x_372); -x_376 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_376, 0, x_375); -x_377 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_377, 0, x_376); -lean_ctor_set(x_377, 1, x_320); -return x_377; -} -} -} +x_371 = lean_array_push(x_353, x_370); +x_372 = lean_array_push(x_371, x_358); +x_373 = lean_array_push(x_372, x_12); +x_374 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_374, 0, x_350); +lean_ctor_set(x_374, 1, x_373); +x_375 = lean_array_push(x_362, x_374); +x_376 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_376, 0, x_8); +lean_ctor_set(x_376, 1, x_375); +x_377 = lean_array_push(x_5, x_376); +x_378 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_378, 0, x_348); +lean_ctor_set(x_378, 1, x_377); +x_379 = lean_array_push(x_346, x_378); +x_380 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_380, 0, x_330); +lean_ctor_set(x_380, 1, x_379); +x_381 = 0; +x_382 = lean_box(x_381); +x_383 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_383, 0, x_382); +lean_ctor_set(x_383, 1, x_380); +x_384 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_384, 0, x_383); +lean_ctor_set(x_326, 0, x_384); +return x_326; } else { -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; -x_378 = lean_ctor_get(x_12, 0); -x_379 = lean_ctor_get(x_12, 1); -x_380 = lean_ctor_get(x_12, 2); -x_381 = lean_ctor_get(x_12, 3); -x_382 = lean_ctor_get(x_12, 4); -x_383 = lean_ctor_get(x_12, 5); -lean_inc(x_383); -lean_inc(x_382); -lean_inc(x_381); -lean_inc(x_380); -lean_inc(x_379); -lean_inc(x_378); -lean_dec(x_12); -x_384 = l_Lean_replaceRef(x_1, x_383); -lean_dec(x_383); -x_385 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_385, 0, x_378); -lean_ctor_set(x_385, 1, x_379); -lean_ctor_set(x_385, 2, x_380); -lean_ctor_set(x_385, 3, x_381); -lean_ctor_set(x_385, 4, x_382); -lean_ctor_set(x_385, 5, x_384); -if (x_16 == 0) -{ -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; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; uint8_t x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; -lean_dec(x_2); -x_386 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(x_385, x_13); -lean_dec(x_385); -x_387 = lean_ctor_get(x_386, 0); -lean_inc(x_387); -x_388 = lean_ctor_get(x_386, 1); -lean_inc(x_388); -if (lean_is_exclusive(x_386)) { - lean_ctor_release(x_386, 0); - lean_ctor_release(x_386, 1); - x_389 = x_386; -} else { - lean_dec_ref(x_386); - x_389 = lean_box(0); -} -x_390 = l_Lean_Syntax_getHeadInfo(x_3); -x_391 = l_Lean_Parser_Term_notFollowedByRedefinedTermToken___elambda__1___closed__43; -x_392 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_392, 0, x_390); -lean_ctor_set(x_392, 1, x_391); -lean_inc(x_4); -x_393 = lean_array_push(x_4, x_392); -x_394 = lean_array_push(x_393, x_1); -x_395 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___lambda__1___closed__1; -lean_inc(x_387); -x_396 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_396, 0, x_387); -lean_ctor_set(x_396, 1, x_395); -x_397 = lean_array_push(x_394, x_396); -x_398 = lean_array_push(x_397, x_5); -x_399 = lean_array_push(x_398, x_6); -x_400 = l_termDepIfThenElse___closed__24; -x_401 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_401, 0, x_387); -lean_ctor_set(x_401, 1, x_400); -x_402 = lean_array_push(x_4, x_401); -x_403 = lean_array_push(x_402, x_11); -x_404 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_404, 0, x_7); -lean_ctor_set(x_404, 1, x_403); -x_405 = lean_array_push(x_399, x_404); -x_406 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_406, 0, x_8); -lean_ctor_set(x_406, 1, x_405); -x_407 = 0; -x_408 = lean_box(x_407); -x_409 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_409, 0, x_408); -lean_ctor_set(x_409, 1, x_406); -x_410 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_410, 0, x_409); -if (lean_is_scalar(x_389)) { - x_411 = lean_alloc_ctor(0, 2, 0); -} else { - x_411 = x_389; -} -lean_ctor_set(x_411, 0, x_410); -lean_ctor_set(x_411, 1, x_388); -return x_411; -} -else -{ -lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; uint8_t x_418; -x_412 = lean_unsigned_to_nat(1u); -x_413 = l_Lean_Syntax_getArg(x_1, x_412); -x_414 = lean_unsigned_to_nat(2u); -x_415 = l_Lean_Syntax_getArg(x_1, x_414); -x_416 = l_Lean_Parser_Term_doIfLetPure___elambda__1___closed__1; +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; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; uint8_t x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; +x_385 = lean_ctor_get(x_326, 0); +x_386 = lean_ctor_get(x_326, 1); +lean_inc(x_386); +lean_inc(x_385); +lean_dec(x_326); +x_387 = l_Lean_Parser_Term_doMatch___elambda__1___closed__1; lean_inc(x_2); -x_417 = lean_name_mk_string(x_2, x_416); -lean_inc(x_415); -x_418 = l_Lean_Syntax_isOfKind(x_415, x_417); -lean_dec(x_417); -if (x_418 == 0) -{ -lean_object* x_419; lean_object* x_420; uint8_t x_421; -x_419 = l_Lean_Parser_Term_doIfLetBind___elambda__1___closed__1; +x_388 = lean_name_mk_string(x_2, x_387); +x_389 = l_Lean_Syntax_getHeadInfo(x_4); +x_390 = l_myMacro____x40_Init_Notation___hyg_13954____closed__1; +x_391 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_391, 0, x_389); +lean_ctor_set(x_391, 1, x_390); +lean_inc(x_5); +x_392 = lean_array_push(x_5, x_391); +x_393 = l_myMacro____x40_Init_Notation___hyg_13954____closed__3; lean_inc(x_2); -x_420 = lean_name_mk_string(x_2, x_419); -lean_inc(x_415); -x_421 = l_Lean_Syntax_isOfKind(x_415, x_420); -lean_dec(x_420); -if (x_421 == 0) -{ -lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; uint8_t x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; -lean_dec(x_415); -lean_dec(x_413); -lean_dec(x_2); -x_422 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(x_385, x_13); -lean_dec(x_385); -x_423 = lean_ctor_get(x_422, 0); -lean_inc(x_423); -x_424 = lean_ctor_get(x_422, 1); -lean_inc(x_424); -if (lean_is_exclusive(x_422)) { - lean_ctor_release(x_422, 0); - lean_ctor_release(x_422, 1); - x_425 = x_422; -} else { - lean_dec_ref(x_422); - x_425 = lean_box(0); -} -x_426 = l_Lean_Syntax_getHeadInfo(x_3); -x_427 = l_Lean_Parser_Term_notFollowedByRedefinedTermToken___elambda__1___closed__43; -x_428 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_428, 0, x_426); +x_394 = lean_name_mk_string(x_2, x_393); +lean_inc(x_6); +lean_inc(x_5); +x_395 = lean_array_push(x_5, x_6); +x_396 = lean_array_push(x_395, x_325); +x_397 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_397, 0, x_394); +lean_ctor_set(x_397, 1, x_396); +lean_inc(x_5); +x_398 = lean_array_push(x_5, x_397); +lean_inc(x_8); +x_399 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_399, 0, x_8); +lean_ctor_set(x_399, 1, x_398); +x_400 = lean_array_push(x_392, x_399); +x_401 = lean_array_push(x_400, x_6); +x_402 = l_myMacro____x40_Init_Notation___hyg_13954____closed__6; +lean_inc(x_385); +x_403 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_403, 0, x_385); +lean_ctor_set(x_403, 1, x_402); +x_404 = lean_array_push(x_401, x_403); +x_405 = l_myMacro____x40_Init_Notation___hyg_13954____closed__7; +lean_inc(x_2); +x_406 = lean_name_mk_string(x_2, x_405); +x_407 = l_myMacro____x40_Init_Notation___hyg_13954____closed__9; +lean_inc(x_2); +x_408 = lean_name_mk_string(x_2, x_407); +x_409 = l_myMacro____x40_Init_Notation___hyg_13954____closed__11; +lean_inc(x_385); +x_410 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_410, 0, x_385); +lean_ctor_set(x_410, 1, x_409); +lean_inc(x_5); +x_411 = lean_array_push(x_5, x_410); +lean_inc(x_5); +x_412 = lean_array_push(x_5, x_127); +lean_inc(x_8); +x_413 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_413, 0, x_8); +lean_ctor_set(x_413, 1, x_412); +lean_inc(x_411); +x_414 = lean_array_push(x_411, x_413); +x_415 = l_myMacro____x40_Init_Notation___hyg_13352____closed__13; +lean_inc(x_385); +x_416 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_416, 0, x_385); +lean_ctor_set(x_416, 1, x_415); +lean_inc(x_416); +x_417 = lean_array_push(x_414, x_416); +x_418 = lean_array_push(x_417, x_7); +lean_inc(x_408); +x_419 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_419, 0, x_408); +lean_ctor_set(x_419, 1, x_418); +lean_inc(x_5); +x_420 = lean_array_push(x_5, x_419); +x_421 = l_myMacro____x40_Init_Notation___hyg_13954____closed__12; +x_422 = lean_name_mk_string(x_2, x_421); +x_423 = l_myMacro____x40_Init_Notation___hyg_13954____closed__14; +x_424 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_424, 0, x_385); +lean_ctor_set(x_424, 1, x_423); +lean_inc(x_5); +x_425 = lean_array_push(x_5, x_424); +x_426 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_426, 0, x_422); +lean_ctor_set(x_426, 1, x_425); +lean_inc(x_5); +x_427 = lean_array_push(x_5, x_426); +lean_inc(x_8); +x_428 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_428, 0, x_8); lean_ctor_set(x_428, 1, x_427); -lean_inc(x_4); -x_429 = lean_array_push(x_4, x_428); -x_430 = lean_array_push(x_429, x_1); -x_431 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___lambda__1___closed__1; -lean_inc(x_423); -x_432 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_432, 0, x_423); +x_429 = lean_array_push(x_411, x_428); +x_430 = lean_array_push(x_429, x_416); +x_431 = lean_array_push(x_430, x_12); +x_432 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_432, 0, x_408); lean_ctor_set(x_432, 1, x_431); -x_433 = lean_array_push(x_430, x_432); -x_434 = lean_array_push(x_433, x_5); -x_435 = lean_array_push(x_434, x_6); -x_436 = l_termDepIfThenElse___closed__24; -x_437 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_437, 0, x_423); -lean_ctor_set(x_437, 1, x_436); -x_438 = lean_array_push(x_4, x_437); -x_439 = lean_array_push(x_438, x_11); -x_440 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_440, 0, x_7); -lean_ctor_set(x_440, 1, x_439); -x_441 = lean_array_push(x_435, x_440); -x_442 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_442, 0, x_8); -lean_ctor_set(x_442, 1, x_441); -x_443 = 0; -x_444 = lean_box(x_443); -x_445 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_445, 0, x_444); -lean_ctor_set(x_445, 1, x_442); -x_446 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_446, 0, x_445); -if (lean_is_scalar(x_425)) { - x_447 = lean_alloc_ctor(0, 2, 0); -} else { - x_447 = x_425; +x_433 = lean_array_push(x_420, x_432); +x_434 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_434, 0, x_8); +lean_ctor_set(x_434, 1, x_433); +x_435 = lean_array_push(x_5, x_434); +x_436 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_436, 0, x_406); +lean_ctor_set(x_436, 1, x_435); +x_437 = lean_array_push(x_404, x_436); +x_438 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_438, 0, x_388); +lean_ctor_set(x_438, 1, x_437); +x_439 = 0; +x_440 = lean_box(x_439); +x_441 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_441, 0, x_440); +lean_ctor_set(x_441, 1, x_438); +x_442 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_442, 0, x_441); +x_443 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_443, 0, x_442); +lean_ctor_set(x_443, 1, x_386); +return x_443; +} +} } -lean_ctor_set(x_447, 0, x_446); -lean_ctor_set(x_447, 1, x_424); -return x_447; } else { -lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; uint8_t x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; -lean_dec(x_8); +lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; +x_444 = lean_ctor_get(x_13, 0); +x_445 = lean_ctor_get(x_13, 1); +x_446 = lean_ctor_get(x_13, 2); +x_447 = lean_ctor_get(x_13, 3); +x_448 = lean_ctor_get(x_13, 4); +x_449 = lean_ctor_get(x_13, 5); +lean_inc(x_449); +lean_inc(x_448); +lean_inc(x_447); +lean_inc(x_446); +lean_inc(x_445); +lean_inc(x_444); +lean_dec(x_13); +x_450 = l_Lean_replaceRef(x_1, x_449); +lean_dec(x_449); +x_451 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_451, 0, x_444); +lean_ctor_set(x_451, 1, x_445); +lean_ctor_set(x_451, 2, x_446); +lean_ctor_set(x_451, 3, x_447); +lean_ctor_set(x_451, 4, x_448); +lean_ctor_set(x_451, 5, x_450); +if (x_17 == 0) +{ +uint8_t x_452; +lean_dec(x_2); +lean_inc(x_1); +x_452 = l_Lean_Syntax_isOfKind(x_1, x_3); +if (x_452 == 0) +{ +lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; uint8_t x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_dec(x_1); -x_448 = l_Lean_Syntax_getArg(x_415, x_412); -lean_dec(x_415); -x_449 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(x_385, x_13); -lean_dec(x_385); -x_450 = lean_ctor_get(x_449, 0); -lean_inc(x_450); -x_451 = lean_ctor_get(x_449, 1); -lean_inc(x_451); -if (lean_is_exclusive(x_449)) { - lean_ctor_release(x_449, 0); - lean_ctor_release(x_449, 1); - x_452 = x_449; +x_453 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(x_451, x_14); +lean_dec(x_451); +x_454 = lean_ctor_get(x_453, 0); +lean_inc(x_454); +x_455 = lean_ctor_get(x_453, 1); +lean_inc(x_455); +if (lean_is_exclusive(x_453)) { + lean_ctor_release(x_453, 0); + lean_ctor_release(x_453, 1); + x_456 = x_453; } else { - lean_dec_ref(x_449); - x_452 = lean_box(0); + lean_dec_ref(x_453); + x_456 = lean_box(0); } -x_453 = l_Lean_Parser_Term_doMatch___elambda__1___closed__1; -lean_inc(x_2); -x_454 = lean_name_mk_string(x_2, x_453); -x_455 = l_Lean_Syntax_getHeadInfo(x_3); -x_456 = l_myMacro____x40_Init_Notation___hyg_13954____closed__1; -x_457 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_457, 0, x_455); -lean_ctor_set(x_457, 1, x_456); -lean_inc(x_4); -x_458 = lean_array_push(x_4, x_457); -x_459 = l_myMacro____x40_Init_Notation___hyg_13954____closed__3; -lean_inc(x_2); -x_460 = lean_name_mk_string(x_2, x_459); +x_457 = l_Lean_Syntax_getHeadInfo(x_4); +x_458 = l_Lean_Parser_Term_notFollowedByRedefinedTermToken___elambda__1___closed__43; +x_459 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_459, 0, x_457); +lean_ctor_set(x_459, 1, x_458); +lean_inc(x_5); +x_460 = lean_array_push(x_5, x_459); lean_inc(x_6); -lean_inc(x_4); -x_461 = lean_array_push(x_4, x_6); -x_462 = l_Lean_Parser_Term_liftMethod___elambda__1___closed__1; -lean_inc(x_2); -x_463 = lean_name_mk_string(x_2, x_462); -x_464 = l_Lean_Parser_Tactic_rwRule___closed__3; -lean_inc(x_450); -x_465 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_465, 0, x_450); -lean_ctor_set(x_465, 1, x_464); -lean_inc(x_4); -x_466 = lean_array_push(x_4, x_465); -x_467 = lean_array_push(x_466, x_448); -x_468 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_468, 0, x_463); -lean_ctor_set(x_468, 1, x_467); -x_469 = lean_array_push(x_461, x_468); -x_470 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_470, 0, x_460); -lean_ctor_set(x_470, 1, x_469); -lean_inc(x_4); -x_471 = lean_array_push(x_4, x_470); -lean_inc(x_7); -x_472 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_472, 0, x_7); +lean_inc(x_5); +x_461 = lean_array_push(x_5, x_6); +x_462 = lean_box(0); +x_463 = lean_array_push(x_461, x_462); +x_464 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_464, 0, x_3); +lean_ctor_set(x_464, 1, x_463); +x_465 = lean_array_push(x_460, x_464); +x_466 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___lambda__1___closed__1; +lean_inc(x_454); +x_467 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_467, 0, x_454); +lean_ctor_set(x_467, 1, x_466); +x_468 = lean_array_push(x_465, x_467); +x_469 = lean_array_push(x_468, x_7); +x_470 = lean_array_push(x_469, x_6); +x_471 = l_termDepIfThenElse___closed__24; +x_472 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_472, 0, x_454); lean_ctor_set(x_472, 1, x_471); -x_473 = lean_array_push(x_458, x_472); -x_474 = lean_array_push(x_473, x_6); -x_475 = l_myMacro____x40_Init_Notation___hyg_13954____closed__6; -lean_inc(x_450); -x_476 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_476, 0, x_450); -lean_ctor_set(x_476, 1, x_475); -x_477 = lean_array_push(x_474, x_476); -x_478 = l_myMacro____x40_Init_Notation___hyg_13954____closed__7; -lean_inc(x_2); -x_479 = lean_name_mk_string(x_2, x_478); -x_480 = l_myMacro____x40_Init_Notation___hyg_13954____closed__9; -lean_inc(x_2); -x_481 = lean_name_mk_string(x_2, x_480); -x_482 = l_myMacro____x40_Init_Notation___hyg_13954____closed__11; -lean_inc(x_450); -x_483 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_483, 0, x_450); -lean_ctor_set(x_483, 1, x_482); -lean_inc(x_4); -x_484 = lean_array_push(x_4, x_483); -lean_inc(x_4); -x_485 = lean_array_push(x_4, x_413); -lean_inc(x_7); -x_486 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_486, 0, x_7); -lean_ctor_set(x_486, 1, x_485); +x_473 = lean_array_push(x_5, x_472); +x_474 = lean_array_push(x_473, x_12); +x_475 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_475, 0, x_8); +lean_ctor_set(x_475, 1, x_474); +x_476 = lean_array_push(x_470, x_475); +x_477 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_477, 0, x_9); +lean_ctor_set(x_477, 1, x_476); +x_478 = 0; +x_479 = lean_box(x_478); +x_480 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_480, 0, x_479); +lean_ctor_set(x_480, 1, x_477); +x_481 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_481, 0, x_480); +if (lean_is_scalar(x_456)) { + x_482 = lean_alloc_ctor(0, 2, 0); +} else { + x_482 = x_456; +} +lean_ctor_set(x_482, 0, x_481); +lean_ctor_set(x_482, 1, x_455); +return x_482; +} +else +{ +lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; uint8_t x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; +lean_dec(x_3); +x_483 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(x_451, x_14); +lean_dec(x_451); +x_484 = lean_ctor_get(x_483, 0); lean_inc(x_484); -x_487 = lean_array_push(x_484, x_486); -x_488 = l_myMacro____x40_Init_Notation___hyg_13352____closed__13; -lean_inc(x_450); +x_485 = lean_ctor_get(x_483, 1); +lean_inc(x_485); +if (lean_is_exclusive(x_483)) { + lean_ctor_release(x_483, 0); + lean_ctor_release(x_483, 1); + x_486 = x_483; +} else { + lean_dec_ref(x_483); + x_486 = lean_box(0); +} +x_487 = l_Lean_Syntax_getHeadInfo(x_4); +x_488 = l_Lean_Parser_Term_notFollowedByRedefinedTermToken___elambda__1___closed__43; x_489 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_489, 0, x_450); +lean_ctor_set(x_489, 0, x_487); lean_ctor_set(x_489, 1, x_488); -lean_inc(x_489); -x_490 = lean_array_push(x_487, x_489); -x_491 = lean_array_push(x_490, x_5); -lean_inc(x_481); -x_492 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_492, 0, x_481); -lean_ctor_set(x_492, 1, x_491); -lean_inc(x_4); -x_493 = lean_array_push(x_4, x_492); -x_494 = l_myMacro____x40_Init_Notation___hyg_13954____closed__12; -x_495 = lean_name_mk_string(x_2, x_494); -x_496 = l_myMacro____x40_Init_Notation___hyg_13954____closed__14; -x_497 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_497, 0, x_450); -lean_ctor_set(x_497, 1, x_496); -lean_inc(x_4); -x_498 = lean_array_push(x_4, x_497); -x_499 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_499, 0, x_495); -lean_ctor_set(x_499, 1, x_498); -lean_inc(x_4); -x_500 = lean_array_push(x_4, x_499); -lean_inc(x_7); +lean_inc(x_5); +x_490 = lean_array_push(x_5, x_489); +x_491 = lean_array_push(x_490, x_1); +x_492 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___lambda__1___closed__1; +lean_inc(x_484); +x_493 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_493, 0, x_484); +lean_ctor_set(x_493, 1, x_492); +x_494 = lean_array_push(x_491, x_493); +x_495 = lean_array_push(x_494, x_7); +x_496 = lean_array_push(x_495, x_6); +x_497 = l_termDepIfThenElse___closed__24; +x_498 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_498, 0, x_484); +lean_ctor_set(x_498, 1, x_497); +x_499 = lean_array_push(x_5, x_498); +x_500 = lean_array_push(x_499, x_12); x_501 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_501, 0, x_7); +lean_ctor_set(x_501, 0, x_8); lean_ctor_set(x_501, 1, x_500); -x_502 = lean_array_push(x_484, x_501); -x_503 = lean_array_push(x_502, x_489); -x_504 = lean_array_push(x_503, x_11); -x_505 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_505, 0, x_481); -lean_ctor_set(x_505, 1, x_504); -x_506 = lean_array_push(x_493, x_505); -x_507 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_507, 0, x_7); -lean_ctor_set(x_507, 1, x_506); -x_508 = lean_array_push(x_4, x_507); -x_509 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_509, 0, x_479); -lean_ctor_set(x_509, 1, x_508); -x_510 = lean_array_push(x_477, x_509); -x_511 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_511, 0, x_454); -lean_ctor_set(x_511, 1, x_510); -x_512 = 0; -x_513 = lean_box(x_512); -x_514 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_514, 0, x_513); -lean_ctor_set(x_514, 1, x_511); -x_515 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_515, 0, x_514); -if (lean_is_scalar(x_452)) { - x_516 = lean_alloc_ctor(0, 2, 0); +x_502 = lean_array_push(x_496, x_501); +x_503 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_503, 0, x_9); +lean_ctor_set(x_503, 1, x_502); +x_504 = 0; +x_505 = lean_box(x_504); +x_506 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_506, 0, x_505); +lean_ctor_set(x_506, 1, x_503); +x_507 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_507, 0, x_506); +if (lean_is_scalar(x_486)) { + x_508 = lean_alloc_ctor(0, 2, 0); } else { - x_516 = x_452; + x_508 = x_486; } -lean_ctor_set(x_516, 0, x_515); -lean_ctor_set(x_516, 1, x_451); -return x_516; +lean_ctor_set(x_508, 0, x_507); +lean_ctor_set(x_508, 1, x_485); +return x_508; } } else { -lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; uint8_t x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; -lean_dec(x_8); +lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; uint8_t x_515; +x_509 = lean_unsigned_to_nat(1u); +x_510 = l_Lean_Syntax_getArg(x_1, x_509); +x_511 = lean_unsigned_to_nat(2u); +x_512 = l_Lean_Syntax_getArg(x_1, x_511); lean_dec(x_1); -x_517 = l_Lean_Syntax_getArg(x_415, x_412); -lean_dec(x_415); -x_518 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(x_385, x_13); -lean_dec(x_385); -x_519 = lean_ctor_get(x_518, 0); -lean_inc(x_519); -x_520 = lean_ctor_get(x_518, 1); +x_513 = l_Lean_Parser_Term_doIfLetPure___elambda__1___closed__1; +lean_inc(x_2); +x_514 = lean_name_mk_string(x_2, x_513); +lean_inc(x_512); +x_515 = l_Lean_Syntax_isOfKind(x_512, x_514); +lean_dec(x_514); +if (x_515 == 0) +{ +lean_object* x_516; lean_object* x_517; uint8_t x_518; +x_516 = l_Lean_Parser_Term_doIfLetBind___elambda__1___closed__1; +lean_inc(x_2); +x_517 = lean_name_mk_string(x_2, x_516); +lean_inc(x_512); +x_518 = l_Lean_Syntax_isOfKind(x_512, x_517); +lean_dec(x_517); +if (x_518 == 0) +{ +lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; uint8_t x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; +lean_dec(x_512); +lean_dec(x_510); +lean_dec(x_2); +x_519 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(x_451, x_14); +lean_dec(x_451); +x_520 = lean_ctor_get(x_519, 0); lean_inc(x_520); -if (lean_is_exclusive(x_518)) { - lean_ctor_release(x_518, 0); - lean_ctor_release(x_518, 1); - x_521 = x_518; +x_521 = lean_ctor_get(x_519, 1); +lean_inc(x_521); +if (lean_is_exclusive(x_519)) { + lean_ctor_release(x_519, 0); + lean_ctor_release(x_519, 1); + x_522 = x_519; } else { - lean_dec_ref(x_518); - x_521 = lean_box(0); + lean_dec_ref(x_519); + x_522 = lean_box(0); } -x_522 = l_Lean_Parser_Term_doMatch___elambda__1___closed__1; -lean_inc(x_2); -x_523 = lean_name_mk_string(x_2, x_522); -x_524 = l_Lean_Syntax_getHeadInfo(x_3); -x_525 = l_myMacro____x40_Init_Notation___hyg_13954____closed__1; -x_526 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_526, 0, x_524); -lean_ctor_set(x_526, 1, x_525); -lean_inc(x_4); -x_527 = lean_array_push(x_4, x_526); -x_528 = l_myMacro____x40_Init_Notation___hyg_13954____closed__3; -lean_inc(x_2); -x_529 = lean_name_mk_string(x_2, x_528); +x_523 = l_Lean_Syntax_getHeadInfo(x_4); +x_524 = l_Lean_Parser_Term_notFollowedByRedefinedTermToken___elambda__1___closed__43; +x_525 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_525, 0, x_523); +lean_ctor_set(x_525, 1, x_524); +lean_inc(x_5); +x_526 = lean_array_push(x_5, x_525); lean_inc(x_6); -lean_inc(x_4); -x_530 = lean_array_push(x_4, x_6); -x_531 = lean_array_push(x_530, x_517); -x_532 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_532, 0, x_529); -lean_ctor_set(x_532, 1, x_531); -lean_inc(x_4); -x_533 = lean_array_push(x_4, x_532); -lean_inc(x_7); -x_534 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_534, 0, x_7); -lean_ctor_set(x_534, 1, x_533); -x_535 = lean_array_push(x_527, x_534); +lean_inc(x_5); +x_527 = lean_array_push(x_5, x_6); +x_528 = lean_box(0); +x_529 = lean_array_push(x_527, x_528); +x_530 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_530, 0, x_3); +lean_ctor_set(x_530, 1, x_529); +x_531 = lean_array_push(x_526, x_530); +x_532 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___lambda__1___closed__1; +lean_inc(x_520); +x_533 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_533, 0, x_520); +lean_ctor_set(x_533, 1, x_532); +x_534 = lean_array_push(x_531, x_533); +x_535 = lean_array_push(x_534, x_7); x_536 = lean_array_push(x_535, x_6); -x_537 = l_myMacro____x40_Init_Notation___hyg_13954____closed__6; -lean_inc(x_519); +x_537 = l_termDepIfThenElse___closed__24; x_538 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_538, 0, x_519); +lean_ctor_set(x_538, 0, x_520); lean_ctor_set(x_538, 1, x_537); -x_539 = lean_array_push(x_536, x_538); -x_540 = l_myMacro____x40_Init_Notation___hyg_13954____closed__7; -lean_inc(x_2); -x_541 = lean_name_mk_string(x_2, x_540); -x_542 = l_myMacro____x40_Init_Notation___hyg_13954____closed__9; -lean_inc(x_2); -x_543 = lean_name_mk_string(x_2, x_542); -x_544 = l_myMacro____x40_Init_Notation___hyg_13954____closed__11; -lean_inc(x_519); -x_545 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_545, 0, x_519); -lean_ctor_set(x_545, 1, x_544); -lean_inc(x_4); -x_546 = lean_array_push(x_4, x_545); -lean_inc(x_4); -x_547 = lean_array_push(x_4, x_413); -lean_inc(x_7); -x_548 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_548, 0, x_7); -lean_ctor_set(x_548, 1, x_547); -lean_inc(x_546); -x_549 = lean_array_push(x_546, x_548); -x_550 = l_myMacro____x40_Init_Notation___hyg_13352____closed__13; -lean_inc(x_519); -x_551 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_551, 0, x_519); -lean_ctor_set(x_551, 1, x_550); -lean_inc(x_551); -x_552 = lean_array_push(x_549, x_551); -x_553 = lean_array_push(x_552, x_5); -lean_inc(x_543); -x_554 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_554, 0, x_543); -lean_ctor_set(x_554, 1, x_553); -lean_inc(x_4); -x_555 = lean_array_push(x_4, x_554); -x_556 = l_myMacro____x40_Init_Notation___hyg_13954____closed__12; -x_557 = lean_name_mk_string(x_2, x_556); -x_558 = l_myMacro____x40_Init_Notation___hyg_13954____closed__14; -x_559 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_559, 0, x_519); -lean_ctor_set(x_559, 1, x_558); -lean_inc(x_4); -x_560 = lean_array_push(x_4, x_559); -x_561 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_561, 0, x_557); -lean_ctor_set(x_561, 1, x_560); -lean_inc(x_4); -x_562 = lean_array_push(x_4, x_561); -lean_inc(x_7); -x_563 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_563, 0, x_7); -lean_ctor_set(x_563, 1, x_562); -x_564 = lean_array_push(x_546, x_563); -x_565 = lean_array_push(x_564, x_551); -x_566 = lean_array_push(x_565, x_11); -x_567 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_567, 0, x_543); -lean_ctor_set(x_567, 1, x_566); -x_568 = lean_array_push(x_555, x_567); -x_569 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_569, 0, x_7); -lean_ctor_set(x_569, 1, x_568); -x_570 = lean_array_push(x_4, x_569); -x_571 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_571, 0, x_541); -lean_ctor_set(x_571, 1, x_570); -x_572 = lean_array_push(x_539, x_571); -x_573 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_573, 0, x_523); -lean_ctor_set(x_573, 1, x_572); -x_574 = 0; -x_575 = lean_box(x_574); -x_576 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_576, 0, x_575); -lean_ctor_set(x_576, 1, x_573); -x_577 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_577, 0, x_576); -if (lean_is_scalar(x_521)) { - x_578 = lean_alloc_ctor(0, 2, 0); +x_539 = lean_array_push(x_5, x_538); +x_540 = lean_array_push(x_539, x_12); +x_541 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_541, 0, x_8); +lean_ctor_set(x_541, 1, x_540); +x_542 = lean_array_push(x_536, x_541); +x_543 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_543, 0, x_9); +lean_ctor_set(x_543, 1, x_542); +x_544 = 0; +x_545 = lean_box(x_544); +x_546 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_546, 0, x_545); +lean_ctor_set(x_546, 1, x_543); +x_547 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_547, 0, x_546); +if (lean_is_scalar(x_522)) { + x_548 = lean_alloc_ctor(0, 2, 0); } else { - x_578 = x_521; + x_548 = x_522; } -lean_ctor_set(x_578, 0, x_577); -lean_ctor_set(x_578, 1, x_520); -return x_578; +lean_ctor_set(x_548, 0, x_547); +lean_ctor_set(x_548, 1, x_521); +return x_548; +} +else +{ +lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; uint8_t x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; +lean_dec(x_9); +lean_dec(x_3); +x_549 = l_Lean_Syntax_getArg(x_512, x_509); +lean_dec(x_512); +x_550 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(x_451, x_14); +lean_dec(x_451); +x_551 = lean_ctor_get(x_550, 0); +lean_inc(x_551); +x_552 = lean_ctor_get(x_550, 1); +lean_inc(x_552); +if (lean_is_exclusive(x_550)) { + lean_ctor_release(x_550, 0); + lean_ctor_release(x_550, 1); + x_553 = x_550; +} else { + lean_dec_ref(x_550); + x_553 = lean_box(0); +} +x_554 = l_Lean_Parser_Term_doMatch___elambda__1___closed__1; +lean_inc(x_2); +x_555 = lean_name_mk_string(x_2, x_554); +x_556 = l_Lean_Syntax_getHeadInfo(x_4); +x_557 = l_myMacro____x40_Init_Notation___hyg_13954____closed__1; +x_558 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_558, 0, x_556); +lean_ctor_set(x_558, 1, x_557); +lean_inc(x_5); +x_559 = lean_array_push(x_5, x_558); +x_560 = l_myMacro____x40_Init_Notation___hyg_13954____closed__3; +lean_inc(x_2); +x_561 = lean_name_mk_string(x_2, x_560); +lean_inc(x_6); +lean_inc(x_5); +x_562 = lean_array_push(x_5, x_6); +x_563 = l_Lean_Parser_Term_liftMethod___elambda__1___closed__1; +lean_inc(x_2); +x_564 = lean_name_mk_string(x_2, x_563); +x_565 = l_Lean_Parser_Tactic_rwRule___closed__3; +lean_inc(x_551); +x_566 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_566, 0, x_551); +lean_ctor_set(x_566, 1, x_565); +lean_inc(x_5); +x_567 = lean_array_push(x_5, x_566); +x_568 = lean_array_push(x_567, x_549); +x_569 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_569, 0, x_564); +lean_ctor_set(x_569, 1, x_568); +x_570 = lean_array_push(x_562, x_569); +x_571 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_571, 0, x_561); +lean_ctor_set(x_571, 1, x_570); +lean_inc(x_5); +x_572 = lean_array_push(x_5, x_571); +lean_inc(x_8); +x_573 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_573, 0, x_8); +lean_ctor_set(x_573, 1, x_572); +x_574 = lean_array_push(x_559, x_573); +x_575 = lean_array_push(x_574, x_6); +x_576 = l_myMacro____x40_Init_Notation___hyg_13954____closed__6; +lean_inc(x_551); +x_577 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_577, 0, x_551); +lean_ctor_set(x_577, 1, x_576); +x_578 = lean_array_push(x_575, x_577); +x_579 = l_myMacro____x40_Init_Notation___hyg_13954____closed__7; +lean_inc(x_2); +x_580 = lean_name_mk_string(x_2, x_579); +x_581 = l_myMacro____x40_Init_Notation___hyg_13954____closed__9; +lean_inc(x_2); +x_582 = lean_name_mk_string(x_2, x_581); +x_583 = l_myMacro____x40_Init_Notation___hyg_13954____closed__11; +lean_inc(x_551); +x_584 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_584, 0, x_551); +lean_ctor_set(x_584, 1, x_583); +lean_inc(x_5); +x_585 = lean_array_push(x_5, x_584); +lean_inc(x_5); +x_586 = lean_array_push(x_5, x_510); +lean_inc(x_8); +x_587 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_587, 0, x_8); +lean_ctor_set(x_587, 1, x_586); +lean_inc(x_585); +x_588 = lean_array_push(x_585, x_587); +x_589 = l_myMacro____x40_Init_Notation___hyg_13352____closed__13; +lean_inc(x_551); +x_590 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_590, 0, x_551); +lean_ctor_set(x_590, 1, x_589); +lean_inc(x_590); +x_591 = lean_array_push(x_588, x_590); +x_592 = lean_array_push(x_591, x_7); +lean_inc(x_582); +x_593 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_593, 0, x_582); +lean_ctor_set(x_593, 1, x_592); +lean_inc(x_5); +x_594 = lean_array_push(x_5, x_593); +x_595 = l_myMacro____x40_Init_Notation___hyg_13954____closed__12; +x_596 = lean_name_mk_string(x_2, x_595); +x_597 = l_myMacro____x40_Init_Notation___hyg_13954____closed__14; +x_598 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_598, 0, x_551); +lean_ctor_set(x_598, 1, x_597); +lean_inc(x_5); +x_599 = lean_array_push(x_5, x_598); +x_600 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_600, 0, x_596); +lean_ctor_set(x_600, 1, x_599); +lean_inc(x_5); +x_601 = lean_array_push(x_5, x_600); +lean_inc(x_8); +x_602 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_602, 0, x_8); +lean_ctor_set(x_602, 1, x_601); +x_603 = lean_array_push(x_585, x_602); +x_604 = lean_array_push(x_603, x_590); +x_605 = lean_array_push(x_604, x_12); +x_606 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_606, 0, x_582); +lean_ctor_set(x_606, 1, x_605); +x_607 = lean_array_push(x_594, x_606); +x_608 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_608, 0, x_8); +lean_ctor_set(x_608, 1, x_607); +x_609 = lean_array_push(x_5, x_608); +x_610 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_610, 0, x_580); +lean_ctor_set(x_610, 1, x_609); +x_611 = lean_array_push(x_578, x_610); +x_612 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_612, 0, x_555); +lean_ctor_set(x_612, 1, x_611); +x_613 = 0; +x_614 = lean_box(x_613); +x_615 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_615, 0, x_614); +lean_ctor_set(x_615, 1, x_612); +x_616 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_616, 0, x_615); +if (lean_is_scalar(x_553)) { + x_617 = lean_alloc_ctor(0, 2, 0); +} else { + x_617 = x_553; +} +lean_ctor_set(x_617, 0, x_616); +lean_ctor_set(x_617, 1, x_552); +return x_617; +} +} +else +{ +lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; uint8_t x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; +lean_dec(x_9); +lean_dec(x_3); +x_618 = l_Lean_Syntax_getArg(x_512, x_509); +lean_dec(x_512); +x_619 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(x_451, x_14); +lean_dec(x_451); +x_620 = lean_ctor_get(x_619, 0); +lean_inc(x_620); +x_621 = lean_ctor_get(x_619, 1); +lean_inc(x_621); +if (lean_is_exclusive(x_619)) { + lean_ctor_release(x_619, 0); + lean_ctor_release(x_619, 1); + x_622 = x_619; +} else { + lean_dec_ref(x_619); + x_622 = lean_box(0); +} +x_623 = l_Lean_Parser_Term_doMatch___elambda__1___closed__1; +lean_inc(x_2); +x_624 = lean_name_mk_string(x_2, x_623); +x_625 = l_Lean_Syntax_getHeadInfo(x_4); +x_626 = l_myMacro____x40_Init_Notation___hyg_13954____closed__1; +x_627 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_627, 0, x_625); +lean_ctor_set(x_627, 1, x_626); +lean_inc(x_5); +x_628 = lean_array_push(x_5, x_627); +x_629 = l_myMacro____x40_Init_Notation___hyg_13954____closed__3; +lean_inc(x_2); +x_630 = lean_name_mk_string(x_2, x_629); +lean_inc(x_6); +lean_inc(x_5); +x_631 = lean_array_push(x_5, x_6); +x_632 = lean_array_push(x_631, x_618); +x_633 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_633, 0, x_630); +lean_ctor_set(x_633, 1, x_632); +lean_inc(x_5); +x_634 = lean_array_push(x_5, x_633); +lean_inc(x_8); +x_635 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_635, 0, x_8); +lean_ctor_set(x_635, 1, x_634); +x_636 = lean_array_push(x_628, x_635); +x_637 = lean_array_push(x_636, x_6); +x_638 = l_myMacro____x40_Init_Notation___hyg_13954____closed__6; +lean_inc(x_620); +x_639 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_639, 0, x_620); +lean_ctor_set(x_639, 1, x_638); +x_640 = lean_array_push(x_637, x_639); +x_641 = l_myMacro____x40_Init_Notation___hyg_13954____closed__7; +lean_inc(x_2); +x_642 = lean_name_mk_string(x_2, x_641); +x_643 = l_myMacro____x40_Init_Notation___hyg_13954____closed__9; +lean_inc(x_2); +x_644 = lean_name_mk_string(x_2, x_643); +x_645 = l_myMacro____x40_Init_Notation___hyg_13954____closed__11; +lean_inc(x_620); +x_646 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_646, 0, x_620); +lean_ctor_set(x_646, 1, x_645); +lean_inc(x_5); +x_647 = lean_array_push(x_5, x_646); +lean_inc(x_5); +x_648 = lean_array_push(x_5, x_510); +lean_inc(x_8); +x_649 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_649, 0, x_8); +lean_ctor_set(x_649, 1, x_648); +lean_inc(x_647); +x_650 = lean_array_push(x_647, x_649); +x_651 = l_myMacro____x40_Init_Notation___hyg_13352____closed__13; +lean_inc(x_620); +x_652 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_652, 0, x_620); +lean_ctor_set(x_652, 1, x_651); +lean_inc(x_652); +x_653 = lean_array_push(x_650, x_652); +x_654 = lean_array_push(x_653, x_7); +lean_inc(x_644); +x_655 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_655, 0, x_644); +lean_ctor_set(x_655, 1, x_654); +lean_inc(x_5); +x_656 = lean_array_push(x_5, x_655); +x_657 = l_myMacro____x40_Init_Notation___hyg_13954____closed__12; +x_658 = lean_name_mk_string(x_2, x_657); +x_659 = l_myMacro____x40_Init_Notation___hyg_13954____closed__14; +x_660 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_660, 0, x_620); +lean_ctor_set(x_660, 1, x_659); +lean_inc(x_5); +x_661 = lean_array_push(x_5, x_660); +x_662 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_662, 0, x_658); +lean_ctor_set(x_662, 1, x_661); +lean_inc(x_5); +x_663 = lean_array_push(x_5, x_662); +lean_inc(x_8); +x_664 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_664, 0, x_8); +lean_ctor_set(x_664, 1, x_663); +x_665 = lean_array_push(x_647, x_664); +x_666 = lean_array_push(x_665, x_652); +x_667 = lean_array_push(x_666, x_12); +x_668 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_668, 0, x_644); +lean_ctor_set(x_668, 1, x_667); +x_669 = lean_array_push(x_656, x_668); +x_670 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_670, 0, x_8); +lean_ctor_set(x_670, 1, x_669); +x_671 = lean_array_push(x_5, x_670); +x_672 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_672, 0, x_642); +lean_ctor_set(x_672, 1, x_671); +x_673 = lean_array_push(x_640, x_672); +x_674 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_674, 0, x_624); +lean_ctor_set(x_674, 1, x_673); +x_675 = 0; +x_676 = lean_box(x_675); +x_677 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_677, 0, x_676); +lean_ctor_set(x_677, 1, x_674); +x_678 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_678, 0, x_677); +if (lean_is_scalar(x_622)) { + x_679 = lean_alloc_ctor(0, 2, 0); +} else { + x_679 = x_622; +} +lean_ctor_set(x_679, 0, x_678); +lean_ctor_set(x_679, 1, x_621); +return x_679; } } } } } -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6(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, size_t x_9, size_t x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6(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, size_t x_10, size_t x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { -uint8_t x_14; -x_14 = x_10 < x_9; -if (x_14 == 0) +uint8_t x_15; +x_15 = x_11 < x_10; +if (x_15 == 0) { -lean_object* x_15; -lean_dec(x_12); +lean_object* x_16; +lean_dec(x_13); +lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -18958,138 +19234,141 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_15 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_15, 0, x_11); -lean_ctor_set(x_15, 1, x_13); -return x_15; +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_12); +lean_ctor_set(x_16, 1, x_14); +return x_16; } else { -lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; -x_16 = lean_array_uget(x_8, x_10); -x_17 = lean_ctor_get(x_16, 1); -lean_inc(x_17); -x_18 = lean_ctor_get(x_11, 0); +lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; +x_17 = lean_array_uget(x_9, x_11); +x_18 = lean_ctor_get(x_17, 1); lean_inc(x_18); -x_19 = lean_unbox(x_18); -if (x_19 == 0) +x_19 = lean_ctor_get(x_12, 0); +lean_inc(x_19); +x_20 = lean_unbox(x_19); +if (x_20 == 0) { -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; uint8_t x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; size_t x_38; size_t x_39; -x_20 = lean_ctor_get(x_16, 0); -lean_inc(x_20); -lean_dec(x_16); +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; uint8_t x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; size_t x_39; size_t x_40; x_21 = lean_ctor_get(x_17, 0); lean_inc(x_21); -x_22 = lean_ctor_get(x_17, 1); -lean_inc(x_22); lean_dec(x_17); -x_23 = lean_ctor_get(x_11, 1); +x_22 = lean_ctor_get(x_18, 0); +lean_inc(x_22); +x_23 = lean_ctor_get(x_18, 1); lean_inc(x_23); -lean_dec(x_11); -x_24 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(x_12, x_13); -x_25 = lean_ctor_get(x_24, 1); -lean_inc(x_25); -lean_dec(x_24); -lean_inc(x_23); -lean_inc(x_4); -x_26 = lean_array_push(x_4, x_23); -lean_inc(x_7); -x_27 = lean_array_push(x_26, x_7); -lean_inc(x_6); -x_28 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_28, 0, x_6); -lean_ctor_set(x_28, 1, x_27); -lean_inc(x_4); -x_29 = lean_array_push(x_4, x_28); -lean_inc(x_5); -x_30 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_30, 0, x_5); -lean_ctor_set(x_30, 1, x_29); -lean_inc(x_4); -x_31 = lean_array_push(x_4, x_30); -lean_inc(x_3); -x_32 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_32, 0, x_3); -lean_ctor_set(x_32, 1, x_31); -x_33 = lean_unbox(x_18); lean_dec(x_18); -lean_inc(x_12); -lean_inc(x_2); +x_24 = lean_ctor_get(x_12, 1); +lean_inc(x_24); +lean_dec(x_12); +x_25 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(x_13, x_14); +x_26 = lean_ctor_get(x_25, 1); +lean_inc(x_26); +lean_dec(x_25); +lean_inc(x_24); lean_inc(x_5); +x_27 = lean_array_push(x_5, x_24); +lean_inc(x_8); +x_28 = lean_array_push(x_27, x_8); lean_inc(x_7); +x_29 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_29, 0, x_7); +lean_ctor_set(x_29, 1, x_28); +lean_inc(x_5); +x_30 = lean_array_push(x_5, x_29); +lean_inc(x_6); +x_31 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_31, 0, x_6); +lean_ctor_set(x_31, 1, x_30); +lean_inc(x_5); +x_32 = lean_array_push(x_5, x_31); lean_inc(x_4); +x_33 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_33, 0, x_4); +lean_ctor_set(x_33, 1, x_32); +x_34 = lean_unbox(x_19); +lean_dec(x_19); +lean_inc(x_13); +lean_inc(x_2); +lean_inc(x_6); +lean_inc(x_8); +lean_inc(x_5); +lean_inc(x_3); lean_inc(x_1); -x_34 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___lambda__1(x_21, x_1, x_20, x_4, x_22, x_7, x_5, x_2, x_33, x_23, x_32, x_12, x_25); -lean_dec(x_23); -lean_dec(x_20); -x_35 = lean_ctor_get(x_34, 0); -lean_inc(x_35); -x_36 = lean_ctor_get(x_34, 1); +x_35 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___lambda__1(x_22, x_1, x_3, x_21, x_5, x_8, x_23, x_6, x_2, x_34, x_24, x_33, x_13, x_26); +lean_dec(x_24); +lean_dec(x_21); +x_36 = lean_ctor_get(x_35, 0); lean_inc(x_36); -lean_dec(x_34); -x_37 = lean_ctor_get(x_35, 0); +x_37 = lean_ctor_get(x_35, 1); lean_inc(x_37); lean_dec(x_35); -x_38 = 1; -x_39 = x_10 + x_38; -x_10 = x_39; -x_11 = x_37; -x_13 = x_36; +x_38 = lean_ctor_get(x_36, 0); +lean_inc(x_38); +lean_dec(x_36); +x_39 = 1; +x_40 = x_11 + x_39; +x_11 = x_40; +x_12 = x_38; +x_14 = x_37; goto _start; } else { -lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; size_t x_50; size_t x_51; -x_41 = lean_ctor_get(x_16, 0); -lean_inc(x_41); -lean_dec(x_16); +lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; size_t x_51; size_t x_52; x_42 = lean_ctor_get(x_17, 0); lean_inc(x_42); -x_43 = lean_ctor_get(x_17, 1); -lean_inc(x_43); lean_dec(x_17); -x_44 = lean_ctor_get(x_11, 1); +x_43 = lean_ctor_get(x_18, 0); +lean_inc(x_43); +x_44 = lean_ctor_get(x_18, 1); lean_inc(x_44); -lean_dec(x_11); -x_45 = lean_unbox(x_18); lean_dec(x_18); -lean_inc(x_12); -lean_inc(x_44); +x_45 = lean_ctor_get(x_12, 1); +lean_inc(x_45); +lean_dec(x_12); +x_46 = lean_unbox(x_19); +lean_dec(x_19); +lean_inc(x_13); +lean_inc(x_45); lean_inc(x_2); +lean_inc(x_6); +lean_inc(x_8); lean_inc(x_5); -lean_inc(x_7); -lean_inc(x_4); +lean_inc(x_3); lean_inc(x_1); -x_46 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___lambda__1(x_42, x_1, x_41, x_4, x_43, x_7, x_5, x_2, x_45, x_44, x_44, x_12, x_13); -lean_dec(x_44); -lean_dec(x_41); -x_47 = lean_ctor_get(x_46, 0); -lean_inc(x_47); -x_48 = lean_ctor_get(x_46, 1); +x_47 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___lambda__1(x_43, x_1, x_3, x_42, x_5, x_8, x_44, x_6, x_2, x_46, x_45, x_45, x_13, x_14); +lean_dec(x_45); +lean_dec(x_42); +x_48 = lean_ctor_get(x_47, 0); lean_inc(x_48); -lean_dec(x_46); -x_49 = lean_ctor_get(x_47, 0); +x_49 = lean_ctor_get(x_47, 1); lean_inc(x_49); lean_dec(x_47); -x_50 = 1; -x_51 = x_10 + x_50; -x_10 = x_51; -x_11 = x_49; -x_13 = x_48; +x_50 = lean_ctor_get(x_48, 0); +lean_inc(x_50); +lean_dec(x_48); +x_51 = 1; +x_52 = x_11 + x_51; +x_11 = x_52; +x_12 = x_50; +x_14 = x_49; goto _start; } } } } -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__7(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, size_t x_9, size_t x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__7(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, size_t x_10, size_t x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { -uint8_t x_14; -x_14 = x_10 < x_9; -if (x_14 == 0) +uint8_t x_15; +x_15 = x_11 < x_10; +if (x_15 == 0) { -lean_object* x_15; -lean_dec(x_12); +lean_object* x_16; +lean_dec(x_13); +lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -19097,138 +19376,141 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_15 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_15, 0, x_11); -lean_ctor_set(x_15, 1, x_13); -return x_15; +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_12); +lean_ctor_set(x_16, 1, x_14); +return x_16; } else { -lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; -x_16 = lean_array_uget(x_8, x_10); -x_17 = lean_ctor_get(x_16, 1); -lean_inc(x_17); -x_18 = lean_ctor_get(x_11, 0); +lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; +x_17 = lean_array_uget(x_9, x_11); +x_18 = lean_ctor_get(x_17, 1); lean_inc(x_18); -x_19 = lean_unbox(x_18); -if (x_19 == 0) +x_19 = lean_ctor_get(x_12, 0); +lean_inc(x_19); +x_20 = lean_unbox(x_19); +if (x_20 == 0) { -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; uint8_t x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; size_t x_38; size_t x_39; -x_20 = lean_ctor_get(x_16, 0); -lean_inc(x_20); -lean_dec(x_16); +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; uint8_t x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; size_t x_39; size_t x_40; x_21 = lean_ctor_get(x_17, 0); lean_inc(x_21); -x_22 = lean_ctor_get(x_17, 1); -lean_inc(x_22); lean_dec(x_17); -x_23 = lean_ctor_get(x_11, 1); +x_22 = lean_ctor_get(x_18, 0); +lean_inc(x_22); +x_23 = lean_ctor_get(x_18, 1); lean_inc(x_23); -lean_dec(x_11); -x_24 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(x_12, x_13); -x_25 = lean_ctor_get(x_24, 1); -lean_inc(x_25); -lean_dec(x_24); -lean_inc(x_23); -lean_inc(x_4); -x_26 = lean_array_push(x_4, x_23); -lean_inc(x_7); -x_27 = lean_array_push(x_26, x_7); -lean_inc(x_6); -x_28 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_28, 0, x_6); -lean_ctor_set(x_28, 1, x_27); -lean_inc(x_4); -x_29 = lean_array_push(x_4, x_28); -lean_inc(x_5); -x_30 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_30, 0, x_5); -lean_ctor_set(x_30, 1, x_29); -lean_inc(x_4); -x_31 = lean_array_push(x_4, x_30); -lean_inc(x_3); -x_32 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_32, 0, x_3); -lean_ctor_set(x_32, 1, x_31); -x_33 = lean_unbox(x_18); lean_dec(x_18); -lean_inc(x_12); -lean_inc(x_2); +x_24 = lean_ctor_get(x_12, 1); +lean_inc(x_24); +lean_dec(x_12); +x_25 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(x_13, x_14); +x_26 = lean_ctor_get(x_25, 1); +lean_inc(x_26); +lean_dec(x_25); +lean_inc(x_24); lean_inc(x_5); +x_27 = lean_array_push(x_5, x_24); +lean_inc(x_8); +x_28 = lean_array_push(x_27, x_8); lean_inc(x_7); +x_29 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_29, 0, x_7); +lean_ctor_set(x_29, 1, x_28); +lean_inc(x_5); +x_30 = lean_array_push(x_5, x_29); +lean_inc(x_6); +x_31 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_31, 0, x_6); +lean_ctor_set(x_31, 1, x_30); +lean_inc(x_5); +x_32 = lean_array_push(x_5, x_31); lean_inc(x_4); +x_33 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_33, 0, x_4); +lean_ctor_set(x_33, 1, x_32); +x_34 = lean_unbox(x_19); +lean_dec(x_19); +lean_inc(x_13); +lean_inc(x_2); +lean_inc(x_6); +lean_inc(x_8); +lean_inc(x_5); +lean_inc(x_3); lean_inc(x_1); -x_34 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___lambda__1(x_21, x_1, x_20, x_4, x_22, x_7, x_5, x_2, x_33, x_23, x_32, x_12, x_25); -lean_dec(x_23); -lean_dec(x_20); -x_35 = lean_ctor_get(x_34, 0); -lean_inc(x_35); -x_36 = lean_ctor_get(x_34, 1); +x_35 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___lambda__1(x_22, x_1, x_3, x_21, x_5, x_8, x_23, x_6, x_2, x_34, x_24, x_33, x_13, x_26); +lean_dec(x_24); +lean_dec(x_21); +x_36 = lean_ctor_get(x_35, 0); lean_inc(x_36); -lean_dec(x_34); -x_37 = lean_ctor_get(x_35, 0); +x_37 = lean_ctor_get(x_35, 1); lean_inc(x_37); lean_dec(x_35); -x_38 = 1; -x_39 = x_10 + x_38; -x_10 = x_39; -x_11 = x_37; -x_13 = x_36; +x_38 = lean_ctor_get(x_36, 0); +lean_inc(x_38); +lean_dec(x_36); +x_39 = 1; +x_40 = x_11 + x_39; +x_11 = x_40; +x_12 = x_38; +x_14 = x_37; goto _start; } else { -lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; size_t x_50; size_t x_51; -x_41 = lean_ctor_get(x_16, 0); -lean_inc(x_41); -lean_dec(x_16); +lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; size_t x_51; size_t x_52; x_42 = lean_ctor_get(x_17, 0); lean_inc(x_42); -x_43 = lean_ctor_get(x_17, 1); -lean_inc(x_43); lean_dec(x_17); -x_44 = lean_ctor_get(x_11, 1); +x_43 = lean_ctor_get(x_18, 0); +lean_inc(x_43); +x_44 = lean_ctor_get(x_18, 1); lean_inc(x_44); -lean_dec(x_11); -x_45 = lean_unbox(x_18); lean_dec(x_18); -lean_inc(x_12); -lean_inc(x_44); +x_45 = lean_ctor_get(x_12, 1); +lean_inc(x_45); +lean_dec(x_12); +x_46 = lean_unbox(x_19); +lean_dec(x_19); +lean_inc(x_13); +lean_inc(x_45); lean_inc(x_2); +lean_inc(x_6); +lean_inc(x_8); lean_inc(x_5); -lean_inc(x_7); -lean_inc(x_4); +lean_inc(x_3); lean_inc(x_1); -x_46 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___lambda__1(x_42, x_1, x_41, x_4, x_43, x_7, x_5, x_2, x_45, x_44, x_44, x_12, x_13); -lean_dec(x_44); -lean_dec(x_41); -x_47 = lean_ctor_get(x_46, 0); -lean_inc(x_47); -x_48 = lean_ctor_get(x_46, 1); +x_47 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___lambda__1(x_43, x_1, x_3, x_42, x_5, x_8, x_44, x_6, x_2, x_46, x_45, x_45, x_13, x_14); +lean_dec(x_45); +lean_dec(x_42); +x_48 = lean_ctor_get(x_47, 0); lean_inc(x_48); -lean_dec(x_46); -x_49 = lean_ctor_get(x_47, 0); +x_49 = lean_ctor_get(x_47, 1); lean_inc(x_49); lean_dec(x_47); -x_50 = 1; -x_51 = x_10 + x_50; -x_10 = x_51; -x_11 = x_49; -x_13 = x_48; +x_50 = lean_ctor_get(x_48, 0); +lean_inc(x_50); +lean_dec(x_48); +x_51 = 1; +x_52 = x_11 + x_51; +x_11 = x_52; +x_12 = x_50; +x_14 = x_49; goto _start; } } } } -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___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, size_t x_9, size_t x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___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, size_t x_10, size_t x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { -uint8_t x_14; -x_14 = x_10 < x_9; -if (x_14 == 0) +uint8_t x_15; +x_15 = x_11 < x_10; +if (x_15 == 0) { -lean_object* x_15; -lean_dec(x_12); +lean_object* x_16; +lean_dec(x_13); +lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -19236,138 +19518,141 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_15 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_15, 0, x_11); -lean_ctor_set(x_15, 1, x_13); -return x_15; +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_12); +lean_ctor_set(x_16, 1, x_14); +return x_16; } else { -lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; -x_16 = lean_array_uget(x_8, x_10); -x_17 = lean_ctor_get(x_16, 1); -lean_inc(x_17); -x_18 = lean_ctor_get(x_11, 0); +lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; +x_17 = lean_array_uget(x_9, x_11); +x_18 = lean_ctor_get(x_17, 1); lean_inc(x_18); -x_19 = lean_unbox(x_18); -if (x_19 == 0) +x_19 = lean_ctor_get(x_12, 0); +lean_inc(x_19); +x_20 = lean_unbox(x_19); +if (x_20 == 0) { -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; uint8_t x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; size_t x_38; size_t x_39; -x_20 = lean_ctor_get(x_16, 0); -lean_inc(x_20); -lean_dec(x_16); +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; uint8_t x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; size_t x_39; size_t x_40; x_21 = lean_ctor_get(x_17, 0); lean_inc(x_21); -x_22 = lean_ctor_get(x_17, 1); -lean_inc(x_22); lean_dec(x_17); -x_23 = lean_ctor_get(x_11, 1); +x_22 = lean_ctor_get(x_18, 0); +lean_inc(x_22); +x_23 = lean_ctor_get(x_18, 1); lean_inc(x_23); -lean_dec(x_11); -x_24 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(x_12, x_13); -x_25 = lean_ctor_get(x_24, 1); -lean_inc(x_25); -lean_dec(x_24); -lean_inc(x_23); -lean_inc(x_4); -x_26 = lean_array_push(x_4, x_23); -lean_inc(x_7); -x_27 = lean_array_push(x_26, x_7); -lean_inc(x_6); -x_28 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_28, 0, x_6); -lean_ctor_set(x_28, 1, x_27); -lean_inc(x_4); -x_29 = lean_array_push(x_4, x_28); -lean_inc(x_5); -x_30 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_30, 0, x_5); -lean_ctor_set(x_30, 1, x_29); -lean_inc(x_4); -x_31 = lean_array_push(x_4, x_30); -lean_inc(x_3); -x_32 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_32, 0, x_3); -lean_ctor_set(x_32, 1, x_31); -x_33 = lean_unbox(x_18); lean_dec(x_18); -lean_inc(x_12); -lean_inc(x_2); +x_24 = lean_ctor_get(x_12, 1); +lean_inc(x_24); +lean_dec(x_12); +x_25 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(x_13, x_14); +x_26 = lean_ctor_get(x_25, 1); +lean_inc(x_26); +lean_dec(x_25); +lean_inc(x_24); lean_inc(x_5); +x_27 = lean_array_push(x_5, x_24); +lean_inc(x_8); +x_28 = lean_array_push(x_27, x_8); lean_inc(x_7); +x_29 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_29, 0, x_7); +lean_ctor_set(x_29, 1, x_28); +lean_inc(x_5); +x_30 = lean_array_push(x_5, x_29); +lean_inc(x_6); +x_31 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_31, 0, x_6); +lean_ctor_set(x_31, 1, x_30); +lean_inc(x_5); +x_32 = lean_array_push(x_5, x_31); lean_inc(x_4); +x_33 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_33, 0, x_4); +lean_ctor_set(x_33, 1, x_32); +x_34 = lean_unbox(x_19); +lean_dec(x_19); +lean_inc(x_13); +lean_inc(x_2); +lean_inc(x_6); +lean_inc(x_8); +lean_inc(x_5); +lean_inc(x_3); lean_inc(x_1); -x_34 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___lambda__1(x_21, x_1, x_20, x_4, x_22, x_7, x_5, x_2, x_33, x_23, x_32, x_12, x_25); -lean_dec(x_23); -lean_dec(x_20); -x_35 = lean_ctor_get(x_34, 0); -lean_inc(x_35); -x_36 = lean_ctor_get(x_34, 1); +x_35 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___lambda__1(x_22, x_1, x_3, x_21, x_5, x_8, x_23, x_6, x_2, x_34, x_24, x_33, x_13, x_26); +lean_dec(x_24); +lean_dec(x_21); +x_36 = lean_ctor_get(x_35, 0); lean_inc(x_36); -lean_dec(x_34); -x_37 = lean_ctor_get(x_35, 0); +x_37 = lean_ctor_get(x_35, 1); lean_inc(x_37); lean_dec(x_35); -x_38 = 1; -x_39 = x_10 + x_38; -x_10 = x_39; -x_11 = x_37; -x_13 = x_36; +x_38 = lean_ctor_get(x_36, 0); +lean_inc(x_38); +lean_dec(x_36); +x_39 = 1; +x_40 = x_11 + x_39; +x_11 = x_40; +x_12 = x_38; +x_14 = x_37; goto _start; } else { -lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; size_t x_50; size_t x_51; -x_41 = lean_ctor_get(x_16, 0); -lean_inc(x_41); -lean_dec(x_16); +lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; size_t x_51; size_t x_52; x_42 = lean_ctor_get(x_17, 0); lean_inc(x_42); -x_43 = lean_ctor_get(x_17, 1); -lean_inc(x_43); lean_dec(x_17); -x_44 = lean_ctor_get(x_11, 1); +x_43 = lean_ctor_get(x_18, 0); +lean_inc(x_43); +x_44 = lean_ctor_get(x_18, 1); lean_inc(x_44); -lean_dec(x_11); -x_45 = lean_unbox(x_18); lean_dec(x_18); -lean_inc(x_12); -lean_inc(x_44); +x_45 = lean_ctor_get(x_12, 1); +lean_inc(x_45); +lean_dec(x_12); +x_46 = lean_unbox(x_19); +lean_dec(x_19); +lean_inc(x_13); +lean_inc(x_45); lean_inc(x_2); +lean_inc(x_6); +lean_inc(x_8); lean_inc(x_5); -lean_inc(x_7); -lean_inc(x_4); +lean_inc(x_3); lean_inc(x_1); -x_46 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___lambda__1(x_42, x_1, x_41, x_4, x_43, x_7, x_5, x_2, x_45, x_44, x_44, x_12, x_13); -lean_dec(x_44); -lean_dec(x_41); -x_47 = lean_ctor_get(x_46, 0); -lean_inc(x_47); -x_48 = lean_ctor_get(x_46, 1); +x_47 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___lambda__1(x_43, x_1, x_3, x_42, x_5, x_8, x_44, x_6, x_2, x_46, x_45, x_45, x_13, x_14); +lean_dec(x_45); +lean_dec(x_42); +x_48 = lean_ctor_get(x_47, 0); lean_inc(x_48); -lean_dec(x_46); -x_49 = lean_ctor_get(x_47, 0); +x_49 = lean_ctor_get(x_47, 1); lean_inc(x_49); lean_dec(x_47); -x_50 = 1; -x_51 = x_10 + x_50; -x_10 = x_51; -x_11 = x_49; -x_13 = x_48; +x_50 = lean_ctor_get(x_48, 0); +lean_inc(x_50); +lean_dec(x_48); +x_51 = 1; +x_52 = x_11 + x_51; +x_11 = x_52; +x_12 = x_50; +x_14 = x_49; goto _start; } } } } -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___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, size_t x_9, size_t x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___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, size_t x_10, size_t x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { -uint8_t x_14; -x_14 = x_10 < x_9; -if (x_14 == 0) +uint8_t x_15; +x_15 = x_11 < x_10; +if (x_15 == 0) { -lean_object* x_15; -lean_dec(x_12); +lean_object* x_16; +lean_dec(x_13); +lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -19375,124 +19660,126 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_15 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_15, 0, x_11); -lean_ctor_set(x_15, 1, x_13); -return x_15; +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_12); +lean_ctor_set(x_16, 1, x_14); +return x_16; } else { -lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; -x_16 = lean_array_uget(x_8, x_10); -x_17 = lean_ctor_get(x_16, 1); -lean_inc(x_17); -x_18 = lean_ctor_get(x_11, 0); +lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; +x_17 = lean_array_uget(x_9, x_11); +x_18 = lean_ctor_get(x_17, 1); lean_inc(x_18); -x_19 = lean_unbox(x_18); -if (x_19 == 0) +x_19 = lean_ctor_get(x_12, 0); +lean_inc(x_19); +x_20 = lean_unbox(x_19); +if (x_20 == 0) { -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; uint8_t x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; size_t x_38; size_t x_39; -x_20 = lean_ctor_get(x_16, 0); -lean_inc(x_20); -lean_dec(x_16); +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; uint8_t x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; size_t x_39; size_t x_40; x_21 = lean_ctor_get(x_17, 0); lean_inc(x_21); -x_22 = lean_ctor_get(x_17, 1); -lean_inc(x_22); lean_dec(x_17); -x_23 = lean_ctor_get(x_11, 1); +x_22 = lean_ctor_get(x_18, 0); +lean_inc(x_22); +x_23 = lean_ctor_get(x_18, 1); lean_inc(x_23); -lean_dec(x_11); -x_24 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(x_12, x_13); -x_25 = lean_ctor_get(x_24, 1); -lean_inc(x_25); -lean_dec(x_24); -lean_inc(x_23); -lean_inc(x_4); -x_26 = lean_array_push(x_4, x_23); -lean_inc(x_7); -x_27 = lean_array_push(x_26, x_7); -lean_inc(x_6); -x_28 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_28, 0, x_6); -lean_ctor_set(x_28, 1, x_27); -lean_inc(x_4); -x_29 = lean_array_push(x_4, x_28); -lean_inc(x_5); -x_30 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_30, 0, x_5); -lean_ctor_set(x_30, 1, x_29); -lean_inc(x_4); -x_31 = lean_array_push(x_4, x_30); -lean_inc(x_3); -x_32 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_32, 0, x_3); -lean_ctor_set(x_32, 1, x_31); -x_33 = lean_unbox(x_18); lean_dec(x_18); -lean_inc(x_12); -lean_inc(x_2); +x_24 = lean_ctor_get(x_12, 1); +lean_inc(x_24); +lean_dec(x_12); +x_25 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(x_13, x_14); +x_26 = lean_ctor_get(x_25, 1); +lean_inc(x_26); +lean_dec(x_25); +lean_inc(x_24); lean_inc(x_5); +x_27 = lean_array_push(x_5, x_24); +lean_inc(x_8); +x_28 = lean_array_push(x_27, x_8); lean_inc(x_7); +x_29 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_29, 0, x_7); +lean_ctor_set(x_29, 1, x_28); +lean_inc(x_5); +x_30 = lean_array_push(x_5, x_29); +lean_inc(x_6); +x_31 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_31, 0, x_6); +lean_ctor_set(x_31, 1, x_30); +lean_inc(x_5); +x_32 = lean_array_push(x_5, x_31); lean_inc(x_4); +x_33 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_33, 0, x_4); +lean_ctor_set(x_33, 1, x_32); +x_34 = lean_unbox(x_19); +lean_dec(x_19); +lean_inc(x_13); +lean_inc(x_2); +lean_inc(x_6); +lean_inc(x_8); +lean_inc(x_5); +lean_inc(x_3); lean_inc(x_1); -x_34 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___lambda__1(x_21, x_1, x_20, x_4, x_22, x_7, x_5, x_2, x_33, x_23, x_32, x_12, x_25); -lean_dec(x_23); -lean_dec(x_20); -x_35 = lean_ctor_get(x_34, 0); -lean_inc(x_35); -x_36 = lean_ctor_get(x_34, 1); +x_35 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___lambda__1(x_22, x_1, x_3, x_21, x_5, x_8, x_23, x_6, x_2, x_34, x_24, x_33, x_13, x_26); +lean_dec(x_24); +lean_dec(x_21); +x_36 = lean_ctor_get(x_35, 0); lean_inc(x_36); -lean_dec(x_34); -x_37 = lean_ctor_get(x_35, 0); +x_37 = lean_ctor_get(x_35, 1); lean_inc(x_37); lean_dec(x_35); -x_38 = 1; -x_39 = x_10 + x_38; -x_10 = x_39; -x_11 = x_37; -x_13 = x_36; +x_38 = lean_ctor_get(x_36, 0); +lean_inc(x_38); +lean_dec(x_36); +x_39 = 1; +x_40 = x_11 + x_39; +x_11 = x_40; +x_12 = x_38; +x_14 = x_37; goto _start; } else { -lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; size_t x_50; size_t x_51; -x_41 = lean_ctor_get(x_16, 0); -lean_inc(x_41); -lean_dec(x_16); +lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; size_t x_51; size_t x_52; x_42 = lean_ctor_get(x_17, 0); lean_inc(x_42); -x_43 = lean_ctor_get(x_17, 1); -lean_inc(x_43); lean_dec(x_17); -x_44 = lean_ctor_get(x_11, 1); +x_43 = lean_ctor_get(x_18, 0); +lean_inc(x_43); +x_44 = lean_ctor_get(x_18, 1); lean_inc(x_44); -lean_dec(x_11); -x_45 = lean_unbox(x_18); lean_dec(x_18); -lean_inc(x_12); -lean_inc(x_44); +x_45 = lean_ctor_get(x_12, 1); +lean_inc(x_45); +lean_dec(x_12); +x_46 = lean_unbox(x_19); +lean_dec(x_19); +lean_inc(x_13); +lean_inc(x_45); lean_inc(x_2); +lean_inc(x_6); +lean_inc(x_8); lean_inc(x_5); -lean_inc(x_7); -lean_inc(x_4); +lean_inc(x_3); lean_inc(x_1); -x_46 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___lambda__1(x_42, x_1, x_41, x_4, x_43, x_7, x_5, x_2, x_45, x_44, x_44, x_12, x_13); -lean_dec(x_44); -lean_dec(x_41); -x_47 = lean_ctor_get(x_46, 0); -lean_inc(x_47); -x_48 = lean_ctor_get(x_46, 1); +x_47 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___lambda__1(x_43, x_1, x_3, x_42, x_5, x_8, x_44, x_6, x_2, x_46, x_45, x_45, x_13, x_14); +lean_dec(x_45); +lean_dec(x_42); +x_48 = lean_ctor_get(x_47, 0); lean_inc(x_48); -lean_dec(x_46); -x_49 = lean_ctor_get(x_47, 0); +x_49 = lean_ctor_get(x_47, 1); lean_inc(x_49); lean_dec(x_47); -x_50 = 1; -x_51 = x_10 + x_50; -x_10 = x_51; -x_11 = x_49; -x_13 = x_48; +x_50 = lean_ctor_get(x_48, 0); +lean_inc(x_50); +lean_dec(x_48); +x_51 = 1; +x_52 = x_11 + x_51; +x_11 = x_52; +x_12 = x_50; +x_14 = x_49; goto _start; } } @@ -19550,117 +19837,549 @@ return x_16; } } } -lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___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, size_t x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___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, size_t x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { -uint8_t x_15; -x_15 = !lean_is_exclusive(x_13); -if (x_15 == 0) +uint8_t x_16; +x_16 = !lean_is_exclusive(x_14); +if (x_16 == 0) { -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; 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; size_t x_67; -x_16 = lean_ctor_get(x_13, 1); -x_17 = lean_ctor_get(x_13, 2); -x_18 = lean_ctor_get(x_13, 5); -x_19 = l_Lean_replaceRef(x_1, x_18); -lean_dec(x_18); +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; 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; size_t x_68; +x_17 = lean_ctor_get(x_14, 1); +x_18 = lean_ctor_get(x_14, 2); +x_19 = lean_ctor_get(x_14, 5); +x_20 = l_Lean_replaceRef(x_1, x_19); +lean_dec(x_19); +lean_inc(x_18); lean_inc(x_17); -lean_inc(x_16); -lean_ctor_set(x_13, 5, x_19); -x_20 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(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_ctor_set(x_14, 5, x_20); +x_21 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(x_14, x_15); +x_22 = lean_ctor_get(x_21, 0); lean_inc(x_22); -lean_dec(x_20); -x_23 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_897____closed__8; +x_23 = lean_ctor_get(x_21, 1); +lean_inc(x_23); +lean_dec(x_21); +x_24 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_897____closed__8; lean_inc(x_2); -x_24 = lean_name_mk_string(x_2, x_23); -x_25 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_897____closed__10; +x_25 = lean_name_mk_string(x_2, x_24); +x_26 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_897____closed__10; lean_inc(x_2); -x_26 = lean_name_mk_string(x_2, x_25); -x_27 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_897____closed__12; +x_27 = lean_name_mk_string(x_2, x_26); +x_28 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_897____closed__12; lean_inc(x_2); -x_28 = lean_name_mk_string(x_2, x_27); -x_29 = l_myMacro____x40_Init_Notation___hyg_2278____closed__3; +x_29 = lean_name_mk_string(x_2, x_28); +x_30 = l_myMacro____x40_Init_Notation___hyg_2278____closed__3; lean_inc(x_2); -x_30 = lean_name_mk_string(x_2, x_29); -x_31 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkPureUnit___closed__3; +x_31 = lean_name_mk_string(x_2, x_30); +x_32 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkPureUnit___closed__3; +lean_inc(x_18); lean_inc(x_17); -lean_inc(x_16); -x_32 = l_Lean_addMacroScope(x_16, x_31, x_17); -x_33 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkPureUnit___closed__2; -x_34 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; -lean_inc(x_21); -x_35 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_35, 0, x_21); -lean_ctor_set(x_35, 1, x_33); -lean_ctor_set(x_35, 2, x_32); -lean_ctor_set(x_35, 3, x_34); -x_36 = l_Array_empty___closed__1; -x_37 = lean_array_push(x_36, x_35); -x_38 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkPureUnit___closed__6; -x_39 = l_Lean_addMacroScope(x_16, x_38, x_17); -x_40 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkPureUnit___closed__5; -x_41 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkPureUnit___closed__8; -x_42 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_42, 0, x_21); -lean_ctor_set(x_42, 1, x_40); -lean_ctor_set(x_42, 2, x_39); -lean_ctor_set(x_42, 3, x_41); -x_43 = lean_array_push(x_36, x_42); -x_44 = l_Lean_nullKind___closed__2; -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_37, x_45); -x_47 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_47, 0, x_30); -lean_ctor_set(x_47, 1, x_46); -x_48 = lean_array_push(x_36, x_47); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_28); -lean_ctor_set(x_49, 1, x_48); -x_50 = lean_array_push(x_36, x_49); -x_51 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; -x_52 = lean_array_push(x_50, x_51); -lean_inc(x_26); -x_53 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_53, 0, x_26); -lean_ctor_set(x_53, 1, x_52); -x_54 = lean_array_push(x_36, x_53); -x_55 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_55, 0, x_44); -lean_ctor_set(x_55, 1, x_54); -x_56 = lean_array_push(x_36, x_55); -lean_inc(x_24); -x_57 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_57, 0, x_24); -lean_ctor_set(x_57, 1, x_56); -x_58 = l_Array_reverse___rarg(x_3); -x_59 = lean_array_push(x_58, x_4); -x_60 = l_Array_reverse___rarg(x_5); -x_61 = lean_array_push(x_60, x_6); -x_62 = l_Array_reverse___rarg(x_7); -x_63 = lean_array_push(x_62, x_8); -x_64 = l_Array_zip___rarg(x_61, x_63); -lean_dec(x_63); -lean_dec(x_61); -x_65 = l_Array_zip___rarg(x_59, x_64); +x_33 = l_Lean_addMacroScope(x_17, x_32, x_18); +x_34 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkPureUnit___closed__2; +x_35 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; +lean_inc(x_22); +x_36 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_36, 0, x_22); +lean_ctor_set(x_36, 1, x_34); +lean_ctor_set(x_36, 2, x_33); +lean_ctor_set(x_36, 3, x_35); +x_37 = l_Array_empty___closed__1; +x_38 = lean_array_push(x_37, x_36); +x_39 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkPureUnit___closed__6; +x_40 = l_Lean_addMacroScope(x_17, x_39, x_18); +x_41 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkPureUnit___closed__5; +x_42 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkPureUnit___closed__8; +x_43 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_43, 0, x_22); +lean_ctor_set(x_43, 1, x_41); +lean_ctor_set(x_43, 2, x_40); +lean_ctor_set(x_43, 3, x_42); +x_44 = lean_array_push(x_37, x_43); +x_45 = l_Lean_nullKind___closed__2; +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_45); +lean_ctor_set(x_46, 1, x_44); +x_47 = lean_array_push(x_38, x_46); +x_48 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_48, 0, x_31); +lean_ctor_set(x_48, 1, x_47); +x_49 = lean_array_push(x_37, x_48); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_29); +lean_ctor_set(x_50, 1, x_49); +x_51 = lean_array_push(x_37, x_50); +x_52 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; +x_53 = lean_array_push(x_51, x_52); +lean_inc(x_27); +x_54 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_54, 0, x_27); +lean_ctor_set(x_54, 1, x_53); +x_55 = lean_array_push(x_37, x_54); +x_56 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_56, 0, x_45); +lean_ctor_set(x_56, 1, x_55); +x_57 = lean_array_push(x_37, x_56); +lean_inc(x_25); +x_58 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_58, 0, x_25); +lean_ctor_set(x_58, 1, x_57); +x_59 = l_Array_reverse___rarg(x_3); +x_60 = lean_array_push(x_59, x_4); +x_61 = l_Array_reverse___rarg(x_5); +x_62 = lean_array_push(x_61, x_6); +x_63 = l_Array_reverse___rarg(x_7); +x_64 = lean_array_push(x_63, x_8); +x_65 = l_Array_zip___rarg(x_62, x_64); lean_dec(x_64); -lean_dec(x_59); -x_66 = lean_array_get_size(x_65); -x_67 = lean_usize_of_nat(x_66); +lean_dec(x_62); +x_66 = l_Array_zip___rarg(x_60, x_65); +lean_dec(x_65); +lean_dec(x_60); +x_67 = lean_array_get_size(x_66); +x_68 = lean_usize_of_nat(x_67); +lean_dec(x_67); +if (lean_obj_tag(x_13) == 0) +{ +uint8_t x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; uint8_t x_73; +x_69 = 1; +x_70 = lean_box(x_69); +x_71 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_71, 0, x_70); +lean_ctor_set(x_71, 1, x_58); +x_72 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6(x_2, x_9, x_10, x_25, x_37, x_45, x_27, x_52, x_66, x_68, x_11, x_71, x_14, x_23); lean_dec(x_66); -if (lean_obj_tag(x_12) == 0) +x_73 = !lean_is_exclusive(x_72); +if (x_73 == 0) +{ +lean_object* x_74; lean_object* x_75; lean_object* x_76; +x_74 = lean_ctor_get(x_72, 0); +x_75 = lean_ctor_get(x_74, 1); +lean_inc(x_75); +lean_dec(x_74); +x_76 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_76, 0, x_75); +lean_ctor_set(x_72, 0, x_76); +return x_72; +} +else +{ +lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; +x_77 = lean_ctor_get(x_72, 0); +x_78 = lean_ctor_get(x_72, 1); +lean_inc(x_78); +lean_inc(x_77); +lean_dec(x_72); +x_79 = lean_ctor_get(x_77, 1); +lean_inc(x_79); +lean_dec(x_77); +x_80 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_80, 0, 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); +return x_81; +} +} +else +{ +uint8_t x_82; +lean_dec(x_58); +x_82 = !lean_is_exclusive(x_13); +if (x_82 == 0) +{ +lean_object* x_83; uint8_t x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; uint8_t x_88; +x_83 = lean_ctor_get(x_13, 0); +x_84 = 1; +x_85 = lean_box(x_84); +x_86 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_86, 0, x_85); +lean_ctor_set(x_86, 1, x_83); +x_87 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__7(x_2, x_9, x_10, x_25, x_37, x_45, x_27, x_52, x_66, x_68, x_11, x_86, x_14, x_23); +lean_dec(x_66); +x_88 = !lean_is_exclusive(x_87); +if (x_88 == 0) +{ +lean_object* x_89; lean_object* x_90; +x_89 = lean_ctor_get(x_87, 0); +x_90 = lean_ctor_get(x_89, 1); +lean_inc(x_90); +lean_dec(x_89); +lean_ctor_set(x_13, 0, x_90); +lean_ctor_set(x_87, 0, x_13); +return x_87; +} +else +{ +lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; +x_91 = lean_ctor_get(x_87, 0); +x_92 = lean_ctor_get(x_87, 1); +lean_inc(x_92); +lean_inc(x_91); +lean_dec(x_87); +x_93 = lean_ctor_get(x_91, 1); +lean_inc(x_93); +lean_dec(x_91); +lean_ctor_set(x_13, 0, x_93); +x_94 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_94, 0, x_13); +lean_ctor_set(x_94, 1, x_92); +return x_94; +} +} +else +{ +lean_object* x_95; uint8_t 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; +x_95 = lean_ctor_get(x_13, 0); +lean_inc(x_95); +lean_dec(x_13); +x_96 = 1; +x_97 = lean_box(x_96); +x_98 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_98, 0, x_97); +lean_ctor_set(x_98, 1, x_95); +x_99 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__7(x_2, x_9, x_10, x_25, x_37, x_45, x_27, x_52, x_66, x_68, x_11, x_98, x_14, x_23); +lean_dec(x_66); +x_100 = lean_ctor_get(x_99, 0); +lean_inc(x_100); +x_101 = lean_ctor_get(x_99, 1); +lean_inc(x_101); +if (lean_is_exclusive(x_99)) { + lean_ctor_release(x_99, 0); + lean_ctor_release(x_99, 1); + x_102 = x_99; +} else { + lean_dec_ref(x_99); + x_102 = lean_box(0); +} +x_103 = lean_ctor_get(x_100, 1); +lean_inc(x_103); +lean_dec(x_100); +x_104 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_104, 0, x_103); +if (lean_is_scalar(x_102)) { + x_105 = lean_alloc_ctor(0, 2, 0); +} else { + x_105 = x_102; +} +lean_ctor_set(x_105, 0, x_104); +lean_ctor_set(x_105, 1, x_101); +return x_105; +} +} +} +else +{ +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; 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; size_t x_161; +x_106 = lean_ctor_get(x_14, 0); +x_107 = lean_ctor_get(x_14, 1); +x_108 = lean_ctor_get(x_14, 2); +x_109 = lean_ctor_get(x_14, 3); +x_110 = lean_ctor_get(x_14, 4); +x_111 = lean_ctor_get(x_14, 5); +lean_inc(x_111); +lean_inc(x_110); +lean_inc(x_109); +lean_inc(x_108); +lean_inc(x_107); +lean_inc(x_106); +lean_dec(x_14); +x_112 = l_Lean_replaceRef(x_1, x_111); +lean_dec(x_111); +lean_inc(x_108); +lean_inc(x_107); +x_113 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_113, 0, x_106); +lean_ctor_set(x_113, 1, x_107); +lean_ctor_set(x_113, 2, x_108); +lean_ctor_set(x_113, 3, x_109); +lean_ctor_set(x_113, 4, x_110); +lean_ctor_set(x_113, 5, x_112); +x_114 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(x_113, x_15); +x_115 = lean_ctor_get(x_114, 0); +lean_inc(x_115); +x_116 = lean_ctor_get(x_114, 1); +lean_inc(x_116); +lean_dec(x_114); +x_117 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_897____closed__8; +lean_inc(x_2); +x_118 = lean_name_mk_string(x_2, x_117); +x_119 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_897____closed__10; +lean_inc(x_2); +x_120 = lean_name_mk_string(x_2, x_119); +x_121 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_897____closed__12; +lean_inc(x_2); +x_122 = lean_name_mk_string(x_2, x_121); +x_123 = l_myMacro____x40_Init_Notation___hyg_2278____closed__3; +lean_inc(x_2); +x_124 = lean_name_mk_string(x_2, x_123); +x_125 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkPureUnit___closed__3; +lean_inc(x_108); +lean_inc(x_107); +x_126 = l_Lean_addMacroScope(x_107, x_125, x_108); +x_127 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkPureUnit___closed__2; +x_128 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; +lean_inc(x_115); +x_129 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_129, 0, x_115); +lean_ctor_set(x_129, 1, x_127); +lean_ctor_set(x_129, 2, x_126); +lean_ctor_set(x_129, 3, x_128); +x_130 = l_Array_empty___closed__1; +x_131 = lean_array_push(x_130, x_129); +x_132 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkPureUnit___closed__6; +x_133 = l_Lean_addMacroScope(x_107, x_132, x_108); +x_134 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkPureUnit___closed__5; +x_135 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkPureUnit___closed__8; +x_136 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_136, 0, x_115); +lean_ctor_set(x_136, 1, x_134); +lean_ctor_set(x_136, 2, x_133); +lean_ctor_set(x_136, 3, x_135); +x_137 = lean_array_push(x_130, x_136); +x_138 = l_Lean_nullKind___closed__2; +x_139 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_139, 0, x_138); +lean_ctor_set(x_139, 1, x_137); +x_140 = lean_array_push(x_131, x_139); +x_141 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_141, 0, x_124); +lean_ctor_set(x_141, 1, x_140); +x_142 = lean_array_push(x_130, x_141); +x_143 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_143, 0, x_122); +lean_ctor_set(x_143, 1, x_142); +x_144 = lean_array_push(x_130, x_143); +x_145 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; +x_146 = lean_array_push(x_144, x_145); +lean_inc(x_120); +x_147 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_147, 0, x_120); +lean_ctor_set(x_147, 1, x_146); +x_148 = lean_array_push(x_130, x_147); +x_149 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_149, 0, x_138); +lean_ctor_set(x_149, 1, x_148); +x_150 = lean_array_push(x_130, x_149); +lean_inc(x_118); +x_151 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_151, 0, x_118); +lean_ctor_set(x_151, 1, x_150); +x_152 = l_Array_reverse___rarg(x_3); +x_153 = lean_array_push(x_152, x_4); +x_154 = l_Array_reverse___rarg(x_5); +x_155 = lean_array_push(x_154, x_6); +x_156 = l_Array_reverse___rarg(x_7); +x_157 = lean_array_push(x_156, x_8); +x_158 = l_Array_zip___rarg(x_155, x_157); +lean_dec(x_157); +lean_dec(x_155); +x_159 = l_Array_zip___rarg(x_153, x_158); +lean_dec(x_158); +lean_dec(x_153); +x_160 = lean_array_get_size(x_159); +x_161 = lean_usize_of_nat(x_160); +lean_dec(x_160); +if (lean_obj_tag(x_13) == 0) +{ +uint8_t 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; +x_162 = 1; +x_163 = lean_box(x_162); +x_164 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_164, 0, x_163); +lean_ctor_set(x_164, 1, x_151); +x_165 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6(x_2, x_9, x_10, x_118, x_130, x_138, x_120, x_145, x_159, x_161, x_11, x_164, x_113, x_116); +lean_dec(x_159); +x_166 = lean_ctor_get(x_165, 0); +lean_inc(x_166); +x_167 = lean_ctor_get(x_165, 1); +lean_inc(x_167); +if (lean_is_exclusive(x_165)) { + lean_ctor_release(x_165, 0); + lean_ctor_release(x_165, 1); + x_168 = x_165; +} else { + lean_dec_ref(x_165); + x_168 = lean_box(0); +} +x_169 = lean_ctor_get(x_166, 1); +lean_inc(x_169); +lean_dec(x_166); +x_170 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_170, 0, x_169); +if (lean_is_scalar(x_168)) { + x_171 = lean_alloc_ctor(0, 2, 0); +} else { + x_171 = x_168; +} +lean_ctor_set(x_171, 0, x_170); +lean_ctor_set(x_171, 1, x_167); +return x_171; +} +else +{ +lean_object* x_172; lean_object* x_173; uint8_t x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; 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_dec(x_151); +x_172 = lean_ctor_get(x_13, 0); +lean_inc(x_172); +if (lean_is_exclusive(x_13)) { + lean_ctor_release(x_13, 0); + x_173 = x_13; +} else { + lean_dec_ref(x_13); + x_173 = lean_box(0); +} +x_174 = 1; +x_175 = lean_box(x_174); +x_176 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_176, 0, x_175); +lean_ctor_set(x_176, 1, x_172); +x_177 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__7(x_2, x_9, x_10, x_118, x_130, x_138, x_120, x_145, x_159, x_161, x_11, x_176, x_113, x_116); +lean_dec(x_159); +x_178 = lean_ctor_get(x_177, 0); +lean_inc(x_178); +x_179 = lean_ctor_get(x_177, 1); +lean_inc(x_179); +if (lean_is_exclusive(x_177)) { + lean_ctor_release(x_177, 0); + lean_ctor_release(x_177, 1); + x_180 = x_177; +} else { + lean_dec_ref(x_177); + x_180 = lean_box(0); +} +x_181 = lean_ctor_get(x_178, 1); +lean_inc(x_181); +lean_dec(x_178); +if (lean_is_scalar(x_173)) { + x_182 = lean_alloc_ctor(1, 1, 0); +} else { + x_182 = x_173; +} +lean_ctor_set(x_182, 0, x_181); +if (lean_is_scalar(x_180)) { + x_183 = lean_alloc_ctor(0, 2, 0); +} else { + x_183 = x_180; +} +lean_ctor_set(x_183, 0, x_182); +lean_ctor_set(x_183, 1, x_179); +return x_183; +} +} +} +} +lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___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) { +_start: +{ +uint8_t x_14; +x_14 = !lean_is_exclusive(x_12); +if (x_14 == 0) +{ +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; 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; size_t x_66; size_t x_67; +x_15 = lean_ctor_get(x_12, 1); +x_16 = lean_ctor_get(x_12, 2); +x_17 = lean_ctor_get(x_12, 5); +x_18 = l_Lean_replaceRef(x_1, x_17); +lean_dec(x_17); +lean_inc(x_16); +lean_inc(x_15); +lean_ctor_set(x_12, 5, x_18); +x_19 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(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); +x_22 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_897____closed__8; +lean_inc(x_2); +x_23 = lean_name_mk_string(x_2, x_22); +x_24 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_897____closed__10; +lean_inc(x_2); +x_25 = lean_name_mk_string(x_2, x_24); +x_26 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_897____closed__12; +lean_inc(x_2); +x_27 = lean_name_mk_string(x_2, x_26); +x_28 = l_myMacro____x40_Init_Notation___hyg_2278____closed__3; +lean_inc(x_2); +x_29 = lean_name_mk_string(x_2, x_28); +x_30 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkPureUnit___closed__3; +lean_inc(x_16); +lean_inc(x_15); +x_31 = l_Lean_addMacroScope(x_15, x_30, x_16); +x_32 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkPureUnit___closed__2; +x_33 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; +lean_inc(x_20); +x_34 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_34, 0, x_20); +lean_ctor_set(x_34, 1, x_32); +lean_ctor_set(x_34, 2, x_31); +lean_ctor_set(x_34, 3, x_33); +x_35 = l_Array_empty___closed__1; +x_36 = lean_array_push(x_35, x_34); +x_37 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkPureUnit___closed__6; +x_38 = l_Lean_addMacroScope(x_15, x_37, x_16); +x_39 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkPureUnit___closed__5; +x_40 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkPureUnit___closed__8; +x_41 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_41, 0, x_20); +lean_ctor_set(x_41, 1, x_39); +lean_ctor_set(x_41, 2, x_38); +lean_ctor_set(x_41, 3, x_40); +x_42 = lean_array_push(x_35, x_41); +x_43 = l_Lean_nullKind___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); +x_45 = lean_array_push(x_36, x_44); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_29); +lean_ctor_set(x_46, 1, x_45); +x_47 = lean_array_push(x_35, x_46); +x_48 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_48, 0, x_27); +lean_ctor_set(x_48, 1, x_47); +x_49 = lean_array_push(x_35, x_48); +x_50 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; +x_51 = lean_array_push(x_49, x_50); +lean_inc(x_25); +x_52 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_52, 0, x_25); +lean_ctor_set(x_52, 1, x_51); +x_53 = lean_array_push(x_35, x_52); +x_54 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_54, 0, x_43); +lean_ctor_set(x_54, 1, x_53); +x_55 = lean_array_push(x_35, x_54); +lean_inc(x_23); +x_56 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_56, 0, x_23); +lean_ctor_set(x_56, 1, x_55); +x_57 = l_Array_reverse___rarg(x_8); +x_58 = lean_array_push(x_57, x_3); +x_59 = l_Array_reverse___rarg(x_9); +x_60 = lean_array_push(x_59, x_4); +x_61 = l_Array_reverse___rarg(x_10); +x_62 = lean_array_push(x_61, x_5); +x_63 = l_Array_zip___rarg(x_60, x_62); +lean_dec(x_62); +lean_dec(x_60); +x_64 = l_Array_zip___rarg(x_58, x_63); +lean_dec(x_63); +lean_dec(x_58); +x_65 = lean_array_get_size(x_64); +x_66 = lean_usize_of_nat(x_65); +lean_dec(x_65); +x_67 = 0; +if (lean_obj_tag(x_11) == 0) { uint8_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; uint8_t x_72; x_68 = 1; x_69 = lean_box(x_68); x_70 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_57); -x_71 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6(x_2, x_9, x_24, x_36, x_44, x_26, x_51, x_65, x_67, x_10, x_70, x_13, x_22); -lean_dec(x_65); +lean_ctor_set(x_70, 1, x_56); +x_71 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__8(x_2, x_6, x_7, x_23, x_35, x_43, x_25, x_50, x_64, x_66, x_67, x_70, x_12, x_21); +lean_dec(x_64); x_72 = !lean_is_exclusive(x_71); if (x_72 == 0) { @@ -19696,19 +20415,19 @@ return x_80; else { uint8_t x_81; -lean_dec(x_57); -x_81 = !lean_is_exclusive(x_12); +lean_dec(x_56); +x_81 = !lean_is_exclusive(x_11); if (x_81 == 0) { lean_object* x_82; uint8_t x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; uint8_t x_87; -x_82 = lean_ctor_get(x_12, 0); +x_82 = lean_ctor_get(x_11, 0); x_83 = 1; x_84 = lean_box(x_83); x_85 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_85, 0, x_84); lean_ctor_set(x_85, 1, x_82); -x_86 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__7(x_2, x_9, x_24, x_36, x_44, x_26, x_51, x_65, x_67, x_10, x_85, x_13, x_22); -lean_dec(x_65); +x_86 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__9(x_2, x_6, x_7, x_23, x_35, x_43, x_25, x_50, x_64, x_66, x_67, x_85, x_12, x_21); +lean_dec(x_64); x_87 = !lean_is_exclusive(x_86); if (x_87 == 0) { @@ -19717,8 +20436,8 @@ x_88 = lean_ctor_get(x_86, 0); x_89 = lean_ctor_get(x_88, 1); lean_inc(x_89); lean_dec(x_88); -lean_ctor_set(x_12, 0, x_89); -lean_ctor_set(x_86, 0, x_12); +lean_ctor_set(x_11, 0, x_89); +lean_ctor_set(x_86, 0, x_11); return x_86; } else @@ -19732,9 +20451,9 @@ lean_dec(x_86); x_92 = lean_ctor_get(x_90, 1); lean_inc(x_92); lean_dec(x_90); -lean_ctor_set(x_12, 0, x_92); +lean_ctor_set(x_11, 0, x_92); x_93 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_93, 0, x_12); +lean_ctor_set(x_93, 0, x_11); lean_ctor_set(x_93, 1, x_91); return x_93; } @@ -19742,16 +20461,16 @@ return x_93; else { lean_object* x_94; uint8_t 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; -x_94 = lean_ctor_get(x_12, 0); +x_94 = lean_ctor_get(x_11, 0); lean_inc(x_94); -lean_dec(x_12); +lean_dec(x_11); x_95 = 1; x_96 = lean_box(x_95); x_97 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_97, 0, x_96); lean_ctor_set(x_97, 1, x_94); -x_98 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__7(x_2, x_9, x_24, x_36, x_44, x_26, x_51, x_65, x_67, x_10, x_97, x_13, x_22); -lean_dec(x_65); +x_98 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__9(x_2, x_6, x_7, x_23, x_35, x_43, x_25, x_50, x_64, x_66, x_67, x_97, x_12, x_21); +lean_dec(x_64); x_99 = lean_ctor_get(x_98, 0); lean_inc(x_99); x_100 = lean_ctor_get(x_98, 1); @@ -19782,20 +20501,20 @@ return x_104; } else { -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; 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; size_t x_160; -x_105 = lean_ctor_get(x_13, 0); -x_106 = lean_ctor_get(x_13, 1); -x_107 = lean_ctor_get(x_13, 2); -x_108 = lean_ctor_get(x_13, 3); -x_109 = lean_ctor_get(x_13, 4); -x_110 = lean_ctor_get(x_13, 5); +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; 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; size_t x_160; size_t x_161; +x_105 = lean_ctor_get(x_12, 0); +x_106 = lean_ctor_get(x_12, 1); +x_107 = lean_ctor_get(x_12, 2); +x_108 = lean_ctor_get(x_12, 3); +x_109 = lean_ctor_get(x_12, 4); +x_110 = lean_ctor_get(x_12, 5); lean_inc(x_110); lean_inc(x_109); lean_inc(x_108); lean_inc(x_107); lean_inc(x_106); lean_inc(x_105); -lean_dec(x_13); +lean_dec(x_12); x_111 = l_Lean_replaceRef(x_1, x_110); lean_dec(x_110); lean_inc(x_107); @@ -19807,7 +20526,7 @@ lean_ctor_set(x_112, 2, x_107); lean_ctor_set(x_112, 3, x_108); lean_ctor_set(x_112, 4, x_109); lean_ctor_set(x_112, 5, x_111); -x_113 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(x_112, x_14); +x_113 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(x_112, x_13); x_114 = lean_ctor_get(x_113, 0); lean_inc(x_114); x_115 = lean_ctor_get(x_113, 1); @@ -19877,12 +20596,12 @@ lean_inc(x_117); x_150 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_150, 0, x_117); lean_ctor_set(x_150, 1, x_149); -x_151 = l_Array_reverse___rarg(x_3); -x_152 = lean_array_push(x_151, x_4); -x_153 = l_Array_reverse___rarg(x_5); -x_154 = lean_array_push(x_153, x_6); -x_155 = l_Array_reverse___rarg(x_7); -x_156 = lean_array_push(x_155, x_8); +x_151 = l_Array_reverse___rarg(x_8); +x_152 = lean_array_push(x_151, x_3); +x_153 = l_Array_reverse___rarg(x_9); +x_154 = lean_array_push(x_153, x_4); +x_155 = l_Array_reverse___rarg(x_10); +x_156 = lean_array_push(x_155, x_5); x_157 = l_Array_zip___rarg(x_154, x_156); lean_dec(x_156); lean_dec(x_154); @@ -19892,524 +20611,92 @@ lean_dec(x_152); x_159 = lean_array_get_size(x_158); x_160 = lean_usize_of_nat(x_159); lean_dec(x_159); -if (lean_obj_tag(x_12) == 0) +x_161 = 0; +if (lean_obj_tag(x_11) == 0) { -uint8_t 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; -x_161 = 1; -x_162 = lean_box(x_161); -x_163 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_163, 0, x_162); -lean_ctor_set(x_163, 1, x_150); -x_164 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6(x_2, x_9, x_117, x_129, x_137, x_119, x_144, x_158, x_160, x_10, x_163, x_112, x_115); +uint8_t 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; +x_162 = 1; +x_163 = lean_box(x_162); +x_164 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_164, 0, x_163); +lean_ctor_set(x_164, 1, x_150); +x_165 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__8(x_2, x_6, x_7, x_117, x_129, x_137, x_119, x_144, x_158, x_160, x_161, x_164, x_112, x_115); lean_dec(x_158); -x_165 = lean_ctor_get(x_164, 0); -lean_inc(x_165); -x_166 = lean_ctor_get(x_164, 1); +x_166 = lean_ctor_get(x_165, 0); lean_inc(x_166); -if (lean_is_exclusive(x_164)) { - lean_ctor_release(x_164, 0); - lean_ctor_release(x_164, 1); - x_167 = x_164; +x_167 = lean_ctor_get(x_165, 1); +lean_inc(x_167); +if (lean_is_exclusive(x_165)) { + lean_ctor_release(x_165, 0); + lean_ctor_release(x_165, 1); + x_168 = x_165; } else { - lean_dec_ref(x_164); - x_167 = lean_box(0); -} -x_168 = lean_ctor_get(x_165, 1); -lean_inc(x_168); -lean_dec(x_165); -x_169 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_169, 0, x_168); -if (lean_is_scalar(x_167)) { - x_170 = lean_alloc_ctor(0, 2, 0); -} else { - x_170 = x_167; + lean_dec_ref(x_165); + x_168 = lean_box(0); } +x_169 = lean_ctor_get(x_166, 1); +lean_inc(x_169); +lean_dec(x_166); +x_170 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_170, 0, x_169); -lean_ctor_set(x_170, 1, x_166); -return x_170; +if (lean_is_scalar(x_168)) { + x_171 = lean_alloc_ctor(0, 2, 0); +} else { + x_171 = x_168; +} +lean_ctor_set(x_171, 0, x_170); +lean_ctor_set(x_171, 1, x_167); +return x_171; } else { -lean_object* x_171; lean_object* x_172; uint8_t x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; +lean_object* x_172; lean_object* x_173; uint8_t x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; 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_dec(x_150); -x_171 = lean_ctor_get(x_12, 0); -lean_inc(x_171); -if (lean_is_exclusive(x_12)) { - lean_ctor_release(x_12, 0); - x_172 = x_12; +x_172 = lean_ctor_get(x_11, 0); +lean_inc(x_172); +if (lean_is_exclusive(x_11)) { + lean_ctor_release(x_11, 0); + x_173 = x_11; } else { - lean_dec_ref(x_12); - x_172 = lean_box(0); + lean_dec_ref(x_11); + x_173 = lean_box(0); } -x_173 = 1; -x_174 = lean_box(x_173); -x_175 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_175, 0, x_174); -lean_ctor_set(x_175, 1, x_171); -x_176 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__7(x_2, x_9, x_117, x_129, x_137, x_119, x_144, x_158, x_160, x_10, x_175, x_112, x_115); +x_174 = 1; +x_175 = lean_box(x_174); +x_176 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_176, 0, x_175); +lean_ctor_set(x_176, 1, x_172); +x_177 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__9(x_2, x_6, x_7, x_117, x_129, x_137, x_119, x_144, x_158, x_160, x_161, x_176, x_112, x_115); lean_dec(x_158); -x_177 = lean_ctor_get(x_176, 0); -lean_inc(x_177); -x_178 = lean_ctor_get(x_176, 1); +x_178 = lean_ctor_get(x_177, 0); lean_inc(x_178); -if (lean_is_exclusive(x_176)) { - lean_ctor_release(x_176, 0); - lean_ctor_release(x_176, 1); - x_179 = x_176; +x_179 = lean_ctor_get(x_177, 1); +lean_inc(x_179); +if (lean_is_exclusive(x_177)) { + lean_ctor_release(x_177, 0); + lean_ctor_release(x_177, 1); + x_180 = x_177; } else { - lean_dec_ref(x_176); - x_179 = lean_box(0); + lean_dec_ref(x_177); + x_180 = lean_box(0); } -x_180 = lean_ctor_get(x_177, 1); -lean_inc(x_180); -lean_dec(x_177); -if (lean_is_scalar(x_172)) { - x_181 = lean_alloc_ctor(1, 1, 0); +x_181 = lean_ctor_get(x_178, 1); +lean_inc(x_181); +lean_dec(x_178); +if (lean_is_scalar(x_173)) { + x_182 = lean_alloc_ctor(1, 1, 0); } else { - x_181 = x_172; -} -lean_ctor_set(x_181, 0, x_180); -if (lean_is_scalar(x_179)) { - x_182 = lean_alloc_ctor(0, 2, 0); -} else { - x_182 = x_179; + x_182 = x_173; } lean_ctor_set(x_182, 0, x_181); -lean_ctor_set(x_182, 1, x_178); -return x_182; -} -} -} -} -lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___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) { -_start: -{ -uint8_t x_13; -x_13 = !lean_is_exclusive(x_11); -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; 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; size_t x_65; size_t x_66; -x_14 = lean_ctor_get(x_11, 1); -x_15 = lean_ctor_get(x_11, 2); -x_16 = lean_ctor_get(x_11, 5); -x_17 = l_Lean_replaceRef(x_1, x_16); -lean_dec(x_16); -lean_inc(x_15); -lean_inc(x_14); -lean_ctor_set(x_11, 5, x_17); -x_18 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(x_11, x_12); -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); -x_21 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_897____closed__8; -lean_inc(x_2); -x_22 = lean_name_mk_string(x_2, x_21); -x_23 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_897____closed__10; -lean_inc(x_2); -x_24 = lean_name_mk_string(x_2, x_23); -x_25 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_897____closed__12; -lean_inc(x_2); -x_26 = lean_name_mk_string(x_2, x_25); -x_27 = l_myMacro____x40_Init_Notation___hyg_2278____closed__3; -lean_inc(x_2); -x_28 = lean_name_mk_string(x_2, x_27); -x_29 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkPureUnit___closed__3; -lean_inc(x_15); -lean_inc(x_14); -x_30 = l_Lean_addMacroScope(x_14, x_29, x_15); -x_31 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkPureUnit___closed__2; -x_32 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; -lean_inc(x_19); -x_33 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_33, 0, x_19); -lean_ctor_set(x_33, 1, x_31); -lean_ctor_set(x_33, 2, x_30); -lean_ctor_set(x_33, 3, x_32); -x_34 = l_Array_empty___closed__1; -x_35 = lean_array_push(x_34, x_33); -x_36 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkPureUnit___closed__6; -x_37 = l_Lean_addMacroScope(x_14, x_36, x_15); -x_38 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkPureUnit___closed__5; -x_39 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkPureUnit___closed__8; -x_40 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_40, 0, x_19); -lean_ctor_set(x_40, 1, x_38); -lean_ctor_set(x_40, 2, x_37); -lean_ctor_set(x_40, 3, x_39); -x_41 = lean_array_push(x_34, x_40); -x_42 = l_Lean_nullKind___closed__2; -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 = lean_array_push(x_35, x_43); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_28); -lean_ctor_set(x_45, 1, x_44); -x_46 = lean_array_push(x_34, x_45); -x_47 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_47, 0, x_26); -lean_ctor_set(x_47, 1, x_46); -x_48 = lean_array_push(x_34, x_47); -x_49 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; -x_50 = lean_array_push(x_48, x_49); -lean_inc(x_24); -x_51 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_51, 0, x_24); -lean_ctor_set(x_51, 1, x_50); -x_52 = lean_array_push(x_34, x_51); -x_53 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_53, 0, x_42); -lean_ctor_set(x_53, 1, x_52); -x_54 = lean_array_push(x_34, x_53); -lean_inc(x_22); -x_55 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_55, 0, x_22); -lean_ctor_set(x_55, 1, x_54); -x_56 = l_Array_reverse___rarg(x_7); -x_57 = lean_array_push(x_56, x_3); -x_58 = l_Array_reverse___rarg(x_8); -x_59 = lean_array_push(x_58, x_4); -x_60 = l_Array_reverse___rarg(x_9); -x_61 = lean_array_push(x_60, x_5); -x_62 = l_Array_zip___rarg(x_59, x_61); -lean_dec(x_61); -lean_dec(x_59); -x_63 = l_Array_zip___rarg(x_57, x_62); -lean_dec(x_62); -lean_dec(x_57); -x_64 = lean_array_get_size(x_63); -x_65 = lean_usize_of_nat(x_64); -lean_dec(x_64); -x_66 = 0; -if (lean_obj_tag(x_10) == 0) -{ -uint8_t x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; uint8_t x_71; -x_67 = 1; -x_68 = lean_box(x_67); -x_69 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_69, 0, x_68); -lean_ctor_set(x_69, 1, x_55); -x_70 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__8(x_2, x_6, x_22, x_34, x_42, x_24, x_49, x_63, x_65, x_66, x_69, x_11, x_20); -lean_dec(x_63); -x_71 = !lean_is_exclusive(x_70); -if (x_71 == 0) -{ -lean_object* x_72; lean_object* x_73; lean_object* x_74; -x_72 = lean_ctor_get(x_70, 0); -x_73 = lean_ctor_get(x_72, 1); -lean_inc(x_73); -lean_dec(x_72); -x_74 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_74, 0, x_73); -lean_ctor_set(x_70, 0, x_74); -return x_70; -} -else -{ -lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; -x_75 = lean_ctor_get(x_70, 0); -x_76 = lean_ctor_get(x_70, 1); -lean_inc(x_76); -lean_inc(x_75); -lean_dec(x_70); -x_77 = lean_ctor_get(x_75, 1); -lean_inc(x_77); -lean_dec(x_75); -x_78 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_78, 0, x_77); -x_79 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_79, 0, x_78); -lean_ctor_set(x_79, 1, x_76); -return x_79; -} -} -else -{ -uint8_t x_80; -lean_dec(x_55); -x_80 = !lean_is_exclusive(x_10); -if (x_80 == 0) -{ -lean_object* x_81; uint8_t x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; uint8_t x_86; -x_81 = lean_ctor_get(x_10, 0); -x_82 = 1; -x_83 = lean_box(x_82); -x_84 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_84, 0, x_83); -lean_ctor_set(x_84, 1, x_81); -x_85 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__9(x_2, x_6, x_22, x_34, x_42, x_24, x_49, x_63, x_65, x_66, x_84, x_11, x_20); -lean_dec(x_63); -x_86 = !lean_is_exclusive(x_85); -if (x_86 == 0) -{ -lean_object* x_87; lean_object* x_88; -x_87 = lean_ctor_get(x_85, 0); -x_88 = lean_ctor_get(x_87, 1); -lean_inc(x_88); -lean_dec(x_87); -lean_ctor_set(x_10, 0, x_88); -lean_ctor_set(x_85, 0, x_10); -return x_85; -} -else -{ -lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; -x_89 = lean_ctor_get(x_85, 0); -x_90 = lean_ctor_get(x_85, 1); -lean_inc(x_90); -lean_inc(x_89); -lean_dec(x_85); -x_91 = lean_ctor_get(x_89, 1); -lean_inc(x_91); -lean_dec(x_89); -lean_ctor_set(x_10, 0, x_91); -x_92 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_92, 0, x_10); -lean_ctor_set(x_92, 1, x_90); -return x_92; -} -} -else -{ -lean_object* x_93; uint8_t 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; -x_93 = lean_ctor_get(x_10, 0); -lean_inc(x_93); -lean_dec(x_10); -x_94 = 1; -x_95 = lean_box(x_94); -x_96 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_96, 0, x_95); -lean_ctor_set(x_96, 1, x_93); -x_97 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__9(x_2, x_6, x_22, x_34, x_42, x_24, x_49, x_63, x_65, x_66, x_96, x_11, x_20); -lean_dec(x_63); -x_98 = lean_ctor_get(x_97, 0); -lean_inc(x_98); -x_99 = lean_ctor_get(x_97, 1); -lean_inc(x_99); -if (lean_is_exclusive(x_97)) { - lean_ctor_release(x_97, 0); - lean_ctor_release(x_97, 1); - x_100 = x_97; +if (lean_is_scalar(x_180)) { + x_183 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_97); - x_100 = lean_box(0); + x_183 = x_180; } -x_101 = lean_ctor_get(x_98, 1); -lean_inc(x_101); -lean_dec(x_98); -x_102 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_102, 0, x_101); -if (lean_is_scalar(x_100)) { - x_103 = lean_alloc_ctor(0, 2, 0); -} else { - x_103 = x_100; -} -lean_ctor_set(x_103, 0, x_102); -lean_ctor_set(x_103, 1, x_99); -return x_103; -} -} -} -else -{ -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; 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; size_t x_159; size_t x_160; -x_104 = lean_ctor_get(x_11, 0); -x_105 = lean_ctor_get(x_11, 1); -x_106 = lean_ctor_get(x_11, 2); -x_107 = lean_ctor_get(x_11, 3); -x_108 = lean_ctor_get(x_11, 4); -x_109 = lean_ctor_get(x_11, 5); -lean_inc(x_109); -lean_inc(x_108); -lean_inc(x_107); -lean_inc(x_106); -lean_inc(x_105); -lean_inc(x_104); -lean_dec(x_11); -x_110 = l_Lean_replaceRef(x_1, x_109); -lean_dec(x_109); -lean_inc(x_106); -lean_inc(x_105); -x_111 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_111, 0, x_104); -lean_ctor_set(x_111, 1, x_105); -lean_ctor_set(x_111, 2, x_106); -lean_ctor_set(x_111, 3, x_107); -lean_ctor_set(x_111, 4, x_108); -lean_ctor_set(x_111, 5, x_110); -x_112 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_myMacro____x40_Init_Notation___hyg_15637__expandListLit___spec__1(x_111, x_12); -x_113 = lean_ctor_get(x_112, 0); -lean_inc(x_113); -x_114 = lean_ctor_get(x_112, 1); -lean_inc(x_114); -lean_dec(x_112); -x_115 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_897____closed__8; -lean_inc(x_2); -x_116 = lean_name_mk_string(x_2, x_115); -x_117 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_897____closed__10; -lean_inc(x_2); -x_118 = lean_name_mk_string(x_2, x_117); -x_119 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_897____closed__12; -lean_inc(x_2); -x_120 = lean_name_mk_string(x_2, x_119); -x_121 = l_myMacro____x40_Init_Notation___hyg_2278____closed__3; -lean_inc(x_2); -x_122 = lean_name_mk_string(x_2, x_121); -x_123 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkPureUnit___closed__3; -lean_inc(x_106); -lean_inc(x_105); -x_124 = l_Lean_addMacroScope(x_105, x_123, x_106); -x_125 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkPureUnit___closed__2; -x_126 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; -lean_inc(x_113); -x_127 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_127, 0, x_113); -lean_ctor_set(x_127, 1, x_125); -lean_ctor_set(x_127, 2, x_124); -lean_ctor_set(x_127, 3, x_126); -x_128 = l_Array_empty___closed__1; -x_129 = lean_array_push(x_128, x_127); -x_130 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkPureUnit___closed__6; -x_131 = l_Lean_addMacroScope(x_105, x_130, x_106); -x_132 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkPureUnit___closed__5; -x_133 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkPureUnit___closed__8; -x_134 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_134, 0, x_113); -lean_ctor_set(x_134, 1, x_132); -lean_ctor_set(x_134, 2, x_131); -lean_ctor_set(x_134, 3, x_133); -x_135 = lean_array_push(x_128, x_134); -x_136 = l_Lean_nullKind___closed__2; -x_137 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_137, 0, x_136); -lean_ctor_set(x_137, 1, x_135); -x_138 = lean_array_push(x_129, x_137); -x_139 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_139, 0, x_122); -lean_ctor_set(x_139, 1, x_138); -x_140 = lean_array_push(x_128, x_139); -x_141 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_141, 0, x_120); -lean_ctor_set(x_141, 1, x_140); -x_142 = lean_array_push(x_128, x_141); -x_143 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; -x_144 = lean_array_push(x_142, x_143); -lean_inc(x_118); -x_145 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_145, 0, x_118); -lean_ctor_set(x_145, 1, x_144); -x_146 = lean_array_push(x_128, x_145); -x_147 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_147, 0, x_136); -lean_ctor_set(x_147, 1, x_146); -x_148 = lean_array_push(x_128, x_147); -lean_inc(x_116); -x_149 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_149, 0, x_116); -lean_ctor_set(x_149, 1, x_148); -x_150 = l_Array_reverse___rarg(x_7); -x_151 = lean_array_push(x_150, x_3); -x_152 = l_Array_reverse___rarg(x_8); -x_153 = lean_array_push(x_152, x_4); -x_154 = l_Array_reverse___rarg(x_9); -x_155 = lean_array_push(x_154, x_5); -x_156 = l_Array_zip___rarg(x_153, x_155); -lean_dec(x_155); -lean_dec(x_153); -x_157 = l_Array_zip___rarg(x_151, x_156); -lean_dec(x_156); -lean_dec(x_151); -x_158 = lean_array_get_size(x_157); -x_159 = lean_usize_of_nat(x_158); -lean_dec(x_158); -x_160 = 0; -if (lean_obj_tag(x_10) == 0) -{ -uint8_t 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; -x_161 = 1; -x_162 = lean_box(x_161); -x_163 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_163, 0, x_162); -lean_ctor_set(x_163, 1, x_149); -x_164 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__8(x_2, x_6, x_116, x_128, x_136, x_118, x_143, x_157, x_159, x_160, x_163, x_111, x_114); -lean_dec(x_157); -x_165 = lean_ctor_get(x_164, 0); -lean_inc(x_165); -x_166 = lean_ctor_get(x_164, 1); -lean_inc(x_166); -if (lean_is_exclusive(x_164)) { - lean_ctor_release(x_164, 0); - lean_ctor_release(x_164, 1); - x_167 = x_164; -} else { - lean_dec_ref(x_164); - x_167 = lean_box(0); -} -x_168 = lean_ctor_get(x_165, 1); -lean_inc(x_168); -lean_dec(x_165); -x_169 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_169, 0, x_168); -if (lean_is_scalar(x_167)) { - x_170 = lean_alloc_ctor(0, 2, 0); -} else { - x_170 = x_167; -} -lean_ctor_set(x_170, 0, x_169); -lean_ctor_set(x_170, 1, x_166); -return x_170; -} -else -{ -lean_object* x_171; lean_object* x_172; uint8_t x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; -lean_dec(x_149); -x_171 = lean_ctor_get(x_10, 0); -lean_inc(x_171); -if (lean_is_exclusive(x_10)) { - lean_ctor_release(x_10, 0); - x_172 = x_10; -} else { - lean_dec_ref(x_10); - x_172 = lean_box(0); -} -x_173 = 1; -x_174 = lean_box(x_173); -x_175 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_175, 0, x_174); -lean_ctor_set(x_175, 1, x_171); -x_176 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__9(x_2, x_6, x_116, x_128, x_136, x_118, x_143, x_157, x_159, x_160, x_175, x_111, x_114); -lean_dec(x_157); -x_177 = lean_ctor_get(x_176, 0); -lean_inc(x_177); -x_178 = lean_ctor_get(x_176, 1); -lean_inc(x_178); -if (lean_is_exclusive(x_176)) { - lean_ctor_release(x_176, 0); - lean_ctor_release(x_176, 1); - x_179 = x_176; -} else { - lean_dec_ref(x_176); - x_179 = lean_box(0); -} -x_180 = lean_ctor_get(x_177, 1); -lean_inc(x_180); -lean_dec(x_177); -if (lean_is_scalar(x_172)) { - x_181 = lean_alloc_ctor(1, 1, 0); -} else { - x_181 = x_172; -} -lean_ctor_set(x_181, 0, x_180); -if (lean_is_scalar(x_179)) { - x_182 = lean_alloc_ctor(0, 2, 0); -} else { - x_182 = x_179; -} -lean_ctor_set(x_182, 0, x_181); -lean_ctor_set(x_182, 1, x_178); -return x_182; +lean_ctor_set(x_183, 0, x_182); +lean_ctor_set(x_183, 1, x_179); +return x_183; } } } @@ -20542,7 +20829,7 @@ lean_dec(x_36); lean_ctor_set(x_20, 0, x_43); x_44 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2; x_45 = lean_box(0); -x_46 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___lambda__2(x_1, x_44, x_34, x_9, x_32, x_11, x_30, x_15, x_4, x_27, x_45, x_20, x_2, x_3); +x_46 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___lambda__2(x_1, x_44, x_34, x_9, x_32, x_11, x_30, x_15, x_4, x_12, x_27, x_45, x_20, x_2, x_3); lean_dec(x_1); return x_46; } @@ -20555,7 +20842,7 @@ lean_free_object(x_20); x_47 = lean_box(0); x_48 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2; x_49 = lean_box(0); -x_50 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___lambda__2(x_1, x_48, x_34, x_9, x_32, x_11, x_30, x_15, x_4, x_27, x_49, x_47, x_2, x_3); +x_50 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___lambda__2(x_1, x_48, x_34, x_9, x_32, x_11, x_30, x_15, x_4, x_12, x_27, x_49, x_47, x_2, x_3); lean_dec(x_1); return x_50; } @@ -20616,7 +20903,7 @@ x_71 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_71, 0, x_70); x_72 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2; x_73 = lean_box(0); -x_74 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___lambda__2(x_1, x_72, x_61, x_9, x_59, x_11, x_57, x_15, x_4, x_54, x_73, x_71, x_2, x_3); +x_74 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___lambda__2(x_1, x_72, x_61, x_9, x_59, x_11, x_57, x_15, x_4, x_12, x_54, x_73, x_71, x_2, x_3); lean_dec(x_1); return x_74; } @@ -20628,7 +20915,7 @@ lean_dec(x_63); x_75 = lean_box(0); x_76 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2; x_77 = lean_box(0); -x_78 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___lambda__2(x_1, x_76, x_61, x_9, x_59, x_11, x_57, x_15, x_4, x_54, x_77, x_75, x_2, x_3); +x_78 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___lambda__2(x_1, x_76, x_61, x_9, x_59, x_11, x_57, x_15, x_4, x_12, x_54, x_77, x_75, x_2, x_3); lean_dec(x_1); return x_78; } @@ -20723,7 +21010,7 @@ x_109 = l_Lean_Syntax_getArg(x_103, x_10); lean_dec(x_103); lean_ctor_set(x_87, 0, x_109); x_110 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2; -x_111 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___lambda__3(x_1, x_110, x_9, x_11, x_80, x_4, x_101, x_99, x_97, x_87, x_2, x_3); +x_111 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___lambda__3(x_1, x_110, x_9, x_11, x_80, x_4, x_12, x_101, x_99, x_97, x_87, x_2, x_3); lean_dec(x_1); return x_111; } @@ -20735,7 +21022,7 @@ lean_dec(x_103); lean_free_object(x_87); x_112 = lean_box(0); x_113 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2; -x_114 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___lambda__3(x_1, x_113, x_9, x_11, x_80, x_4, x_101, x_99, x_97, x_112, x_2, x_3); +x_114 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___lambda__3(x_1, x_113, x_9, x_11, x_80, x_4, x_12, x_101, x_99, x_97, x_112, x_2, x_3); lean_dec(x_1); return x_114; } @@ -20794,7 +21081,7 @@ lean_dec(x_127); x_134 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_134, 0, x_133); x_135 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2; -x_136 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___lambda__3(x_1, x_135, x_9, x_11, x_80, x_4, x_125, x_123, x_121, x_134, x_2, x_3); +x_136 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___lambda__3(x_1, x_135, x_9, x_11, x_80, x_4, x_12, x_125, x_123, x_121, x_134, x_2, x_3); lean_dec(x_1); return x_136; } @@ -20805,7 +21092,7 @@ lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_dec(x_127); x_137 = lean_box(0); x_138 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2; -x_139 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___lambda__3(x_1, x_138, x_9, x_11, x_80, x_4, x_125, x_123, x_121, x_137, x_2, x_3); +x_139 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___lambda__3(x_1, x_138, x_9, x_11, x_80, x_4, x_12, x_125, x_123, x_121, x_137, x_2, x_3); lean_dec(x_1); return x_139; } @@ -20896,7 +21183,7 @@ x_165 = l_Lean_Syntax_getArg(x_141, x_10); lean_dec(x_141); lean_ctor_set(x_146, 0, x_165); x_166 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2; -x_167 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___lambda__3(x_1, x_166, x_9, x_11, x_80, x_4, x_160, x_158, x_156, x_146, x_2, x_3); +x_167 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___lambda__3(x_1, x_166, x_9, x_11, x_80, x_4, x_12, x_160, x_158, x_156, x_146, x_2, x_3); lean_dec(x_1); return x_167; } @@ -20908,7 +21195,7 @@ lean_free_object(x_146); lean_dec(x_141); x_168 = lean_box(0); x_169 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2; -x_170 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___lambda__3(x_1, x_169, x_9, x_11, x_80, x_4, x_160, x_158, x_156, x_168, x_2, x_3); +x_170 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___lambda__3(x_1, x_169, x_9, x_11, x_80, x_4, x_12, x_160, x_158, x_156, x_168, x_2, x_3); lean_dec(x_1); return x_170; } @@ -20964,7 +21251,7 @@ lean_dec(x_141); x_187 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_187, 0, x_186); x_188 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2; -x_189 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___lambda__3(x_1, x_188, x_9, x_11, x_80, x_4, x_181, x_179, x_177, x_187, x_2, x_3); +x_189 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___lambda__3(x_1, x_188, x_9, x_11, x_80, x_4, x_12, x_181, x_179, x_177, x_187, x_2, x_3); lean_dec(x_1); return x_189; } @@ -20975,7 +21262,7 @@ lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_dec(x_141); x_190 = lean_box(0); x_191 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2; -x_192 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___lambda__3(x_1, x_191, x_9, x_11, x_80, x_4, x_181, x_179, x_177, x_190, x_2, x_3); +x_192 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___lambda__3(x_1, x_191, x_9, x_11, x_80, x_4, x_12, x_181, x_179, x_177, x_190, x_2, x_3); lean_dec(x_1); return x_192; } @@ -21057,89 +21344,89 @@ x_6 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ex return x_6; } } -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___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* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___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) { _start: { -uint8_t x_14; lean_object* x_15; -x_14 = lean_unbox(x_9); -lean_dec(x_9); -x_15 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_14, x_10, x_11, x_12, x_13); +uint8_t x_15; lean_object* x_16; +x_15 = lean_unbox(x_10); lean_dec(x_10); -lean_dec(x_3); -return x_15; -} -} -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___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: -{ -size_t x_14; size_t x_15; lean_object* x_16; -x_14 = lean_unbox_usize(x_9); -lean_dec(x_9); -x_15 = lean_unbox_usize(x_10); -lean_dec(x_10); -x_16 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_14, x_15, x_11, x_12, x_13); -lean_dec(x_8); -return x_16; -} -} -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__7___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: -{ -size_t x_14; size_t x_15; lean_object* x_16; -x_14 = lean_unbox_usize(x_9); -lean_dec(x_9); -x_15 = lean_unbox_usize(x_10); -lean_dec(x_10); -x_16 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_14, x_15, x_11, x_12, x_13); -lean_dec(x_8); -return x_16; -} -} -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__8___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: -{ -size_t x_14; size_t x_15; lean_object* x_16; -x_14 = lean_unbox_usize(x_9); -lean_dec(x_9); -x_15 = lean_unbox_usize(x_10); -lean_dec(x_10); -x_16 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_14, x_15, x_11, x_12, x_13); -lean_dec(x_8); -return x_16; -} -} -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__9___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: -{ -size_t x_14; size_t x_15; lean_object* x_16; -x_14 = lean_unbox_usize(x_9); -lean_dec(x_9); -x_15 = lean_unbox_usize(x_10); -lean_dec(x_10); -x_16 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__9(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_14, x_15, x_11, x_12, x_13); -lean_dec(x_8); -return x_16; -} -} -lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___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: -{ -size_t x_15; lean_object* x_16; -x_15 = lean_unbox_usize(x_10); -lean_dec(x_10); -x_16 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_15, x_11, x_12, x_13, x_14); +x_16 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_15, x_11, x_12, x_13, x_14); lean_dec(x_11); -lean_dec(x_1); +lean_dec(x_4); return x_16; } } -lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___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* x_11, lean_object* x_12) { +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6___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_13; -x_13 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___lambda__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); +size_t x_15; size_t x_16; lean_object* x_17; +x_15 = lean_unbox_usize(x_10); +lean_dec(x_10); +x_16 = lean_unbox_usize(x_11); +lean_dec(x_11); +x_17 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_15, x_16, x_12, x_13, x_14); +lean_dec(x_9); +return x_17; +} +} +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__7___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: +{ +size_t x_15; size_t x_16; lean_object* x_17; +x_15 = lean_unbox_usize(x_10); +lean_dec(x_10); +x_16 = lean_unbox_usize(x_11); +lean_dec(x_11); +x_17 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_15, x_16, x_12, x_13, x_14); +lean_dec(x_9); +return x_17; +} +} +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__8___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: +{ +size_t x_15; size_t x_16; lean_object* x_17; +x_15 = lean_unbox_usize(x_10); +lean_dec(x_10); +x_16 = lean_unbox_usize(x_11); +lean_dec(x_11); +x_17 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_15, x_16, x_12, x_13, x_14); +lean_dec(x_9); +return x_17; +} +} +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__9___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: +{ +size_t x_15; size_t x_16; lean_object* x_17; +x_15 = lean_unbox_usize(x_10); +lean_dec(x_10); +x_16 = lean_unbox_usize(x_11); +lean_dec(x_11); +x_17 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__9(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_15, x_16, x_12, x_13, x_14); +lean_dec(x_9); +return x_17; +} +} +lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___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, lean_object* x_15) { +_start: +{ +size_t x_16; lean_object* x_17; +x_16 = lean_unbox_usize(x_11); +lean_dec(x_11); +x_17 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_16, x_12, x_13, x_14, x_15); +lean_dec(x_12); lean_dec(x_1); -return x_13; +return x_17; +} +} +lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___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* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_14; +x_14 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___lambda__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); +lean_dec(x_1); +return x_14; } } lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___lambda__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) { @@ -21560,7 +21847,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___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_destructTuple_destruct___closed__3; x_2 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_destructTuple_destruct___closed__4; -x_3 = lean_unsigned_to_nat(718u); +x_3 = lean_unsigned_to_nat(724u); x_4 = lean_unsigned_to_nat(13u); x_5 = l_Lean_Name_getString_x21___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -23620,7 +23907,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___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_destructTuple_destruct___closed__3; x_2 = l_Lean_Elab_Term_Do_ToTerm_returnToTerm___closed__17; -x_3 = lean_unsigned_to_nat(837u); +x_3 = lean_unsigned_to_nat(843u); x_4 = lean_unsigned_to_nat(28u); x_5 = l_Lean_Name_getString_x21___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -25232,7 +25519,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___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_destructTuple_destruct___closed__3; x_2 = l_Lean_Elab_Term_Do_ToTerm_continueToTerm___closed__1; -x_3 = lean_unsigned_to_nat(846u); +x_3 = lean_unsigned_to_nat(852u); x_4 = lean_unsigned_to_nat(28u); x_5 = l_Lean_Name_getString_x21___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -25458,7 +25745,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___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_destructTuple_destruct___closed__3; x_2 = l_Lean_Elab_Term_Do_ToTerm_continueToTerm___closed__1; -x_3 = lean_unsigned_to_nat(850u); +x_3 = lean_unsigned_to_nat(856u); x_4 = lean_unsigned_to_nat(28u); x_5 = l_Lean_Name_getString_x21___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -26625,7 +26912,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___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_destructTuple_destruct___closed__3; x_2 = l_Lean_Elab_Term_Do_ToTerm_breakToTerm___closed__1; -x_3 = lean_unsigned_to_nat(858u); +x_3 = lean_unsigned_to_nat(864u); x_4 = lean_unsigned_to_nat(28u); x_5 = l_Lean_Name_getString_x21___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -26703,7 +26990,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___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_destructTuple_destruct___closed__3; x_2 = l_Lean_Elab_Term_Do_ToTerm_breakToTerm___closed__1; -x_3 = lean_unsigned_to_nat(862u); +x_3 = lean_unsigned_to_nat(868u); x_4 = lean_unsigned_to_nat(28u); x_5 = l_Lean_Name_getString_x21___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -27918,7 +28205,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___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_destructTuple_destruct___closed__3; x_2 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTerm___closed__5; -x_3 = lean_unsigned_to_nat(873u); +x_3 = lean_unsigned_to_nat(879u); x_4 = lean_unsigned_to_nat(28u); x_5 = l_Lean_Name_getString_x21___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -32657,7 +32944,7 @@ x_28 = l_Lean_Elab_Term_elabNoMatch___closed__1; x_29 = lean_array_push(x_28, x_2); x_30 = l_Array_append___rarg(x_27, x_29); lean_dec(x_29); -x_31 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__3; +x_31 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__3; x_32 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -33033,7 +33320,7 @@ x_192 = lean_array_push(x_191, x_189); x_193 = l_Lean_mkOptionalNode___closed__1; x_194 = lean_array_push(x_192, x_193); x_195 = lean_array_push(x_194, x_2); -x_196 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__2; +x_196 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__2; x_197 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_197, 0, x_196); lean_ctor_set(x_197, 1, x_195); @@ -33201,7 +33488,7 @@ x_253 = l_Lean_Elab_Term_elabNoMatch___closed__1; x_254 = lean_array_push(x_253, x_2); x_255 = l_Array_append___rarg(x_252, x_254); lean_dec(x_254); -x_256 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__3; +x_256 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__3; x_257 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_257, 0, x_256); lean_ctor_set(x_257, 1, x_255); @@ -33485,7 +33772,7 @@ x_368 = lean_array_push(x_367, x_365); x_369 = l_Lean_mkOptionalNode___closed__1; x_370 = lean_array_push(x_368, x_369); x_371 = lean_array_push(x_370, x_2); -x_372 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__2; +x_372 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__2; x_373 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_373, 0, x_372); lean_ctor_set(x_373, 1, x_371); @@ -36559,7 +36846,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___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_destructTuple_destruct___closed__3; x_2 = l_Lean_Elab_Term_Do_ToTerm_mkNestedKind___closed__1; -x_3 = lean_unsigned_to_nat(1020u); +x_3 = lean_unsigned_to_nat(1026u); x_4 = lean_unsigned_to_nat(27u); x_5 = l_Lean_Name_getString_x21___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -36752,7 +37039,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___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_destructTuple_destruct___closed__3; x_2 = l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__3; -x_3 = lean_unsigned_to_nat(1076u); +x_3 = lean_unsigned_to_nat(1082u); x_4 = lean_unsigned_to_nat(27u); x_5 = l_Lean_Name_getString_x21___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -42853,34 +43140,114 @@ x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_T return x_2; } } -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__1(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* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__1(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) { _start: { -uint8_t x_8; uint8_t x_9; -x_8 = l_Lean_Syntax_isQuot(x_1); -x_9 = x_3 < x_2; -if (x_9 == 0) +uint8_t x_9; uint8_t x_10; uint8_t x_11; +x_9 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodForbiddenBinder(x_2); +x_10 = l_Lean_Syntax_isQuot(x_1); +x_11 = x_4 < x_3; +if (x_11 == 0) { -lean_object* x_10; lean_object* x_11; lean_object* x_12; -lean_dec(x_6); -x_10 = x_4; -x_11 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_11, 0, x_10); -lean_ctor_set(x_11, 1, x_5); -x_12 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_12, 0, x_11); -lean_ctor_set(x_12, 1, x_7); -return x_12; +lean_object* x_12; lean_object* x_13; lean_object* x_14; +lean_dec(x_7); +x_12 = x_5; +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_13, 1, x_6); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_8); +return x_14; } else { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; -x_13 = lean_array_uget(x_4, x_3); -x_14 = lean_unsigned_to_nat(0u); -x_15 = lean_array_uset(x_4, x_3, x_14); -x_16 = x_13; -lean_inc(x_6); -x_17 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux(x_8, x_16, x_5, x_6, x_7); +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_5, x_4); +x_16 = lean_unsigned_to_nat(0u); +x_17 = lean_array_uset(x_5, x_4, x_16); +x_18 = x_15; +lean_inc(x_7); +x_19 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux(x_10, x_9, x_18, x_6, x_7, x_8); +if (lean_obj_tag(x_19) == 0) +{ +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; +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 = lean_ctor_get(x_20, 0); +lean_inc(x_22); +x_23 = lean_ctor_get(x_20, 1); +lean_inc(x_23); +lean_dec(x_20); +x_24 = 1; +x_25 = x_4 + x_24; +x_26 = x_22; +x_27 = lean_array_uset(x_17, x_4, x_26); +x_4 = x_25; +x_5 = x_27; +x_6 = x_23; +x_8 = x_21; +goto _start; +} +else +{ +uint8_t x_29; +lean_dec(x_17); +lean_dec(x_7); +x_29 = !lean_is_exclusive(x_19); +if (x_29 == 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_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; +} +} +} +} +} +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__2(size_t x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +uint8_t x_7; +x_7 = x_2 < x_1; +if (x_7 == 0) +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; +lean_dec(x_5); +x_8 = x_3; +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_8); +lean_ctor_set(x_9, 1, x_4); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_9); +lean_ctor_set(x_10, 1, x_6); +return x_10; +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; +x_11 = lean_array_uget(x_3, x_2); +x_12 = lean_unsigned_to_nat(0u); +x_13 = lean_array_uset(x_3, x_2, x_12); +x_14 = x_11; +x_15 = 1; +x_16 = 0; +lean_inc(x_5); +x_17 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux(x_15, x_16, x_14, x_4, x_5, x_6); if (lean_obj_tag(x_17) == 0) { lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; size_t x_22; size_t x_23; lean_object* x_24; lean_object* x_25; @@ -42895,20 +43262,20 @@ x_21 = lean_ctor_get(x_18, 1); lean_inc(x_21); lean_dec(x_18); x_22 = 1; -x_23 = x_3 + x_22; +x_23 = x_2 + x_22; x_24 = x_20; -x_25 = lean_array_uset(x_15, x_3, x_24); -x_3 = x_23; -x_4 = x_25; -x_5 = x_21; -x_7 = x_19; +x_25 = lean_array_uset(x_13, x_2, x_24); +x_2 = x_23; +x_3 = x_25; +x_4 = x_21; +x_6 = x_19; goto _start; } else { uint8_t x_27; -lean_dec(x_15); -lean_dec(x_6); +lean_dec(x_13); +lean_dec(x_5); x_27 = !lean_is_exclusive(x_17); if (x_27 == 0) { @@ -42931,7 +43298,165 @@ return x_30; } } } -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__2(size_t x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__3(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) { +_start: +{ +uint8_t x_8; uint8_t x_9; +x_8 = l_Lean_Syntax_isQuot(x_1); +x_9 = x_3 < x_2; +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +lean_dec(x_6); +x_10 = x_4; +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_10); +lean_ctor_set(x_11, 1, x_5); +x_12 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_12, 0, x_11); +lean_ctor_set(x_12, 1, x_7); +return x_12; +} +else +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; lean_object* x_18; +x_13 = lean_array_uget(x_4, x_3); +x_14 = lean_unsigned_to_nat(0u); +x_15 = lean_array_uset(x_4, x_3, x_14); +x_16 = x_13; +x_17 = 0; +lean_inc(x_6); +x_18 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux(x_8, x_17, x_16, x_5, x_6, x_7); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; size_t x_23; size_t x_24; lean_object* x_25; lean_object* x_26; +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); +x_21 = lean_ctor_get(x_19, 0); +lean_inc(x_21); +x_22 = lean_ctor_get(x_19, 1); +lean_inc(x_22); +lean_dec(x_19); +x_23 = 1; +x_24 = x_3 + x_23; +x_25 = x_21; +x_26 = lean_array_uset(x_15, x_3, x_25); +x_3 = x_24; +x_4 = x_26; +x_5 = x_22; +x_7 = x_20; +goto _start; +} +else +{ +uint8_t x_28; +lean_dec(x_15); +lean_dec(x_6); +x_28 = !lean_is_exclusive(x_18); +if (x_28 == 0) +{ +return x_18; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_18, 0); +x_30 = lean_ctor_get(x_18, 1); +lean_inc(x_30); +lean_inc(x_29); +lean_dec(x_18); +x_31 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_31, 0, x_29); +lean_ctor_set(x_31, 1, x_30); +return x_31; +} +} +} +} +} +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___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) { +_start: +{ +uint8_t x_8; uint8_t x_9; +x_8 = l_Lean_Syntax_isQuot(x_1); +x_9 = x_3 < x_2; +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +lean_dec(x_6); +x_10 = x_4; +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_10); +lean_ctor_set(x_11, 1, x_5); +x_12 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_12, 0, x_11); +lean_ctor_set(x_12, 1, x_7); +return x_12; +} +else +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; lean_object* x_18; +x_13 = lean_array_uget(x_4, x_3); +x_14 = lean_unsigned_to_nat(0u); +x_15 = lean_array_uset(x_4, x_3, x_14); +x_16 = x_13; +x_17 = 1; +lean_inc(x_6); +x_18 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux(x_8, x_17, x_16, x_5, x_6, x_7); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; size_t x_23; size_t x_24; lean_object* x_25; lean_object* x_26; +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); +x_21 = lean_ctor_get(x_19, 0); +lean_inc(x_21); +x_22 = lean_ctor_get(x_19, 1); +lean_inc(x_22); +lean_dec(x_19); +x_23 = 1; +x_24 = x_3 + x_23; +x_25 = x_21; +x_26 = lean_array_uset(x_15, x_3, x_25); +x_3 = x_24; +x_4 = x_26; +x_5 = x_22; +x_7 = x_20; +goto _start; +} +else +{ +uint8_t x_28; +lean_dec(x_15); +lean_dec(x_6); +x_28 = !lean_is_exclusive(x_18); +if (x_28 == 0) +{ +return x_18; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_18, 0); +x_30 = lean_ctor_get(x_18, 1); +lean_inc(x_30); +lean_inc(x_29); +lean_dec(x_18); +x_31 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_31, 0, x_29); +lean_ctor_set(x_31, 1, x_30); +return x_31; +} +} +} +} +} +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__5(size_t x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { uint8_t x_7; @@ -42958,7 +43483,7 @@ x_13 = lean_array_uset(x_3, x_2, x_12); x_14 = x_11; x_15 = 1; lean_inc(x_5); -x_16 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux(x_15, x_14, x_4, x_5, x_6); +x_16 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux(x_15, x_15, x_14, x_4, x_5, x_6); if (lean_obj_tag(x_16) == 0) { lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; size_t x_21; size_t x_22; lean_object* x_23; lean_object* x_24; @@ -43009,7 +43534,7 @@ return x_29; } } } -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__3(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* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__6(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) { _start: { uint8_t x_8; uint8_t x_9; @@ -43030,142 +43555,65 @@ return x_12; } else { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; lean_object* x_18; x_13 = lean_array_uget(x_4, x_3); x_14 = lean_unsigned_to_nat(0u); x_15 = lean_array_uset(x_4, x_3, x_14); x_16 = x_13; +x_17 = 1; lean_inc(x_6); -x_17 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux(x_8, x_16, x_5, x_6, x_7); -if (lean_obj_tag(x_17) == 0) +x_18 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux(x_8, x_17, x_16, x_5, x_6, x_7); +if (lean_obj_tag(x_18) == 0) { -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; size_t x_22; size_t x_23; lean_object* x_24; lean_object* x_25; -x_18 = lean_ctor_get(x_17, 0); -lean_inc(x_18); -x_19 = lean_ctor_get(x_17, 1); +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; size_t x_23; size_t x_24; lean_object* x_25; lean_object* x_26; +x_19 = lean_ctor_get(x_18, 0); lean_inc(x_19); -lean_dec(x_17); -x_20 = lean_ctor_get(x_18, 0); +x_20 = lean_ctor_get(x_18, 1); lean_inc(x_20); -x_21 = lean_ctor_get(x_18, 1); -lean_inc(x_21); lean_dec(x_18); -x_22 = 1; -x_23 = x_3 + x_22; -x_24 = x_20; -x_25 = lean_array_uset(x_15, x_3, x_24); -x_3 = x_23; -x_4 = x_25; -x_5 = x_21; -x_7 = x_19; +x_21 = lean_ctor_get(x_19, 0); +lean_inc(x_21); +x_22 = lean_ctor_get(x_19, 1); +lean_inc(x_22); +lean_dec(x_19); +x_23 = 1; +x_24 = x_3 + x_23; +x_25 = x_21; +x_26 = lean_array_uset(x_15, x_3, x_25); +x_3 = x_24; +x_4 = x_26; +x_5 = x_22; +x_7 = x_20; goto _start; } else { -uint8_t x_27; +uint8_t x_28; lean_dec(x_15); lean_dec(x_6); -x_27 = !lean_is_exclusive(x_17); -if (x_27 == 0) +x_28 = !lean_is_exclusive(x_18); +if (x_28 == 0) { -return x_17; +return x_18; } else { -lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_28 = lean_ctor_get(x_17, 0); -x_29 = lean_ctor_get(x_17, 1); +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_18, 0); +x_30 = lean_ctor_get(x_18, 1); +lean_inc(x_30); lean_inc(x_29); -lean_inc(x_28); -lean_dec(x_17); -x_30 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_30, 0, x_28); -lean_ctor_set(x_30, 1, x_29); -return x_30; -} -} -} -} -} -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___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) { -_start: -{ -uint8_t x_8; uint8_t x_9; -x_8 = l_Lean_Syntax_isQuot(x_1); -x_9 = x_3 < x_2; -if (x_9 == 0) -{ -lean_object* x_10; lean_object* x_11; lean_object* x_12; -lean_dec(x_6); -x_10 = x_4; -x_11 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_11, 0, x_10); -lean_ctor_set(x_11, 1, x_5); -x_12 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_12, 0, x_11); -lean_ctor_set(x_12, 1, x_7); -return x_12; -} -else -{ -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; -x_13 = lean_array_uget(x_4, x_3); -x_14 = lean_unsigned_to_nat(0u); -x_15 = lean_array_uset(x_4, x_3, x_14); -x_16 = x_13; -lean_inc(x_6); -x_17 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux(x_8, x_16, x_5, x_6, x_7); -if (lean_obj_tag(x_17) == 0) -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; size_t x_22; size_t x_23; lean_object* x_24; lean_object* x_25; -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); -x_20 = lean_ctor_get(x_18, 0); -lean_inc(x_20); -x_21 = lean_ctor_get(x_18, 1); -lean_inc(x_21); lean_dec(x_18); -x_22 = 1; -x_23 = x_3 + x_22; -x_24 = x_20; -x_25 = lean_array_uset(x_15, x_3, x_24); -x_3 = x_23; -x_4 = x_25; -x_5 = x_21; -x_7 = x_19; -goto _start; -} -else -{ -uint8_t x_27; -lean_dec(x_15); -lean_dec(x_6); -x_27 = !lean_is_exclusive(x_17); -if (x_27 == 0) -{ -return x_17; -} -else -{ -lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_28 = lean_ctor_get(x_17, 0); -x_29 = lean_ctor_get(x_17, 1); -lean_inc(x_29); -lean_inc(x_28); -lean_dec(x_17); -x_30 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_30, 0, x_28); -lean_ctor_set(x_30, 1, x_29); -return x_30; +x_31 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_31, 0, x_29); +lean_ctor_set(x_31, 1, x_30); +return x_31; } } } } } -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__7(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; @@ -43180,6 +43628,206 @@ lean_ctor_set(x_7, 1, x_3); return x_7; } } +lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___lambda__1(lean_object* x_1, uint8_t x_2, uint8_t 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_instInhabitedSyntax; +x_10 = lean_unsigned_to_nat(1u); +x_11 = lean_array_get(x_9, x_1, x_10); +lean_inc(x_7); +x_12 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux(x_2, x_3, x_11, x_6, x_7, x_8); +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; 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; uint8_t x_55; +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_ctor_get(x_13, 0); +lean_inc(x_15); +x_16 = lean_ctor_get(x_13, 1); +lean_inc(x_16); +lean_dec(x_13); +x_17 = l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__7(x_16, x_7, x_14); +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); +x_20 = lean_ctor_get(x_18, 0); +lean_inc(x_20); +x_21 = lean_ctor_get(x_18, 1); +lean_inc(x_21); +lean_dec(x_18); +x_22 = lean_ctor_get(x_7, 2); +lean_inc(x_22); +x_23 = lean_ctor_get(x_7, 1); +lean_inc(x_23); +x_24 = l_Lean_Parser_Term_doLetArrow___elambda__1___closed__1; +lean_inc(x_4); +x_25 = lean_name_mk_string(x_4, x_24); +x_26 = l_myMacro____x40_Init_Notation___hyg_15419____closed__1; +lean_inc(x_20); +x_27 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_27, 0, x_20); +lean_ctor_set(x_27, 1, x_26); +x_28 = l_Array_empty___closed__1; +x_29 = lean_array_push(x_28, x_27); +x_30 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; +x_31 = lean_array_push(x_29, x_30); +x_32 = l_Lean_Parser_Term_doIdDecl___elambda__1___closed__1; +lean_inc(x_4); +x_33 = lean_name_mk_string(x_4, x_32); +x_34 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_948____closed__4; +x_35 = l_Lean_addMacroScope(x_23, x_34, x_22); +x_36 = lean_box(0); +x_37 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_948____closed__3; +lean_inc(x_35); +lean_inc(x_20); +x_38 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_38, 0, x_20); +lean_ctor_set(x_38, 1, x_37); +lean_ctor_set(x_38, 2, x_35); +lean_ctor_set(x_38, 3, x_36); +x_39 = lean_array_push(x_28, x_38); +x_40 = lean_array_push(x_39, x_30); +x_41 = l_Lean_Parser_Tactic_rwRule___closed__3; +x_42 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_42, 0, x_20); +lean_ctor_set(x_42, 1, x_41); +x_43 = lean_array_push(x_40, x_42); +x_44 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_897____closed__12; +x_45 = lean_name_mk_string(x_4, x_44); +x_46 = lean_array_push(x_28, x_15); +x_47 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_47, 0, x_45); +lean_ctor_set(x_47, 1, x_46); +x_48 = lean_array_push(x_43, x_47); +x_49 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_49, 0, x_33); +lean_ctor_set(x_49, 1, x_48); +x_50 = lean_array_push(x_31, x_49); +x_51 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_51, 0, x_25); +lean_ctor_set(x_51, 1, x_50); +x_52 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_52, 0, x_51); +lean_ctor_set(x_52, 1, x_36); +x_53 = l_List_append___rarg(x_21, x_52); +x_54 = l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__7(x_53, x_7, x_19); +lean_dec(x_7); +x_55 = !lean_is_exclusive(x_54); +if (x_55 == 0) +{ +lean_object* x_56; uint8_t x_57; +x_56 = lean_ctor_get(x_54, 0); +x_57 = !lean_is_exclusive(x_56); +if (x_57 == 0) +{ +lean_object* x_58; lean_object* x_59; +x_58 = lean_ctor_get(x_56, 0); +x_59 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_59, 0, x_58); +lean_ctor_set(x_59, 1, x_37); +lean_ctor_set(x_59, 2, x_35); +lean_ctor_set(x_59, 3, x_36); +lean_ctor_set(x_56, 0, x_59); +return x_54; +} +else +{ +lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_60 = lean_ctor_get(x_56, 0); +x_61 = lean_ctor_get(x_56, 1); +lean_inc(x_61); +lean_inc(x_60); +lean_dec(x_56); +x_62 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_62, 0, x_60); +lean_ctor_set(x_62, 1, x_37); +lean_ctor_set(x_62, 2, x_35); +lean_ctor_set(x_62, 3, x_36); +x_63 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_63, 0, x_62); +lean_ctor_set(x_63, 1, x_61); +lean_ctor_set(x_54, 0, x_63); +return x_54; +} +} +else +{ +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; +x_64 = lean_ctor_get(x_54, 0); +x_65 = lean_ctor_get(x_54, 1); +lean_inc(x_65); +lean_inc(x_64); +lean_dec(x_54); +x_66 = lean_ctor_get(x_64, 0); +lean_inc(x_66); +x_67 = lean_ctor_get(x_64, 1); +lean_inc(x_67); +if (lean_is_exclusive(x_64)) { + lean_ctor_release(x_64, 0); + lean_ctor_release(x_64, 1); + x_68 = x_64; +} else { + lean_dec_ref(x_64); + x_68 = lean_box(0); +} +x_69 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_69, 0, x_66); +lean_ctor_set(x_69, 1, x_37); +lean_ctor_set(x_69, 2, x_35); +lean_ctor_set(x_69, 3, x_36); +if (lean_is_scalar(x_68)) { + x_70 = lean_alloc_ctor(0, 2, 0); +} else { + x_70 = x_68; +} +lean_ctor_set(x_70, 0, x_69); +lean_ctor_set(x_70, 1, x_67); +x_71 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_71, 0, x_70); +lean_ctor_set(x_71, 1, x_65); +return x_71; +} +} +else +{ +uint8_t x_72; +lean_dec(x_7); +lean_dec(x_4); +x_72 = !lean_is_exclusive(x_12); +if (x_72 == 0) +{ +return x_12; +} +else +{ +lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_73 = lean_ctor_get(x_12, 0); +x_74 = lean_ctor_get(x_12, 1); +lean_inc(x_74); +lean_inc(x_73); +lean_dec(x_12); +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; +} +} +} +} +static lean_object* _init_l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("cannot lift `(<- ...)` over a binder, this error usually happens when you are trying to lift a method nested in a `fun` or `match`-alternative, and it can often be fixed by adding a missing `do`"); +return x_1; +} +} static lean_object* _init_l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___boxed__const__1() { _start: { @@ -43189,1605 +43837,1421 @@ x_2 = lean_box_usize(x_1); return x_2; } } -lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux(uint8_t x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { -if (lean_obj_tag(x_2) == 1) +if (lean_obj_tag(x_3) == 1) { -lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_226; -x_6 = lean_ctor_get(x_2, 0); -lean_inc(x_6); -x_7 = lean_ctor_get(x_2, 1); +lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_278; +x_7 = lean_ctor_get(x_3, 0); lean_inc(x_7); -x_226 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter(x_6); -if (x_226 == 0) +x_8 = lean_ctor_get(x_3, 1); +lean_inc(x_8); +x_278 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter(x_7); +if (x_278 == 0) { -lean_object* x_227; uint8_t x_228; -x_227 = l_Lean_Parser_Term_liftMethod___elambda__1___closed__2; -x_228 = lean_name_eq(x_6, x_227); -if (x_228 == 0) +lean_object* x_279; uint8_t x_280; +x_279 = l_Lean_Parser_Term_liftMethod___elambda__1___closed__2; +x_280 = lean_name_eq(x_7, x_279); +if (x_280 == 0) { -lean_object* x_229; -x_229 = lean_box(0); -x_8 = x_229; -goto block_225; +lean_object* x_281; +x_281 = lean_box(0); +x_9 = x_281; +goto block_277; } else { if (x_1 == 0) { -uint8_t x_230; -lean_dec(x_6); -x_230 = !lean_is_exclusive(x_2); -if (x_230 == 0) -{ -lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; uint8_t x_237; -x_231 = lean_ctor_get(x_2, 1); -lean_dec(x_231); -x_232 = lean_ctor_get(x_2, 0); -lean_dec(x_232); -x_233 = l_Lean_instInhabitedSyntax; -x_234 = lean_unsigned_to_nat(1u); -x_235 = lean_array_get(x_233, x_7, x_234); lean_dec(x_7); -x_236 = lean_nat_add(x_5, x_234); -x_237 = !lean_is_exclusive(x_4); -if (x_237 == 0) +if (x_2 == 0) { -lean_object* x_238; lean_object* x_239; lean_object* x_240; -x_238 = lean_ctor_get(x_4, 1); -x_239 = lean_ctor_get(x_4, 2); -lean_dec(x_239); -lean_inc(x_5); -lean_inc(x_238); -lean_ctor_set(x_4, 2, x_5); -lean_inc(x_4); -x_240 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux(x_1, x_235, x_3, x_4, x_236); -if (lean_obj_tag(x_240) == 0) +lean_object* x_282; lean_object* x_283; uint8_t x_284; +lean_dec(x_3); +x_282 = lean_unsigned_to_nat(1u); +x_283 = lean_nat_add(x_6, x_282); +x_284 = !lean_is_exclusive(x_5); +if (x_284 == 0) { -lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; 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; uint8_t x_277; -x_241 = lean_ctor_get(x_240, 0); -lean_inc(x_241); -x_242 = lean_ctor_get(x_240, 1); -lean_inc(x_242); -lean_dec(x_240); -x_243 = lean_ctor_get(x_241, 0); -lean_inc(x_243); -x_244 = lean_ctor_get(x_241, 1); -lean_inc(x_244); -lean_dec(x_241); -x_245 = l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__5(x_244, x_4, x_242); -x_246 = lean_ctor_get(x_245, 0); -lean_inc(x_246); -x_247 = lean_ctor_get(x_245, 1); -lean_inc(x_247); -lean_dec(x_245); -x_248 = lean_ctor_get(x_246, 0); -lean_inc(x_248); -x_249 = lean_ctor_get(x_246, 1); -lean_inc(x_249); -lean_dec(x_246); -x_250 = l_myMacro____x40_Init_Notation___hyg_15419____closed__1; -lean_inc(x_248); -lean_ctor_set_tag(x_2, 2); -lean_ctor_set(x_2, 1, x_250); -lean_ctor_set(x_2, 0, x_248); -x_251 = l_Array_empty___closed__1; -x_252 = lean_array_push(x_251, x_2); -x_253 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; -x_254 = lean_array_push(x_252, x_253); -x_255 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_948____closed__4; -x_256 = l_Lean_addMacroScope(x_238, x_255, x_5); -x_257 = lean_box(0); -x_258 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_948____closed__3; -lean_inc(x_256); -lean_inc(x_248); -x_259 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_259, 0, x_248); -lean_ctor_set(x_259, 1, x_258); -lean_ctor_set(x_259, 2, x_256); -lean_ctor_set(x_259, 3, x_257); -x_260 = lean_array_push(x_251, x_259); -x_261 = lean_array_push(x_260, x_253); -x_262 = l_Lean_Parser_Tactic_rwRule___closed__3; -x_263 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_263, 0, x_248); -lean_ctor_set(x_263, 1, x_262); -x_264 = lean_array_push(x_261, x_263); -x_265 = lean_array_push(x_251, x_243); -x_266 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_897____closed__13; -x_267 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_267, 0, x_266); -lean_ctor_set(x_267, 1, x_265); -x_268 = lean_array_push(x_264, x_267); -x_269 = l_Lean_Parser_Term_doIdDecl___elambda__1___closed__2; -x_270 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_270, 0, x_269); -lean_ctor_set(x_270, 1, x_268); -x_271 = lean_array_push(x_254, x_270); -x_272 = l_Lean_Parser_Term_doLetArrow___elambda__1___closed__2; -x_273 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_273, 0, x_272); -lean_ctor_set(x_273, 1, x_271); -x_274 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_274, 0, x_273); -lean_ctor_set(x_274, 1, x_257); -x_275 = l_List_append___rarg(x_249, x_274); -x_276 = l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__5(x_275, x_4, x_247); -lean_dec(x_4); -x_277 = !lean_is_exclusive(x_276); -if (x_277 == 0) -{ -lean_object* x_278; uint8_t x_279; -x_278 = lean_ctor_get(x_276, 0); -x_279 = !lean_is_exclusive(x_278); -if (x_279 == 0) -{ -lean_object* x_280; lean_object* x_281; -x_280 = lean_ctor_get(x_278, 0); -x_281 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_281, 0, x_280); -lean_ctor_set(x_281, 1, x_258); -lean_ctor_set(x_281, 2, x_256); -lean_ctor_set(x_281, 3, x_257); -lean_ctor_set(x_278, 0, x_281); -return x_276; +lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; +x_285 = lean_ctor_get(x_5, 2); +lean_dec(x_285); +lean_ctor_set(x_5, 2, x_6); +x_286 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2; +x_287 = lean_box(0); +x_288 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___lambda__1(x_8, x_1, x_2, x_286, x_287, x_4, x_5, x_283); +lean_dec(x_8); +return x_288; } else { -lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; -x_282 = lean_ctor_get(x_278, 0); -x_283 = lean_ctor_get(x_278, 1); -lean_inc(x_283); -lean_inc(x_282); -lean_dec(x_278); -x_284 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_284, 0, x_282); -lean_ctor_set(x_284, 1, x_258); -lean_ctor_set(x_284, 2, x_256); -lean_ctor_set(x_284, 3, x_257); -x_285 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_285, 0, x_284); -lean_ctor_set(x_285, 1, x_283); -lean_ctor_set(x_276, 0, x_285); -return x_276; -} -} -else -{ -lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; -x_286 = lean_ctor_get(x_276, 0); -x_287 = lean_ctor_get(x_276, 1); -lean_inc(x_287); -lean_inc(x_286); -lean_dec(x_276); -x_288 = lean_ctor_get(x_286, 0); -lean_inc(x_288); -x_289 = lean_ctor_get(x_286, 1); +lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; +x_289 = lean_ctor_get(x_5, 0); +x_290 = lean_ctor_get(x_5, 1); +x_291 = lean_ctor_get(x_5, 3); +x_292 = lean_ctor_get(x_5, 4); +x_293 = lean_ctor_get(x_5, 5); +lean_inc(x_293); +lean_inc(x_292); +lean_inc(x_291); +lean_inc(x_290); lean_inc(x_289); -if (lean_is_exclusive(x_286)) { - lean_ctor_release(x_286, 0); - lean_ctor_release(x_286, 1); - x_290 = x_286; -} else { - lean_dec_ref(x_286); - x_290 = lean_box(0); -} -x_291 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_291, 0, x_288); -lean_ctor_set(x_291, 1, x_258); -lean_ctor_set(x_291, 2, x_256); -lean_ctor_set(x_291, 3, x_257); -if (lean_is_scalar(x_290)) { - x_292 = lean_alloc_ctor(0, 2, 0); -} else { - x_292 = x_290; -} -lean_ctor_set(x_292, 0, x_291); -lean_ctor_set(x_292, 1, x_289); -x_293 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_293, 0, x_292); -lean_ctor_set(x_293, 1, x_287); -return x_293; -} -} -else -{ -uint8_t x_294; -lean_dec(x_4); -lean_dec(x_238); -lean_free_object(x_2); lean_dec(x_5); -x_294 = !lean_is_exclusive(x_240); -if (x_294 == 0) -{ -return x_240; -} -else -{ -lean_object* x_295; lean_object* x_296; lean_object* x_297; -x_295 = lean_ctor_get(x_240, 0); -x_296 = lean_ctor_get(x_240, 1); -lean_inc(x_296); -lean_inc(x_295); -lean_dec(x_240); -x_297 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_297, 0, x_295); -lean_ctor_set(x_297, 1, x_296); +x_294 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_294, 0, x_289); +lean_ctor_set(x_294, 1, x_290); +lean_ctor_set(x_294, 2, x_6); +lean_ctor_set(x_294, 3, x_291); +lean_ctor_set(x_294, 4, x_292); +lean_ctor_set(x_294, 5, x_293); +x_295 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2; +x_296 = lean_box(0); +x_297 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___lambda__1(x_8, x_1, x_2, x_295, x_296, x_4, x_294, x_283); +lean_dec(x_8); return x_297; } } -} else { -lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; -x_298 = lean_ctor_get(x_4, 0); -x_299 = lean_ctor_get(x_4, 1); -x_300 = lean_ctor_get(x_4, 3); -x_301 = lean_ctor_get(x_4, 4); -x_302 = lean_ctor_get(x_4, 5); -lean_inc(x_302); -lean_inc(x_301); -lean_inc(x_300); -lean_inc(x_299); -lean_inc(x_298); -lean_dec(x_4); -lean_inc(x_5); -lean_inc(x_299); -x_303 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_303, 0, x_298); -lean_ctor_set(x_303, 1, x_299); -lean_ctor_set(x_303, 2, x_5); -lean_ctor_set(x_303, 3, x_300); -lean_ctor_set(x_303, 4, x_301); -lean_ctor_set(x_303, 5, x_302); -lean_inc(x_303); -x_304 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux(x_1, x_235, x_3, x_303, x_236); -if (lean_obj_tag(x_304) == 0) -{ -lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; 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; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; -x_305 = lean_ctor_get(x_304, 0); -lean_inc(x_305); -x_306 = lean_ctor_get(x_304, 1); -lean_inc(x_306); -lean_dec(x_304); -x_307 = lean_ctor_get(x_305, 0); -lean_inc(x_307); -x_308 = lean_ctor_get(x_305, 1); -lean_inc(x_308); -lean_dec(x_305); -x_309 = l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__5(x_308, x_303, x_306); -x_310 = lean_ctor_get(x_309, 0); -lean_inc(x_310); -x_311 = lean_ctor_get(x_309, 1); -lean_inc(x_311); -lean_dec(x_309); -x_312 = lean_ctor_get(x_310, 0); -lean_inc(x_312); -x_313 = lean_ctor_get(x_310, 1); -lean_inc(x_313); -lean_dec(x_310); -x_314 = l_myMacro____x40_Init_Notation___hyg_15419____closed__1; -lean_inc(x_312); -lean_ctor_set_tag(x_2, 2); -lean_ctor_set(x_2, 1, x_314); -lean_ctor_set(x_2, 0, x_312); -x_315 = l_Array_empty___closed__1; -x_316 = lean_array_push(x_315, x_2); -x_317 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; -x_318 = lean_array_push(x_316, x_317); -x_319 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_948____closed__4; -x_320 = l_Lean_addMacroScope(x_299, x_319, x_5); -x_321 = lean_box(0); -x_322 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_948____closed__3; -lean_inc(x_320); -lean_inc(x_312); -x_323 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_323, 0, x_312); -lean_ctor_set(x_323, 1, x_322); -lean_ctor_set(x_323, 2, x_320); -lean_ctor_set(x_323, 3, x_321); -x_324 = lean_array_push(x_315, x_323); -x_325 = lean_array_push(x_324, x_317); -x_326 = l_Lean_Parser_Tactic_rwRule___closed__3; -x_327 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_327, 0, x_312); -lean_ctor_set(x_327, 1, x_326); -x_328 = lean_array_push(x_325, x_327); -x_329 = lean_array_push(x_315, x_307); -x_330 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_897____closed__13; -x_331 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_331, 0, x_330); -lean_ctor_set(x_331, 1, x_329); -x_332 = lean_array_push(x_328, x_331); -x_333 = l_Lean_Parser_Term_doIdDecl___elambda__1___closed__2; -x_334 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_334, 0, x_333); -lean_ctor_set(x_334, 1, x_332); -x_335 = lean_array_push(x_318, x_334); -x_336 = l_Lean_Parser_Term_doLetArrow___elambda__1___closed__2; -x_337 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_337, 0, x_336); -lean_ctor_set(x_337, 1, x_335); -x_338 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_338, 0, x_337); -lean_ctor_set(x_338, 1, x_321); -x_339 = l_List_append___rarg(x_313, x_338); -x_340 = l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__5(x_339, x_303, x_311); -lean_dec(x_303); -x_341 = lean_ctor_get(x_340, 0); -lean_inc(x_341); -x_342 = lean_ctor_get(x_340, 1); -lean_inc(x_342); -if (lean_is_exclusive(x_340)) { - lean_ctor_release(x_340, 0); - lean_ctor_release(x_340, 1); - x_343 = x_340; -} else { - lean_dec_ref(x_340); - x_343 = lean_box(0); -} -x_344 = lean_ctor_get(x_341, 0); -lean_inc(x_344); -x_345 = lean_ctor_get(x_341, 1); -lean_inc(x_345); -if (lean_is_exclusive(x_341)) { - lean_ctor_release(x_341, 0); - lean_ctor_release(x_341, 1); - x_346 = x_341; -} else { - lean_dec_ref(x_341); - x_346 = lean_box(0); -} -x_347 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_347, 0, x_344); -lean_ctor_set(x_347, 1, x_322); -lean_ctor_set(x_347, 2, x_320); -lean_ctor_set(x_347, 3, x_321); -if (lean_is_scalar(x_346)) { - x_348 = lean_alloc_ctor(0, 2, 0); -} else { - x_348 = x_346; -} -lean_ctor_set(x_348, 0, x_347); -lean_ctor_set(x_348, 1, x_345); -if (lean_is_scalar(x_343)) { - x_349 = lean_alloc_ctor(0, 2, 0); -} else { - x_349 = x_343; -} -lean_ctor_set(x_349, 0, x_348); -lean_ctor_set(x_349, 1, x_342); -return x_349; -} -else -{ -lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; -lean_dec(x_303); -lean_dec(x_299); -lean_free_object(x_2); -lean_dec(x_5); -x_350 = lean_ctor_get(x_304, 0); -lean_inc(x_350); -x_351 = lean_ctor_get(x_304, 1); -lean_inc(x_351); -if (lean_is_exclusive(x_304)) { - lean_ctor_release(x_304, 0); - lean_ctor_release(x_304, 1); - x_352 = x_304; -} else { - lean_dec_ref(x_304); - x_352 = lean_box(0); -} -if (lean_is_scalar(x_352)) { - x_353 = lean_alloc_ctor(1, 2, 0); -} else { - x_353 = x_352; -} -lean_ctor_set(x_353, 0, x_350); -lean_ctor_set(x_353, 1, x_351); -return x_353; -} -} -} -else -{ -lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; -lean_dec(x_2); -x_354 = l_Lean_instInhabitedSyntax; -x_355 = lean_unsigned_to_nat(1u); -x_356 = lean_array_get(x_354, x_7, x_355); -lean_dec(x_7); -x_357 = lean_nat_add(x_5, x_355); -x_358 = lean_ctor_get(x_4, 0); -lean_inc(x_358); -x_359 = lean_ctor_get(x_4, 1); -lean_inc(x_359); -x_360 = lean_ctor_get(x_4, 3); -lean_inc(x_360); -x_361 = lean_ctor_get(x_4, 4); -lean_inc(x_361); -x_362 = lean_ctor_get(x_4, 5); -lean_inc(x_362); -if (lean_is_exclusive(x_4)) { - lean_ctor_release(x_4, 0); - lean_ctor_release(x_4, 1); - lean_ctor_release(x_4, 2); - lean_ctor_release(x_4, 3); - lean_ctor_release(x_4, 4); - lean_ctor_release(x_4, 5); - x_363 = x_4; -} else { - lean_dec_ref(x_4); - x_363 = lean_box(0); -} -lean_inc(x_5); -lean_inc(x_359); -if (lean_is_scalar(x_363)) { - x_364 = lean_alloc_ctor(0, 6, 0); -} else { - x_364 = x_363; -} -lean_ctor_set(x_364, 0, x_358); -lean_ctor_set(x_364, 1, x_359); -lean_ctor_set(x_364, 2, x_5); -lean_ctor_set(x_364, 3, x_360); -lean_ctor_set(x_364, 4, x_361); -lean_ctor_set(x_364, 5, x_362); -lean_inc(x_364); -x_365 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux(x_1, x_356, x_3, x_364, x_357); -if (lean_obj_tag(x_365) == 0) -{ -lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; 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; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; -x_366 = lean_ctor_get(x_365, 0); -lean_inc(x_366); -x_367 = lean_ctor_get(x_365, 1); -lean_inc(x_367); -lean_dec(x_365); -x_368 = lean_ctor_get(x_366, 0); -lean_inc(x_368); -x_369 = lean_ctor_get(x_366, 1); -lean_inc(x_369); -lean_dec(x_366); -x_370 = l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__5(x_369, x_364, x_367); -x_371 = lean_ctor_get(x_370, 0); -lean_inc(x_371); -x_372 = lean_ctor_get(x_370, 1); -lean_inc(x_372); -lean_dec(x_370); -x_373 = lean_ctor_get(x_371, 0); -lean_inc(x_373); -x_374 = lean_ctor_get(x_371, 1); -lean_inc(x_374); -lean_dec(x_371); -x_375 = l_myMacro____x40_Init_Notation___hyg_15419____closed__1; -lean_inc(x_373); -x_376 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_376, 0, x_373); -lean_ctor_set(x_376, 1, x_375); -x_377 = l_Array_empty___closed__1; -x_378 = lean_array_push(x_377, x_376); -x_379 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; -x_380 = lean_array_push(x_378, x_379); -x_381 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_948____closed__4; -x_382 = l_Lean_addMacroScope(x_359, x_381, x_5); -x_383 = lean_box(0); -x_384 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_948____closed__3; -lean_inc(x_382); -lean_inc(x_373); -x_385 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_385, 0, x_373); -lean_ctor_set(x_385, 1, x_384); -lean_ctor_set(x_385, 2, x_382); -lean_ctor_set(x_385, 3, x_383); -x_386 = lean_array_push(x_377, x_385); -x_387 = lean_array_push(x_386, x_379); -x_388 = l_Lean_Parser_Tactic_rwRule___closed__3; -x_389 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_389, 0, x_373); -lean_ctor_set(x_389, 1, x_388); -x_390 = lean_array_push(x_387, x_389); -x_391 = lean_array_push(x_377, x_368); -x_392 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_897____closed__13; -x_393 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_393, 0, x_392); -lean_ctor_set(x_393, 1, x_391); -x_394 = lean_array_push(x_390, x_393); -x_395 = l_Lean_Parser_Term_doIdDecl___elambda__1___closed__2; -x_396 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_396, 0, x_395); -lean_ctor_set(x_396, 1, x_394); -x_397 = lean_array_push(x_380, x_396); -x_398 = l_Lean_Parser_Term_doLetArrow___elambda__1___closed__2; -x_399 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_399, 0, x_398); -lean_ctor_set(x_399, 1, x_397); -x_400 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_400, 0, x_399); -lean_ctor_set(x_400, 1, x_383); -x_401 = l_List_append___rarg(x_374, x_400); -x_402 = l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__5(x_401, x_364, x_372); -lean_dec(x_364); -x_403 = lean_ctor_get(x_402, 0); -lean_inc(x_403); -x_404 = lean_ctor_get(x_402, 1); -lean_inc(x_404); -if (lean_is_exclusive(x_402)) { - lean_ctor_release(x_402, 0); - lean_ctor_release(x_402, 1); - x_405 = x_402; -} else { - lean_dec_ref(x_402); - x_405 = lean_box(0); -} -x_406 = lean_ctor_get(x_403, 0); -lean_inc(x_406); -x_407 = lean_ctor_get(x_403, 1); -lean_inc(x_407); -if (lean_is_exclusive(x_403)) { - lean_ctor_release(x_403, 0); - lean_ctor_release(x_403, 1); - x_408 = x_403; -} else { - lean_dec_ref(x_403); - x_408 = lean_box(0); -} -x_409 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_409, 0, x_406); -lean_ctor_set(x_409, 1, x_384); -lean_ctor_set(x_409, 2, x_382); -lean_ctor_set(x_409, 3, x_383); -if (lean_is_scalar(x_408)) { - x_410 = lean_alloc_ctor(0, 2, 0); -} else { - x_410 = x_408; -} -lean_ctor_set(x_410, 0, x_409); -lean_ctor_set(x_410, 1, x_407); -if (lean_is_scalar(x_405)) { - x_411 = lean_alloc_ctor(0, 2, 0); -} else { - x_411 = x_405; -} -lean_ctor_set(x_411, 0, x_410); -lean_ctor_set(x_411, 1, x_404); -return x_411; -} -else -{ -lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; -lean_dec(x_364); -lean_dec(x_359); -lean_dec(x_5); -x_412 = lean_ctor_get(x_365, 0); -lean_inc(x_412); -x_413 = lean_ctor_get(x_365, 1); -lean_inc(x_413); -if (lean_is_exclusive(x_365)) { - lean_ctor_release(x_365, 0); - lean_ctor_release(x_365, 1); - x_414 = x_365; -} else { - lean_dec_ref(x_365); - x_414 = lean_box(0); -} -if (lean_is_scalar(x_414)) { - x_415 = lean_alloc_ctor(1, 2, 0); -} else { - x_415 = x_414; -} -lean_ctor_set(x_415, 0, x_412); -lean_ctor_set(x_415, 1, x_413); -return x_415; -} -} -} -else -{ -lean_object* x_416; -x_416 = lean_box(0); -x_8 = x_416; -goto block_225; -} -} -} -else -{ -lean_object* x_417; lean_object* x_418; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_4); -x_417 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_417, 0, x_2); -lean_ctor_set(x_417, 1, x_3); -x_418 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_418, 0, x_417); -lean_ctor_set(x_418, 1, x_5); -return x_418; -} -block_225: -{ -uint8_t x_9; lean_object* x_10; size_t x_11; lean_object* x_12; +lean_object* x_298; lean_object* x_299; uint8_t x_300; lean_dec(x_8); -x_9 = l_Lean_Syntax_isAntiquot(x_2); -x_10 = lean_array_get_size(x_7); -x_11 = lean_usize_of_nat(x_10); -lean_dec(x_10); -x_12 = x_7; -if (x_9 == 0) +lean_dec(x_4); +x_298 = lean_unsigned_to_nat(1u); +x_299 = lean_nat_add(x_6, x_298); +x_300 = !lean_is_exclusive(x_5); +if (x_300 == 0) +{ +lean_object* x_301; lean_object* x_302; lean_object* x_303; uint8_t x_304; +x_301 = lean_ctor_get(x_5, 2); +lean_dec(x_301); +lean_ctor_set(x_5, 2, x_6); +x_302 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___closed__1; +x_303 = l_Lean_Macro_throwErrorAt___rarg(x_3, x_302, x_5, x_299); +lean_dec(x_3); +x_304 = !lean_is_exclusive(x_303); +if (x_304 == 0) +{ +return x_303; +} +else +{ +lean_object* x_305; lean_object* x_306; lean_object* x_307; +x_305 = lean_ctor_get(x_303, 0); +x_306 = lean_ctor_get(x_303, 1); +lean_inc(x_306); +lean_inc(x_305); +lean_dec(x_303); +x_307 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_307, 0, x_305); +lean_ctor_set(x_307, 1, x_306); +return x_307; +} +} +else +{ +lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; +x_308 = lean_ctor_get(x_5, 0); +x_309 = lean_ctor_get(x_5, 1); +x_310 = lean_ctor_get(x_5, 3); +x_311 = lean_ctor_get(x_5, 4); +x_312 = lean_ctor_get(x_5, 5); +lean_inc(x_312); +lean_inc(x_311); +lean_inc(x_310); +lean_inc(x_309); +lean_inc(x_308); +lean_dec(x_5); +x_313 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_313, 0, x_308); +lean_ctor_set(x_313, 1, x_309); +lean_ctor_set(x_313, 2, x_6); +lean_ctor_set(x_313, 3, x_310); +lean_ctor_set(x_313, 4, x_311); +lean_ctor_set(x_313, 5, x_312); +x_314 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___closed__1; +x_315 = l_Lean_Macro_throwErrorAt___rarg(x_3, x_314, x_313, x_299); +lean_dec(x_3); +x_316 = lean_ctor_get(x_315, 0); +lean_inc(x_316); +x_317 = lean_ctor_get(x_315, 1); +lean_inc(x_317); +if (lean_is_exclusive(x_315)) { + lean_ctor_release(x_315, 0); + lean_ctor_release(x_315, 1); + x_318 = x_315; +} else { + lean_dec_ref(x_315); + x_318 = lean_box(0); +} +if (lean_is_scalar(x_318)) { + x_319 = lean_alloc_ctor(1, 2, 0); +} else { + x_319 = x_318; +} +lean_ctor_set(x_319, 0, x_316); +lean_ctor_set(x_319, 1, x_317); +return x_319; +} +} +} +else +{ +lean_object* x_320; +x_320 = lean_box(0); +x_9 = x_320; +goto block_277; +} +} +} +else +{ +lean_object* x_321; lean_object* x_322; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +x_321 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_321, 0, x_3); +lean_ctor_set(x_321, 1, x_4); +x_322 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_322, 0, x_321); +lean_ctor_set(x_322, 1, x_6); +return x_322; +} +block_277: +{ +uint8_t x_10; lean_object* x_11; size_t x_12; lean_object* x_13; uint8_t x_14; uint8_t x_142; +lean_dec(x_9); +x_10 = l_Lean_Syntax_isAntiquot(x_3); +x_11 = lean_array_get_size(x_8); +x_12 = lean_usize_of_nat(x_11); +lean_dec(x_11); +x_13 = x_8; +if (x_10 == 0) +{ +if (x_2 == 0) +{ +uint8_t x_270; +x_270 = 0; +x_14 = x_270; +goto block_141; +} +else +{ +uint8_t x_271; +x_271 = 0; +x_142 = x_271; +goto block_269; +} +} +else +{ +uint8_t x_272; +x_272 = l_Lean_Syntax_isEscapedAntiquot(x_3); +if (x_272 == 0) +{ +if (x_2 == 0) +{ +uint8_t x_273; +x_273 = 1; +x_14 = x_273; +goto block_141; +} +else +{ +uint8_t x_274; +x_274 = 1; +x_142 = x_274; +goto block_269; +} +} +else +{ +if (x_2 == 0) +{ +uint8_t x_275; +x_275 = 0; +x_14 = x_275; +goto block_141; +} +else +{ +uint8_t x_276; +x_276 = 0; +x_142 = x_276; +goto block_269; +} +} +} +block_141: { if (x_1 == 0) { -lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; -x_13 = lean_box_usize(x_11); -x_14 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___boxed__const__1; -lean_inc(x_2); -x_15 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__1___boxed), 7, 4); -lean_closure_set(x_15, 0, x_2); -lean_closure_set(x_15, 1, x_13); -lean_closure_set(x_15, 2, x_14); -lean_closure_set(x_15, 3, x_12); -x_16 = !lean_is_exclusive(x_2); -if (x_16 == 0) +lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; +x_15 = lean_box_usize(x_12); +x_16 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___boxed__const__1; +lean_inc(x_7); +lean_inc(x_3); +x_17 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__1___boxed), 8, 5); +lean_closure_set(x_17, 0, x_3); +lean_closure_set(x_17, 1, x_7); +lean_closure_set(x_17, 2, x_15); +lean_closure_set(x_17, 3, x_16); +lean_closure_set(x_17, 4, x_13); +x_18 = !lean_is_exclusive(x_3); +if (x_18 == 0) { -lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_17 = lean_ctor_get(x_2, 1); -lean_dec(x_17); -x_18 = lean_ctor_get(x_2, 0); -lean_dec(x_18); -x_19 = x_15; -x_20 = lean_apply_3(x_19, x_3, x_4, x_5); -if (lean_obj_tag(x_20) == 0) +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_19 = lean_ctor_get(x_3, 1); +lean_dec(x_19); +x_20 = lean_ctor_get(x_3, 0); +lean_dec(x_20); +x_21 = x_17; +x_22 = lean_apply_3(x_21, x_4, x_5, x_6); +if (lean_obj_tag(x_22) == 0) { -uint8_t x_21; -x_21 = !lean_is_exclusive(x_20); -if (x_21 == 0) -{ -lean_object* x_22; uint8_t x_23; -x_22 = lean_ctor_get(x_20, 0); +uint8_t x_23; x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { -lean_object* x_24; +lean_object* x_24; uint8_t x_25; x_24 = lean_ctor_get(x_22, 0); -lean_ctor_set(x_2, 1, x_24); -lean_ctor_set(x_22, 0, x_2); -return x_20; +x_25 = !lean_is_exclusive(x_24); +if (x_25 == 0) +{ +lean_object* x_26; +x_26 = lean_ctor_get(x_24, 0); +lean_ctor_set(x_3, 1, x_26); +lean_ctor_set(x_24, 0, x_3); +return x_22; } else { -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_22, 0); -x_26 = lean_ctor_get(x_22, 1); -lean_inc(x_26); -lean_inc(x_25); -lean_dec(x_22); -lean_ctor_set(x_2, 1, x_25); -x_27 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_27, 0, x_2); -lean_ctor_set(x_27, 1, x_26); -lean_ctor_set(x_20, 0, x_27); -return x_20; -} -} -else -{ -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; -x_28 = lean_ctor_get(x_20, 0); -x_29 = lean_ctor_get(x_20, 1); -lean_inc(x_29); +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_ctor_get(x_24, 0); +x_28 = lean_ctor_get(x_24, 1); lean_inc(x_28); -lean_dec(x_20); -x_30 = lean_ctor_get(x_28, 0); -lean_inc(x_30); -x_31 = lean_ctor_get(x_28, 1); +lean_inc(x_27); +lean_dec(x_24); +lean_ctor_set(x_3, 1, x_27); +x_29 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_29, 0, x_3); +lean_ctor_set(x_29, 1, x_28); +lean_ctor_set(x_22, 0, x_29); +return x_22; +} +} +else +{ +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; +x_30 = lean_ctor_get(x_22, 0); +x_31 = lean_ctor_get(x_22, 1); lean_inc(x_31); -if (lean_is_exclusive(x_28)) { - lean_ctor_release(x_28, 0); - lean_ctor_release(x_28, 1); - x_32 = x_28; +lean_inc(x_30); +lean_dec(x_22); +x_32 = lean_ctor_get(x_30, 0); +lean_inc(x_32); +x_33 = lean_ctor_get(x_30, 1); +lean_inc(x_33); +if (lean_is_exclusive(x_30)) { + lean_ctor_release(x_30, 0); + lean_ctor_release(x_30, 1); + x_34 = x_30; } else { - lean_dec_ref(x_28); - x_32 = lean_box(0); + lean_dec_ref(x_30); + x_34 = lean_box(0); } -lean_ctor_set(x_2, 1, x_30); -if (lean_is_scalar(x_32)) { - x_33 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 1, x_32); +if (lean_is_scalar(x_34)) { + x_35 = lean_alloc_ctor(0, 2, 0); } else { - x_33 = x_32; + x_35 = x_34; } -lean_ctor_set(x_33, 0, x_2); -lean_ctor_set(x_33, 1, x_31); -x_34 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_34, 0, x_33); -lean_ctor_set(x_34, 1, x_29); -return x_34; +lean_ctor_set(x_35, 0, x_3); +lean_ctor_set(x_35, 1, x_33); +x_36 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set(x_36, 1, x_31); +return x_36; } } else { -uint8_t x_35; -lean_free_object(x_2); -lean_dec(x_6); -x_35 = !lean_is_exclusive(x_20); -if (x_35 == 0) +uint8_t x_37; +lean_free_object(x_3); +lean_dec(x_7); +x_37 = !lean_is_exclusive(x_22); +if (x_37 == 0) { -return x_20; +return x_22; } else { -lean_object* x_36; lean_object* x_37; lean_object* x_38; -x_36 = lean_ctor_get(x_20, 0); -x_37 = lean_ctor_get(x_20, 1); -lean_inc(x_37); -lean_inc(x_36); -lean_dec(x_20); -x_38 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_38, 0, x_36); -lean_ctor_set(x_38, 1, x_37); -return x_38; +lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_38 = lean_ctor_get(x_22, 0); +x_39 = lean_ctor_get(x_22, 1); +lean_inc(x_39); +lean_inc(x_38); +lean_dec(x_22); +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; } } } else { -lean_object* x_39; lean_object* x_40; -lean_dec(x_2); -x_39 = x_15; -x_40 = lean_apply_3(x_39, x_3, x_4, x_5); -if (lean_obj_tag(x_40) == 0) +lean_object* x_41; lean_object* x_42; +lean_dec(x_3); +x_41 = x_17; +x_42 = lean_apply_3(x_41, x_4, x_5, x_6); +if (lean_obj_tag(x_42) == 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; lean_object* x_49; -x_41 = lean_ctor_get(x_40, 0); -lean_inc(x_41); -x_42 = lean_ctor_get(x_40, 1); -lean_inc(x_42); -if (lean_is_exclusive(x_40)) { - lean_ctor_release(x_40, 0); - lean_ctor_release(x_40, 1); - x_43 = x_40; -} else { - lean_dec_ref(x_40); - x_43 = lean_box(0); -} -x_44 = lean_ctor_get(x_41, 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; lean_object* x_51; +x_43 = lean_ctor_get(x_42, 0); +lean_inc(x_43); +x_44 = lean_ctor_get(x_42, 1); lean_inc(x_44); -x_45 = lean_ctor_get(x_41, 1); -lean_inc(x_45); -if (lean_is_exclusive(x_41)) { - lean_ctor_release(x_41, 0); - lean_ctor_release(x_41, 1); - x_46 = x_41; +if (lean_is_exclusive(x_42)) { + lean_ctor_release(x_42, 0); + lean_ctor_release(x_42, 1); + x_45 = x_42; } else { - lean_dec_ref(x_41); - x_46 = lean_box(0); + lean_dec_ref(x_42); + x_45 = lean_box(0); } -x_47 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_47, 0, x_6); -lean_ctor_set(x_47, 1, x_44); -if (lean_is_scalar(x_46)) { - x_48 = lean_alloc_ctor(0, 2, 0); +x_46 = lean_ctor_get(x_43, 0); +lean_inc(x_46); +x_47 = lean_ctor_get(x_43, 1); +lean_inc(x_47); +if (lean_is_exclusive(x_43)) { + lean_ctor_release(x_43, 0); + lean_ctor_release(x_43, 1); + x_48 = x_43; } else { - x_48 = x_46; + lean_dec_ref(x_43); + x_48 = lean_box(0); } -lean_ctor_set(x_48, 0, x_47); -lean_ctor_set(x_48, 1, x_45); -if (lean_is_scalar(x_43)) { - x_49 = lean_alloc_ctor(0, 2, 0); +x_49 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_49, 0, x_7); +lean_ctor_set(x_49, 1, x_46); +if (lean_is_scalar(x_48)) { + x_50 = lean_alloc_ctor(0, 2, 0); } else { - x_49 = x_43; + x_50 = x_48; } -lean_ctor_set(x_49, 0, x_48); -lean_ctor_set(x_49, 1, x_42); -return x_49; +lean_ctor_set(x_50, 0, x_49); +lean_ctor_set(x_50, 1, x_47); +if (lean_is_scalar(x_45)) { + x_51 = lean_alloc_ctor(0, 2, 0); +} else { + x_51 = x_45; +} +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_44); +return x_51; } else { -lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; -lean_dec(x_6); -x_50 = lean_ctor_get(x_40, 0); -lean_inc(x_50); -x_51 = lean_ctor_get(x_40, 1); -lean_inc(x_51); -if (lean_is_exclusive(x_40)) { - lean_ctor_release(x_40, 0); - lean_ctor_release(x_40, 1); - x_52 = x_40; +lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; +lean_dec(x_7); +x_52 = lean_ctor_get(x_42, 0); +lean_inc(x_52); +x_53 = lean_ctor_get(x_42, 1); +lean_inc(x_53); +if (lean_is_exclusive(x_42)) { + lean_ctor_release(x_42, 0); + lean_ctor_release(x_42, 1); + x_54 = x_42; } else { - lean_dec_ref(x_40); - x_52 = lean_box(0); + lean_dec_ref(x_42); + x_54 = lean_box(0); } -if (lean_is_scalar(x_52)) { - x_53 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_54)) { + x_55 = lean_alloc_ctor(1, 2, 0); } else { - x_53 = x_52; + x_55 = x_54; } -lean_ctor_set(x_53, 0, x_50); -lean_ctor_set(x_53, 1, x_51); -return x_53; +lean_ctor_set(x_55, 0, x_52); +lean_ctor_set(x_55, 1, x_53); +return x_55; } } } else { -uint8_t x_54; -x_54 = !lean_is_exclusive(x_2); -if (x_54 == 0) +if (x_14 == 0) { -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; -x_55 = lean_ctor_get(x_2, 1); -lean_dec(x_55); -x_56 = lean_ctor_get(x_2, 0); -lean_dec(x_56); -x_57 = lean_box_usize(x_11); -x_58 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___boxed__const__1; -x_59 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__2___boxed), 6, 3); -lean_closure_set(x_59, 0, x_57); -lean_closure_set(x_59, 1, x_58); -lean_closure_set(x_59, 2, x_12); -x_60 = x_59; -x_61 = lean_apply_3(x_60, x_3, x_4, x_5); -if (lean_obj_tag(x_61) == 0) +uint8_t x_56; +x_56 = !lean_is_exclusive(x_3); +if (x_56 == 0) { -uint8_t x_62; -x_62 = !lean_is_exclusive(x_61); -if (x_62 == 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; +x_57 = lean_ctor_get(x_3, 1); +lean_dec(x_57); +x_58 = lean_ctor_get(x_3, 0); +lean_dec(x_58); +x_59 = lean_box_usize(x_12); +x_60 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___boxed__const__1; +x_61 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__2___boxed), 6, 3); +lean_closure_set(x_61, 0, x_59); +lean_closure_set(x_61, 1, x_60); +lean_closure_set(x_61, 2, x_13); +x_62 = x_61; +x_63 = lean_apply_3(x_62, x_4, x_5, x_6); +if (lean_obj_tag(x_63) == 0) { -lean_object* x_63; uint8_t x_64; -x_63 = lean_ctor_get(x_61, 0); +uint8_t x_64; x_64 = !lean_is_exclusive(x_63); if (x_64 == 0) { -lean_object* x_65; +lean_object* x_65; uint8_t x_66; x_65 = lean_ctor_get(x_63, 0); -lean_ctor_set(x_2, 1, x_65); -lean_ctor_set(x_63, 0, x_2); -return x_61; +x_66 = !lean_is_exclusive(x_65); +if (x_66 == 0) +{ +lean_object* x_67; +x_67 = lean_ctor_get(x_65, 0); +lean_ctor_set(x_3, 1, x_67); +lean_ctor_set(x_65, 0, x_3); +return x_63; } else { -lean_object* x_66; lean_object* x_67; lean_object* x_68; -x_66 = lean_ctor_get(x_63, 0); -x_67 = lean_ctor_get(x_63, 1); -lean_inc(x_67); -lean_inc(x_66); -lean_dec(x_63); -lean_ctor_set(x_2, 1, x_66); -x_68 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_68, 0, x_2); -lean_ctor_set(x_68, 1, x_67); -lean_ctor_set(x_61, 0, x_68); -return x_61; -} -} -else -{ -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; -x_69 = lean_ctor_get(x_61, 0); -x_70 = lean_ctor_get(x_61, 1); -lean_inc(x_70); +lean_object* x_68; lean_object* x_69; lean_object* x_70; +x_68 = lean_ctor_get(x_65, 0); +x_69 = lean_ctor_get(x_65, 1); lean_inc(x_69); -lean_dec(x_61); -x_71 = lean_ctor_get(x_69, 0); -lean_inc(x_71); -x_72 = lean_ctor_get(x_69, 1); +lean_inc(x_68); +lean_dec(x_65); +lean_ctor_set(x_3, 1, x_68); +x_70 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_70, 0, x_3); +lean_ctor_set(x_70, 1, x_69); +lean_ctor_set(x_63, 0, x_70); +return x_63; +} +} +else +{ +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; +x_71 = lean_ctor_get(x_63, 0); +x_72 = lean_ctor_get(x_63, 1); lean_inc(x_72); -if (lean_is_exclusive(x_69)) { - lean_ctor_release(x_69, 0); - lean_ctor_release(x_69, 1); - x_73 = x_69; +lean_inc(x_71); +lean_dec(x_63); +x_73 = lean_ctor_get(x_71, 0); +lean_inc(x_73); +x_74 = lean_ctor_get(x_71, 1); +lean_inc(x_74); +if (lean_is_exclusive(x_71)) { + lean_ctor_release(x_71, 0); + lean_ctor_release(x_71, 1); + x_75 = x_71; } else { - lean_dec_ref(x_69); - x_73 = lean_box(0); + lean_dec_ref(x_71); + x_75 = lean_box(0); } -lean_ctor_set(x_2, 1, x_71); -if (lean_is_scalar(x_73)) { - x_74 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 1, x_73); +if (lean_is_scalar(x_75)) { + x_76 = lean_alloc_ctor(0, 2, 0); } else { - x_74 = x_73; + x_76 = x_75; } -lean_ctor_set(x_74, 0, x_2); -lean_ctor_set(x_74, 1, x_72); -x_75 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_75, 0, x_74); -lean_ctor_set(x_75, 1, x_70); -return x_75; +lean_ctor_set(x_76, 0, x_3); +lean_ctor_set(x_76, 1, x_74); +x_77 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_77, 0, x_76); +lean_ctor_set(x_77, 1, x_72); +return x_77; } } else { -uint8_t x_76; -lean_free_object(x_2); -lean_dec(x_6); -x_76 = !lean_is_exclusive(x_61); -if (x_76 == 0) +uint8_t x_78; +lean_free_object(x_3); +lean_dec(x_7); +x_78 = !lean_is_exclusive(x_63); +if (x_78 == 0) { -return x_61; +return x_63; } else { -lean_object* x_77; lean_object* x_78; lean_object* x_79; -x_77 = lean_ctor_get(x_61, 0); -x_78 = lean_ctor_get(x_61, 1); -lean_inc(x_78); -lean_inc(x_77); -lean_dec(x_61); -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; +lean_object* x_79; lean_object* x_80; lean_object* x_81; +x_79 = lean_ctor_get(x_63, 0); +x_80 = lean_ctor_get(x_63, 1); +lean_inc(x_80); +lean_inc(x_79); +lean_dec(x_63); +x_81 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_81, 0, x_79); +lean_ctor_set(x_81, 1, x_80); +return x_81; } } } else { -lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; -lean_dec(x_2); -x_80 = lean_box_usize(x_11); -x_81 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___boxed__const__1; -x_82 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__2___boxed), 6, 3); -lean_closure_set(x_82, 0, x_80); -lean_closure_set(x_82, 1, x_81); -lean_closure_set(x_82, 2, x_12); -x_83 = x_82; -x_84 = lean_apply_3(x_83, x_3, x_4, x_5); -if (lean_obj_tag(x_84) == 0) +lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; +lean_dec(x_3); +x_82 = lean_box_usize(x_12); +x_83 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___boxed__const__1; +x_84 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__2___boxed), 6, 3); +lean_closure_set(x_84, 0, x_82); +lean_closure_set(x_84, 1, x_83); +lean_closure_set(x_84, 2, x_13); +x_85 = x_84; +x_86 = lean_apply_3(x_85, x_4, x_5, x_6); +if (lean_obj_tag(x_86) == 0) { -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; -x_85 = lean_ctor_get(x_84, 0); -lean_inc(x_85); -x_86 = lean_ctor_get(x_84, 1); -lean_inc(x_86); -if (lean_is_exclusive(x_84)) { - lean_ctor_release(x_84, 0); - lean_ctor_release(x_84, 1); - x_87 = x_84; -} else { - lean_dec_ref(x_84); - x_87 = lean_box(0); -} -x_88 = lean_ctor_get(x_85, 0); +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; +x_87 = lean_ctor_get(x_86, 0); +lean_inc(x_87); +x_88 = lean_ctor_get(x_86, 1); lean_inc(x_88); -x_89 = lean_ctor_get(x_85, 1); -lean_inc(x_89); -if (lean_is_exclusive(x_85)) { - lean_ctor_release(x_85, 0); - lean_ctor_release(x_85, 1); - x_90 = x_85; +if (lean_is_exclusive(x_86)) { + lean_ctor_release(x_86, 0); + lean_ctor_release(x_86, 1); + x_89 = x_86; } else { - lean_dec_ref(x_85); - x_90 = lean_box(0); + lean_dec_ref(x_86); + x_89 = lean_box(0); } -x_91 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_91, 0, x_6); -lean_ctor_set(x_91, 1, x_88); -if (lean_is_scalar(x_90)) { - x_92 = lean_alloc_ctor(0, 2, 0); +x_90 = lean_ctor_get(x_87, 0); +lean_inc(x_90); +x_91 = lean_ctor_get(x_87, 1); +lean_inc(x_91); +if (lean_is_exclusive(x_87)) { + lean_ctor_release(x_87, 0); + lean_ctor_release(x_87, 1); + x_92 = x_87; } else { - x_92 = x_90; + lean_dec_ref(x_87); + x_92 = lean_box(0); } -lean_ctor_set(x_92, 0, x_91); -lean_ctor_set(x_92, 1, x_89); -if (lean_is_scalar(x_87)) { - x_93 = lean_alloc_ctor(0, 2, 0); +x_93 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_93, 0, x_7); +lean_ctor_set(x_93, 1, x_90); +if (lean_is_scalar(x_92)) { + x_94 = lean_alloc_ctor(0, 2, 0); } else { - x_93 = x_87; + x_94 = x_92; } -lean_ctor_set(x_93, 0, x_92); -lean_ctor_set(x_93, 1, x_86); -return x_93; +lean_ctor_set(x_94, 0, x_93); +lean_ctor_set(x_94, 1, x_91); +if (lean_is_scalar(x_89)) { + x_95 = lean_alloc_ctor(0, 2, 0); +} else { + x_95 = x_89; +} +lean_ctor_set(x_95, 0, x_94); +lean_ctor_set(x_95, 1, x_88); +return x_95; } else { -lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; -lean_dec(x_6); -x_94 = lean_ctor_get(x_84, 0); -lean_inc(x_94); -x_95 = lean_ctor_get(x_84, 1); -lean_inc(x_95); -if (lean_is_exclusive(x_84)) { - lean_ctor_release(x_84, 0); - lean_ctor_release(x_84, 1); - x_96 = x_84; +lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; +lean_dec(x_7); +x_96 = lean_ctor_get(x_86, 0); +lean_inc(x_96); +x_97 = lean_ctor_get(x_86, 1); +lean_inc(x_97); +if (lean_is_exclusive(x_86)) { + lean_ctor_release(x_86, 0); + lean_ctor_release(x_86, 1); + x_98 = x_86; } else { - lean_dec_ref(x_84); - x_96 = lean_box(0); + lean_dec_ref(x_86); + x_98 = lean_box(0); } -if (lean_is_scalar(x_96)) { - x_97 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_98)) { + x_99 = lean_alloc_ctor(1, 2, 0); } else { - x_97 = x_96; -} -lean_ctor_set(x_97, 0, x_94); -lean_ctor_set(x_97, 1, x_95); -return x_97; + x_99 = x_98; } +lean_ctor_set(x_99, 0, x_96); +lean_ctor_set(x_99, 1, x_97); +return x_99; } } } else { -uint8_t x_98; -x_98 = l_Lean_Syntax_isEscapedAntiquot(x_2); -if (x_98 == 0) +lean_object* x_100; lean_object* x_101; lean_object* x_102; uint8_t x_103; +x_100 = lean_box_usize(x_12); +x_101 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___boxed__const__1; +lean_inc(x_3); +x_102 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__3___boxed), 7, 4); +lean_closure_set(x_102, 0, x_3); +lean_closure_set(x_102, 1, x_100); +lean_closure_set(x_102, 2, x_101); +lean_closure_set(x_102, 3, x_13); +x_103 = !lean_is_exclusive(x_3); +if (x_103 == 0) { -lean_object* x_99; lean_object* x_100; lean_object* x_101; uint8_t x_102; -x_99 = lean_box_usize(x_11); -x_100 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___boxed__const__1; -lean_inc(x_2); -x_101 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__3___boxed), 7, 4); -lean_closure_set(x_101, 0, x_2); -lean_closure_set(x_101, 1, x_99); -lean_closure_set(x_101, 2, x_100); -lean_closure_set(x_101, 3, x_12); -x_102 = !lean_is_exclusive(x_2); -if (x_102 == 0) -{ -lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; -x_103 = lean_ctor_get(x_2, 1); -lean_dec(x_103); -x_104 = lean_ctor_get(x_2, 0); +lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; +x_104 = lean_ctor_get(x_3, 1); lean_dec(x_104); -x_105 = x_101; -x_106 = lean_apply_3(x_105, x_3, x_4, x_5); -if (lean_obj_tag(x_106) == 0) +x_105 = lean_ctor_get(x_3, 0); +lean_dec(x_105); +x_106 = x_102; +x_107 = lean_apply_3(x_106, x_4, x_5, x_6); +if (lean_obj_tag(x_107) == 0) { -uint8_t x_107; -x_107 = !lean_is_exclusive(x_106); -if (x_107 == 0) +uint8_t x_108; +x_108 = !lean_is_exclusive(x_107); +if (x_108 == 0) { -lean_object* x_108; uint8_t x_109; -x_108 = lean_ctor_get(x_106, 0); -x_109 = !lean_is_exclusive(x_108); -if (x_109 == 0) +lean_object* x_109; uint8_t x_110; +x_109 = lean_ctor_get(x_107, 0); +x_110 = !lean_is_exclusive(x_109); +if (x_110 == 0) { -lean_object* x_110; -x_110 = lean_ctor_get(x_108, 0); -lean_ctor_set(x_2, 1, x_110); -lean_ctor_set(x_108, 0, x_2); -return x_106; +lean_object* x_111; +x_111 = lean_ctor_get(x_109, 0); +lean_ctor_set(x_3, 1, x_111); +lean_ctor_set(x_109, 0, x_3); +return x_107; } else { -lean_object* x_111; lean_object* x_112; lean_object* x_113; -x_111 = lean_ctor_get(x_108, 0); -x_112 = lean_ctor_get(x_108, 1); +lean_object* x_112; lean_object* x_113; lean_object* x_114; +x_112 = lean_ctor_get(x_109, 0); +x_113 = lean_ctor_get(x_109, 1); +lean_inc(x_113); lean_inc(x_112); -lean_inc(x_111); -lean_dec(x_108); -lean_ctor_set(x_2, 1, x_111); -x_113 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_113, 0, x_2); -lean_ctor_set(x_113, 1, x_112); -lean_ctor_set(x_106, 0, x_113); -return x_106; +lean_dec(x_109); +lean_ctor_set(x_3, 1, x_112); +x_114 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_114, 0, x_3); +lean_ctor_set(x_114, 1, x_113); +lean_ctor_set(x_107, 0, x_114); +return x_107; } } else { -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_114 = lean_ctor_get(x_106, 0); -x_115 = lean_ctor_get(x_106, 1); -lean_inc(x_115); -lean_inc(x_114); -lean_dec(x_106); -x_116 = lean_ctor_get(x_114, 0); +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; +x_115 = lean_ctor_get(x_107, 0); +x_116 = lean_ctor_get(x_107, 1); lean_inc(x_116); -x_117 = lean_ctor_get(x_114, 1); +lean_inc(x_115); +lean_dec(x_107); +x_117 = lean_ctor_get(x_115, 0); lean_inc(x_117); -if (lean_is_exclusive(x_114)) { - lean_ctor_release(x_114, 0); - lean_ctor_release(x_114, 1); - x_118 = x_114; +x_118 = lean_ctor_get(x_115, 1); +lean_inc(x_118); +if (lean_is_exclusive(x_115)) { + lean_ctor_release(x_115, 0); + lean_ctor_release(x_115, 1); + x_119 = x_115; } else { - lean_dec_ref(x_114); - x_118 = lean_box(0); + lean_dec_ref(x_115); + x_119 = lean_box(0); } -lean_ctor_set(x_2, 1, x_116); -if (lean_is_scalar(x_118)) { - x_119 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 1, x_117); +if (lean_is_scalar(x_119)) { + x_120 = lean_alloc_ctor(0, 2, 0); } else { - x_119 = x_118; + x_120 = x_119; } -lean_ctor_set(x_119, 0, x_2); -lean_ctor_set(x_119, 1, x_117); -x_120 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_120, 0, x_119); -lean_ctor_set(x_120, 1, x_115); -return x_120; +lean_ctor_set(x_120, 0, x_3); +lean_ctor_set(x_120, 1, x_118); +x_121 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_121, 0, x_120); +lean_ctor_set(x_121, 1, x_116); +return x_121; } } else { -uint8_t x_121; -lean_free_object(x_2); -lean_dec(x_6); -x_121 = !lean_is_exclusive(x_106); -if (x_121 == 0) +uint8_t x_122; +lean_free_object(x_3); +lean_dec(x_7); +x_122 = !lean_is_exclusive(x_107); +if (x_122 == 0) { -return x_106; +return x_107; } else { -lean_object* x_122; lean_object* x_123; lean_object* x_124; -x_122 = lean_ctor_get(x_106, 0); -x_123 = lean_ctor_get(x_106, 1); +lean_object* x_123; lean_object* x_124; lean_object* x_125; +x_123 = lean_ctor_get(x_107, 0); +x_124 = lean_ctor_get(x_107, 1); +lean_inc(x_124); lean_inc(x_123); -lean_inc(x_122); -lean_dec(x_106); -x_124 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_124, 0, x_122); -lean_ctor_set(x_124, 1, x_123); -return x_124; +lean_dec(x_107); +x_125 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_125, 0, x_123); +lean_ctor_set(x_125, 1, x_124); +return x_125; } } } else { -lean_object* x_125; lean_object* x_126; -lean_dec(x_2); -x_125 = x_101; -x_126 = lean_apply_3(x_125, x_3, x_4, x_5); -if (lean_obj_tag(x_126) == 0) +lean_object* x_126; lean_object* x_127; +lean_dec(x_3); +x_126 = x_102; +x_127 = lean_apply_3(x_126, x_4, x_5, x_6); +if (lean_obj_tag(x_127) == 0) { -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; -x_127 = lean_ctor_get(x_126, 0); -lean_inc(x_127); -x_128 = lean_ctor_get(x_126, 1); +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; +x_128 = lean_ctor_get(x_127, 0); lean_inc(x_128); -if (lean_is_exclusive(x_126)) { - lean_ctor_release(x_126, 0); - lean_ctor_release(x_126, 1); - x_129 = x_126; -} else { - lean_dec_ref(x_126); - x_129 = lean_box(0); -} -x_130 = lean_ctor_get(x_127, 0); -lean_inc(x_130); -x_131 = lean_ctor_get(x_127, 1); -lean_inc(x_131); +x_129 = lean_ctor_get(x_127, 1); +lean_inc(x_129); if (lean_is_exclusive(x_127)) { lean_ctor_release(x_127, 0); lean_ctor_release(x_127, 1); - x_132 = x_127; + x_130 = x_127; } else { lean_dec_ref(x_127); - x_132 = lean_box(0); + x_130 = lean_box(0); } -x_133 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_133, 0, x_6); -lean_ctor_set(x_133, 1, x_130); -if (lean_is_scalar(x_132)) { - x_134 = lean_alloc_ctor(0, 2, 0); +x_131 = lean_ctor_get(x_128, 0); +lean_inc(x_131); +x_132 = lean_ctor_get(x_128, 1); +lean_inc(x_132); +if (lean_is_exclusive(x_128)) { + lean_ctor_release(x_128, 0); + lean_ctor_release(x_128, 1); + x_133 = x_128; } else { - x_134 = x_132; + lean_dec_ref(x_128); + x_133 = lean_box(0); } -lean_ctor_set(x_134, 0, x_133); +x_134 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_134, 0, x_7); lean_ctor_set(x_134, 1, x_131); -if (lean_is_scalar(x_129)) { +if (lean_is_scalar(x_133)) { x_135 = lean_alloc_ctor(0, 2, 0); } else { - x_135 = x_129; + x_135 = x_133; } lean_ctor_set(x_135, 0, x_134); -lean_ctor_set(x_135, 1, x_128); -return x_135; +lean_ctor_set(x_135, 1, x_132); +if (lean_is_scalar(x_130)) { + x_136 = lean_alloc_ctor(0, 2, 0); +} else { + x_136 = x_130; +} +lean_ctor_set(x_136, 0, x_135); +lean_ctor_set(x_136, 1, x_129); +return x_136; } else { -lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; -lean_dec(x_6); -x_136 = lean_ctor_get(x_126, 0); -lean_inc(x_136); -x_137 = lean_ctor_get(x_126, 1); +lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; +lean_dec(x_7); +x_137 = lean_ctor_get(x_127, 0); lean_inc(x_137); -if (lean_is_exclusive(x_126)) { - lean_ctor_release(x_126, 0); - lean_ctor_release(x_126, 1); - x_138 = x_126; +x_138 = lean_ctor_get(x_127, 1); +lean_inc(x_138); +if (lean_is_exclusive(x_127)) { + lean_ctor_release(x_127, 0); + lean_ctor_release(x_127, 1); + x_139 = x_127; } else { - lean_dec_ref(x_126); - x_138 = lean_box(0); + lean_dec_ref(x_127); + x_139 = lean_box(0); } -if (lean_is_scalar(x_138)) { - x_139 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_139)) { + x_140 = lean_alloc_ctor(1, 2, 0); } else { - x_139 = x_138; + x_140 = x_139; } -lean_ctor_set(x_139, 0, x_136); -lean_ctor_set(x_139, 1, x_137); -return x_139; +lean_ctor_set(x_140, 0, x_137); +lean_ctor_set(x_140, 1, x_138); +return x_140; } } } -else +} +} +block_269: { if (x_1 == 0) { -lean_object* x_140; lean_object* x_141; lean_object* x_142; uint8_t x_143; -x_140 = lean_box_usize(x_11); -x_141 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___boxed__const__1; -lean_inc(x_2); -x_142 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__4___boxed), 7, 4); -lean_closure_set(x_142, 0, x_2); -lean_closure_set(x_142, 1, x_140); -lean_closure_set(x_142, 2, x_141); -lean_closure_set(x_142, 3, x_12); -x_143 = !lean_is_exclusive(x_2); -if (x_143 == 0) +lean_object* x_143; lean_object* x_144; lean_object* x_145; uint8_t x_146; +x_143 = lean_box_usize(x_12); +x_144 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___boxed__const__1; +lean_inc(x_3); +x_145 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__4___boxed), 7, 4); +lean_closure_set(x_145, 0, x_3); +lean_closure_set(x_145, 1, x_143); +lean_closure_set(x_145, 2, x_144); +lean_closure_set(x_145, 3, x_13); +x_146 = !lean_is_exclusive(x_3); +if (x_146 == 0) { -lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; -x_144 = lean_ctor_get(x_2, 1); -lean_dec(x_144); -x_145 = lean_ctor_get(x_2, 0); -lean_dec(x_145); -x_146 = x_142; -x_147 = lean_apply_3(x_146, x_3, x_4, x_5); -if (lean_obj_tag(x_147) == 0) +lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; +x_147 = lean_ctor_get(x_3, 1); +lean_dec(x_147); +x_148 = lean_ctor_get(x_3, 0); +lean_dec(x_148); +x_149 = x_145; +x_150 = lean_apply_3(x_149, x_4, x_5, x_6); +if (lean_obj_tag(x_150) == 0) { -uint8_t x_148; -x_148 = !lean_is_exclusive(x_147); -if (x_148 == 0) +uint8_t x_151; +x_151 = !lean_is_exclusive(x_150); +if (x_151 == 0) { -lean_object* x_149; uint8_t x_150; -x_149 = lean_ctor_get(x_147, 0); -x_150 = !lean_is_exclusive(x_149); -if (x_150 == 0) +lean_object* x_152; uint8_t x_153; +x_152 = lean_ctor_get(x_150, 0); +x_153 = !lean_is_exclusive(x_152); +if (x_153 == 0) { -lean_object* x_151; -x_151 = lean_ctor_get(x_149, 0); -lean_ctor_set(x_2, 1, x_151); -lean_ctor_set(x_149, 0, x_2); -return x_147; +lean_object* x_154; +x_154 = lean_ctor_get(x_152, 0); +lean_ctor_set(x_3, 1, x_154); +lean_ctor_set(x_152, 0, x_3); +return x_150; } else { -lean_object* x_152; lean_object* x_153; lean_object* x_154; -x_152 = lean_ctor_get(x_149, 0); -x_153 = lean_ctor_get(x_149, 1); -lean_inc(x_153); -lean_inc(x_152); -lean_dec(x_149); -lean_ctor_set(x_2, 1, x_152); -x_154 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_154, 0, x_2); -lean_ctor_set(x_154, 1, x_153); -lean_ctor_set(x_147, 0, x_154); -return x_147; -} -} -else -{ -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; -x_155 = lean_ctor_get(x_147, 0); -x_156 = lean_ctor_get(x_147, 1); +lean_object* x_155; lean_object* x_156; lean_object* x_157; +x_155 = lean_ctor_get(x_152, 0); +x_156 = lean_ctor_get(x_152, 1); lean_inc(x_156); lean_inc(x_155); -lean_dec(x_147); -x_157 = lean_ctor_get(x_155, 0); -lean_inc(x_157); -x_158 = lean_ctor_get(x_155, 1); +lean_dec(x_152); +lean_ctor_set(x_3, 1, x_155); +x_157 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_157, 0, x_3); +lean_ctor_set(x_157, 1, x_156); +lean_ctor_set(x_150, 0, x_157); +return x_150; +} +} +else +{ +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; +x_158 = lean_ctor_get(x_150, 0); +x_159 = lean_ctor_get(x_150, 1); +lean_inc(x_159); lean_inc(x_158); -if (lean_is_exclusive(x_155)) { - lean_ctor_release(x_155, 0); - lean_ctor_release(x_155, 1); - x_159 = x_155; +lean_dec(x_150); +x_160 = lean_ctor_get(x_158, 0); +lean_inc(x_160); +x_161 = lean_ctor_get(x_158, 1); +lean_inc(x_161); +if (lean_is_exclusive(x_158)) { + lean_ctor_release(x_158, 0); + lean_ctor_release(x_158, 1); + x_162 = x_158; } else { - lean_dec_ref(x_155); - x_159 = lean_box(0); + lean_dec_ref(x_158); + x_162 = lean_box(0); } -lean_ctor_set(x_2, 1, x_157); -if (lean_is_scalar(x_159)) { - x_160 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 1, x_160); +if (lean_is_scalar(x_162)) { + x_163 = lean_alloc_ctor(0, 2, 0); } else { - x_160 = x_159; + x_163 = x_162; } -lean_ctor_set(x_160, 0, x_2); -lean_ctor_set(x_160, 1, x_158); -x_161 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_161, 0, x_160); -lean_ctor_set(x_161, 1, x_156); -return x_161; +lean_ctor_set(x_163, 0, x_3); +lean_ctor_set(x_163, 1, x_161); +x_164 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_164, 0, x_163); +lean_ctor_set(x_164, 1, x_159); +return x_164; } } else { -uint8_t x_162; -lean_free_object(x_2); -lean_dec(x_6); -x_162 = !lean_is_exclusive(x_147); -if (x_162 == 0) +uint8_t x_165; +lean_free_object(x_3); +lean_dec(x_7); +x_165 = !lean_is_exclusive(x_150); +if (x_165 == 0) { -return x_147; +return x_150; } else { -lean_object* x_163; lean_object* x_164; lean_object* x_165; -x_163 = lean_ctor_get(x_147, 0); -x_164 = lean_ctor_get(x_147, 1); -lean_inc(x_164); -lean_inc(x_163); -lean_dec(x_147); -x_165 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_165, 0, x_163); -lean_ctor_set(x_165, 1, x_164); -return x_165; +lean_object* x_166; lean_object* x_167; lean_object* x_168; +x_166 = lean_ctor_get(x_150, 0); +x_167 = lean_ctor_get(x_150, 1); +lean_inc(x_167); +lean_inc(x_166); +lean_dec(x_150); +x_168 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_168, 0, x_166); +lean_ctor_set(x_168, 1, x_167); +return x_168; } } } else { -lean_object* x_166; lean_object* x_167; -lean_dec(x_2); -x_166 = x_142; -x_167 = lean_apply_3(x_166, x_3, x_4, x_5); -if (lean_obj_tag(x_167) == 0) +lean_object* x_169; lean_object* x_170; +lean_dec(x_3); +x_169 = x_145; +x_170 = lean_apply_3(x_169, x_4, x_5, x_6); +if (lean_obj_tag(x_170) == 0) { -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; -x_168 = lean_ctor_get(x_167, 0); -lean_inc(x_168); -x_169 = lean_ctor_get(x_167, 1); -lean_inc(x_169); -if (lean_is_exclusive(x_167)) { - lean_ctor_release(x_167, 0); - lean_ctor_release(x_167, 1); - x_170 = x_167; -} else { - lean_dec_ref(x_167); - x_170 = lean_box(0); -} -x_171 = lean_ctor_get(x_168, 0); +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; lean_object* x_178; lean_object* x_179; +x_171 = lean_ctor_get(x_170, 0); lean_inc(x_171); -x_172 = lean_ctor_get(x_168, 1); +x_172 = lean_ctor_get(x_170, 1); lean_inc(x_172); -if (lean_is_exclusive(x_168)) { - lean_ctor_release(x_168, 0); - lean_ctor_release(x_168, 1); - x_173 = x_168; +if (lean_is_exclusive(x_170)) { + lean_ctor_release(x_170, 0); + lean_ctor_release(x_170, 1); + x_173 = x_170; } else { - lean_dec_ref(x_168); + lean_dec_ref(x_170); x_173 = lean_box(0); } -x_174 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_174, 0, x_6); -lean_ctor_set(x_174, 1, x_171); +x_174 = lean_ctor_get(x_171, 0); +lean_inc(x_174); +x_175 = lean_ctor_get(x_171, 1); +lean_inc(x_175); +if (lean_is_exclusive(x_171)) { + lean_ctor_release(x_171, 0); + lean_ctor_release(x_171, 1); + x_176 = x_171; +} else { + lean_dec_ref(x_171); + x_176 = lean_box(0); +} +x_177 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_177, 0, x_7); +lean_ctor_set(x_177, 1, x_174); +if (lean_is_scalar(x_176)) { + x_178 = lean_alloc_ctor(0, 2, 0); +} else { + x_178 = x_176; +} +lean_ctor_set(x_178, 0, x_177); +lean_ctor_set(x_178, 1, x_175); if (lean_is_scalar(x_173)) { - x_175 = lean_alloc_ctor(0, 2, 0); + x_179 = lean_alloc_ctor(0, 2, 0); } else { - x_175 = x_173; + x_179 = x_173; } -lean_ctor_set(x_175, 0, x_174); -lean_ctor_set(x_175, 1, x_172); -if (lean_is_scalar(x_170)) { - x_176 = lean_alloc_ctor(0, 2, 0); -} else { - x_176 = x_170; -} -lean_ctor_set(x_176, 0, x_175); -lean_ctor_set(x_176, 1, x_169); -return x_176; +lean_ctor_set(x_179, 0, x_178); +lean_ctor_set(x_179, 1, x_172); +return x_179; } else { -lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; -lean_dec(x_6); -x_177 = lean_ctor_get(x_167, 0); -lean_inc(x_177); -x_178 = lean_ctor_get(x_167, 1); -lean_inc(x_178); -if (lean_is_exclusive(x_167)) { - lean_ctor_release(x_167, 0); - lean_ctor_release(x_167, 1); - x_179 = x_167; +lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; +lean_dec(x_7); +x_180 = lean_ctor_get(x_170, 0); +lean_inc(x_180); +x_181 = lean_ctor_get(x_170, 1); +lean_inc(x_181); +if (lean_is_exclusive(x_170)) { + lean_ctor_release(x_170, 0); + lean_ctor_release(x_170, 1); + x_182 = x_170; } else { - lean_dec_ref(x_167); - x_179 = lean_box(0); + lean_dec_ref(x_170); + x_182 = lean_box(0); } -if (lean_is_scalar(x_179)) { - x_180 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_182)) { + x_183 = lean_alloc_ctor(1, 2, 0); } else { - x_180 = x_179; + x_183 = x_182; } -lean_ctor_set(x_180, 0, x_177); -lean_ctor_set(x_180, 1, x_178); -return x_180; +lean_ctor_set(x_183, 0, x_180); +lean_ctor_set(x_183, 1, x_181); +return x_183; } } } else { -uint8_t x_181; -x_181 = !lean_is_exclusive(x_2); -if (x_181 == 0) +if (x_142 == 0) { -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; -x_182 = lean_ctor_get(x_2, 1); -lean_dec(x_182); -x_183 = lean_ctor_get(x_2, 0); -lean_dec(x_183); -x_184 = lean_box_usize(x_11); -x_185 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___boxed__const__1; -x_186 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__2___boxed), 6, 3); -lean_closure_set(x_186, 0, x_184); -lean_closure_set(x_186, 1, x_185); -lean_closure_set(x_186, 2, x_12); -x_187 = x_186; -x_188 = lean_apply_3(x_187, x_3, x_4, x_5); -if (lean_obj_tag(x_188) == 0) +uint8_t x_184; +x_184 = !lean_is_exclusive(x_3); +if (x_184 == 0) { -uint8_t x_189; -x_189 = !lean_is_exclusive(x_188); -if (x_189 == 0) +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; +x_185 = lean_ctor_get(x_3, 1); +lean_dec(x_185); +x_186 = lean_ctor_get(x_3, 0); +lean_dec(x_186); +x_187 = lean_box_usize(x_12); +x_188 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___boxed__const__1; +x_189 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__5___boxed), 6, 3); +lean_closure_set(x_189, 0, x_187); +lean_closure_set(x_189, 1, x_188); +lean_closure_set(x_189, 2, x_13); +x_190 = x_189; +x_191 = lean_apply_3(x_190, x_4, x_5, x_6); +if (lean_obj_tag(x_191) == 0) { -lean_object* x_190; uint8_t x_191; -x_190 = lean_ctor_get(x_188, 0); -x_191 = !lean_is_exclusive(x_190); -if (x_191 == 0) +uint8_t x_192; +x_192 = !lean_is_exclusive(x_191); +if (x_192 == 0) { -lean_object* x_192; -x_192 = lean_ctor_get(x_190, 0); -lean_ctor_set(x_2, 1, x_192); -lean_ctor_set(x_190, 0, x_2); -return x_188; +lean_object* x_193; uint8_t x_194; +x_193 = lean_ctor_get(x_191, 0); +x_194 = !lean_is_exclusive(x_193); +if (x_194 == 0) +{ +lean_object* x_195; +x_195 = lean_ctor_get(x_193, 0); +lean_ctor_set(x_3, 1, x_195); +lean_ctor_set(x_193, 0, x_3); +return x_191; } else { -lean_object* x_193; lean_object* x_194; lean_object* x_195; -x_193 = lean_ctor_get(x_190, 0); -x_194 = lean_ctor_get(x_190, 1); -lean_inc(x_194); -lean_inc(x_193); -lean_dec(x_190); -lean_ctor_set(x_2, 1, x_193); -x_195 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_195, 0, x_2); -lean_ctor_set(x_195, 1, x_194); -lean_ctor_set(x_188, 0, x_195); -return x_188; -} -} -else -{ -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; -x_196 = lean_ctor_get(x_188, 0); -x_197 = lean_ctor_get(x_188, 1); +lean_object* x_196; lean_object* x_197; lean_object* x_198; +x_196 = lean_ctor_get(x_193, 0); +x_197 = lean_ctor_get(x_193, 1); lean_inc(x_197); lean_inc(x_196); -lean_dec(x_188); -x_198 = lean_ctor_get(x_196, 0); -lean_inc(x_198); -x_199 = lean_ctor_get(x_196, 1); +lean_dec(x_193); +lean_ctor_set(x_3, 1, x_196); +x_198 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_198, 0, x_3); +lean_ctor_set(x_198, 1, x_197); +lean_ctor_set(x_191, 0, x_198); +return x_191; +} +} +else +{ +lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; +x_199 = lean_ctor_get(x_191, 0); +x_200 = lean_ctor_get(x_191, 1); +lean_inc(x_200); lean_inc(x_199); -if (lean_is_exclusive(x_196)) { - lean_ctor_release(x_196, 0); - lean_ctor_release(x_196, 1); - x_200 = x_196; +lean_dec(x_191); +x_201 = lean_ctor_get(x_199, 0); +lean_inc(x_201); +x_202 = lean_ctor_get(x_199, 1); +lean_inc(x_202); +if (lean_is_exclusive(x_199)) { + lean_ctor_release(x_199, 0); + lean_ctor_release(x_199, 1); + x_203 = x_199; } else { - lean_dec_ref(x_196); - x_200 = lean_box(0); + lean_dec_ref(x_199); + x_203 = lean_box(0); } -lean_ctor_set(x_2, 1, x_198); -if (lean_is_scalar(x_200)) { - x_201 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 1, x_201); +if (lean_is_scalar(x_203)) { + x_204 = lean_alloc_ctor(0, 2, 0); } else { - x_201 = x_200; + x_204 = x_203; } -lean_ctor_set(x_201, 0, x_2); -lean_ctor_set(x_201, 1, x_199); -x_202 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_202, 0, x_201); -lean_ctor_set(x_202, 1, x_197); -return x_202; +lean_ctor_set(x_204, 0, x_3); +lean_ctor_set(x_204, 1, x_202); +x_205 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_205, 0, x_204); +lean_ctor_set(x_205, 1, x_200); +return x_205; } } else { -uint8_t x_203; -lean_free_object(x_2); -lean_dec(x_6); -x_203 = !lean_is_exclusive(x_188); -if (x_203 == 0) +uint8_t x_206; +lean_free_object(x_3); +lean_dec(x_7); +x_206 = !lean_is_exclusive(x_191); +if (x_206 == 0) { -return x_188; +return x_191; } else { -lean_object* x_204; lean_object* x_205; lean_object* x_206; -x_204 = lean_ctor_get(x_188, 0); -x_205 = lean_ctor_get(x_188, 1); -lean_inc(x_205); -lean_inc(x_204); -lean_dec(x_188); -x_206 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_206, 0, x_204); -lean_ctor_set(x_206, 1, x_205); -return x_206; +lean_object* x_207; lean_object* x_208; lean_object* x_209; +x_207 = lean_ctor_get(x_191, 0); +x_208 = lean_ctor_get(x_191, 1); +lean_inc(x_208); +lean_inc(x_207); +lean_dec(x_191); +x_209 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_209, 0, x_207); +lean_ctor_set(x_209, 1, x_208); +return x_209; } } } else { -lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; -lean_dec(x_2); -x_207 = lean_box_usize(x_11); -x_208 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___boxed__const__1; -x_209 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__2___boxed), 6, 3); -lean_closure_set(x_209, 0, x_207); -lean_closure_set(x_209, 1, x_208); -lean_closure_set(x_209, 2, x_12); -x_210 = x_209; -x_211 = lean_apply_3(x_210, x_3, x_4, x_5); -if (lean_obj_tag(x_211) == 0) +lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; +lean_dec(x_3); +x_210 = lean_box_usize(x_12); +x_211 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___boxed__const__1; +x_212 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__5___boxed), 6, 3); +lean_closure_set(x_212, 0, x_210); +lean_closure_set(x_212, 1, x_211); +lean_closure_set(x_212, 2, x_13); +x_213 = x_212; +x_214 = lean_apply_3(x_213, x_4, x_5, x_6); +if (lean_obj_tag(x_214) == 0) { -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; -x_212 = lean_ctor_get(x_211, 0); -lean_inc(x_212); -x_213 = lean_ctor_get(x_211, 1); -lean_inc(x_213); -if (lean_is_exclusive(x_211)) { - lean_ctor_release(x_211, 0); - lean_ctor_release(x_211, 1); - x_214 = x_211; -} else { - lean_dec_ref(x_211); - x_214 = lean_box(0); -} -x_215 = lean_ctor_get(x_212, 0); +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; +x_215 = lean_ctor_get(x_214, 0); lean_inc(x_215); -x_216 = lean_ctor_get(x_212, 1); +x_216 = lean_ctor_get(x_214, 1); lean_inc(x_216); -if (lean_is_exclusive(x_212)) { - lean_ctor_release(x_212, 0); - lean_ctor_release(x_212, 1); - x_217 = x_212; +if (lean_is_exclusive(x_214)) { + lean_ctor_release(x_214, 0); + lean_ctor_release(x_214, 1); + x_217 = x_214; } else { - lean_dec_ref(x_212); + lean_dec_ref(x_214); x_217 = lean_box(0); } -x_218 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_218, 0, x_6); -lean_ctor_set(x_218, 1, x_215); +x_218 = lean_ctor_get(x_215, 0); +lean_inc(x_218); +x_219 = lean_ctor_get(x_215, 1); +lean_inc(x_219); +if (lean_is_exclusive(x_215)) { + lean_ctor_release(x_215, 0); + lean_ctor_release(x_215, 1); + x_220 = x_215; +} else { + lean_dec_ref(x_215); + x_220 = lean_box(0); +} +x_221 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_221, 0, x_7); +lean_ctor_set(x_221, 1, x_218); +if (lean_is_scalar(x_220)) { + x_222 = lean_alloc_ctor(0, 2, 0); +} else { + x_222 = x_220; +} +lean_ctor_set(x_222, 0, x_221); +lean_ctor_set(x_222, 1, x_219); if (lean_is_scalar(x_217)) { - x_219 = lean_alloc_ctor(0, 2, 0); + x_223 = lean_alloc_ctor(0, 2, 0); } else { - x_219 = x_217; + x_223 = x_217; } -lean_ctor_set(x_219, 0, x_218); -lean_ctor_set(x_219, 1, x_216); -if (lean_is_scalar(x_214)) { - x_220 = lean_alloc_ctor(0, 2, 0); -} else { - x_220 = x_214; -} -lean_ctor_set(x_220, 0, x_219); -lean_ctor_set(x_220, 1, x_213); -return x_220; +lean_ctor_set(x_223, 0, x_222); +lean_ctor_set(x_223, 1, x_216); +return x_223; } else { -lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; -lean_dec(x_6); -x_221 = lean_ctor_get(x_211, 0); -lean_inc(x_221); -x_222 = lean_ctor_get(x_211, 1); -lean_inc(x_222); -if (lean_is_exclusive(x_211)) { - lean_ctor_release(x_211, 0); - lean_ctor_release(x_211, 1); - x_223 = x_211; +lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; +lean_dec(x_7); +x_224 = lean_ctor_get(x_214, 0); +lean_inc(x_224); +x_225 = lean_ctor_get(x_214, 1); +lean_inc(x_225); +if (lean_is_exclusive(x_214)) { + lean_ctor_release(x_214, 0); + lean_ctor_release(x_214, 1); + x_226 = x_214; } else { - lean_dec_ref(x_211); - x_223 = lean_box(0); + lean_dec_ref(x_214); + x_226 = lean_box(0); } -if (lean_is_scalar(x_223)) { - x_224 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_226)) { + x_227 = lean_alloc_ctor(1, 2, 0); } else { - x_224 = x_223; + x_227 = x_226; } -lean_ctor_set(x_224, 0, x_221); -lean_ctor_set(x_224, 1, x_222); -return x_224; +lean_ctor_set(x_227, 0, x_224); +lean_ctor_set(x_227, 1, x_225); +return x_227; +} +} +} +else +{ +lean_object* x_228; lean_object* x_229; lean_object* x_230; uint8_t x_231; +x_228 = lean_box_usize(x_12); +x_229 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___boxed__const__1; +lean_inc(x_3); +x_230 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__6___boxed), 7, 4); +lean_closure_set(x_230, 0, x_3); +lean_closure_set(x_230, 1, x_228); +lean_closure_set(x_230, 2, x_229); +lean_closure_set(x_230, 3, x_13); +x_231 = !lean_is_exclusive(x_3); +if (x_231 == 0) +{ +lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; +x_232 = lean_ctor_get(x_3, 1); +lean_dec(x_232); +x_233 = lean_ctor_get(x_3, 0); +lean_dec(x_233); +x_234 = x_230; +x_235 = lean_apply_3(x_234, x_4, x_5, x_6); +if (lean_obj_tag(x_235) == 0) +{ +uint8_t x_236; +x_236 = !lean_is_exclusive(x_235); +if (x_236 == 0) +{ +lean_object* x_237; uint8_t x_238; +x_237 = lean_ctor_get(x_235, 0); +x_238 = !lean_is_exclusive(x_237); +if (x_238 == 0) +{ +lean_object* x_239; +x_239 = lean_ctor_get(x_237, 0); +lean_ctor_set(x_3, 1, x_239); +lean_ctor_set(x_237, 0, x_3); +return x_235; +} +else +{ +lean_object* x_240; lean_object* x_241; lean_object* x_242; +x_240 = lean_ctor_get(x_237, 0); +x_241 = lean_ctor_get(x_237, 1); +lean_inc(x_241); +lean_inc(x_240); +lean_dec(x_237); +lean_ctor_set(x_3, 1, x_240); +x_242 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_242, 0, x_3); +lean_ctor_set(x_242, 1, x_241); +lean_ctor_set(x_235, 0, x_242); +return x_235; +} +} +else +{ +lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; +x_243 = lean_ctor_get(x_235, 0); +x_244 = lean_ctor_get(x_235, 1); +lean_inc(x_244); +lean_inc(x_243); +lean_dec(x_235); +x_245 = lean_ctor_get(x_243, 0); +lean_inc(x_245); +x_246 = lean_ctor_get(x_243, 1); +lean_inc(x_246); +if (lean_is_exclusive(x_243)) { + lean_ctor_release(x_243, 0); + lean_ctor_release(x_243, 1); + x_247 = x_243; +} else { + lean_dec_ref(x_243); + x_247 = lean_box(0); +} +lean_ctor_set(x_3, 1, x_245); +if (lean_is_scalar(x_247)) { + x_248 = lean_alloc_ctor(0, 2, 0); +} else { + x_248 = x_247; +} +lean_ctor_set(x_248, 0, x_3); +lean_ctor_set(x_248, 1, x_246); +x_249 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_249, 0, x_248); +lean_ctor_set(x_249, 1, x_244); +return x_249; +} +} +else +{ +uint8_t x_250; +lean_free_object(x_3); +lean_dec(x_7); +x_250 = !lean_is_exclusive(x_235); +if (x_250 == 0) +{ +return x_235; +} +else +{ +lean_object* x_251; lean_object* x_252; lean_object* x_253; +x_251 = lean_ctor_get(x_235, 0); +x_252 = lean_ctor_get(x_235, 1); +lean_inc(x_252); +lean_inc(x_251); +lean_dec(x_235); +x_253 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_253, 0, x_251); +lean_ctor_set(x_253, 1, x_252); +return x_253; +} +} +} +else +{ +lean_object* x_254; lean_object* x_255; +lean_dec(x_3); +x_254 = x_230; +x_255 = lean_apply_3(x_254, x_4, x_5, x_6); +if (lean_obj_tag(x_255) == 0) +{ +lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; +x_256 = lean_ctor_get(x_255, 0); +lean_inc(x_256); +x_257 = lean_ctor_get(x_255, 1); +lean_inc(x_257); +if (lean_is_exclusive(x_255)) { + lean_ctor_release(x_255, 0); + lean_ctor_release(x_255, 1); + x_258 = x_255; +} else { + lean_dec_ref(x_255); + x_258 = lean_box(0); +} +x_259 = lean_ctor_get(x_256, 0); +lean_inc(x_259); +x_260 = lean_ctor_get(x_256, 1); +lean_inc(x_260); +if (lean_is_exclusive(x_256)) { + lean_ctor_release(x_256, 0); + lean_ctor_release(x_256, 1); + x_261 = x_256; +} else { + lean_dec_ref(x_256); + x_261 = lean_box(0); +} +x_262 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_262, 0, x_7); +lean_ctor_set(x_262, 1, x_259); +if (lean_is_scalar(x_261)) { + x_263 = lean_alloc_ctor(0, 2, 0); +} else { + x_263 = x_261; +} +lean_ctor_set(x_263, 0, x_262); +lean_ctor_set(x_263, 1, x_260); +if (lean_is_scalar(x_258)) { + x_264 = lean_alloc_ctor(0, 2, 0); +} else { + x_264 = x_258; +} +lean_ctor_set(x_264, 0, x_263); +lean_ctor_set(x_264, 1, x_257); +return x_264; +} +else +{ +lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; +lean_dec(x_7); +x_265 = lean_ctor_get(x_255, 0); +lean_inc(x_265); +x_266 = lean_ctor_get(x_255, 1); +lean_inc(x_266); +if (lean_is_exclusive(x_255)) { + lean_ctor_release(x_255, 0); + lean_ctor_release(x_255, 1); + x_267 = x_255; +} else { + lean_dec_ref(x_255); + x_267 = lean_box(0); +} +if (lean_is_scalar(x_267)) { + x_268 = lean_alloc_ctor(1, 2, 0); +} else { + x_268 = x_267; +} +lean_ctor_set(x_268, 0, x_265); +lean_ctor_set(x_268, 1, x_266); +return x_268; } } } @@ -44797,29 +45261,30 @@ return x_224; } else { -lean_object* x_419; lean_object* x_420; -lean_dec(x_4); -x_419 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_419, 0, x_2); -lean_ctor_set(x_419, 1, x_3); -x_420 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_420, 0, x_419); -lean_ctor_set(x_420, 1, x_5); -return x_420; +lean_object* x_323; lean_object* x_324; +lean_dec(x_5); +x_323 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_323, 0, x_3); +lean_ctor_set(x_323, 1, x_4); +x_324 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_324, 0, x_323); +lean_ctor_set(x_324, 1, x_6); +return x_324; } } } -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___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* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___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) { _start: { -size_t x_8; size_t x_9; lean_object* x_10; -x_8 = lean_unbox_usize(x_2); -lean_dec(x_2); +size_t x_9; size_t x_10; lean_object* x_11; x_9 = lean_unbox_usize(x_3); lean_dec(x_3); -x_10 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__1(x_1, x_8, x_9, x_4, x_5, x_6, x_7); +x_10 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_11 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__1(x_1, x_2, x_9, x_10, x_5, x_6, x_7, x_8); +lean_dec(x_2); lean_dec(x_1); -return x_10; +return x_11; } } lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___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* x_6) { @@ -44860,23 +45325,64 @@ lean_dec(x_1); return x_10; } } -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___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) { +_start: +{ +size_t x_7; size_t x_8; lean_object* x_9; +x_7 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_8 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_9 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__5(x_7, x_8, x_3, x_4, x_5, x_6); +return x_9; +} +} +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__6___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) { +_start: +{ +size_t x_8; size_t x_9; lean_object* x_10; +x_8 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_9 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_10 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__6(x_1, x_8, x_9, x_4, x_5, x_6, x_7); +lean_dec(x_1); +return x_10; +} +} +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__5(x_1, x_2, x_3); +x_4 = l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__7(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___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) { _start: { -uint8_t x_6; lean_object* x_7; -x_6 = lean_unbox(x_1); +uint8_t x_9; uint8_t x_10; lean_object* x_11; +x_9 = lean_unbox(x_2); +lean_dec(x_2); +x_10 = lean_unbox(x_3); +lean_dec(x_3); +x_11 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___lambda__1(x_1, x_9, x_10, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_5); lean_dec(x_1); -x_7 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux(x_6, x_2, x_3, x_4, x_5); -return x_7; +return x_11; +} +} +lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___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: +{ +uint8_t x_7; uint8_t x_8; lean_object* x_9; +x_7 = lean_unbox(x_1); +lean_dec(x_1); +x_8 = lean_unbox(x_2); +lean_dec(x_2); +x_9 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux(x_7, x_8, x_3, x_4, x_5, x_6); +return x_9; } } lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethod_match__1___rarg(lean_object* x_1, lean_object* x_2) { @@ -44923,7 +45429,7 @@ else lean_object* x_8; uint8_t x_9; lean_object* x_10; x_8 = lean_box(0); x_9 = 0; -x_10 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux(x_9, x_1, x_8, x_2, x_3); +x_10 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux(x_9, x_9, x_1, x_8, x_2, x_3); if (lean_obj_tag(x_10) == 0) { uint8_t x_11; @@ -46474,7 +46980,45 @@ x_8 = lean_alloc_closure((void*)(l_Lean_Elab_throwUnsupportedSyntax___at_Lean_El return x_8; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___closed__1() { +lean_object* l_Lean_throwError___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___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; +x_10 = lean_ctor_get(x_7, 3); +x_11 = l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(x_1, x_5, x_6, x_7, x_8, x_9); +x_12 = !lean_is_exclusive(x_11); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; +x_13 = lean_ctor_get(x_11, 0); +lean_inc(x_10); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_10); +lean_ctor_set(x_14, 1, x_13); +lean_ctor_set_tag(x_11, 1); +lean_ctor_set(x_11, 0, x_14); +return x_11; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_15 = lean_ctor_get(x_11, 0); +x_16 = lean_ctor_get(x_11, 1); +lean_inc(x_16); +lean_inc(x_15); +lean_dec(x_11); +lean_inc(x_10); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_10); +lean_ctor_set(x_17, 1, x_15); +x_18 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_18, 0, x_17); +lean_ctor_set(x_18, 1, x_16); +return x_18; +} +} +} +static lean_object* _init_l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___lambda__1___closed__1() { _start: { lean_object* x_1; @@ -46482,15 +47026,3649 @@ x_1 = lean_mk_string("unexpected do-element\n"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___closed__2() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___closed__1; +x_1 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___lambda__1___closed__1; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } +static lean_object* _init_l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___lambda__1___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("'do'-expander"); +return x_1; +} +} +lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___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_object* x_14; uint8_t x_15; +x_13 = lean_unsigned_to_nat(1u); +x_14 = lean_nat_add(x_1, x_13); +x_15 = !lean_is_exclusive(x_10); +if (x_15 == 0) +{ +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_364; lean_object* x_365; +x_16 = lean_ctor_get(x_10, 2); +x_17 = lean_ctor_get(x_10, 3); +x_18 = lean_ctor_get(x_10, 1); +lean_dec(x_18); +x_19 = l_Lean_replaceRef(x_2, x_17); +lean_dec(x_17); +lean_inc(x_19); +lean_inc(x_16); +lean_inc(x_14); +lean_ctor_set(x_10, 3, x_19); +lean_ctor_set(x_10, 1, x_14); +x_364 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___lambda__1___closed__3; +x_365 = l_Lean_Core_checkMaxHeartbeats(x_364, x_10, x_11, x_12); +if (lean_obj_tag(x_365) == 0) +{ +lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; +x_366 = lean_ctor_get(x_365, 1); +lean_inc(x_366); +lean_dec(x_365); +x_404 = lean_st_ref_get(x_11, x_366); +x_405 = lean_ctor_get(x_404, 0); +lean_inc(x_405); +x_406 = lean_ctor_get(x_404, 1); +lean_inc(x_406); +lean_dec(x_404); +x_407 = lean_ctor_get(x_405, 0); +lean_inc(x_407); +lean_dec(x_405); +x_408 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_406); +x_409 = lean_ctor_get(x_408, 0); +lean_inc(x_409); +x_410 = lean_ctor_get(x_408, 1); +lean_inc(x_410); +lean_dec(x_408); +x_411 = lean_st_ref_get(x_11, x_410); +x_412 = lean_ctor_get(x_411, 0); +lean_inc(x_412); +x_413 = lean_ctor_get(x_411, 1); +lean_inc(x_413); +lean_dec(x_411); +x_414 = lean_ctor_get(x_412, 1); +lean_inc(x_414); +lean_dec(x_412); +lean_inc(x_407); +x_415 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); +lean_closure_set(x_415, 0, x_407); +x_416 = x_415; +x_417 = lean_environment_main_module(x_407); +lean_inc(x_19); +lean_inc(x_16); +lean_inc(x_14); +x_418 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_418, 0, x_416); +lean_ctor_set(x_418, 1, x_417); +lean_ctor_set(x_418, 2, x_409); +lean_ctor_set(x_418, 3, x_14); +lean_ctor_set(x_418, 4, x_16); +lean_ctor_set(x_418, 5, x_19); +lean_inc(x_2); +x_419 = l_Lean_Macro_expandMacro_x3fImp(x_2, x_418, x_414); +if (lean_obj_tag(x_419) == 0) +{ +lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; uint8_t x_425; +x_420 = lean_ctor_get(x_419, 0); +lean_inc(x_420); +x_421 = lean_ctor_get(x_419, 1); +lean_inc(x_421); +lean_dec(x_419); +x_422 = lean_st_ref_take(x_11, x_413); +x_423 = lean_ctor_get(x_422, 0); +lean_inc(x_423); +x_424 = lean_ctor_get(x_422, 1); +lean_inc(x_424); +lean_dec(x_422); +x_425 = !lean_is_exclusive(x_423); +if (x_425 == 0) +{ +lean_object* x_426; lean_object* x_427; lean_object* x_428; +x_426 = lean_ctor_get(x_423, 1); +lean_dec(x_426); +lean_ctor_set(x_423, 1, x_421); +x_427 = lean_st_ref_set(x_11, x_423, x_424); +x_428 = lean_ctor_get(x_427, 1); +lean_inc(x_428); +lean_dec(x_427); +x_367 = x_420; +x_368 = x_428; +goto block_403; +} +else +{ +lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; +x_429 = lean_ctor_get(x_423, 0); +x_430 = lean_ctor_get(x_423, 2); +x_431 = lean_ctor_get(x_423, 3); +lean_inc(x_431); +lean_inc(x_430); +lean_inc(x_429); +lean_dec(x_423); +x_432 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_432, 0, x_429); +lean_ctor_set(x_432, 1, x_421); +lean_ctor_set(x_432, 2, x_430); +lean_ctor_set(x_432, 3, x_431); +x_433 = lean_st_ref_set(x_11, x_432, x_424); +x_434 = lean_ctor_get(x_433, 1); +lean_inc(x_434); +lean_dec(x_433); +x_367 = x_420; +x_368 = x_434; +goto block_403; +} +} +else +{ +lean_object* x_435; +lean_dec(x_19); +lean_dec(x_16); +lean_dec(x_14); +lean_dec(x_3); +lean_dec(x_2); +x_435 = lean_ctor_get(x_419, 0); +lean_inc(x_435); +lean_dec(x_419); +if (lean_obj_tag(x_435) == 0) +{ +lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; uint8_t x_441; +x_436 = lean_ctor_get(x_435, 0); +lean_inc(x_436); +x_437 = lean_ctor_get(x_435, 1); +lean_inc(x_437); +lean_dec(x_435); +x_438 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_438, 0, x_437); +x_439 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_439, 0, x_438); +x_440 = l_Lean_throwErrorAt___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__7(x_436, x_439, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_413); +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_436); +x_441 = !lean_is_exclusive(x_440); +if (x_441 == 0) +{ +return x_440; +} +else +{ +lean_object* x_442; lean_object* x_443; lean_object* x_444; +x_442 = lean_ctor_get(x_440, 0); +x_443 = lean_ctor_get(x_440, 1); +lean_inc(x_443); +lean_inc(x_442); +lean_dec(x_440); +x_444 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_444, 0, x_442); +lean_ctor_set(x_444, 1, x_443); +return x_444; +} +} +else +{ +lean_object* x_445; uint8_t x_446; +lean_dec(x_10); +lean_dec(x_11); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_445 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__9___rarg(x_413); +x_446 = !lean_is_exclusive(x_445); +if (x_446 == 0) +{ +return x_445; +} +else +{ +lean_object* x_447; lean_object* x_448; lean_object* x_449; +x_447 = lean_ctor_get(x_445, 0); +x_448 = lean_ctor_get(x_445, 1); +lean_inc(x_448); +lean_inc(x_447); +lean_dec(x_445); +x_449 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_449, 0, x_447); +lean_ctor_set(x_449, 1, x_448); +return x_449; +} +} +} +block_403: +{ +if (lean_obj_tag(x_367) == 0) +{ +lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; 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; uint8_t x_390; +x_369 = lean_st_ref_get(x_11, x_368); +x_370 = lean_ctor_get(x_369, 0); +lean_inc(x_370); +x_371 = lean_ctor_get(x_369, 1); +lean_inc(x_371); +lean_dec(x_369); +x_372 = lean_ctor_get(x_370, 0); +lean_inc(x_372); +lean_dec(x_370); +x_373 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_371); +x_374 = lean_ctor_get(x_373, 0); +lean_inc(x_374); +x_375 = lean_ctor_get(x_373, 1); +lean_inc(x_375); +lean_dec(x_373); +x_376 = lean_st_ref_get(x_11, x_375); +x_377 = lean_ctor_get(x_376, 0); +lean_inc(x_377); +x_378 = lean_ctor_get(x_376, 1); +lean_inc(x_378); +lean_dec(x_376); +x_379 = lean_ctor_get(x_377, 1); +lean_inc(x_379); +lean_dec(x_377); +lean_inc(x_372); +x_380 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); +lean_closure_set(x_380, 0, x_372); +x_381 = x_380; +x_382 = lean_environment_main_module(x_372); +lean_inc(x_19); +lean_inc(x_16); +lean_inc(x_14); +x_383 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_383, 0, x_381); +lean_ctor_set(x_383, 1, x_382); +lean_ctor_set(x_383, 2, x_374); +lean_ctor_set(x_383, 3, x_14); +lean_ctor_set(x_383, 4, x_16); +lean_ctor_set(x_383, 5, x_19); +lean_inc(x_2); +x_384 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f(x_2, x_383, x_379); +x_385 = lean_ctor_get(x_384, 0); +lean_inc(x_385); +x_386 = lean_ctor_get(x_384, 1); +lean_inc(x_386); +lean_dec(x_384); +x_387 = lean_st_ref_take(x_11, x_378); +x_388 = lean_ctor_get(x_387, 0); +lean_inc(x_388); +x_389 = lean_ctor_get(x_387, 1); +lean_inc(x_389); +lean_dec(x_387); +x_390 = !lean_is_exclusive(x_388); +if (x_390 == 0) +{ +lean_object* x_391; lean_object* x_392; lean_object* x_393; +x_391 = lean_ctor_get(x_388, 1); +lean_dec(x_391); +lean_ctor_set(x_388, 1, x_386); +x_392 = lean_st_ref_set(x_11, x_388, x_389); +x_393 = lean_ctor_get(x_392, 1); +lean_inc(x_393); +lean_dec(x_392); +x_20 = x_385; +x_21 = x_393; +goto block_363; +} +else +{ +lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; +x_394 = lean_ctor_get(x_388, 0); +x_395 = lean_ctor_get(x_388, 2); +x_396 = lean_ctor_get(x_388, 3); +lean_inc(x_396); +lean_inc(x_395); +lean_inc(x_394); +lean_dec(x_388); +x_397 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_397, 0, x_394); +lean_ctor_set(x_397, 1, x_386); +lean_ctor_set(x_397, 2, x_395); +lean_ctor_set(x_397, 3, x_396); +x_398 = lean_st_ref_set(x_11, x_397, x_389); +x_399 = lean_ctor_get(x_398, 1); +lean_inc(x_399); +lean_dec(x_398); +x_20 = x_385; +x_21 = x_399; +goto block_363; +} +} +else +{ +lean_object* x_400; lean_object* x_401; lean_object* x_402; +lean_dec(x_19); +lean_dec(x_16); +lean_dec(x_14); +lean_dec(x_2); +x_400 = lean_ctor_get(x_367, 0); +lean_inc(x_400); +lean_dec(x_367); +x_401 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_401, 0, x_400); +lean_ctor_set(x_401, 1, x_3); +x_402 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_401, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_368); +return x_402; +} +} +} +else +{ +uint8_t x_450; +lean_dec(x_10); +lean_dec(x_19); +lean_dec(x_16); +lean_dec(x_14); +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_3); +lean_dec(x_2); +x_450 = !lean_is_exclusive(x_365); +if (x_450 == 0) +{ +return x_365; +} +else +{ +lean_object* x_451; lean_object* x_452; lean_object* x_453; +x_451 = lean_ctor_get(x_365, 0); +x_452 = lean_ctor_get(x_365, 1); +lean_inc(x_452); +lean_inc(x_451); +lean_dec(x_365); +x_453 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_453, 0, x_451); +lean_ctor_set(x_453, 1, x_452); +return x_453; +} +} +block_363: +{ +lean_object* x_22; lean_object* x_23; +if (lean_obj_tag(x_20) == 0) +{ +lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; 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; +x_314 = lean_st_ref_get(x_11, x_21); +x_315 = lean_ctor_get(x_314, 0); +lean_inc(x_315); +x_316 = lean_ctor_get(x_314, 1); +lean_inc(x_316); +lean_dec(x_314); +x_317 = lean_ctor_get(x_315, 0); +lean_inc(x_317); +lean_dec(x_315); +x_318 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_316); +x_319 = lean_ctor_get(x_318, 0); +lean_inc(x_319); +x_320 = lean_ctor_get(x_318, 1); +lean_inc(x_320); +lean_dec(x_318); +x_321 = lean_st_ref_get(x_11, x_320); +x_322 = lean_ctor_get(x_321, 0); +lean_inc(x_322); +x_323 = lean_ctor_get(x_321, 1); +lean_inc(x_323); +lean_dec(x_321); +x_324 = lean_ctor_get(x_322, 1); +lean_inc(x_324); +lean_dec(x_322); +lean_inc(x_317); +x_325 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); +lean_closure_set(x_325, 0, x_317); +x_326 = x_325; +x_327 = lean_environment_main_module(x_317); +x_328 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_328, 0, x_326); +lean_ctor_set(x_328, 1, x_327); +lean_ctor_set(x_328, 2, x_319); +lean_ctor_set(x_328, 3, x_14); +lean_ctor_set(x_328, 4, x_16); +lean_ctor_set(x_328, 5, x_19); +x_329 = l_Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethod(x_2, x_328, x_324); +if (lean_obj_tag(x_329) == 0) +{ +lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; uint8_t x_335; +x_330 = lean_ctor_get(x_329, 0); +lean_inc(x_330); +x_331 = lean_ctor_get(x_329, 1); +lean_inc(x_331); +lean_dec(x_329); +x_332 = lean_st_ref_take(x_11, x_323); +x_333 = lean_ctor_get(x_332, 0); +lean_inc(x_333); +x_334 = lean_ctor_get(x_332, 1); +lean_inc(x_334); +lean_dec(x_332); +x_335 = !lean_is_exclusive(x_333); +if (x_335 == 0) +{ +lean_object* x_336; lean_object* x_337; lean_object* x_338; +x_336 = lean_ctor_get(x_333, 1); +lean_dec(x_336); +lean_ctor_set(x_333, 1, x_331); +x_337 = lean_st_ref_set(x_11, x_333, x_334); +x_338 = lean_ctor_get(x_337, 1); +lean_inc(x_338); +lean_dec(x_337); +x_22 = x_330; +x_23 = x_338; +goto block_313; +} +else +{ +lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; +x_339 = lean_ctor_get(x_333, 0); +x_340 = lean_ctor_get(x_333, 2); +x_341 = lean_ctor_get(x_333, 3); +lean_inc(x_341); +lean_inc(x_340); +lean_inc(x_339); +lean_dec(x_333); +x_342 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_342, 0, x_339); +lean_ctor_set(x_342, 1, x_331); +lean_ctor_set(x_342, 2, x_340); +lean_ctor_set(x_342, 3, x_341); +x_343 = lean_st_ref_set(x_11, x_342, x_334); +x_344 = lean_ctor_get(x_343, 1); +lean_inc(x_344); +lean_dec(x_343); +x_22 = x_330; +x_23 = x_344; +goto block_313; +} +} +else +{ +lean_object* x_345; +lean_dec(x_5); +lean_dec(x_3); +x_345 = lean_ctor_get(x_329, 0); +lean_inc(x_345); +lean_dec(x_329); +if (lean_obj_tag(x_345) == 0) +{ +lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; uint8_t x_351; +x_346 = lean_ctor_get(x_345, 0); +lean_inc(x_346); +x_347 = lean_ctor_get(x_345, 1); +lean_inc(x_347); +lean_dec(x_345); +x_348 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_348, 0, x_347); +x_349 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_349, 0, x_348); +x_350 = l_Lean_throwErrorAt___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__4(x_346, x_349, x_6, x_7, x_8, x_9, x_10, x_11, x_323); +lean_dec(x_11); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_346); +x_351 = !lean_is_exclusive(x_350); +if (x_351 == 0) +{ +return x_350; +} +else +{ +lean_object* x_352; lean_object* x_353; lean_object* x_354; +x_352 = lean_ctor_get(x_350, 0); +x_353 = lean_ctor_get(x_350, 1); +lean_inc(x_353); +lean_inc(x_352); +lean_dec(x_350); +x_354 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_354, 0, x_352); +lean_ctor_set(x_354, 1, x_353); +return x_354; +} +} +else +{ +lean_object* x_355; uint8_t x_356; +lean_dec(x_10); +lean_dec(x_11); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_355 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__6___rarg(x_323); +x_356 = !lean_is_exclusive(x_355); +if (x_356 == 0) +{ +return x_355; +} +else +{ +lean_object* x_357; lean_object* x_358; lean_object* x_359; +x_357 = lean_ctor_get(x_355, 0); +x_358 = lean_ctor_get(x_355, 1); +lean_inc(x_358); +lean_inc(x_357); +lean_dec(x_355); +x_359 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_359, 0, x_357); +lean_ctor_set(x_359, 1, x_358); +return x_359; +} +} +} +} +else +{ +lean_object* x_360; lean_object* x_361; lean_object* x_362; +lean_dec(x_19); +lean_dec(x_16); +lean_dec(x_14); +lean_dec(x_2); +x_360 = lean_ctor_get(x_20, 0); +lean_inc(x_360); +lean_dec(x_20); +x_361 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_361, 0, x_360); +lean_ctor_set(x_361, 1, x_3); +x_362 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_361, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_21); +return x_362; +} +block_313: +{ +lean_object* x_24; lean_object* x_25; uint8_t x_26; +x_24 = lean_ctor_get(x_22, 0); +lean_inc(x_24); +x_25 = lean_ctor_get(x_22, 1); +lean_inc(x_25); +lean_dec(x_22); +x_26 = l_List_isEmpty___rarg(x_24); +if (x_26 == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_27 = lean_box(0); +x_28 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_28, 0, x_25); +lean_ctor_set(x_28, 1, x_27); +x_29 = l_List_append___rarg(x_24, x_28); +x_30 = l_List_append___rarg(x_29, x_3); +x_31 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_30, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_23); +return x_31; +} +else +{ +lean_object* x_32; lean_object* x_33; uint8_t x_34; +lean_dec(x_24); +lean_inc(x_25); +x_32 = l_Lean_Syntax_getKind(x_25); +x_33 = l_Lean_Parser_Term_doLet___elambda__1___closed__2; +x_34 = lean_name_eq(x_32, x_33); +if (x_34 == 0) +{ +lean_object* x_35; uint8_t x_36; +x_35 = l_Lean_Parser_Term_doHave___elambda__1___closed__2; +x_36 = lean_name_eq(x_32, x_35); +if (x_36 == 0) +{ +lean_object* x_37; uint8_t x_38; +x_37 = l_Lean_Parser_Term_doLetRec___elambda__1___closed__2; +x_38 = lean_name_eq(x_32, x_37); +if (x_38 == 0) +{ +lean_object* x_39; uint8_t x_40; +x_39 = l_Lean_Parser_Term_doReassign___elambda__1___closed__2; +x_40 = lean_name_eq(x_32, x_39); +if (x_40 == 0) +{ +lean_object* x_41; uint8_t x_42; +x_41 = l_Lean_Parser_Term_doLetArrow___elambda__1___closed__2; +x_42 = lean_name_eq(x_32, x_41); +if (x_42 == 0) +{ +lean_object* x_43; uint8_t x_44; +x_43 = l_Lean_Parser_Term_doReassignArrow___elambda__1___closed__2; +x_44 = lean_name_eq(x_32, x_43); +if (x_44 == 0) +{ +lean_object* x_45; uint8_t x_46; +x_45 = l_Lean_Parser_Term_doIf___elambda__1___closed__2; +x_46 = lean_name_eq(x_32, x_45); +if (x_46 == 0) +{ +lean_object* x_47; uint8_t x_48; +x_47 = l_Lean_Parser_Term_doUnless___elambda__1___closed__2; +x_48 = lean_name_eq(x_32, x_47); +if (x_48 == 0) +{ +lean_object* x_49; uint8_t x_50; +x_49 = l_Lean_Parser_Term_doFor___elambda__1___closed__2; +x_50 = lean_name_eq(x_32, x_49); +if (x_50 == 0) +{ +lean_object* x_51; uint8_t x_52; +x_51 = l_Lean_Parser_Term_doMatch___elambda__1___closed__2; +x_52 = lean_name_eq(x_32, x_51); +if (x_52 == 0) +{ +lean_object* x_53; uint8_t x_54; +x_53 = l_Lean_Parser_Term_doTry___elambda__1___closed__2; +x_54 = lean_name_eq(x_32, x_53); +if (x_54 == 0) +{ +lean_object* x_55; uint8_t x_56; +x_55 = l_Lean_Parser_Term_doBreak___elambda__1___closed__2; +x_56 = lean_name_eq(x_32, x_55); +if (x_56 == 0) +{ +lean_object* x_57; uint8_t x_58; +x_57 = l_Lean_Parser_Term_doContinue___elambda__1___closed__2; +x_58 = lean_name_eq(x_32, x_57); +if (x_58 == 0) +{ +lean_object* x_59; uint8_t x_60; +x_59 = l_Lean_Parser_Term_doReturn___elambda__1___closed__2; +x_60 = lean_name_eq(x_32, x_59); +if (x_60 == 0) +{ +lean_object* x_61; uint8_t x_62; +x_61 = l_Lean_Parser_Term_doDbgTrace___elambda__1___closed__2; +x_62 = lean_name_eq(x_32, x_61); +if (x_62 == 0) +{ +lean_object* x_63; uint8_t x_64; +x_63 = l_Lean_Parser_Term_doAssert___elambda__1___closed__2; +x_64 = lean_name_eq(x_32, x_63); +if (x_64 == 0) +{ +lean_object* x_65; uint8_t x_66; +x_65 = l_Lean_Parser_Term_doNested___elambda__1___closed__2; +x_66 = lean_name_eq(x_32, x_65); +if (x_66 == 0) +{ +lean_object* x_67; uint8_t x_68; +x_67 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_897____closed__13; +x_68 = lean_name_eq(x_32, x_67); +lean_dec(x_32); +if (x_68 == 0) +{ +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_dec(x_3); +x_69 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_69, 0, x_25); +x_70 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___lambda__1___closed__2; +x_71 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_71, 0, x_70); +lean_ctor_set(x_71, 1, x_69); +x_72 = l_Lean_KernelException_toMessageData___closed__15; +x_73 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_73, 0, x_71); +lean_ctor_set(x_73, 1, x_72); +x_74 = l_Lean_throwError___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__2(x_73, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_23); +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); +return x_74; +} +else +{ +lean_object* x_75; lean_object* x_76; uint8_t x_77; +x_75 = lean_unsigned_to_nat(0u); +x_76 = l_Lean_Syntax_getArg(x_25, x_75); +lean_dec(x_25); +x_77 = l_List_isEmpty___rarg(x_3); +if (x_77 == 0) +{ +lean_object* x_78; +x_78 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_23); +if (lean_obj_tag(x_78) == 0) +{ +uint8_t x_79; +x_79 = !lean_is_exclusive(x_78); +if (x_79 == 0) +{ +lean_object* x_80; lean_object* x_81; +x_80 = lean_ctor_get(x_78, 0); +x_81 = l_Lean_Elab_Term_Do_mkSeq(x_76, x_80); +lean_ctor_set(x_78, 0, x_81); +return x_78; +} +else +{ +lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; +x_82 = lean_ctor_get(x_78, 0); +x_83 = lean_ctor_get(x_78, 1); +lean_inc(x_83); +lean_inc(x_82); +lean_dec(x_78); +x_84 = l_Lean_Elab_Term_Do_mkSeq(x_76, x_82); +x_85 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_85, 0, x_84); +lean_ctor_set(x_85, 1, x_83); +return x_85; +} +} +else +{ +uint8_t x_86; +lean_dec(x_76); +x_86 = !lean_is_exclusive(x_78); +if (x_86 == 0) +{ +return x_78; +} +else +{ +lean_object* x_87; lean_object* x_88; lean_object* x_89; +x_87 = lean_ctor_get(x_78, 0); +x_88 = lean_ctor_get(x_78, 1); +lean_inc(x_88); +lean_inc(x_87); +lean_dec(x_78); +x_89 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_89, 0, x_87); +lean_ctor_set(x_89, 1, x_88); +return x_89; +} +} +} +else +{ +lean_object* x_90; lean_object* x_91; +lean_dec(x_10); +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_3); +x_90 = l_Lean_Elab_Term_Do_mkTerminalAction(x_76); +x_91 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_91, 0, x_90); +lean_ctor_set(x_91, 1, x_23); +return x_91; +} +} +} +else +{ +lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; +lean_dec(x_32); +x_92 = l_Lean_Syntax_getArg(x_25, x_13); +lean_dec(x_25); +x_93 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_getDoSeqElems(x_92); +x_94 = l_List_append___rarg(x_93, x_3); +x_95 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_94, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_23); +return x_95; +} +} +else +{ +lean_object* x_96; +lean_dec(x_32); +x_96 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_23); +if (lean_obj_tag(x_96) == 0) +{ +uint8_t x_97; +x_97 = !lean_is_exclusive(x_96); +if (x_97 == 0) +{ +lean_object* x_98; lean_object* x_99; +x_98 = lean_ctor_get(x_96, 0); +x_99 = l_Lean_Elab_Term_Do_mkSeq(x_25, x_98); +lean_ctor_set(x_96, 0, x_99); +return x_96; +} +else +{ +lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; +x_100 = lean_ctor_get(x_96, 0); +x_101 = lean_ctor_get(x_96, 1); +lean_inc(x_101); +lean_inc(x_100); +lean_dec(x_96); +x_102 = l_Lean_Elab_Term_Do_mkSeq(x_25, x_100); +x_103 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_103, 0, x_102); +lean_ctor_set(x_103, 1, x_101); +return x_103; +} +} +else +{ +uint8_t x_104; +lean_dec(x_25); +x_104 = !lean_is_exclusive(x_96); +if (x_104 == 0) +{ +return x_96; +} +else +{ +lean_object* x_105; lean_object* x_106; lean_object* x_107; +x_105 = lean_ctor_get(x_96, 0); +x_106 = lean_ctor_get(x_96, 1); +lean_inc(x_106); +lean_inc(x_105); +lean_dec(x_96); +x_107 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_107, 0, x_105); +lean_ctor_set(x_107, 1, x_106); +return x_107; +} +} +} +} +else +{ +lean_object* x_108; +lean_dec(x_32); +x_108 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_23); +if (lean_obj_tag(x_108) == 0) +{ +uint8_t x_109; +x_109 = !lean_is_exclusive(x_108); +if (x_109 == 0) +{ +lean_object* x_110; lean_object* x_111; +x_110 = lean_ctor_get(x_108, 0); +x_111 = l_Lean_Elab_Term_Do_mkSeq(x_25, x_110); +lean_ctor_set(x_108, 0, x_111); +return x_108; +} +else +{ +lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; +x_112 = lean_ctor_get(x_108, 0); +x_113 = lean_ctor_get(x_108, 1); +lean_inc(x_113); +lean_inc(x_112); +lean_dec(x_108); +x_114 = l_Lean_Elab_Term_Do_mkSeq(x_25, x_112); +x_115 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_115, 0, x_114); +lean_ctor_set(x_115, 1, x_113); +return x_115; +} +} +else +{ +uint8_t x_116; +lean_dec(x_25); +x_116 = !lean_is_exclusive(x_108); +if (x_116 == 0) +{ +return x_108; +} +else +{ +lean_object* x_117; lean_object* x_118; lean_object* x_119; +x_117 = lean_ctor_get(x_108, 0); +x_118 = lean_ctor_get(x_108, 1); +lean_inc(x_118); +lean_inc(x_117); +lean_dec(x_108); +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; +} +} +} +} +else +{ +lean_object* x_120; +lean_dec(x_32); +x_120 = l_Lean_Elab_Term_Do_ToCodeBlock_doReturnToCode(x_25, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_23); +lean_dec(x_3); +lean_dec(x_25); +return x_120; +} +} +else +{ +lean_object* x_121; +lean_dec(x_32); +x_121 = l_Lean_Elab_Term_Do_ToCodeBlock_ensureInsideFor(x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_23); +if (lean_obj_tag(x_121) == 0) +{ +lean_object* x_122; lean_object* x_123; +x_122 = lean_ctor_get(x_121, 1); +lean_inc(x_122); +lean_dec(x_121); +x_123 = l_Lean_Elab_Term_Do_ToCodeBlock_ensureEOS(x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_122); +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_3); +if (lean_obj_tag(x_123) == 0) +{ +uint8_t x_124; +x_124 = !lean_is_exclusive(x_123); +if (x_124 == 0) +{ +lean_object* x_125; lean_object* x_126; +x_125 = lean_ctor_get(x_123, 0); +lean_dec(x_125); +x_126 = l_Lean_Elab_Term_Do_mkContinue(x_25); +lean_ctor_set(x_123, 0, x_126); +return x_123; +} +else +{ +lean_object* x_127; lean_object* x_128; lean_object* x_129; +x_127 = lean_ctor_get(x_123, 1); +lean_inc(x_127); +lean_dec(x_123); +x_128 = l_Lean_Elab_Term_Do_mkContinue(x_25); +x_129 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_129, 0, x_128); +lean_ctor_set(x_129, 1, x_127); +return x_129; +} +} +else +{ +uint8_t x_130; +lean_dec(x_25); +x_130 = !lean_is_exclusive(x_123); +if (x_130 == 0) +{ +return x_123; +} +else +{ +lean_object* x_131; lean_object* x_132; lean_object* x_133; +x_131 = lean_ctor_get(x_123, 0); +x_132 = lean_ctor_get(x_123, 1); +lean_inc(x_132); +lean_inc(x_131); +lean_dec(x_123); +x_133 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_133, 0, x_131); +lean_ctor_set(x_133, 1, x_132); +return x_133; +} +} +} +else +{ +uint8_t x_134; +lean_dec(x_25); +lean_dec(x_10); +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_3); +x_134 = !lean_is_exclusive(x_121); +if (x_134 == 0) +{ +return x_121; +} +else +{ +lean_object* x_135; lean_object* x_136; lean_object* x_137; +x_135 = lean_ctor_get(x_121, 0); +x_136 = lean_ctor_get(x_121, 1); +lean_inc(x_136); +lean_inc(x_135); +lean_dec(x_121); +x_137 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_137, 0, x_135); +lean_ctor_set(x_137, 1, x_136); +return x_137; +} +} +} +} +else +{ +lean_object* x_138; +lean_dec(x_32); +x_138 = l_Lean_Elab_Term_Do_ToCodeBlock_ensureInsideFor(x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_23); +if (lean_obj_tag(x_138) == 0) +{ +lean_object* x_139; lean_object* x_140; +x_139 = lean_ctor_get(x_138, 1); +lean_inc(x_139); +lean_dec(x_138); +x_140 = l_Lean_Elab_Term_Do_ToCodeBlock_ensureEOS(x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_139); +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_3); +if (lean_obj_tag(x_140) == 0) +{ +uint8_t x_141; +x_141 = !lean_is_exclusive(x_140); +if (x_141 == 0) +{ +lean_object* x_142; lean_object* x_143; +x_142 = lean_ctor_get(x_140, 0); +lean_dec(x_142); +x_143 = l_Lean_Elab_Term_Do_mkBreak(x_25); +lean_ctor_set(x_140, 0, x_143); +return x_140; +} +else +{ +lean_object* x_144; lean_object* x_145; lean_object* x_146; +x_144 = lean_ctor_get(x_140, 1); +lean_inc(x_144); +lean_dec(x_140); +x_145 = l_Lean_Elab_Term_Do_mkBreak(x_25); +x_146 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_146, 0, x_145); +lean_ctor_set(x_146, 1, x_144); +return x_146; +} +} +else +{ +uint8_t x_147; +lean_dec(x_25); +x_147 = !lean_is_exclusive(x_140); +if (x_147 == 0) +{ +return x_140; +} +else +{ +lean_object* x_148; lean_object* x_149; lean_object* x_150; +x_148 = lean_ctor_get(x_140, 0); +x_149 = lean_ctor_get(x_140, 1); +lean_inc(x_149); +lean_inc(x_148); +lean_dec(x_140); +x_150 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_150, 0, x_148); +lean_ctor_set(x_150, 1, x_149); +return x_150; +} +} +} +else +{ +uint8_t x_151; +lean_dec(x_25); +lean_dec(x_10); +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_3); +x_151 = !lean_is_exclusive(x_138); +if (x_151 == 0) +{ +return x_138; +} +else +{ +lean_object* x_152; lean_object* x_153; lean_object* x_154; +x_152 = lean_ctor_get(x_138, 0); +x_153 = lean_ctor_get(x_138, 1); +lean_inc(x_153); +lean_inc(x_152); +lean_dec(x_138); +x_154 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_154, 0, x_152); +lean_ctor_set(x_154, 1, x_153); +return x_154; +} +} +} +} +else +{ +lean_object* x_155; +lean_dec(x_32); +x_155 = l_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode(x_25, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_23); +lean_dec(x_25); +return x_155; +} +} +else +{ +lean_object* x_156; +lean_dec(x_32); +x_156 = l_Lean_Elab_Term_Do_ToCodeBlock_doMatchToCode(x_25, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_23); +return x_156; +} +} +else +{ +lean_object* x_157; lean_object* x_158; lean_object* x_159; uint8_t x_160; +lean_dec(x_32); +x_157 = lean_st_ref_take(x_11, x_23); +x_158 = lean_ctor_get(x_157, 0); +lean_inc(x_158); +x_159 = lean_ctor_get(x_157, 1); +lean_inc(x_159); +lean_dec(x_157); +x_160 = !lean_is_exclusive(x_158); +if (x_160 == 0) +{ +lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; +x_161 = lean_ctor_get(x_158, 1); +x_162 = lean_nat_add(x_161, x_13); +lean_ctor_set(x_158, 1, x_162); +x_163 = lean_st_ref_set(x_11, x_158, x_159); +x_164 = lean_ctor_get(x_163, 1); +lean_inc(x_164); +lean_dec(x_163); +x_165 = !lean_is_exclusive(x_6); +if (x_165 == 0) +{ +lean_object* x_166; lean_object* x_167; +x_166 = lean_ctor_get(x_6, 4); +lean_dec(x_166); +lean_ctor_set(x_6, 4, x_161); +x_167 = l_Lean_Elab_Term_Do_ToCodeBlock_doForToCode(x_25, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_164); +lean_dec(x_25); +return x_167; +} +else +{ +lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; uint8_t x_172; uint8_t x_173; uint8_t x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; uint8_t x_178; lean_object* x_179; lean_object* x_180; +x_168 = lean_ctor_get(x_6, 0); +x_169 = lean_ctor_get(x_6, 1); +x_170 = lean_ctor_get(x_6, 2); +x_171 = lean_ctor_get(x_6, 3); +x_172 = lean_ctor_get_uint8(x_6, sizeof(void*)*8); +x_173 = lean_ctor_get_uint8(x_6, sizeof(void*)*8 + 1); +x_174 = lean_ctor_get_uint8(x_6, sizeof(void*)*8 + 2); +x_175 = lean_ctor_get(x_6, 5); +x_176 = lean_ctor_get(x_6, 6); +x_177 = lean_ctor_get(x_6, 7); +x_178 = lean_ctor_get_uint8(x_6, sizeof(void*)*8 + 3); +lean_inc(x_177); +lean_inc(x_176); +lean_inc(x_175); +lean_inc(x_171); +lean_inc(x_170); +lean_inc(x_169); +lean_inc(x_168); +lean_dec(x_6); +x_179 = lean_alloc_ctor(0, 8, 4); +lean_ctor_set(x_179, 0, x_168); +lean_ctor_set(x_179, 1, x_169); +lean_ctor_set(x_179, 2, x_170); +lean_ctor_set(x_179, 3, x_171); +lean_ctor_set(x_179, 4, x_161); +lean_ctor_set(x_179, 5, x_175); +lean_ctor_set(x_179, 6, x_176); +lean_ctor_set(x_179, 7, x_177); +lean_ctor_set_uint8(x_179, sizeof(void*)*8, x_172); +lean_ctor_set_uint8(x_179, sizeof(void*)*8 + 1, x_173); +lean_ctor_set_uint8(x_179, sizeof(void*)*8 + 2, x_174); +lean_ctor_set_uint8(x_179, sizeof(void*)*8 + 3, x_178); +x_180 = l_Lean_Elab_Term_Do_ToCodeBlock_doForToCode(x_25, x_3, x_5, x_179, x_7, x_8, x_9, x_10, x_11, x_164); +lean_dec(x_25); +return x_180; +} +} +else +{ +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; uint8_t x_193; uint8_t x_194; uint8_t x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; uint8_t x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; +x_181 = lean_ctor_get(x_158, 0); +x_182 = lean_ctor_get(x_158, 1); +x_183 = lean_ctor_get(x_158, 2); +x_184 = lean_ctor_get(x_158, 3); +lean_inc(x_184); +lean_inc(x_183); +lean_inc(x_182); +lean_inc(x_181); +lean_dec(x_158); +x_185 = lean_nat_add(x_182, x_13); +x_186 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_186, 0, x_181); +lean_ctor_set(x_186, 1, x_185); +lean_ctor_set(x_186, 2, x_183); +lean_ctor_set(x_186, 3, x_184); +x_187 = lean_st_ref_set(x_11, x_186, x_159); +x_188 = lean_ctor_get(x_187, 1); +lean_inc(x_188); +lean_dec(x_187); +x_189 = lean_ctor_get(x_6, 0); +lean_inc(x_189); +x_190 = lean_ctor_get(x_6, 1); +lean_inc(x_190); +x_191 = lean_ctor_get(x_6, 2); +lean_inc(x_191); +x_192 = lean_ctor_get(x_6, 3); +lean_inc(x_192); +x_193 = lean_ctor_get_uint8(x_6, sizeof(void*)*8); +x_194 = lean_ctor_get_uint8(x_6, sizeof(void*)*8 + 1); +x_195 = lean_ctor_get_uint8(x_6, sizeof(void*)*8 + 2); +x_196 = lean_ctor_get(x_6, 5); +lean_inc(x_196); +x_197 = lean_ctor_get(x_6, 6); +lean_inc(x_197); +x_198 = lean_ctor_get(x_6, 7); +lean_inc(x_198); +x_199 = lean_ctor_get_uint8(x_6, sizeof(void*)*8 + 3); +if (lean_is_exclusive(x_6)) { + lean_ctor_release(x_6, 0); + lean_ctor_release(x_6, 1); + lean_ctor_release(x_6, 2); + lean_ctor_release(x_6, 3); + lean_ctor_release(x_6, 4); + lean_ctor_release(x_6, 5); + lean_ctor_release(x_6, 6); + lean_ctor_release(x_6, 7); + x_200 = x_6; +} else { + lean_dec_ref(x_6); + x_200 = lean_box(0); +} +if (lean_is_scalar(x_200)) { + x_201 = lean_alloc_ctor(0, 8, 4); +} else { + x_201 = x_200; +} +lean_ctor_set(x_201, 0, x_189); +lean_ctor_set(x_201, 1, x_190); +lean_ctor_set(x_201, 2, x_191); +lean_ctor_set(x_201, 3, x_192); +lean_ctor_set(x_201, 4, x_182); +lean_ctor_set(x_201, 5, x_196); +lean_ctor_set(x_201, 6, x_197); +lean_ctor_set(x_201, 7, x_198); +lean_ctor_set_uint8(x_201, sizeof(void*)*8, x_193); +lean_ctor_set_uint8(x_201, sizeof(void*)*8 + 1, x_194); +lean_ctor_set_uint8(x_201, sizeof(void*)*8 + 2, x_195); +lean_ctor_set_uint8(x_201, sizeof(void*)*8 + 3, x_199); +x_202 = l_Lean_Elab_Term_Do_ToCodeBlock_doForToCode(x_25, x_3, x_5, x_201, x_7, x_8, x_9, x_10, x_11, x_188); +lean_dec(x_25); +return x_202; +} +} +} +else +{ +lean_object* x_203; +lean_dec(x_32); +x_203 = l_Lean_Elab_Term_Do_ToCodeBlock_doUnlessToCode(x_25, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_23); +lean_dec(x_25); +return x_203; +} +} +else +{ +lean_object* x_204; +lean_dec(x_32); +x_204 = l_Lean_Elab_Term_Do_ToCodeBlock_doIfToCode(x_25, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_23); +return x_204; +} +} +else +{ +lean_object* x_205; +lean_dec(x_32); +x_205 = l_Lean_Elab_Term_Do_ToCodeBlock_doReassignArrowToCode(x_25, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_23); +lean_dec(x_25); +return x_205; +} +} +else +{ +lean_object* x_206; +lean_dec(x_32); +x_206 = l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode(x_25, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_23); +return x_206; +} +} +else +{ +lean_object* x_207; +lean_dec(x_32); +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_207 = l_Lean_Elab_Term_Do_getDoReassignVars(x_25, x_6, x_7, x_8, x_9, x_10, x_11, x_23); +if (lean_obj_tag(x_207) == 0) +{ +lean_object* x_208; lean_object* x_209; lean_object* x_210; +x_208 = lean_ctor_get(x_207, 0); +lean_inc(x_208); +x_209 = lean_ctor_get(x_207, 1); +lean_inc(x_209); +lean_dec(x_207); +x_210 = l_Lean_Elab_Term_Do_ToCodeBlock_checkReassignable(x_208, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_209); +if (lean_obj_tag(x_210) == 0) +{ +lean_object* x_211; lean_object* x_212; +x_211 = lean_ctor_get(x_210, 1); +lean_inc(x_211); +lean_dec(x_210); +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_212 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_211); +if (lean_obj_tag(x_212) == 0) +{ +lean_object* x_213; lean_object* x_214; lean_object* x_215; +x_213 = lean_ctor_get(x_212, 0); +lean_inc(x_213); +x_214 = lean_ctor_get(x_212, 1); +lean_inc(x_214); +lean_dec(x_212); +x_215 = l_Lean_Elab_Term_Do_mkReassignCore(x_208, x_25, x_213, x_6, x_7, x_8, x_9, x_10, x_11, x_214); +return x_215; +} +else +{ +uint8_t x_216; +lean_dec(x_208); +lean_dec(x_25); +lean_dec(x_10); +lean_dec(x_11); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_216 = !lean_is_exclusive(x_212); +if (x_216 == 0) +{ +return x_212; +} +else +{ +lean_object* x_217; lean_object* x_218; lean_object* x_219; +x_217 = lean_ctor_get(x_212, 0); +x_218 = lean_ctor_get(x_212, 1); +lean_inc(x_218); +lean_inc(x_217); +lean_dec(x_212); +x_219 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_219, 0, x_217); +lean_ctor_set(x_219, 1, x_218); +return x_219; +} +} +} +else +{ +uint8_t x_220; +lean_dec(x_208); +lean_dec(x_25); +lean_dec(x_10); +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_3); +x_220 = !lean_is_exclusive(x_210); +if (x_220 == 0) +{ +return x_210; +} +else +{ +lean_object* x_221; lean_object* x_222; lean_object* x_223; +x_221 = lean_ctor_get(x_210, 0); +x_222 = lean_ctor_get(x_210, 1); +lean_inc(x_222); +lean_inc(x_221); +lean_dec(x_210); +x_223 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_223, 0, x_221); +lean_ctor_set(x_223, 1, x_222); +return x_223; +} +} +} +else +{ +uint8_t x_224; +lean_dec(x_25); +lean_dec(x_10); +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_3); +x_224 = !lean_is_exclusive(x_207); +if (x_224 == 0) +{ +return x_207; +} +else +{ +lean_object* x_225; lean_object* x_226; lean_object* x_227; +x_225 = lean_ctor_get(x_207, 0); +x_226 = lean_ctor_get(x_207, 1); +lean_inc(x_226); +lean_inc(x_225); +lean_dec(x_207); +x_227 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_227, 0, x_225); +lean_ctor_set(x_227, 1, x_226); +return x_227; +} +} +} +} +else +{ +lean_object* x_228; +lean_dec(x_32); +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_228 = l_Lean_Elab_Term_Do_getDoLetRecVars(x_25, x_6, x_7, x_8, x_9, x_10, x_11, x_23); +if (lean_obj_tag(x_228) == 0) +{ +lean_object* x_229; lean_object* x_230; lean_object* x_231; +x_229 = lean_ctor_get(x_228, 0); +lean_inc(x_229); +x_230 = lean_ctor_get(x_228, 1); +lean_inc(x_230); +lean_dec(x_228); +x_231 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_230); +if (lean_obj_tag(x_231) == 0) +{ +uint8_t x_232; +x_232 = !lean_is_exclusive(x_231); +if (x_232 == 0) +{ +lean_object* x_233; lean_object* x_234; +x_233 = lean_ctor_get(x_231, 0); +x_234 = l_Lean_Elab_Term_Do_mkVarDeclCore(x_229, x_25, x_233); +lean_ctor_set(x_231, 0, x_234); +return x_231; +} +else +{ +lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; +x_235 = lean_ctor_get(x_231, 0); +x_236 = lean_ctor_get(x_231, 1); +lean_inc(x_236); +lean_inc(x_235); +lean_dec(x_231); +x_237 = l_Lean_Elab_Term_Do_mkVarDeclCore(x_229, x_25, x_235); +x_238 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_238, 0, x_237); +lean_ctor_set(x_238, 1, x_236); +return x_238; +} +} +else +{ +uint8_t x_239; +lean_dec(x_229); +lean_dec(x_25); +x_239 = !lean_is_exclusive(x_231); +if (x_239 == 0) +{ +return x_231; +} +else +{ +lean_object* x_240; lean_object* x_241; lean_object* x_242; +x_240 = lean_ctor_get(x_231, 0); +x_241 = lean_ctor_get(x_231, 1); +lean_inc(x_241); +lean_inc(x_240); +lean_dec(x_231); +x_242 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_242, 0, x_240); +lean_ctor_set(x_242, 1, x_241); +return x_242; +} +} +} +else +{ +uint8_t x_243; +lean_dec(x_25); +lean_dec(x_10); +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_3); +x_243 = !lean_is_exclusive(x_228); +if (x_243 == 0) +{ +return x_228; +} +else +{ +lean_object* x_244; lean_object* x_245; lean_object* x_246; +x_244 = lean_ctor_get(x_228, 0); +x_245 = lean_ctor_get(x_228, 1); +lean_inc(x_245); +lean_inc(x_244); +lean_dec(x_228); +x_246 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_246, 0, x_244); +lean_ctor_set(x_246, 1, x_245); +return x_246; +} +} +} +} +else +{ +lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; +lean_dec(x_32); +x_247 = l_Lean_Elab_Term_Do_getDoHaveVar(x_25); +x_248 = l_Lean_mkOptionalNode___closed__2; +x_249 = lean_array_push(x_248, x_247); +x_250 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_23); +if (lean_obj_tag(x_250) == 0) +{ +uint8_t x_251; +x_251 = !lean_is_exclusive(x_250); +if (x_251 == 0) +{ +lean_object* x_252; lean_object* x_253; +x_252 = lean_ctor_get(x_250, 0); +x_253 = l_Lean_Elab_Term_Do_mkVarDeclCore(x_249, x_25, x_252); +lean_ctor_set(x_250, 0, x_253); +return x_250; +} +else +{ +lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; +x_254 = lean_ctor_get(x_250, 0); +x_255 = lean_ctor_get(x_250, 1); +lean_inc(x_255); +lean_inc(x_254); +lean_dec(x_250); +x_256 = l_Lean_Elab_Term_Do_mkVarDeclCore(x_249, x_25, x_254); +x_257 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_257, 0, x_256); +lean_ctor_set(x_257, 1, x_255); +return x_257; +} +} +else +{ +uint8_t x_258; +lean_dec(x_249); +lean_dec(x_25); +x_258 = !lean_is_exclusive(x_250); +if (x_258 == 0) +{ +return x_250; +} +else +{ +lean_object* x_259; lean_object* x_260; lean_object* x_261; +x_259 = lean_ctor_get(x_250, 0); +x_260 = lean_ctor_get(x_250, 1); +lean_inc(x_260); +lean_inc(x_259); +lean_dec(x_250); +x_261 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_261, 0, x_259); +lean_ctor_set(x_261, 1, x_260); +return x_261; +} +} +} +} +else +{ +lean_object* x_262; +lean_dec(x_32); +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_262 = l_Lean_Elab_Term_Do_getDoLetVars(x_25, x_6, x_7, x_8, x_9, x_10, x_11, x_23); +if (lean_obj_tag(x_262) == 0) +{ +lean_object* x_263; lean_object* x_264; uint8_t x_265; +x_263 = lean_ctor_get(x_262, 0); +lean_inc(x_263); +x_264 = lean_ctor_get(x_262, 1); +lean_inc(x_264); +lean_dec(x_262); +lean_inc(x_25); +x_265 = l_Lean_Elab_Term_Do_isMutableLet(x_25); +if (x_265 == 0) +{ +lean_object* x_266; +x_266 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_264); +if (lean_obj_tag(x_266) == 0) +{ +uint8_t x_267; +x_267 = !lean_is_exclusive(x_266); +if (x_267 == 0) +{ +lean_object* x_268; lean_object* x_269; +x_268 = lean_ctor_get(x_266, 0); +x_269 = l_Lean_Elab_Term_Do_mkVarDeclCore(x_263, x_25, x_268); +lean_ctor_set(x_266, 0, x_269); +return x_266; +} +else +{ +lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; +x_270 = lean_ctor_get(x_266, 0); +x_271 = lean_ctor_get(x_266, 1); +lean_inc(x_271); +lean_inc(x_270); +lean_dec(x_266); +x_272 = l_Lean_Elab_Term_Do_mkVarDeclCore(x_263, x_25, x_270); +x_273 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_273, 0, x_272); +lean_ctor_set(x_273, 1, x_271); +return x_273; +} +} +else +{ +uint8_t x_274; +lean_dec(x_263); +lean_dec(x_25); +x_274 = !lean_is_exclusive(x_266); +if (x_274 == 0) +{ +return x_266; +} +else +{ +lean_object* x_275; lean_object* x_276; lean_object* x_277; +x_275 = lean_ctor_get(x_266, 0); +x_276 = lean_ctor_get(x_266, 1); +lean_inc(x_276); +lean_inc(x_275); +lean_dec(x_266); +x_277 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_277, 0, x_275); +lean_ctor_set(x_277, 1, x_276); +return x_277; +} +} +} +else +{ +uint8_t x_278; +x_278 = !lean_is_exclusive(x_5); +if (x_278 == 0) +{ +lean_object* x_279; lean_object* x_280; lean_object* x_281; +x_279 = lean_ctor_get(x_5, 2); +x_280 = l_Lean_Elab_Term_Do_insertVars(x_279, x_263); +lean_ctor_set(x_5, 2, x_280); +x_281 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_264); +if (lean_obj_tag(x_281) == 0) +{ +uint8_t x_282; +x_282 = !lean_is_exclusive(x_281); +if (x_282 == 0) +{ +lean_object* x_283; lean_object* x_284; +x_283 = lean_ctor_get(x_281, 0); +x_284 = l_Lean_Elab_Term_Do_mkVarDeclCore(x_263, x_25, x_283); +lean_ctor_set(x_281, 0, x_284); +return x_281; +} +else +{ +lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; +x_285 = lean_ctor_get(x_281, 0); +x_286 = lean_ctor_get(x_281, 1); +lean_inc(x_286); +lean_inc(x_285); +lean_dec(x_281); +x_287 = l_Lean_Elab_Term_Do_mkVarDeclCore(x_263, x_25, x_285); +x_288 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_288, 0, x_287); +lean_ctor_set(x_288, 1, x_286); +return x_288; +} +} +else +{ +uint8_t x_289; +lean_dec(x_263); +lean_dec(x_25); +x_289 = !lean_is_exclusive(x_281); +if (x_289 == 0) +{ +return x_281; +} +else +{ +lean_object* x_290; lean_object* x_291; lean_object* x_292; +x_290 = lean_ctor_get(x_281, 0); +x_291 = lean_ctor_get(x_281, 1); +lean_inc(x_291); +lean_inc(x_290); +lean_dec(x_281); +x_292 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_292, 0, x_290); +lean_ctor_set(x_292, 1, x_291); +return x_292; +} +} +} +else +{ +lean_object* x_293; lean_object* x_294; lean_object* x_295; uint8_t x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; +x_293 = lean_ctor_get(x_5, 0); +x_294 = lean_ctor_get(x_5, 1); +x_295 = lean_ctor_get(x_5, 2); +x_296 = lean_ctor_get_uint8(x_5, sizeof(void*)*3); +lean_inc(x_295); +lean_inc(x_294); +lean_inc(x_293); +lean_dec(x_5); +x_297 = l_Lean_Elab_Term_Do_insertVars(x_295, x_263); +x_298 = lean_alloc_ctor(0, 3, 1); +lean_ctor_set(x_298, 0, x_293); +lean_ctor_set(x_298, 1, x_294); +lean_ctor_set(x_298, 2, x_297); +lean_ctor_set_uint8(x_298, sizeof(void*)*3, x_296); +x_299 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_3, x_298, x_6, x_7, x_8, x_9, x_10, x_11, x_264); +if (lean_obj_tag(x_299) == 0) +{ +lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; +x_300 = lean_ctor_get(x_299, 0); +lean_inc(x_300); +x_301 = lean_ctor_get(x_299, 1); +lean_inc(x_301); +if (lean_is_exclusive(x_299)) { + lean_ctor_release(x_299, 0); + lean_ctor_release(x_299, 1); + x_302 = x_299; +} else { + lean_dec_ref(x_299); + x_302 = lean_box(0); +} +x_303 = l_Lean_Elab_Term_Do_mkVarDeclCore(x_263, x_25, x_300); +if (lean_is_scalar(x_302)) { + x_304 = lean_alloc_ctor(0, 2, 0); +} else { + x_304 = x_302; +} +lean_ctor_set(x_304, 0, x_303); +lean_ctor_set(x_304, 1, x_301); +return x_304; +} +else +{ +lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; +lean_dec(x_263); +lean_dec(x_25); +x_305 = lean_ctor_get(x_299, 0); +lean_inc(x_305); +x_306 = lean_ctor_get(x_299, 1); +lean_inc(x_306); +if (lean_is_exclusive(x_299)) { + lean_ctor_release(x_299, 0); + lean_ctor_release(x_299, 1); + x_307 = x_299; +} else { + lean_dec_ref(x_299); + x_307 = lean_box(0); +} +if (lean_is_scalar(x_307)) { + x_308 = lean_alloc_ctor(1, 2, 0); +} else { + x_308 = x_307; +} +lean_ctor_set(x_308, 0, x_305); +lean_ctor_set(x_308, 1, x_306); +return x_308; +} +} +} +} +else +{ +uint8_t x_309; +lean_dec(x_25); +lean_dec(x_10); +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_3); +x_309 = !lean_is_exclusive(x_262); +if (x_309 == 0) +{ +return x_262; +} +else +{ +lean_object* x_310; lean_object* x_311; lean_object* x_312; +x_310 = lean_ctor_get(x_262, 0); +x_311 = lean_ctor_get(x_262, 1); +lean_inc(x_311); +lean_inc(x_310); +lean_dec(x_262); +x_312 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_312, 0, x_310); +lean_ctor_set(x_312, 1, x_311); +return x_312; +} +} +} +} +} +} +} +else +{ +lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_754; lean_object* x_755; +x_454 = lean_ctor_get(x_10, 0); +x_455 = lean_ctor_get(x_10, 2); +x_456 = lean_ctor_get(x_10, 3); +x_457 = lean_ctor_get(x_10, 4); +x_458 = lean_ctor_get(x_10, 5); +x_459 = lean_ctor_get(x_10, 6); +x_460 = lean_ctor_get(x_10, 7); +lean_inc(x_460); +lean_inc(x_459); +lean_inc(x_458); +lean_inc(x_457); +lean_inc(x_456); +lean_inc(x_455); +lean_inc(x_454); +lean_dec(x_10); +x_461 = l_Lean_replaceRef(x_2, x_456); +lean_dec(x_456); +lean_inc(x_461); +lean_inc(x_455); +lean_inc(x_14); +x_462 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_462, 0, x_454); +lean_ctor_set(x_462, 1, x_14); +lean_ctor_set(x_462, 2, x_455); +lean_ctor_set(x_462, 3, x_461); +lean_ctor_set(x_462, 4, x_457); +lean_ctor_set(x_462, 5, x_458); +lean_ctor_set(x_462, 6, x_459); +lean_ctor_set(x_462, 7, x_460); +x_754 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___lambda__1___closed__3; +x_755 = l_Lean_Core_checkMaxHeartbeats(x_754, x_462, x_11, x_12); +if (lean_obj_tag(x_755) == 0) +{ +lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_791; lean_object* x_792; lean_object* x_793; lean_object* x_794; lean_object* x_795; lean_object* x_796; lean_object* x_797; lean_object* x_798; lean_object* x_799; lean_object* x_800; lean_object* x_801; lean_object* x_802; lean_object* x_803; lean_object* x_804; lean_object* x_805; lean_object* x_806; +x_756 = lean_ctor_get(x_755, 1); +lean_inc(x_756); +lean_dec(x_755); +x_791 = lean_st_ref_get(x_11, x_756); +x_792 = lean_ctor_get(x_791, 0); +lean_inc(x_792); +x_793 = lean_ctor_get(x_791, 1); +lean_inc(x_793); +lean_dec(x_791); +x_794 = lean_ctor_get(x_792, 0); +lean_inc(x_794); +lean_dec(x_792); +x_795 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_462, x_11, x_793); +x_796 = lean_ctor_get(x_795, 0); +lean_inc(x_796); +x_797 = lean_ctor_get(x_795, 1); +lean_inc(x_797); +lean_dec(x_795); +x_798 = lean_st_ref_get(x_11, x_797); +x_799 = lean_ctor_get(x_798, 0); +lean_inc(x_799); +x_800 = lean_ctor_get(x_798, 1); +lean_inc(x_800); +lean_dec(x_798); +x_801 = lean_ctor_get(x_799, 1); +lean_inc(x_801); +lean_dec(x_799); +lean_inc(x_794); +x_802 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); +lean_closure_set(x_802, 0, x_794); +x_803 = x_802; +x_804 = lean_environment_main_module(x_794); +lean_inc(x_461); +lean_inc(x_455); +lean_inc(x_14); +x_805 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_805, 0, x_803); +lean_ctor_set(x_805, 1, x_804); +lean_ctor_set(x_805, 2, x_796); +lean_ctor_set(x_805, 3, x_14); +lean_ctor_set(x_805, 4, x_455); +lean_ctor_set(x_805, 5, x_461); +lean_inc(x_2); +x_806 = l_Lean_Macro_expandMacro_x3fImp(x_2, x_805, x_801); +if (lean_obj_tag(x_806) == 0) +{ +lean_object* x_807; lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; lean_object* x_812; lean_object* x_813; lean_object* x_814; lean_object* x_815; lean_object* x_816; lean_object* x_817; lean_object* x_818; +x_807 = lean_ctor_get(x_806, 0); +lean_inc(x_807); +x_808 = lean_ctor_get(x_806, 1); +lean_inc(x_808); +lean_dec(x_806); +x_809 = lean_st_ref_take(x_11, x_800); +x_810 = lean_ctor_get(x_809, 0); +lean_inc(x_810); +x_811 = lean_ctor_get(x_809, 1); +lean_inc(x_811); +lean_dec(x_809); +x_812 = lean_ctor_get(x_810, 0); +lean_inc(x_812); +x_813 = lean_ctor_get(x_810, 2); +lean_inc(x_813); +x_814 = lean_ctor_get(x_810, 3); +lean_inc(x_814); +if (lean_is_exclusive(x_810)) { + lean_ctor_release(x_810, 0); + lean_ctor_release(x_810, 1); + lean_ctor_release(x_810, 2); + lean_ctor_release(x_810, 3); + x_815 = x_810; +} else { + lean_dec_ref(x_810); + x_815 = lean_box(0); +} +if (lean_is_scalar(x_815)) { + x_816 = lean_alloc_ctor(0, 4, 0); +} else { + x_816 = x_815; +} +lean_ctor_set(x_816, 0, x_812); +lean_ctor_set(x_816, 1, x_808); +lean_ctor_set(x_816, 2, x_813); +lean_ctor_set(x_816, 3, x_814); +x_817 = lean_st_ref_set(x_11, x_816, x_811); +x_818 = lean_ctor_get(x_817, 1); +lean_inc(x_818); +lean_dec(x_817); +x_757 = x_807; +x_758 = x_818; +goto block_790; +} +else +{ +lean_object* x_819; +lean_dec(x_461); +lean_dec(x_455); +lean_dec(x_14); +lean_dec(x_3); +lean_dec(x_2); +x_819 = lean_ctor_get(x_806, 0); +lean_inc(x_819); +lean_dec(x_806); +if (lean_obj_tag(x_819) == 0) +{ +lean_object* x_820; lean_object* x_821; lean_object* x_822; lean_object* x_823; lean_object* x_824; lean_object* x_825; lean_object* x_826; lean_object* x_827; lean_object* x_828; +x_820 = lean_ctor_get(x_819, 0); +lean_inc(x_820); +x_821 = lean_ctor_get(x_819, 1); +lean_inc(x_821); +lean_dec(x_819); +x_822 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_822, 0, x_821); +x_823 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_823, 0, x_822); +x_824 = l_Lean_throwErrorAt___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__7(x_820, x_823, x_5, x_6, x_7, x_8, x_9, x_462, x_11, x_800); +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_820); +x_825 = lean_ctor_get(x_824, 0); +lean_inc(x_825); +x_826 = lean_ctor_get(x_824, 1); +lean_inc(x_826); +if (lean_is_exclusive(x_824)) { + lean_ctor_release(x_824, 0); + lean_ctor_release(x_824, 1); + x_827 = x_824; +} else { + lean_dec_ref(x_824); + x_827 = lean_box(0); +} +if (lean_is_scalar(x_827)) { + x_828 = lean_alloc_ctor(1, 2, 0); +} else { + x_828 = x_827; +} +lean_ctor_set(x_828, 0, x_825); +lean_ctor_set(x_828, 1, x_826); +return x_828; +} +else +{ +lean_object* x_829; lean_object* x_830; lean_object* x_831; lean_object* x_832; lean_object* x_833; +lean_dec(x_462); +lean_dec(x_11); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_829 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__9___rarg(x_800); +x_830 = lean_ctor_get(x_829, 0); +lean_inc(x_830); +x_831 = lean_ctor_get(x_829, 1); +lean_inc(x_831); +if (lean_is_exclusive(x_829)) { + lean_ctor_release(x_829, 0); + lean_ctor_release(x_829, 1); + x_832 = x_829; +} else { + lean_dec_ref(x_829); + x_832 = lean_box(0); +} +if (lean_is_scalar(x_832)) { + x_833 = lean_alloc_ctor(1, 2, 0); +} else { + x_833 = x_832; +} +lean_ctor_set(x_833, 0, x_830); +lean_ctor_set(x_833, 1, x_831); +return x_833; +} +} +block_790: +{ +if (lean_obj_tag(x_757) == 0) +{ +lean_object* x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; lean_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; lean_object* x_774; lean_object* x_775; lean_object* x_776; lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; lean_object* x_786; +x_759 = lean_st_ref_get(x_11, x_758); +x_760 = lean_ctor_get(x_759, 0); +lean_inc(x_760); +x_761 = lean_ctor_get(x_759, 1); +lean_inc(x_761); +lean_dec(x_759); +x_762 = lean_ctor_get(x_760, 0); +lean_inc(x_762); +lean_dec(x_760); +x_763 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_462, x_11, x_761); +x_764 = lean_ctor_get(x_763, 0); +lean_inc(x_764); +x_765 = lean_ctor_get(x_763, 1); +lean_inc(x_765); +lean_dec(x_763); +x_766 = lean_st_ref_get(x_11, x_765); +x_767 = lean_ctor_get(x_766, 0); +lean_inc(x_767); +x_768 = lean_ctor_get(x_766, 1); +lean_inc(x_768); +lean_dec(x_766); +x_769 = lean_ctor_get(x_767, 1); +lean_inc(x_769); +lean_dec(x_767); +lean_inc(x_762); +x_770 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); +lean_closure_set(x_770, 0, x_762); +x_771 = x_770; +x_772 = lean_environment_main_module(x_762); +lean_inc(x_461); +lean_inc(x_455); +lean_inc(x_14); +x_773 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_773, 0, x_771); +lean_ctor_set(x_773, 1, x_772); +lean_ctor_set(x_773, 2, x_764); +lean_ctor_set(x_773, 3, x_14); +lean_ctor_set(x_773, 4, x_455); +lean_ctor_set(x_773, 5, x_461); +lean_inc(x_2); +x_774 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f(x_2, x_773, x_769); +x_775 = lean_ctor_get(x_774, 0); +lean_inc(x_775); +x_776 = lean_ctor_get(x_774, 1); +lean_inc(x_776); +lean_dec(x_774); +x_777 = lean_st_ref_take(x_11, x_768); +x_778 = lean_ctor_get(x_777, 0); +lean_inc(x_778); +x_779 = lean_ctor_get(x_777, 1); +lean_inc(x_779); +lean_dec(x_777); +x_780 = lean_ctor_get(x_778, 0); +lean_inc(x_780); +x_781 = lean_ctor_get(x_778, 2); +lean_inc(x_781); +x_782 = lean_ctor_get(x_778, 3); +lean_inc(x_782); +if (lean_is_exclusive(x_778)) { + lean_ctor_release(x_778, 0); + lean_ctor_release(x_778, 1); + lean_ctor_release(x_778, 2); + lean_ctor_release(x_778, 3); + x_783 = x_778; +} else { + lean_dec_ref(x_778); + x_783 = lean_box(0); +} +if (lean_is_scalar(x_783)) { + x_784 = lean_alloc_ctor(0, 4, 0); +} else { + x_784 = x_783; +} +lean_ctor_set(x_784, 0, x_780); +lean_ctor_set(x_784, 1, x_776); +lean_ctor_set(x_784, 2, x_781); +lean_ctor_set(x_784, 3, x_782); +x_785 = lean_st_ref_set(x_11, x_784, x_779); +x_786 = lean_ctor_get(x_785, 1); +lean_inc(x_786); +lean_dec(x_785); +x_463 = x_775; +x_464 = x_786; +goto block_753; +} +else +{ +lean_object* x_787; lean_object* x_788; lean_object* x_789; +lean_dec(x_461); +lean_dec(x_455); +lean_dec(x_14); +lean_dec(x_2); +x_787 = lean_ctor_get(x_757, 0); +lean_inc(x_787); +lean_dec(x_757); +x_788 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_788, 0, x_787); +lean_ctor_set(x_788, 1, x_3); +x_789 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_788, x_5, x_6, x_7, x_8, x_9, x_462, x_11, x_758); +return x_789; +} +} +} +else +{ +lean_object* x_834; lean_object* x_835; lean_object* x_836; lean_object* x_837; +lean_dec(x_462); +lean_dec(x_461); +lean_dec(x_455); +lean_dec(x_14); +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_3); +lean_dec(x_2); +x_834 = lean_ctor_get(x_755, 0); +lean_inc(x_834); +x_835 = lean_ctor_get(x_755, 1); +lean_inc(x_835); +if (lean_is_exclusive(x_755)) { + lean_ctor_release(x_755, 0); + lean_ctor_release(x_755, 1); + x_836 = x_755; +} else { + lean_dec_ref(x_755); + x_836 = lean_box(0); +} +if (lean_is_scalar(x_836)) { + x_837 = lean_alloc_ctor(1, 2, 0); +} else { + x_837 = x_836; +} +lean_ctor_set(x_837, 0, x_834); +lean_ctor_set(x_837, 1, x_835); +return x_837; +} +block_753: +{ +lean_object* x_465; lean_object* x_466; +if (lean_obj_tag(x_463) == 0) +{ +lean_object* x_707; lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; lean_object* x_717; lean_object* x_718; lean_object* x_719; lean_object* x_720; lean_object* x_721; lean_object* x_722; +x_707 = lean_st_ref_get(x_11, x_464); +x_708 = lean_ctor_get(x_707, 0); +lean_inc(x_708); +x_709 = lean_ctor_get(x_707, 1); +lean_inc(x_709); +lean_dec(x_707); +x_710 = lean_ctor_get(x_708, 0); +lean_inc(x_710); +lean_dec(x_708); +x_711 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_462, x_11, x_709); +x_712 = lean_ctor_get(x_711, 0); +lean_inc(x_712); +x_713 = lean_ctor_get(x_711, 1); +lean_inc(x_713); +lean_dec(x_711); +x_714 = lean_st_ref_get(x_11, x_713); +x_715 = lean_ctor_get(x_714, 0); +lean_inc(x_715); +x_716 = lean_ctor_get(x_714, 1); +lean_inc(x_716); +lean_dec(x_714); +x_717 = lean_ctor_get(x_715, 1); +lean_inc(x_717); +lean_dec(x_715); +lean_inc(x_710); +x_718 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); +lean_closure_set(x_718, 0, x_710); +x_719 = x_718; +x_720 = lean_environment_main_module(x_710); +x_721 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_721, 0, x_719); +lean_ctor_set(x_721, 1, x_720); +lean_ctor_set(x_721, 2, x_712); +lean_ctor_set(x_721, 3, x_14); +lean_ctor_set(x_721, 4, x_455); +lean_ctor_set(x_721, 5, x_461); +x_722 = l_Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethod(x_2, x_721, x_717); +if (lean_obj_tag(x_722) == 0) +{ +lean_object* x_723; lean_object* x_724; lean_object* x_725; lean_object* x_726; lean_object* x_727; lean_object* x_728; lean_object* x_729; lean_object* x_730; lean_object* x_731; lean_object* x_732; lean_object* x_733; lean_object* x_734; +x_723 = lean_ctor_get(x_722, 0); +lean_inc(x_723); +x_724 = lean_ctor_get(x_722, 1); +lean_inc(x_724); +lean_dec(x_722); +x_725 = lean_st_ref_take(x_11, x_716); +x_726 = lean_ctor_get(x_725, 0); +lean_inc(x_726); +x_727 = lean_ctor_get(x_725, 1); +lean_inc(x_727); +lean_dec(x_725); +x_728 = lean_ctor_get(x_726, 0); +lean_inc(x_728); +x_729 = lean_ctor_get(x_726, 2); +lean_inc(x_729); +x_730 = lean_ctor_get(x_726, 3); +lean_inc(x_730); +if (lean_is_exclusive(x_726)) { + lean_ctor_release(x_726, 0); + lean_ctor_release(x_726, 1); + lean_ctor_release(x_726, 2); + lean_ctor_release(x_726, 3); + x_731 = x_726; +} else { + lean_dec_ref(x_726); + x_731 = lean_box(0); +} +if (lean_is_scalar(x_731)) { + x_732 = lean_alloc_ctor(0, 4, 0); +} else { + x_732 = x_731; +} +lean_ctor_set(x_732, 0, x_728); +lean_ctor_set(x_732, 1, x_724); +lean_ctor_set(x_732, 2, x_729); +lean_ctor_set(x_732, 3, x_730); +x_733 = lean_st_ref_set(x_11, x_732, x_727); +x_734 = lean_ctor_get(x_733, 1); +lean_inc(x_734); +lean_dec(x_733); +x_465 = x_723; +x_466 = x_734; +goto block_706; +} +else +{ +lean_object* x_735; +lean_dec(x_5); +lean_dec(x_3); +x_735 = lean_ctor_get(x_722, 0); +lean_inc(x_735); +lean_dec(x_722); +if (lean_obj_tag(x_735) == 0) +{ +lean_object* x_736; lean_object* x_737; lean_object* x_738; lean_object* x_739; lean_object* x_740; lean_object* x_741; lean_object* x_742; lean_object* x_743; lean_object* x_744; +x_736 = lean_ctor_get(x_735, 0); +lean_inc(x_736); +x_737 = lean_ctor_get(x_735, 1); +lean_inc(x_737); +lean_dec(x_735); +x_738 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_738, 0, x_737); +x_739 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_739, 0, x_738); +x_740 = l_Lean_throwErrorAt___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__4(x_736, x_739, x_6, x_7, x_8, x_9, x_462, x_11, x_716); +lean_dec(x_11); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_736); +x_741 = lean_ctor_get(x_740, 0); +lean_inc(x_741); +x_742 = lean_ctor_get(x_740, 1); +lean_inc(x_742); +if (lean_is_exclusive(x_740)) { + lean_ctor_release(x_740, 0); + lean_ctor_release(x_740, 1); + x_743 = x_740; +} else { + lean_dec_ref(x_740); + x_743 = lean_box(0); +} +if (lean_is_scalar(x_743)) { + x_744 = lean_alloc_ctor(1, 2, 0); +} else { + x_744 = x_743; +} +lean_ctor_set(x_744, 0, x_741); +lean_ctor_set(x_744, 1, x_742); +return x_744; +} +else +{ +lean_object* x_745; lean_object* x_746; lean_object* x_747; lean_object* x_748; lean_object* x_749; +lean_dec(x_462); +lean_dec(x_11); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_745 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__6___rarg(x_716); +x_746 = lean_ctor_get(x_745, 0); +lean_inc(x_746); +x_747 = lean_ctor_get(x_745, 1); +lean_inc(x_747); +if (lean_is_exclusive(x_745)) { + lean_ctor_release(x_745, 0); + lean_ctor_release(x_745, 1); + x_748 = x_745; +} else { + lean_dec_ref(x_745); + x_748 = lean_box(0); +} +if (lean_is_scalar(x_748)) { + x_749 = lean_alloc_ctor(1, 2, 0); +} else { + x_749 = x_748; +} +lean_ctor_set(x_749, 0, x_746); +lean_ctor_set(x_749, 1, x_747); +return x_749; +} +} +} +else +{ +lean_object* x_750; lean_object* x_751; lean_object* x_752; +lean_dec(x_461); +lean_dec(x_455); +lean_dec(x_14); +lean_dec(x_2); +x_750 = lean_ctor_get(x_463, 0); +lean_inc(x_750); +lean_dec(x_463); +x_751 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_751, 0, x_750); +lean_ctor_set(x_751, 1, x_3); +x_752 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_751, x_5, x_6, x_7, x_8, x_9, x_462, x_11, x_464); +return x_752; +} +block_706: +{ +lean_object* x_467; lean_object* x_468; uint8_t x_469; +x_467 = lean_ctor_get(x_465, 0); +lean_inc(x_467); +x_468 = lean_ctor_get(x_465, 1); +lean_inc(x_468); +lean_dec(x_465); +x_469 = l_List_isEmpty___rarg(x_467); +if (x_469 == 0) +{ +lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; +x_470 = lean_box(0); +x_471 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_471, 0, x_468); +lean_ctor_set(x_471, 1, x_470); +x_472 = l_List_append___rarg(x_467, x_471); +x_473 = l_List_append___rarg(x_472, x_3); +x_474 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_473, x_5, x_6, x_7, x_8, x_9, x_462, x_11, x_466); +return x_474; +} +else +{ +lean_object* x_475; lean_object* x_476; uint8_t x_477; +lean_dec(x_467); +lean_inc(x_468); +x_475 = l_Lean_Syntax_getKind(x_468); +x_476 = l_Lean_Parser_Term_doLet___elambda__1___closed__2; +x_477 = lean_name_eq(x_475, x_476); +if (x_477 == 0) +{ +lean_object* x_478; uint8_t x_479; +x_478 = l_Lean_Parser_Term_doHave___elambda__1___closed__2; +x_479 = lean_name_eq(x_475, x_478); +if (x_479 == 0) +{ +lean_object* x_480; uint8_t x_481; +x_480 = l_Lean_Parser_Term_doLetRec___elambda__1___closed__2; +x_481 = lean_name_eq(x_475, x_480); +if (x_481 == 0) +{ +lean_object* x_482; uint8_t x_483; +x_482 = l_Lean_Parser_Term_doReassign___elambda__1___closed__2; +x_483 = lean_name_eq(x_475, x_482); +if (x_483 == 0) +{ +lean_object* x_484; uint8_t x_485; +x_484 = l_Lean_Parser_Term_doLetArrow___elambda__1___closed__2; +x_485 = lean_name_eq(x_475, x_484); +if (x_485 == 0) +{ +lean_object* x_486; uint8_t x_487; +x_486 = l_Lean_Parser_Term_doReassignArrow___elambda__1___closed__2; +x_487 = lean_name_eq(x_475, x_486); +if (x_487 == 0) +{ +lean_object* x_488; uint8_t x_489; +x_488 = l_Lean_Parser_Term_doIf___elambda__1___closed__2; +x_489 = lean_name_eq(x_475, x_488); +if (x_489 == 0) +{ +lean_object* x_490; uint8_t x_491; +x_490 = l_Lean_Parser_Term_doUnless___elambda__1___closed__2; +x_491 = lean_name_eq(x_475, x_490); +if (x_491 == 0) +{ +lean_object* x_492; uint8_t x_493; +x_492 = l_Lean_Parser_Term_doFor___elambda__1___closed__2; +x_493 = lean_name_eq(x_475, x_492); +if (x_493 == 0) +{ +lean_object* x_494; uint8_t x_495; +x_494 = l_Lean_Parser_Term_doMatch___elambda__1___closed__2; +x_495 = lean_name_eq(x_475, x_494); +if (x_495 == 0) +{ +lean_object* x_496; uint8_t x_497; +x_496 = l_Lean_Parser_Term_doTry___elambda__1___closed__2; +x_497 = lean_name_eq(x_475, x_496); +if (x_497 == 0) +{ +lean_object* x_498; uint8_t x_499; +x_498 = l_Lean_Parser_Term_doBreak___elambda__1___closed__2; +x_499 = lean_name_eq(x_475, x_498); +if (x_499 == 0) +{ +lean_object* x_500; uint8_t x_501; +x_500 = l_Lean_Parser_Term_doContinue___elambda__1___closed__2; +x_501 = lean_name_eq(x_475, x_500); +if (x_501 == 0) +{ +lean_object* x_502; uint8_t x_503; +x_502 = l_Lean_Parser_Term_doReturn___elambda__1___closed__2; +x_503 = lean_name_eq(x_475, x_502); +if (x_503 == 0) +{ +lean_object* x_504; uint8_t x_505; +x_504 = l_Lean_Parser_Term_doDbgTrace___elambda__1___closed__2; +x_505 = lean_name_eq(x_475, x_504); +if (x_505 == 0) +{ +lean_object* x_506; uint8_t x_507; +x_506 = l_Lean_Parser_Term_doAssert___elambda__1___closed__2; +x_507 = lean_name_eq(x_475, x_506); +if (x_507 == 0) +{ +lean_object* x_508; uint8_t x_509; +x_508 = l_Lean_Parser_Term_doNested___elambda__1___closed__2; +x_509 = lean_name_eq(x_475, x_508); +if (x_509 == 0) +{ +lean_object* x_510; uint8_t x_511; +x_510 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_897____closed__13; +x_511 = lean_name_eq(x_475, x_510); +lean_dec(x_475); +if (x_511 == 0) +{ +lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; +lean_dec(x_3); +x_512 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_512, 0, x_468); +x_513 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___lambda__1___closed__2; +x_514 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_514, 0, x_513); +lean_ctor_set(x_514, 1, x_512); +x_515 = l_Lean_KernelException_toMessageData___closed__15; +x_516 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_516, 0, x_514); +lean_ctor_set(x_516, 1, x_515); +x_517 = l_Lean_throwError___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__2(x_516, x_5, x_6, x_7, x_8, x_9, x_462, x_11, x_466); +lean_dec(x_11); +lean_dec(x_462); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +return x_517; +} +else +{ +lean_object* x_518; lean_object* x_519; uint8_t x_520; +x_518 = lean_unsigned_to_nat(0u); +x_519 = l_Lean_Syntax_getArg(x_468, x_518); +lean_dec(x_468); +x_520 = l_List_isEmpty___rarg(x_3); +if (x_520 == 0) +{ +lean_object* x_521; +x_521 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_3, x_5, x_6, x_7, x_8, x_9, x_462, x_11, x_466); +if (lean_obj_tag(x_521) == 0) +{ +lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; +x_522 = lean_ctor_get(x_521, 0); +lean_inc(x_522); +x_523 = lean_ctor_get(x_521, 1); +lean_inc(x_523); +if (lean_is_exclusive(x_521)) { + lean_ctor_release(x_521, 0); + lean_ctor_release(x_521, 1); + x_524 = x_521; +} else { + lean_dec_ref(x_521); + x_524 = lean_box(0); +} +x_525 = l_Lean_Elab_Term_Do_mkSeq(x_519, x_522); +if (lean_is_scalar(x_524)) { + x_526 = lean_alloc_ctor(0, 2, 0); +} else { + x_526 = x_524; +} +lean_ctor_set(x_526, 0, x_525); +lean_ctor_set(x_526, 1, x_523); +return x_526; +} +else +{ +lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; +lean_dec(x_519); +x_527 = lean_ctor_get(x_521, 0); +lean_inc(x_527); +x_528 = lean_ctor_get(x_521, 1); +lean_inc(x_528); +if (lean_is_exclusive(x_521)) { + lean_ctor_release(x_521, 0); + lean_ctor_release(x_521, 1); + x_529 = x_521; +} else { + lean_dec_ref(x_521); + x_529 = lean_box(0); +} +if (lean_is_scalar(x_529)) { + x_530 = lean_alloc_ctor(1, 2, 0); +} else { + x_530 = x_529; +} +lean_ctor_set(x_530, 0, x_527); +lean_ctor_set(x_530, 1, x_528); +return x_530; +} +} +else +{ +lean_object* x_531; lean_object* x_532; +lean_dec(x_462); +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_3); +x_531 = l_Lean_Elab_Term_Do_mkTerminalAction(x_519); +x_532 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_532, 0, x_531); +lean_ctor_set(x_532, 1, x_466); +return x_532; +} +} +} +else +{ +lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; +lean_dec(x_475); +x_533 = l_Lean_Syntax_getArg(x_468, x_13); +lean_dec(x_468); +x_534 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_getDoSeqElems(x_533); +x_535 = l_List_append___rarg(x_534, x_3); +x_536 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_535, x_5, x_6, x_7, x_8, x_9, x_462, x_11, x_466); +return x_536; +} +} +else +{ +lean_object* x_537; +lean_dec(x_475); +x_537 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_3, x_5, x_6, x_7, x_8, x_9, x_462, x_11, x_466); +if (lean_obj_tag(x_537) == 0) +{ +lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; +x_538 = lean_ctor_get(x_537, 0); +lean_inc(x_538); +x_539 = lean_ctor_get(x_537, 1); +lean_inc(x_539); +if (lean_is_exclusive(x_537)) { + lean_ctor_release(x_537, 0); + lean_ctor_release(x_537, 1); + x_540 = x_537; +} else { + lean_dec_ref(x_537); + x_540 = lean_box(0); +} +x_541 = l_Lean_Elab_Term_Do_mkSeq(x_468, x_538); +if (lean_is_scalar(x_540)) { + x_542 = lean_alloc_ctor(0, 2, 0); +} else { + x_542 = x_540; +} +lean_ctor_set(x_542, 0, x_541); +lean_ctor_set(x_542, 1, x_539); +return x_542; +} +else +{ +lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; +lean_dec(x_468); +x_543 = lean_ctor_get(x_537, 0); +lean_inc(x_543); +x_544 = lean_ctor_get(x_537, 1); +lean_inc(x_544); +if (lean_is_exclusive(x_537)) { + lean_ctor_release(x_537, 0); + lean_ctor_release(x_537, 1); + x_545 = x_537; +} else { + lean_dec_ref(x_537); + x_545 = lean_box(0); +} +if (lean_is_scalar(x_545)) { + x_546 = lean_alloc_ctor(1, 2, 0); +} else { + x_546 = x_545; +} +lean_ctor_set(x_546, 0, x_543); +lean_ctor_set(x_546, 1, x_544); +return x_546; +} +} +} +else +{ +lean_object* x_547; +lean_dec(x_475); +x_547 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_3, x_5, x_6, x_7, x_8, x_9, x_462, x_11, x_466); +if (lean_obj_tag(x_547) == 0) +{ +lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; +x_548 = lean_ctor_get(x_547, 0); +lean_inc(x_548); +x_549 = lean_ctor_get(x_547, 1); +lean_inc(x_549); +if (lean_is_exclusive(x_547)) { + lean_ctor_release(x_547, 0); + lean_ctor_release(x_547, 1); + x_550 = x_547; +} else { + lean_dec_ref(x_547); + x_550 = lean_box(0); +} +x_551 = l_Lean_Elab_Term_Do_mkSeq(x_468, x_548); +if (lean_is_scalar(x_550)) { + x_552 = lean_alloc_ctor(0, 2, 0); +} else { + x_552 = x_550; +} +lean_ctor_set(x_552, 0, x_551); +lean_ctor_set(x_552, 1, x_549); +return x_552; +} +else +{ +lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; +lean_dec(x_468); +x_553 = lean_ctor_get(x_547, 0); +lean_inc(x_553); +x_554 = lean_ctor_get(x_547, 1); +lean_inc(x_554); +if (lean_is_exclusive(x_547)) { + lean_ctor_release(x_547, 0); + lean_ctor_release(x_547, 1); + x_555 = x_547; +} else { + lean_dec_ref(x_547); + x_555 = lean_box(0); +} +if (lean_is_scalar(x_555)) { + x_556 = lean_alloc_ctor(1, 2, 0); +} else { + x_556 = x_555; +} +lean_ctor_set(x_556, 0, x_553); +lean_ctor_set(x_556, 1, x_554); +return x_556; +} +} +} +else +{ +lean_object* x_557; +lean_dec(x_475); +x_557 = l_Lean_Elab_Term_Do_ToCodeBlock_doReturnToCode(x_468, x_3, x_5, x_6, x_7, x_8, x_9, x_462, x_11, x_466); +lean_dec(x_3); +lean_dec(x_468); +return x_557; +} +} +else +{ +lean_object* x_558; +lean_dec(x_475); +x_558 = l_Lean_Elab_Term_Do_ToCodeBlock_ensureInsideFor(x_5, x_6, x_7, x_8, x_9, x_462, x_11, x_466); +if (lean_obj_tag(x_558) == 0) +{ +lean_object* x_559; lean_object* x_560; +x_559 = lean_ctor_get(x_558, 1); +lean_inc(x_559); +lean_dec(x_558); +x_560 = l_Lean_Elab_Term_Do_ToCodeBlock_ensureEOS(x_3, x_5, x_6, x_7, x_8, x_9, x_462, x_11, x_559); +lean_dec(x_11); +lean_dec(x_462); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +if (lean_obj_tag(x_560) == 0) +{ +lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; +x_561 = lean_ctor_get(x_560, 1); +lean_inc(x_561); +if (lean_is_exclusive(x_560)) { + lean_ctor_release(x_560, 0); + lean_ctor_release(x_560, 1); + x_562 = x_560; +} else { + lean_dec_ref(x_560); + x_562 = lean_box(0); +} +x_563 = l_Lean_Elab_Term_Do_mkContinue(x_468); +if (lean_is_scalar(x_562)) { + x_564 = lean_alloc_ctor(0, 2, 0); +} else { + x_564 = x_562; +} +lean_ctor_set(x_564, 0, x_563); +lean_ctor_set(x_564, 1, x_561); +return x_564; +} +else +{ +lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; +lean_dec(x_468); +x_565 = lean_ctor_get(x_560, 0); +lean_inc(x_565); +x_566 = lean_ctor_get(x_560, 1); +lean_inc(x_566); +if (lean_is_exclusive(x_560)) { + lean_ctor_release(x_560, 0); + lean_ctor_release(x_560, 1); + x_567 = x_560; +} else { + lean_dec_ref(x_560); + x_567 = lean_box(0); +} +if (lean_is_scalar(x_567)) { + x_568 = lean_alloc_ctor(1, 2, 0); +} else { + x_568 = x_567; +} +lean_ctor_set(x_568, 0, x_565); +lean_ctor_set(x_568, 1, x_566); +return x_568; +} +} +else +{ +lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; +lean_dec(x_468); +lean_dec(x_462); +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_3); +x_569 = lean_ctor_get(x_558, 0); +lean_inc(x_569); +x_570 = lean_ctor_get(x_558, 1); +lean_inc(x_570); +if (lean_is_exclusive(x_558)) { + lean_ctor_release(x_558, 0); + lean_ctor_release(x_558, 1); + x_571 = x_558; +} else { + lean_dec_ref(x_558); + x_571 = lean_box(0); +} +if (lean_is_scalar(x_571)) { + x_572 = lean_alloc_ctor(1, 2, 0); +} else { + x_572 = x_571; +} +lean_ctor_set(x_572, 0, x_569); +lean_ctor_set(x_572, 1, x_570); +return x_572; +} +} +} +else +{ +lean_object* x_573; +lean_dec(x_475); +x_573 = l_Lean_Elab_Term_Do_ToCodeBlock_ensureInsideFor(x_5, x_6, x_7, x_8, x_9, x_462, x_11, x_466); +if (lean_obj_tag(x_573) == 0) +{ +lean_object* x_574; lean_object* x_575; +x_574 = lean_ctor_get(x_573, 1); +lean_inc(x_574); +lean_dec(x_573); +x_575 = l_Lean_Elab_Term_Do_ToCodeBlock_ensureEOS(x_3, x_5, x_6, x_7, x_8, x_9, x_462, x_11, x_574); +lean_dec(x_11); +lean_dec(x_462); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +if (lean_obj_tag(x_575) == 0) +{ +lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; +x_576 = lean_ctor_get(x_575, 1); +lean_inc(x_576); +if (lean_is_exclusive(x_575)) { + lean_ctor_release(x_575, 0); + lean_ctor_release(x_575, 1); + x_577 = x_575; +} else { + lean_dec_ref(x_575); + x_577 = lean_box(0); +} +x_578 = l_Lean_Elab_Term_Do_mkBreak(x_468); +if (lean_is_scalar(x_577)) { + x_579 = lean_alloc_ctor(0, 2, 0); +} else { + x_579 = x_577; +} +lean_ctor_set(x_579, 0, x_578); +lean_ctor_set(x_579, 1, x_576); +return x_579; +} +else +{ +lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; +lean_dec(x_468); +x_580 = lean_ctor_get(x_575, 0); +lean_inc(x_580); +x_581 = lean_ctor_get(x_575, 1); +lean_inc(x_581); +if (lean_is_exclusive(x_575)) { + lean_ctor_release(x_575, 0); + lean_ctor_release(x_575, 1); + x_582 = x_575; +} else { + lean_dec_ref(x_575); + x_582 = lean_box(0); +} +if (lean_is_scalar(x_582)) { + x_583 = lean_alloc_ctor(1, 2, 0); +} else { + x_583 = x_582; +} +lean_ctor_set(x_583, 0, x_580); +lean_ctor_set(x_583, 1, x_581); +return x_583; +} +} +else +{ +lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; +lean_dec(x_468); +lean_dec(x_462); +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_3); +x_584 = lean_ctor_get(x_573, 0); +lean_inc(x_584); +x_585 = lean_ctor_get(x_573, 1); +lean_inc(x_585); +if (lean_is_exclusive(x_573)) { + lean_ctor_release(x_573, 0); + lean_ctor_release(x_573, 1); + x_586 = x_573; +} else { + lean_dec_ref(x_573); + x_586 = lean_box(0); +} +if (lean_is_scalar(x_586)) { + x_587 = lean_alloc_ctor(1, 2, 0); +} else { + x_587 = x_586; +} +lean_ctor_set(x_587, 0, x_584); +lean_ctor_set(x_587, 1, x_585); +return x_587; +} +} +} +else +{ +lean_object* x_588; +lean_dec(x_475); +x_588 = l_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode(x_468, x_3, x_5, x_6, x_7, x_8, x_9, x_462, x_11, x_466); +lean_dec(x_468); +return x_588; +} +} +else +{ +lean_object* x_589; +lean_dec(x_475); +x_589 = l_Lean_Elab_Term_Do_ToCodeBlock_doMatchToCode(x_468, x_3, x_5, x_6, x_7, x_8, x_9, x_462, x_11, x_466); +return x_589; +} +} +else +{ +lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; uint8_t x_606; uint8_t x_607; uint8_t x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; uint8_t x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; +lean_dec(x_475); +x_590 = lean_st_ref_take(x_11, x_466); +x_591 = lean_ctor_get(x_590, 0); +lean_inc(x_591); +x_592 = lean_ctor_get(x_590, 1); +lean_inc(x_592); +lean_dec(x_590); +x_593 = lean_ctor_get(x_591, 0); +lean_inc(x_593); +x_594 = lean_ctor_get(x_591, 1); +lean_inc(x_594); +x_595 = lean_ctor_get(x_591, 2); +lean_inc(x_595); +x_596 = lean_ctor_get(x_591, 3); +lean_inc(x_596); +if (lean_is_exclusive(x_591)) { + lean_ctor_release(x_591, 0); + lean_ctor_release(x_591, 1); + lean_ctor_release(x_591, 2); + lean_ctor_release(x_591, 3); + x_597 = x_591; +} else { + lean_dec_ref(x_591); + x_597 = lean_box(0); +} +x_598 = lean_nat_add(x_594, x_13); +if (lean_is_scalar(x_597)) { + x_599 = lean_alloc_ctor(0, 4, 0); +} else { + x_599 = x_597; +} +lean_ctor_set(x_599, 0, x_593); +lean_ctor_set(x_599, 1, x_598); +lean_ctor_set(x_599, 2, x_595); +lean_ctor_set(x_599, 3, x_596); +x_600 = lean_st_ref_set(x_11, x_599, x_592); +x_601 = lean_ctor_get(x_600, 1); +lean_inc(x_601); +lean_dec(x_600); +x_602 = lean_ctor_get(x_6, 0); +lean_inc(x_602); +x_603 = lean_ctor_get(x_6, 1); +lean_inc(x_603); +x_604 = lean_ctor_get(x_6, 2); +lean_inc(x_604); +x_605 = lean_ctor_get(x_6, 3); +lean_inc(x_605); +x_606 = lean_ctor_get_uint8(x_6, sizeof(void*)*8); +x_607 = lean_ctor_get_uint8(x_6, sizeof(void*)*8 + 1); +x_608 = lean_ctor_get_uint8(x_6, sizeof(void*)*8 + 2); +x_609 = lean_ctor_get(x_6, 5); +lean_inc(x_609); +x_610 = lean_ctor_get(x_6, 6); +lean_inc(x_610); +x_611 = lean_ctor_get(x_6, 7); +lean_inc(x_611); +x_612 = lean_ctor_get_uint8(x_6, sizeof(void*)*8 + 3); +if (lean_is_exclusive(x_6)) { + lean_ctor_release(x_6, 0); + lean_ctor_release(x_6, 1); + lean_ctor_release(x_6, 2); + lean_ctor_release(x_6, 3); + lean_ctor_release(x_6, 4); + lean_ctor_release(x_6, 5); + lean_ctor_release(x_6, 6); + lean_ctor_release(x_6, 7); + x_613 = x_6; +} else { + lean_dec_ref(x_6); + x_613 = lean_box(0); +} +if (lean_is_scalar(x_613)) { + x_614 = lean_alloc_ctor(0, 8, 4); +} else { + x_614 = x_613; +} +lean_ctor_set(x_614, 0, x_602); +lean_ctor_set(x_614, 1, x_603); +lean_ctor_set(x_614, 2, x_604); +lean_ctor_set(x_614, 3, x_605); +lean_ctor_set(x_614, 4, x_594); +lean_ctor_set(x_614, 5, x_609); +lean_ctor_set(x_614, 6, x_610); +lean_ctor_set(x_614, 7, x_611); +lean_ctor_set_uint8(x_614, sizeof(void*)*8, x_606); +lean_ctor_set_uint8(x_614, sizeof(void*)*8 + 1, x_607); +lean_ctor_set_uint8(x_614, sizeof(void*)*8 + 2, x_608); +lean_ctor_set_uint8(x_614, sizeof(void*)*8 + 3, x_612); +x_615 = l_Lean_Elab_Term_Do_ToCodeBlock_doForToCode(x_468, x_3, x_5, x_614, x_7, x_8, x_9, x_462, x_11, x_601); +lean_dec(x_468); +return x_615; +} +} +else +{ +lean_object* x_616; +lean_dec(x_475); +x_616 = l_Lean_Elab_Term_Do_ToCodeBlock_doUnlessToCode(x_468, x_3, x_5, x_6, x_7, x_8, x_9, x_462, x_11, x_466); +lean_dec(x_468); +return x_616; +} +} +else +{ +lean_object* x_617; +lean_dec(x_475); +x_617 = l_Lean_Elab_Term_Do_ToCodeBlock_doIfToCode(x_468, x_3, x_5, x_6, x_7, x_8, x_9, x_462, x_11, x_466); +return x_617; +} +} +else +{ +lean_object* x_618; +lean_dec(x_475); +x_618 = l_Lean_Elab_Term_Do_ToCodeBlock_doReassignArrowToCode(x_468, x_3, x_5, x_6, x_7, x_8, x_9, x_462, x_11, x_466); +lean_dec(x_468); +return x_618; +} +} +else +{ +lean_object* x_619; +lean_dec(x_475); +x_619 = l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode(x_468, x_3, x_5, x_6, x_7, x_8, x_9, x_462, x_11, x_466); +return x_619; +} +} +else +{ +lean_object* x_620; +lean_dec(x_475); +lean_inc(x_11); +lean_inc(x_462); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_620 = l_Lean_Elab_Term_Do_getDoReassignVars(x_468, x_6, x_7, x_8, x_9, x_462, x_11, x_466); +if (lean_obj_tag(x_620) == 0) +{ +lean_object* x_621; lean_object* x_622; lean_object* x_623; +x_621 = lean_ctor_get(x_620, 0); +lean_inc(x_621); +x_622 = lean_ctor_get(x_620, 1); +lean_inc(x_622); +lean_dec(x_620); +x_623 = l_Lean_Elab_Term_Do_ToCodeBlock_checkReassignable(x_621, x_5, x_6, x_7, x_8, x_9, x_462, x_11, x_622); +if (lean_obj_tag(x_623) == 0) +{ +lean_object* x_624; lean_object* x_625; +x_624 = lean_ctor_get(x_623, 1); +lean_inc(x_624); +lean_dec(x_623); +lean_inc(x_11); +lean_inc(x_462); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_625 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_3, x_5, x_6, x_7, x_8, x_9, x_462, x_11, x_624); +if (lean_obj_tag(x_625) == 0) +{ +lean_object* x_626; lean_object* x_627; lean_object* x_628; +x_626 = lean_ctor_get(x_625, 0); +lean_inc(x_626); +x_627 = lean_ctor_get(x_625, 1); +lean_inc(x_627); +lean_dec(x_625); +x_628 = l_Lean_Elab_Term_Do_mkReassignCore(x_621, x_468, x_626, x_6, x_7, x_8, x_9, x_462, x_11, x_627); +return x_628; +} +else +{ +lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; +lean_dec(x_621); +lean_dec(x_468); +lean_dec(x_462); +lean_dec(x_11); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_629 = lean_ctor_get(x_625, 0); +lean_inc(x_629); +x_630 = lean_ctor_get(x_625, 1); +lean_inc(x_630); +if (lean_is_exclusive(x_625)) { + lean_ctor_release(x_625, 0); + lean_ctor_release(x_625, 1); + x_631 = x_625; +} else { + lean_dec_ref(x_625); + x_631 = lean_box(0); +} +if (lean_is_scalar(x_631)) { + x_632 = lean_alloc_ctor(1, 2, 0); +} else { + x_632 = x_631; +} +lean_ctor_set(x_632, 0, x_629); +lean_ctor_set(x_632, 1, x_630); +return x_632; +} +} +else +{ +lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; +lean_dec(x_621); +lean_dec(x_468); +lean_dec(x_462); +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_3); +x_633 = lean_ctor_get(x_623, 0); +lean_inc(x_633); +x_634 = lean_ctor_get(x_623, 1); +lean_inc(x_634); +if (lean_is_exclusive(x_623)) { + lean_ctor_release(x_623, 0); + lean_ctor_release(x_623, 1); + x_635 = x_623; +} else { + lean_dec_ref(x_623); + x_635 = lean_box(0); +} +if (lean_is_scalar(x_635)) { + x_636 = lean_alloc_ctor(1, 2, 0); +} else { + x_636 = x_635; +} +lean_ctor_set(x_636, 0, x_633); +lean_ctor_set(x_636, 1, x_634); +return x_636; +} +} +else +{ +lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; +lean_dec(x_468); +lean_dec(x_462); +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_3); +x_637 = lean_ctor_get(x_620, 0); +lean_inc(x_637); +x_638 = lean_ctor_get(x_620, 1); +lean_inc(x_638); +if (lean_is_exclusive(x_620)) { + lean_ctor_release(x_620, 0); + lean_ctor_release(x_620, 1); + x_639 = x_620; +} else { + lean_dec_ref(x_620); + x_639 = lean_box(0); +} +if (lean_is_scalar(x_639)) { + x_640 = lean_alloc_ctor(1, 2, 0); +} else { + x_640 = x_639; +} +lean_ctor_set(x_640, 0, x_637); +lean_ctor_set(x_640, 1, x_638); +return x_640; +} +} +} +else +{ +lean_object* x_641; +lean_dec(x_475); +lean_inc(x_11); +lean_inc(x_462); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_641 = l_Lean_Elab_Term_Do_getDoLetRecVars(x_468, x_6, x_7, x_8, x_9, x_462, x_11, x_466); +if (lean_obj_tag(x_641) == 0) +{ +lean_object* x_642; lean_object* x_643; lean_object* x_644; +x_642 = lean_ctor_get(x_641, 0); +lean_inc(x_642); +x_643 = lean_ctor_get(x_641, 1); +lean_inc(x_643); +lean_dec(x_641); +x_644 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_3, x_5, x_6, x_7, x_8, x_9, x_462, x_11, x_643); +if (lean_obj_tag(x_644) == 0) +{ +lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; +x_645 = lean_ctor_get(x_644, 0); +lean_inc(x_645); +x_646 = lean_ctor_get(x_644, 1); +lean_inc(x_646); +if (lean_is_exclusive(x_644)) { + lean_ctor_release(x_644, 0); + lean_ctor_release(x_644, 1); + x_647 = x_644; +} else { + lean_dec_ref(x_644); + x_647 = lean_box(0); +} +x_648 = l_Lean_Elab_Term_Do_mkVarDeclCore(x_642, x_468, x_645); +if (lean_is_scalar(x_647)) { + x_649 = lean_alloc_ctor(0, 2, 0); +} else { + x_649 = x_647; +} +lean_ctor_set(x_649, 0, x_648); +lean_ctor_set(x_649, 1, x_646); +return x_649; +} +else +{ +lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; +lean_dec(x_642); +lean_dec(x_468); +x_650 = lean_ctor_get(x_644, 0); +lean_inc(x_650); +x_651 = lean_ctor_get(x_644, 1); +lean_inc(x_651); +if (lean_is_exclusive(x_644)) { + lean_ctor_release(x_644, 0); + lean_ctor_release(x_644, 1); + x_652 = x_644; +} else { + lean_dec_ref(x_644); + x_652 = lean_box(0); +} +if (lean_is_scalar(x_652)) { + x_653 = lean_alloc_ctor(1, 2, 0); +} else { + x_653 = x_652; +} +lean_ctor_set(x_653, 0, x_650); +lean_ctor_set(x_653, 1, x_651); +return x_653; +} +} +else +{ +lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; +lean_dec(x_468); +lean_dec(x_462); +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_3); +x_654 = lean_ctor_get(x_641, 0); +lean_inc(x_654); +x_655 = lean_ctor_get(x_641, 1); +lean_inc(x_655); +if (lean_is_exclusive(x_641)) { + lean_ctor_release(x_641, 0); + lean_ctor_release(x_641, 1); + x_656 = x_641; +} else { + lean_dec_ref(x_641); + x_656 = lean_box(0); +} +if (lean_is_scalar(x_656)) { + x_657 = lean_alloc_ctor(1, 2, 0); +} else { + x_657 = x_656; +} +lean_ctor_set(x_657, 0, x_654); +lean_ctor_set(x_657, 1, x_655); +return x_657; +} +} +} +else +{ +lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; +lean_dec(x_475); +x_658 = l_Lean_Elab_Term_Do_getDoHaveVar(x_468); +x_659 = l_Lean_mkOptionalNode___closed__2; +x_660 = lean_array_push(x_659, x_658); +x_661 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_3, x_5, x_6, x_7, x_8, x_9, x_462, x_11, x_466); +if (lean_obj_tag(x_661) == 0) +{ +lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; +x_662 = lean_ctor_get(x_661, 0); +lean_inc(x_662); +x_663 = lean_ctor_get(x_661, 1); +lean_inc(x_663); +if (lean_is_exclusive(x_661)) { + lean_ctor_release(x_661, 0); + lean_ctor_release(x_661, 1); + x_664 = x_661; +} else { + lean_dec_ref(x_661); + x_664 = lean_box(0); +} +x_665 = l_Lean_Elab_Term_Do_mkVarDeclCore(x_660, x_468, x_662); +if (lean_is_scalar(x_664)) { + x_666 = lean_alloc_ctor(0, 2, 0); +} else { + x_666 = x_664; +} +lean_ctor_set(x_666, 0, x_665); +lean_ctor_set(x_666, 1, x_663); +return x_666; +} +else +{ +lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; +lean_dec(x_660); +lean_dec(x_468); +x_667 = lean_ctor_get(x_661, 0); +lean_inc(x_667); +x_668 = lean_ctor_get(x_661, 1); +lean_inc(x_668); +if (lean_is_exclusive(x_661)) { + lean_ctor_release(x_661, 0); + lean_ctor_release(x_661, 1); + x_669 = x_661; +} else { + lean_dec_ref(x_661); + x_669 = lean_box(0); +} +if (lean_is_scalar(x_669)) { + x_670 = lean_alloc_ctor(1, 2, 0); +} else { + x_670 = x_669; +} +lean_ctor_set(x_670, 0, x_667); +lean_ctor_set(x_670, 1, x_668); +return x_670; +} +} +} +else +{ +lean_object* x_671; +lean_dec(x_475); +lean_inc(x_11); +lean_inc(x_462); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +x_671 = l_Lean_Elab_Term_Do_getDoLetVars(x_468, x_6, x_7, x_8, x_9, x_462, x_11, x_466); +if (lean_obj_tag(x_671) == 0) +{ +lean_object* x_672; lean_object* x_673; uint8_t x_674; +x_672 = lean_ctor_get(x_671, 0); +lean_inc(x_672); +x_673 = lean_ctor_get(x_671, 1); +lean_inc(x_673); +lean_dec(x_671); +lean_inc(x_468); +x_674 = l_Lean_Elab_Term_Do_isMutableLet(x_468); +if (x_674 == 0) +{ +lean_object* x_675; +x_675 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_3, x_5, x_6, x_7, x_8, x_9, x_462, x_11, x_673); +if (lean_obj_tag(x_675) == 0) +{ +lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; +x_676 = lean_ctor_get(x_675, 0); +lean_inc(x_676); +x_677 = lean_ctor_get(x_675, 1); +lean_inc(x_677); +if (lean_is_exclusive(x_675)) { + lean_ctor_release(x_675, 0); + lean_ctor_release(x_675, 1); + x_678 = x_675; +} else { + lean_dec_ref(x_675); + x_678 = lean_box(0); +} +x_679 = l_Lean_Elab_Term_Do_mkVarDeclCore(x_672, x_468, x_676); +if (lean_is_scalar(x_678)) { + x_680 = lean_alloc_ctor(0, 2, 0); +} else { + x_680 = x_678; +} +lean_ctor_set(x_680, 0, x_679); +lean_ctor_set(x_680, 1, x_677); +return x_680; +} +else +{ +lean_object* x_681; lean_object* x_682; lean_object* x_683; lean_object* x_684; +lean_dec(x_672); +lean_dec(x_468); +x_681 = lean_ctor_get(x_675, 0); +lean_inc(x_681); +x_682 = lean_ctor_get(x_675, 1); +lean_inc(x_682); +if (lean_is_exclusive(x_675)) { + lean_ctor_release(x_675, 0); + lean_ctor_release(x_675, 1); + x_683 = x_675; +} else { + lean_dec_ref(x_675); + x_683 = lean_box(0); +} +if (lean_is_scalar(x_683)) { + x_684 = lean_alloc_ctor(1, 2, 0); +} else { + x_684 = x_683; +} +lean_ctor_set(x_684, 0, x_681); +lean_ctor_set(x_684, 1, x_682); +return x_684; +} +} +else +{ +lean_object* x_685; lean_object* x_686; lean_object* x_687; uint8_t x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; +x_685 = lean_ctor_get(x_5, 0); +lean_inc(x_685); +x_686 = lean_ctor_get(x_5, 1); +lean_inc(x_686); +x_687 = lean_ctor_get(x_5, 2); +lean_inc(x_687); +x_688 = lean_ctor_get_uint8(x_5, sizeof(void*)*3); +if (lean_is_exclusive(x_5)) { + lean_ctor_release(x_5, 0); + lean_ctor_release(x_5, 1); + lean_ctor_release(x_5, 2); + x_689 = x_5; +} else { + lean_dec_ref(x_5); + x_689 = lean_box(0); +} +x_690 = l_Lean_Elab_Term_Do_insertVars(x_687, x_672); +if (lean_is_scalar(x_689)) { + x_691 = lean_alloc_ctor(0, 3, 1); +} else { + x_691 = x_689; +} +lean_ctor_set(x_691, 0, x_685); +lean_ctor_set(x_691, 1, x_686); +lean_ctor_set(x_691, 2, x_690); +lean_ctor_set_uint8(x_691, sizeof(void*)*3, x_688); +x_692 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_3, x_691, x_6, x_7, x_8, x_9, x_462, x_11, x_673); +if (lean_obj_tag(x_692) == 0) +{ +lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; +x_693 = lean_ctor_get(x_692, 0); +lean_inc(x_693); +x_694 = lean_ctor_get(x_692, 1); +lean_inc(x_694); +if (lean_is_exclusive(x_692)) { + lean_ctor_release(x_692, 0); + lean_ctor_release(x_692, 1); + x_695 = x_692; +} else { + lean_dec_ref(x_692); + x_695 = lean_box(0); +} +x_696 = l_Lean_Elab_Term_Do_mkVarDeclCore(x_672, x_468, x_693); +if (lean_is_scalar(x_695)) { + x_697 = lean_alloc_ctor(0, 2, 0); +} else { + x_697 = x_695; +} +lean_ctor_set(x_697, 0, x_696); +lean_ctor_set(x_697, 1, x_694); +return x_697; +} +else +{ +lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; +lean_dec(x_672); +lean_dec(x_468); +x_698 = lean_ctor_get(x_692, 0); +lean_inc(x_698); +x_699 = lean_ctor_get(x_692, 1); +lean_inc(x_699); +if (lean_is_exclusive(x_692)) { + lean_ctor_release(x_692, 0); + lean_ctor_release(x_692, 1); + x_700 = x_692; +} else { + lean_dec_ref(x_692); + x_700 = lean_box(0); +} +if (lean_is_scalar(x_700)) { + x_701 = lean_alloc_ctor(1, 2, 0); +} else { + x_701 = x_700; +} +lean_ctor_set(x_701, 0, x_698); +lean_ctor_set(x_701, 1, x_699); +return x_701; +} +} +} +else +{ +lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; +lean_dec(x_468); +lean_dec(x_462); +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_3); +x_702 = lean_ctor_get(x_671, 0); +lean_inc(x_702); +x_703 = lean_ctor_get(x_671, 1); +lean_inc(x_703); +if (lean_is_exclusive(x_671)) { + lean_ctor_release(x_671, 0); + lean_ctor_release(x_671, 1); + x_704 = x_671; +} else { + lean_dec_ref(x_671); + x_704 = lean_box(0); +} +if (lean_is_scalar(x_704)) { + x_705 = lean_alloc_ctor(1, 2, 0); +} else { + x_705 = x_704; +} +lean_ctor_set(x_705, 0, x_702); +lean_ctor_set(x_705, 1, x_703); +return x_705; +} +} +} +} +} +} +} +} lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(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: { @@ -46626,3582 +50804,58 @@ return x_48; } else { -lean_object* x_49; lean_object* x_50; lean_object* x_51; uint8_t x_52; +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_1, 0); lean_inc(x_49); x_50 = lean_ctor_get(x_1, 1); lean_inc(x_50); -if (lean_is_exclusive(x_1)) { - lean_ctor_release(x_1, 0); - lean_ctor_release(x_1, 1); - x_51 = x_1; -} else { - lean_dec_ref(x_1); - x_51 = lean_box(0); -} -x_52 = !lean_is_exclusive(x_7); -if (x_52 == 0) +lean_dec(x_1); +x_51 = lean_ctor_get(x_7, 1); +lean_inc(x_51); +x_52 = lean_ctor_get(x_7, 2); +lean_inc(x_52); +x_53 = lean_nat_dec_eq(x_51, x_52); +lean_dec(x_52); +if (x_53 == 0) { -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_404; lean_object* x_405; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; -x_53 = lean_ctor_get(x_7, 1); -x_54 = lean_ctor_get(x_7, 2); -x_55 = lean_ctor_get(x_7, 3); -x_56 = l_Lean_replaceRef(x_49, x_55); -lean_dec(x_55); -lean_inc(x_56); -lean_inc(x_54); -lean_inc(x_53); -lean_ctor_set(x_7, 3, x_56); -x_441 = lean_st_ref_get(x_8, x_9); -x_442 = lean_ctor_get(x_441, 0); -lean_inc(x_442); -x_443 = lean_ctor_get(x_441, 1); -lean_inc(x_443); -lean_dec(x_441); -x_444 = lean_ctor_get(x_442, 0); -lean_inc(x_444); -lean_dec(x_442); -x_445 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_443); -x_446 = lean_ctor_get(x_445, 0); -lean_inc(x_446); -x_447 = lean_ctor_get(x_445, 1); -lean_inc(x_447); -lean_dec(x_445); -x_448 = lean_st_ref_get(x_8, x_447); -x_449 = lean_ctor_get(x_448, 0); -lean_inc(x_449); -x_450 = lean_ctor_get(x_448, 1); -lean_inc(x_450); -lean_dec(x_448); -x_451 = lean_ctor_get(x_449, 1); -lean_inc(x_451); -lean_dec(x_449); -lean_inc(x_444); -x_452 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); -lean_closure_set(x_452, 0, x_444); -x_453 = x_452; -x_454 = lean_environment_main_module(x_444); -lean_inc(x_56); -lean_inc(x_54); -lean_inc(x_53); -x_455 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_455, 0, x_453); -lean_ctor_set(x_455, 1, x_454); -lean_ctor_set(x_455, 2, x_446); -lean_ctor_set(x_455, 3, x_53); -lean_ctor_set(x_455, 4, x_54); -lean_ctor_set(x_455, 5, x_56); -lean_inc(x_49); -x_456 = l_Lean_Macro_expandMacro_x3fImp(x_49, x_455, x_451); -if (lean_obj_tag(x_456) == 0) -{ -lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; uint8_t x_462; -x_457 = lean_ctor_get(x_456, 0); -lean_inc(x_457); -x_458 = lean_ctor_get(x_456, 1); -lean_inc(x_458); -lean_dec(x_456); -x_459 = lean_st_ref_take(x_8, x_450); -x_460 = lean_ctor_get(x_459, 0); -lean_inc(x_460); -x_461 = lean_ctor_get(x_459, 1); -lean_inc(x_461); -lean_dec(x_459); -x_462 = !lean_is_exclusive(x_460); -if (x_462 == 0) -{ -lean_object* x_463; lean_object* x_464; lean_object* x_465; -x_463 = lean_ctor_get(x_460, 1); -lean_dec(x_463); -lean_ctor_set(x_460, 1, x_458); -x_464 = lean_st_ref_set(x_8, x_460, x_461); -x_465 = lean_ctor_get(x_464, 1); -lean_inc(x_465); -lean_dec(x_464); -x_404 = x_457; -x_405 = x_465; -goto block_440; +lean_object* x_54; lean_object* x_55; +x_54 = lean_box(0); +x_55 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___lambda__1(x_51, x_49, x_50, x_54, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_51); +return x_55; } else { -lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; -x_466 = lean_ctor_get(x_460, 0); -x_467 = lean_ctor_get(x_460, 2); -x_468 = lean_ctor_get(x_460, 3); -lean_inc(x_468); -lean_inc(x_467); -lean_inc(x_466); -lean_dec(x_460); -x_469 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_469, 0, x_466); -lean_ctor_set(x_469, 1, x_458); -lean_ctor_set(x_469, 2, x_467); -lean_ctor_set(x_469, 3, x_468); -x_470 = lean_st_ref_set(x_8, x_469, x_461); -x_471 = lean_ctor_get(x_470, 1); -lean_inc(x_471); -lean_dec(x_470); -x_404 = x_457; -x_405 = x_471; -goto block_440; -} -} -else -{ -lean_object* x_472; -lean_dec(x_56); -lean_dec(x_54); -lean_dec(x_53); +lean_object* x_56; lean_object* x_57; uint8_t x_58; lean_dec(x_51); lean_dec(x_50); lean_dec(x_49); -x_472 = lean_ctor_get(x_456, 0); -lean_inc(x_472); -lean_dec(x_456); -if (lean_obj_tag(x_472) == 0) -{ -lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; uint8_t x_478; -x_473 = lean_ctor_get(x_472, 0); -lean_inc(x_473); -x_474 = lean_ctor_get(x_472, 1); -lean_inc(x_474); -lean_dec(x_472); -x_475 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_475, 0, x_474); -x_476 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_476, 0, x_475); -x_477 = l_Lean_throwErrorAt___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__7(x_473, x_476, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_450); +x_56 = l_Lean_withIncRecDepth___rarg___lambda__2___closed__2; +x_57 = l_Lean_throwError___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__10(x_56, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_473); -x_478 = !lean_is_exclusive(x_477); -if (x_478 == 0) -{ -return x_477; -} -else -{ -lean_object* x_479; lean_object* x_480; lean_object* x_481; -x_479 = lean_ctor_get(x_477, 0); -x_480 = lean_ctor_get(x_477, 1); -lean_inc(x_480); -lean_inc(x_479); -lean_dec(x_477); -x_481 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_481, 0, x_479); -lean_ctor_set(x_481, 1, x_480); -return x_481; -} -} -else -{ -lean_object* x_482; uint8_t x_483; lean_dec(x_7); -lean_dec(x_8); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_482 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__9___rarg(x_450); -x_483 = !lean_is_exclusive(x_482); -if (x_483 == 0) +x_58 = !lean_is_exclusive(x_57); +if (x_58 == 0) { -return x_482; +return x_57; } else { -lean_object* x_484; lean_object* x_485; lean_object* x_486; -x_484 = lean_ctor_get(x_482, 0); -x_485 = lean_ctor_get(x_482, 1); -lean_inc(x_485); -lean_inc(x_484); -lean_dec(x_482); -x_486 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_486, 0, x_484); -lean_ctor_set(x_486, 1, x_485); -return x_486; -} -} -} -block_403: -{ -lean_object* x_59; lean_object* x_60; -if (lean_obj_tag(x_57) == 0) -{ -lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; -x_354 = lean_st_ref_get(x_8, x_58); -x_355 = lean_ctor_get(x_354, 0); -lean_inc(x_355); -x_356 = lean_ctor_get(x_354, 1); -lean_inc(x_356); -lean_dec(x_354); -x_357 = lean_ctor_get(x_355, 0); -lean_inc(x_357); -lean_dec(x_355); -x_358 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_356); -x_359 = lean_ctor_get(x_358, 0); -lean_inc(x_359); -x_360 = lean_ctor_get(x_358, 1); -lean_inc(x_360); -lean_dec(x_358); -x_361 = lean_st_ref_get(x_8, x_360); -x_362 = lean_ctor_get(x_361, 0); -lean_inc(x_362); -x_363 = lean_ctor_get(x_361, 1); -lean_inc(x_363); -lean_dec(x_361); -x_364 = lean_ctor_get(x_362, 1); -lean_inc(x_364); -lean_dec(x_362); -lean_inc(x_357); -x_365 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); -lean_closure_set(x_365, 0, x_357); -x_366 = x_365; -x_367 = lean_environment_main_module(x_357); -x_368 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_368, 0, x_366); -lean_ctor_set(x_368, 1, x_367); -lean_ctor_set(x_368, 2, x_359); -lean_ctor_set(x_368, 3, x_53); -lean_ctor_set(x_368, 4, x_54); -lean_ctor_set(x_368, 5, x_56); -x_369 = l_Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethod(x_49, x_368, x_364); -if (lean_obj_tag(x_369) == 0) -{ -lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; uint8_t x_375; -x_370 = lean_ctor_get(x_369, 0); -lean_inc(x_370); -x_371 = lean_ctor_get(x_369, 1); -lean_inc(x_371); -lean_dec(x_369); -x_372 = lean_st_ref_take(x_8, x_363); -x_373 = lean_ctor_get(x_372, 0); -lean_inc(x_373); -x_374 = lean_ctor_get(x_372, 1); -lean_inc(x_374); -lean_dec(x_372); -x_375 = !lean_is_exclusive(x_373); -if (x_375 == 0) -{ -lean_object* x_376; lean_object* x_377; lean_object* x_378; -x_376 = lean_ctor_get(x_373, 1); -lean_dec(x_376); -lean_ctor_set(x_373, 1, x_371); -x_377 = lean_st_ref_set(x_8, x_373, x_374); -x_378 = lean_ctor_get(x_377, 1); -lean_inc(x_378); -lean_dec(x_377); -x_59 = x_370; -x_60 = x_378; -goto block_353; -} -else -{ -lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; -x_379 = lean_ctor_get(x_373, 0); -x_380 = lean_ctor_get(x_373, 2); -x_381 = lean_ctor_get(x_373, 3); -lean_inc(x_381); -lean_inc(x_380); -lean_inc(x_379); -lean_dec(x_373); -x_382 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_382, 0, x_379); -lean_ctor_set(x_382, 1, x_371); -lean_ctor_set(x_382, 2, x_380); -lean_ctor_set(x_382, 3, x_381); -x_383 = lean_st_ref_set(x_8, x_382, x_374); -x_384 = lean_ctor_get(x_383, 1); -lean_inc(x_384); -lean_dec(x_383); -x_59 = x_370; -x_60 = x_384; -goto block_353; -} -} -else -{ -lean_object* x_385; -lean_dec(x_51); -lean_dec(x_50); -lean_dec(x_2); -x_385 = lean_ctor_get(x_369, 0); -lean_inc(x_385); -lean_dec(x_369); -if (lean_obj_tag(x_385) == 0) -{ -lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; uint8_t x_391; -x_386 = lean_ctor_get(x_385, 0); -lean_inc(x_386); -x_387 = lean_ctor_get(x_385, 1); -lean_inc(x_387); -lean_dec(x_385); -x_388 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_388, 0, x_387); -x_389 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_389, 0, x_388); -x_390 = l_Lean_throwErrorAt___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__4(x_386, x_389, x_3, x_4, x_5, x_6, x_7, x_8, x_363); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_386); -x_391 = !lean_is_exclusive(x_390); -if (x_391 == 0) -{ -return x_390; -} -else -{ -lean_object* x_392; lean_object* x_393; lean_object* x_394; -x_392 = lean_ctor_get(x_390, 0); -x_393 = lean_ctor_get(x_390, 1); -lean_inc(x_393); -lean_inc(x_392); -lean_dec(x_390); -x_394 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_394, 0, x_392); -lean_ctor_set(x_394, 1, x_393); -return x_394; -} -} -else -{ -lean_object* x_395; uint8_t x_396; -lean_dec(x_7); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_395 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__6___rarg(x_363); -x_396 = !lean_is_exclusive(x_395); -if (x_396 == 0) -{ -return x_395; -} -else -{ -lean_object* x_397; lean_object* x_398; lean_object* x_399; -x_397 = lean_ctor_get(x_395, 0); -x_398 = lean_ctor_get(x_395, 1); -lean_inc(x_398); -lean_inc(x_397); -lean_dec(x_395); -x_399 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_399, 0, x_397); -lean_ctor_set(x_399, 1, x_398); -return x_399; -} -} -} -} -else -{ -lean_object* x_400; lean_object* x_401; -lean_dec(x_56); -lean_dec(x_54); -lean_dec(x_53); -lean_dec(x_51); -lean_dec(x_49); -x_400 = lean_ctor_get(x_57, 0); -lean_inc(x_400); +lean_object* x_59; lean_object* x_60; lean_object* x_61; +x_59 = lean_ctor_get(x_57, 0); +x_60 = lean_ctor_get(x_57, 1); +lean_inc(x_60); +lean_inc(x_59); lean_dec(x_57); -x_401 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_401, 0, x_400); -lean_ctor_set(x_401, 1, x_50); -x_1 = x_401; -x_9 = x_58; -goto _start; -} -block_353: -{ -lean_object* x_61; lean_object* x_62; uint8_t x_63; -x_61 = lean_ctor_get(x_59, 0); -lean_inc(x_61); -x_62 = lean_ctor_get(x_59, 1); -lean_inc(x_62); -lean_dec(x_59); -x_63 = l_List_isEmpty___rarg(x_61); -if (x_63 == 0) -{ -lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_64 = lean_box(0); -if (lean_is_scalar(x_51)) { - x_65 = lean_alloc_ctor(1, 2, 0); -} else { - x_65 = x_51; -} -lean_ctor_set(x_65, 0, x_62); -lean_ctor_set(x_65, 1, x_64); -x_66 = l_List_append___rarg(x_61, x_65); -x_67 = l_List_append___rarg(x_66, x_50); -x_1 = x_67; -x_9 = x_60; -goto _start; -} -else -{ -lean_object* x_69; lean_object* x_70; uint8_t x_71; -lean_dec(x_61); -lean_dec(x_51); -lean_inc(x_62); -x_69 = l_Lean_Syntax_getKind(x_62); -x_70 = l_Lean_Parser_Term_doLet___elambda__1___closed__2; -x_71 = lean_name_eq(x_69, x_70); -if (x_71 == 0) -{ -lean_object* x_72; uint8_t x_73; -x_72 = l_Lean_Parser_Term_doHave___elambda__1___closed__2; -x_73 = lean_name_eq(x_69, x_72); -if (x_73 == 0) -{ -lean_object* x_74; uint8_t x_75; -x_74 = l_Lean_Parser_Term_doLetRec___elambda__1___closed__2; -x_75 = lean_name_eq(x_69, x_74); -if (x_75 == 0) -{ -lean_object* x_76; uint8_t x_77; -x_76 = l_Lean_Parser_Term_doReassign___elambda__1___closed__2; -x_77 = lean_name_eq(x_69, x_76); -if (x_77 == 0) -{ -lean_object* x_78; uint8_t x_79; -x_78 = l_Lean_Parser_Term_doLetArrow___elambda__1___closed__2; -x_79 = lean_name_eq(x_69, x_78); -if (x_79 == 0) -{ -lean_object* x_80; uint8_t x_81; -x_80 = l_Lean_Parser_Term_doReassignArrow___elambda__1___closed__2; -x_81 = lean_name_eq(x_69, x_80); -if (x_81 == 0) -{ -lean_object* x_82; uint8_t x_83; -x_82 = l_Lean_Parser_Term_doIf___elambda__1___closed__2; -x_83 = lean_name_eq(x_69, x_82); -if (x_83 == 0) -{ -lean_object* x_84; uint8_t x_85; -x_84 = l_Lean_Parser_Term_doUnless___elambda__1___closed__2; -x_85 = lean_name_eq(x_69, x_84); -if (x_85 == 0) -{ -lean_object* x_86; uint8_t x_87; -x_86 = l_Lean_Parser_Term_doFor___elambda__1___closed__2; -x_87 = lean_name_eq(x_69, x_86); -if (x_87 == 0) -{ -lean_object* x_88; uint8_t x_89; -x_88 = l_Lean_Parser_Term_doMatch___elambda__1___closed__2; -x_89 = lean_name_eq(x_69, x_88); -if (x_89 == 0) -{ -lean_object* x_90; uint8_t x_91; -x_90 = l_Lean_Parser_Term_doTry___elambda__1___closed__2; -x_91 = lean_name_eq(x_69, x_90); -if (x_91 == 0) -{ -lean_object* x_92; uint8_t x_93; -x_92 = l_Lean_Parser_Term_doBreak___elambda__1___closed__2; -x_93 = lean_name_eq(x_69, x_92); -if (x_93 == 0) -{ -lean_object* x_94; uint8_t x_95; -x_94 = l_Lean_Parser_Term_doContinue___elambda__1___closed__2; -x_95 = lean_name_eq(x_69, x_94); -if (x_95 == 0) -{ -lean_object* x_96; uint8_t x_97; -x_96 = l_Lean_Parser_Term_doReturn___elambda__1___closed__2; -x_97 = lean_name_eq(x_69, x_96); -if (x_97 == 0) -{ -lean_object* x_98; uint8_t x_99; -x_98 = l_Lean_Parser_Term_doDbgTrace___elambda__1___closed__2; -x_99 = lean_name_eq(x_69, x_98); -if (x_99 == 0) -{ -lean_object* x_100; uint8_t x_101; -x_100 = l_Lean_Parser_Term_doAssert___elambda__1___closed__2; -x_101 = lean_name_eq(x_69, x_100); -if (x_101 == 0) -{ -lean_object* x_102; uint8_t x_103; -x_102 = l_Lean_Parser_Term_doNested___elambda__1___closed__2; -x_103 = lean_name_eq(x_69, x_102); -if (x_103 == 0) -{ -lean_object* x_104; uint8_t x_105; -x_104 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_897____closed__13; -x_105 = lean_name_eq(x_69, x_104); -lean_dec(x_69); -if (x_105 == 0) -{ -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_dec(x_50); -x_106 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_106, 0, x_62); -x_107 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___closed__2; -x_108 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_108, 0, x_107); -lean_ctor_set(x_108, 1, x_106); -x_109 = l_Lean_KernelException_toMessageData___closed__15; -x_110 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_110, 0, x_108); -lean_ctor_set(x_110, 1, x_109); -x_111 = l_Lean_throwError___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__2(x_110, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_60); -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_111; -} -else -{ -lean_object* x_112; lean_object* x_113; uint8_t x_114; -x_112 = lean_unsigned_to_nat(0u); -x_113 = l_Lean_Syntax_getArg(x_62, x_112); -lean_dec(x_62); -x_114 = l_List_isEmpty___rarg(x_50); -if (x_114 == 0) -{ -lean_object* x_115; -x_115 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_50, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_60); -if (lean_obj_tag(x_115) == 0) -{ -uint8_t x_116; -x_116 = !lean_is_exclusive(x_115); -if (x_116 == 0) -{ -lean_object* x_117; lean_object* x_118; -x_117 = lean_ctor_get(x_115, 0); -x_118 = l_Lean_Elab_Term_Do_mkSeq(x_113, x_117); -lean_ctor_set(x_115, 0, x_118); -return x_115; -} -else -{ -lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; -x_119 = lean_ctor_get(x_115, 0); -x_120 = lean_ctor_get(x_115, 1); -lean_inc(x_120); -lean_inc(x_119); -lean_dec(x_115); -x_121 = l_Lean_Elab_Term_Do_mkSeq(x_113, x_119); -x_122 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_122, 0, x_121); -lean_ctor_set(x_122, 1, x_120); -return x_122; -} -} -else -{ -uint8_t x_123; -lean_dec(x_113); -x_123 = !lean_is_exclusive(x_115); -if (x_123 == 0) -{ -return x_115; -} -else -{ -lean_object* x_124; lean_object* x_125; lean_object* x_126; -x_124 = lean_ctor_get(x_115, 0); -x_125 = lean_ctor_get(x_115, 1); -lean_inc(x_125); -lean_inc(x_124); -lean_dec(x_115); -x_126 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_126, 0, x_124); -lean_ctor_set(x_126, 1, x_125); -return x_126; -} -} -} -else -{ -lean_object* x_127; lean_object* x_128; -lean_dec(x_7); -lean_dec(x_50); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_127 = l_Lean_Elab_Term_Do_mkTerminalAction(x_113); -x_128 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_128, 0, x_127); -lean_ctor_set(x_128, 1, x_60); -return x_128; -} -} -} -else -{ -lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; -lean_dec(x_69); -x_129 = lean_unsigned_to_nat(1u); -x_130 = l_Lean_Syntax_getArg(x_62, x_129); -lean_dec(x_62); -x_131 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_getDoSeqElems(x_130); -x_132 = l_List_append___rarg(x_131, x_50); -x_1 = x_132; -x_9 = x_60; -goto _start; -} -} -else -{ -lean_object* x_134; -lean_dec(x_69); -x_134 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_50, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_60); -if (lean_obj_tag(x_134) == 0) -{ -uint8_t x_135; -x_135 = !lean_is_exclusive(x_134); -if (x_135 == 0) -{ -lean_object* x_136; lean_object* x_137; -x_136 = lean_ctor_get(x_134, 0); -x_137 = l_Lean_Elab_Term_Do_mkSeq(x_62, x_136); -lean_ctor_set(x_134, 0, x_137); -return x_134; -} -else -{ -lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; -x_138 = lean_ctor_get(x_134, 0); -x_139 = lean_ctor_get(x_134, 1); -lean_inc(x_139); -lean_inc(x_138); -lean_dec(x_134); -x_140 = l_Lean_Elab_Term_Do_mkSeq(x_62, 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_139); -return x_141; -} -} -else -{ -uint8_t x_142; -lean_dec(x_62); -x_142 = !lean_is_exclusive(x_134); -if (x_142 == 0) -{ -return x_134; -} -else -{ -lean_object* x_143; lean_object* x_144; lean_object* x_145; -x_143 = lean_ctor_get(x_134, 0); -x_144 = lean_ctor_get(x_134, 1); -lean_inc(x_144); -lean_inc(x_143); -lean_dec(x_134); -x_145 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_145, 0, x_143); -lean_ctor_set(x_145, 1, x_144); -return x_145; -} -} -} -} -else -{ -lean_object* x_146; -lean_dec(x_69); -x_146 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_50, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_60); -if (lean_obj_tag(x_146) == 0) -{ -uint8_t x_147; -x_147 = !lean_is_exclusive(x_146); -if (x_147 == 0) -{ -lean_object* x_148; lean_object* x_149; -x_148 = lean_ctor_get(x_146, 0); -x_149 = l_Lean_Elab_Term_Do_mkSeq(x_62, x_148); -lean_ctor_set(x_146, 0, x_149); -return x_146; -} -else -{ -lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; -x_150 = lean_ctor_get(x_146, 0); -x_151 = lean_ctor_get(x_146, 1); -lean_inc(x_151); -lean_inc(x_150); -lean_dec(x_146); -x_152 = l_Lean_Elab_Term_Do_mkSeq(x_62, x_150); -x_153 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_153, 0, x_152); -lean_ctor_set(x_153, 1, x_151); -return x_153; -} -} -else -{ -uint8_t x_154; -lean_dec(x_62); -x_154 = !lean_is_exclusive(x_146); -if (x_154 == 0) -{ -return x_146; -} -else -{ -lean_object* x_155; lean_object* x_156; lean_object* x_157; -x_155 = lean_ctor_get(x_146, 0); -x_156 = lean_ctor_get(x_146, 1); -lean_inc(x_156); -lean_inc(x_155); -lean_dec(x_146); -x_157 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_157, 0, x_155); -lean_ctor_set(x_157, 1, x_156); -return x_157; -} -} -} -} -else -{ -lean_object* x_158; -lean_dec(x_69); -x_158 = l_Lean_Elab_Term_Do_ToCodeBlock_doReturnToCode(x_62, x_50, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_60); -lean_dec(x_50); -lean_dec(x_62); -return x_158; -} -} -else -{ -lean_object* x_159; -lean_dec(x_69); -x_159 = l_Lean_Elab_Term_Do_ToCodeBlock_ensureInsideFor(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_60); -if (lean_obj_tag(x_159) == 0) -{ -lean_object* x_160; lean_object* x_161; -x_160 = lean_ctor_get(x_159, 1); -lean_inc(x_160); -lean_dec(x_159); -x_161 = l_Lean_Elab_Term_Do_ToCodeBlock_ensureEOS(x_50, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_160); -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_50); -if (lean_obj_tag(x_161) == 0) -{ -uint8_t x_162; -x_162 = !lean_is_exclusive(x_161); -if (x_162 == 0) -{ -lean_object* x_163; lean_object* x_164; -x_163 = lean_ctor_get(x_161, 0); -lean_dec(x_163); -x_164 = l_Lean_Elab_Term_Do_mkContinue(x_62); -lean_ctor_set(x_161, 0, x_164); -return x_161; -} -else -{ -lean_object* x_165; lean_object* x_166; lean_object* x_167; -x_165 = lean_ctor_get(x_161, 1); -lean_inc(x_165); -lean_dec(x_161); -x_166 = l_Lean_Elab_Term_Do_mkContinue(x_62); -x_167 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_167, 0, x_166); -lean_ctor_set(x_167, 1, x_165); -return x_167; -} -} -else -{ -uint8_t x_168; -lean_dec(x_62); -x_168 = !lean_is_exclusive(x_161); -if (x_168 == 0) -{ -return x_161; -} -else -{ -lean_object* x_169; lean_object* x_170; lean_object* x_171; -x_169 = lean_ctor_get(x_161, 0); -x_170 = lean_ctor_get(x_161, 1); -lean_inc(x_170); -lean_inc(x_169); -lean_dec(x_161); -x_171 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_171, 0, x_169); -lean_ctor_set(x_171, 1, x_170); -return x_171; -} -} -} -else -{ -uint8_t x_172; -lean_dec(x_62); -lean_dec(x_7); -lean_dec(x_50); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_172 = !lean_is_exclusive(x_159); -if (x_172 == 0) -{ -return x_159; -} -else -{ -lean_object* x_173; lean_object* x_174; lean_object* x_175; -x_173 = lean_ctor_get(x_159, 0); -x_174 = lean_ctor_get(x_159, 1); -lean_inc(x_174); -lean_inc(x_173); -lean_dec(x_159); -x_175 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_175, 0, x_173); -lean_ctor_set(x_175, 1, x_174); -return x_175; -} -} -} -} -else -{ -lean_object* x_176; -lean_dec(x_69); -x_176 = l_Lean_Elab_Term_Do_ToCodeBlock_ensureInsideFor(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_60); -if (lean_obj_tag(x_176) == 0) -{ -lean_object* x_177; lean_object* x_178; -x_177 = lean_ctor_get(x_176, 1); -lean_inc(x_177); -lean_dec(x_176); -x_178 = l_Lean_Elab_Term_Do_ToCodeBlock_ensureEOS(x_50, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_177); -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_50); -if (lean_obj_tag(x_178) == 0) -{ -uint8_t x_179; -x_179 = !lean_is_exclusive(x_178); -if (x_179 == 0) -{ -lean_object* x_180; lean_object* x_181; -x_180 = lean_ctor_get(x_178, 0); -lean_dec(x_180); -x_181 = l_Lean_Elab_Term_Do_mkBreak(x_62); -lean_ctor_set(x_178, 0, x_181); -return x_178; -} -else -{ -lean_object* x_182; lean_object* x_183; lean_object* x_184; -x_182 = lean_ctor_get(x_178, 1); -lean_inc(x_182); -lean_dec(x_178); -x_183 = l_Lean_Elab_Term_Do_mkBreak(x_62); -x_184 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_184, 0, x_183); -lean_ctor_set(x_184, 1, x_182); -return x_184; -} -} -else -{ -uint8_t x_185; -lean_dec(x_62); -x_185 = !lean_is_exclusive(x_178); -if (x_185 == 0) -{ -return x_178; -} -else -{ -lean_object* x_186; lean_object* x_187; lean_object* x_188; -x_186 = lean_ctor_get(x_178, 0); -x_187 = lean_ctor_get(x_178, 1); -lean_inc(x_187); -lean_inc(x_186); -lean_dec(x_178); -x_188 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_188, 0, x_186); -lean_ctor_set(x_188, 1, x_187); -return x_188; -} -} -} -else -{ -uint8_t x_189; -lean_dec(x_62); -lean_dec(x_7); -lean_dec(x_50); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_189 = !lean_is_exclusive(x_176); -if (x_189 == 0) -{ -return x_176; -} -else -{ -lean_object* x_190; lean_object* x_191; lean_object* x_192; -x_190 = lean_ctor_get(x_176, 0); -x_191 = lean_ctor_get(x_176, 1); -lean_inc(x_191); -lean_inc(x_190); -lean_dec(x_176); -x_192 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_192, 0, x_190); -lean_ctor_set(x_192, 1, x_191); -return x_192; -} -} -} -} -else -{ -lean_object* x_193; -lean_dec(x_69); -x_193 = l_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode(x_62, x_50, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_60); -lean_dec(x_62); -return x_193; -} -} -else -{ -lean_object* x_194; -lean_dec(x_69); -x_194 = l_Lean_Elab_Term_Do_ToCodeBlock_doMatchToCode(x_62, x_50, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_60); -return x_194; -} -} -else -{ -lean_object* x_195; lean_object* x_196; lean_object* x_197; uint8_t x_198; -lean_dec(x_69); -x_195 = lean_st_ref_take(x_8, x_60); -x_196 = lean_ctor_get(x_195, 0); -lean_inc(x_196); -x_197 = lean_ctor_get(x_195, 1); -lean_inc(x_197); -lean_dec(x_195); -x_198 = !lean_is_exclusive(x_196); -if (x_198 == 0) -{ -lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; uint8_t x_204; -x_199 = lean_ctor_get(x_196, 1); -x_200 = lean_unsigned_to_nat(1u); -x_201 = lean_nat_add(x_199, x_200); -lean_ctor_set(x_196, 1, x_201); -x_202 = lean_st_ref_set(x_8, x_196, x_197); -x_203 = lean_ctor_get(x_202, 1); -lean_inc(x_203); -lean_dec(x_202); -x_204 = !lean_is_exclusive(x_3); -if (x_204 == 0) -{ -lean_object* x_205; lean_object* x_206; -x_205 = lean_ctor_get(x_3, 4); -lean_dec(x_205); -lean_ctor_set(x_3, 4, x_199); -x_206 = l_Lean_Elab_Term_Do_ToCodeBlock_doForToCode(x_62, x_50, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_203); -lean_dec(x_62); -return x_206; -} -else -{ -lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; uint8_t x_211; uint8_t x_212; uint8_t x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; uint8_t x_217; lean_object* x_218; lean_object* x_219; -x_207 = lean_ctor_get(x_3, 0); -x_208 = lean_ctor_get(x_3, 1); -x_209 = lean_ctor_get(x_3, 2); -x_210 = lean_ctor_get(x_3, 3); -x_211 = lean_ctor_get_uint8(x_3, sizeof(void*)*8); -x_212 = lean_ctor_get_uint8(x_3, sizeof(void*)*8 + 1); -x_213 = lean_ctor_get_uint8(x_3, sizeof(void*)*8 + 2); -x_214 = lean_ctor_get(x_3, 5); -x_215 = lean_ctor_get(x_3, 6); -x_216 = lean_ctor_get(x_3, 7); -x_217 = lean_ctor_get_uint8(x_3, sizeof(void*)*8 + 3); -lean_inc(x_216); -lean_inc(x_215); -lean_inc(x_214); -lean_inc(x_210); -lean_inc(x_209); -lean_inc(x_208); -lean_inc(x_207); -lean_dec(x_3); -x_218 = lean_alloc_ctor(0, 8, 4); -lean_ctor_set(x_218, 0, x_207); -lean_ctor_set(x_218, 1, x_208); -lean_ctor_set(x_218, 2, x_209); -lean_ctor_set(x_218, 3, x_210); -lean_ctor_set(x_218, 4, x_199); -lean_ctor_set(x_218, 5, x_214); -lean_ctor_set(x_218, 6, x_215); -lean_ctor_set(x_218, 7, x_216); -lean_ctor_set_uint8(x_218, sizeof(void*)*8, x_211); -lean_ctor_set_uint8(x_218, sizeof(void*)*8 + 1, x_212); -lean_ctor_set_uint8(x_218, sizeof(void*)*8 + 2, x_213); -lean_ctor_set_uint8(x_218, sizeof(void*)*8 + 3, x_217); -x_219 = l_Lean_Elab_Term_Do_ToCodeBlock_doForToCode(x_62, x_50, x_2, x_218, x_4, x_5, x_6, x_7, x_8, x_203); -lean_dec(x_62); -return x_219; -} -} -else -{ -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; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; uint8_t x_233; uint8_t x_234; uint8_t x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; uint8_t x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; -x_220 = lean_ctor_get(x_196, 0); -x_221 = lean_ctor_get(x_196, 1); -x_222 = lean_ctor_get(x_196, 2); -x_223 = lean_ctor_get(x_196, 3); -lean_inc(x_223); -lean_inc(x_222); -lean_inc(x_221); -lean_inc(x_220); -lean_dec(x_196); -x_224 = lean_unsigned_to_nat(1u); -x_225 = lean_nat_add(x_221, x_224); -x_226 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_226, 0, x_220); -lean_ctor_set(x_226, 1, x_225); -lean_ctor_set(x_226, 2, x_222); -lean_ctor_set(x_226, 3, x_223); -x_227 = lean_st_ref_set(x_8, x_226, x_197); -x_228 = lean_ctor_get(x_227, 1); -lean_inc(x_228); -lean_dec(x_227); -x_229 = lean_ctor_get(x_3, 0); -lean_inc(x_229); -x_230 = lean_ctor_get(x_3, 1); -lean_inc(x_230); -x_231 = lean_ctor_get(x_3, 2); -lean_inc(x_231); -x_232 = lean_ctor_get(x_3, 3); -lean_inc(x_232); -x_233 = lean_ctor_get_uint8(x_3, sizeof(void*)*8); -x_234 = lean_ctor_get_uint8(x_3, sizeof(void*)*8 + 1); -x_235 = lean_ctor_get_uint8(x_3, sizeof(void*)*8 + 2); -x_236 = lean_ctor_get(x_3, 5); -lean_inc(x_236); -x_237 = lean_ctor_get(x_3, 6); -lean_inc(x_237); -x_238 = lean_ctor_get(x_3, 7); -lean_inc(x_238); -x_239 = lean_ctor_get_uint8(x_3, sizeof(void*)*8 + 3); -if (lean_is_exclusive(x_3)) { - lean_ctor_release(x_3, 0); - lean_ctor_release(x_3, 1); - lean_ctor_release(x_3, 2); - lean_ctor_release(x_3, 3); - lean_ctor_release(x_3, 4); - lean_ctor_release(x_3, 5); - lean_ctor_release(x_3, 6); - lean_ctor_release(x_3, 7); - x_240 = x_3; -} else { - lean_dec_ref(x_3); - x_240 = lean_box(0); -} -if (lean_is_scalar(x_240)) { - x_241 = lean_alloc_ctor(0, 8, 4); -} else { - x_241 = x_240; -} -lean_ctor_set(x_241, 0, x_229); -lean_ctor_set(x_241, 1, x_230); -lean_ctor_set(x_241, 2, x_231); -lean_ctor_set(x_241, 3, x_232); -lean_ctor_set(x_241, 4, x_221); -lean_ctor_set(x_241, 5, x_236); -lean_ctor_set(x_241, 6, x_237); -lean_ctor_set(x_241, 7, x_238); -lean_ctor_set_uint8(x_241, sizeof(void*)*8, x_233); -lean_ctor_set_uint8(x_241, sizeof(void*)*8 + 1, x_234); -lean_ctor_set_uint8(x_241, sizeof(void*)*8 + 2, x_235); -lean_ctor_set_uint8(x_241, sizeof(void*)*8 + 3, x_239); -x_242 = l_Lean_Elab_Term_Do_ToCodeBlock_doForToCode(x_62, x_50, x_2, x_241, x_4, x_5, x_6, x_7, x_8, x_228); -lean_dec(x_62); -return x_242; -} -} -} -else -{ -lean_object* x_243; -lean_dec(x_69); -x_243 = l_Lean_Elab_Term_Do_ToCodeBlock_doUnlessToCode(x_62, x_50, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_60); -lean_dec(x_62); -return x_243; -} -} -else -{ -lean_object* x_244; -lean_dec(x_69); -x_244 = l_Lean_Elab_Term_Do_ToCodeBlock_doIfToCode(x_62, x_50, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_60); -return x_244; -} -} -else -{ -lean_object* x_245; -lean_dec(x_69); -x_245 = l_Lean_Elab_Term_Do_ToCodeBlock_doReassignArrowToCode(x_62, x_50, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_60); -lean_dec(x_62); -return x_245; -} -} -else -{ -lean_object* x_246; -lean_dec(x_69); -x_246 = l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode(x_62, x_50, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_60); -return x_246; -} -} -else -{ -lean_object* x_247; -lean_dec(x_69); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_247 = l_Lean_Elab_Term_Do_getDoReassignVars(x_62, x_3, x_4, x_5, x_6, x_7, x_8, x_60); -if (lean_obj_tag(x_247) == 0) -{ -lean_object* x_248; lean_object* x_249; lean_object* x_250; -x_248 = lean_ctor_get(x_247, 0); -lean_inc(x_248); -x_249 = lean_ctor_get(x_247, 1); -lean_inc(x_249); -lean_dec(x_247); -x_250 = l_Lean_Elab_Term_Do_ToCodeBlock_checkReassignable(x_248, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_249); -if (lean_obj_tag(x_250) == 0) -{ -lean_object* x_251; lean_object* x_252; -x_251 = lean_ctor_get(x_250, 1); -lean_inc(x_251); -lean_dec(x_250); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_252 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_50, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_251); -if (lean_obj_tag(x_252) == 0) -{ -lean_object* x_253; lean_object* x_254; lean_object* x_255; -x_253 = lean_ctor_get(x_252, 0); -lean_inc(x_253); -x_254 = lean_ctor_get(x_252, 1); -lean_inc(x_254); -lean_dec(x_252); -x_255 = l_Lean_Elab_Term_Do_mkReassignCore(x_248, x_62, x_253, x_3, x_4, x_5, x_6, x_7, x_8, x_254); -return x_255; -} -else -{ -uint8_t x_256; -lean_dec(x_248); -lean_dec(x_62); -lean_dec(x_7); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_256 = !lean_is_exclusive(x_252); -if (x_256 == 0) -{ -return x_252; -} -else -{ -lean_object* x_257; lean_object* x_258; lean_object* x_259; -x_257 = lean_ctor_get(x_252, 0); -x_258 = lean_ctor_get(x_252, 1); -lean_inc(x_258); -lean_inc(x_257); -lean_dec(x_252); -x_259 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_259, 0, x_257); -lean_ctor_set(x_259, 1, x_258); -return x_259; -} -} -} -else -{ -uint8_t x_260; -lean_dec(x_248); -lean_dec(x_62); -lean_dec(x_7); -lean_dec(x_50); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_260 = !lean_is_exclusive(x_250); -if (x_260 == 0) -{ -return x_250; -} -else -{ -lean_object* x_261; lean_object* x_262; lean_object* x_263; -x_261 = lean_ctor_get(x_250, 0); -x_262 = lean_ctor_get(x_250, 1); -lean_inc(x_262); -lean_inc(x_261); -lean_dec(x_250); -x_263 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_263, 0, x_261); -lean_ctor_set(x_263, 1, x_262); -return x_263; -} -} -} -else -{ -uint8_t x_264; -lean_dec(x_62); -lean_dec(x_7); -lean_dec(x_50); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_264 = !lean_is_exclusive(x_247); -if (x_264 == 0) -{ -return x_247; -} -else -{ -lean_object* x_265; lean_object* x_266; lean_object* x_267; -x_265 = lean_ctor_get(x_247, 0); -x_266 = lean_ctor_get(x_247, 1); -lean_inc(x_266); -lean_inc(x_265); -lean_dec(x_247); -x_267 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_267, 0, x_265); -lean_ctor_set(x_267, 1, x_266); -return x_267; -} -} -} -} -else -{ -lean_object* x_268; -lean_dec(x_69); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_268 = l_Lean_Elab_Term_Do_getDoLetRecVars(x_62, x_3, x_4, x_5, x_6, x_7, x_8, x_60); -if (lean_obj_tag(x_268) == 0) -{ -lean_object* x_269; lean_object* x_270; lean_object* x_271; -x_269 = lean_ctor_get(x_268, 0); -lean_inc(x_269); -x_270 = lean_ctor_get(x_268, 1); -lean_inc(x_270); -lean_dec(x_268); -x_271 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_50, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_270); -if (lean_obj_tag(x_271) == 0) -{ -uint8_t x_272; -x_272 = !lean_is_exclusive(x_271); -if (x_272 == 0) -{ -lean_object* x_273; lean_object* x_274; -x_273 = lean_ctor_get(x_271, 0); -x_274 = l_Lean_Elab_Term_Do_mkVarDeclCore(x_269, x_62, x_273); -lean_ctor_set(x_271, 0, x_274); -return x_271; -} -else -{ -lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; -x_275 = lean_ctor_get(x_271, 0); -x_276 = lean_ctor_get(x_271, 1); -lean_inc(x_276); -lean_inc(x_275); -lean_dec(x_271); -x_277 = l_Lean_Elab_Term_Do_mkVarDeclCore(x_269, x_62, x_275); -x_278 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_278, 0, x_277); -lean_ctor_set(x_278, 1, x_276); -return x_278; -} -} -else -{ -uint8_t x_279; -lean_dec(x_269); -lean_dec(x_62); -x_279 = !lean_is_exclusive(x_271); -if (x_279 == 0) -{ -return x_271; -} -else -{ -lean_object* x_280; lean_object* x_281; lean_object* x_282; -x_280 = lean_ctor_get(x_271, 0); -x_281 = lean_ctor_get(x_271, 1); -lean_inc(x_281); -lean_inc(x_280); -lean_dec(x_271); -x_282 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_282, 0, x_280); -lean_ctor_set(x_282, 1, x_281); -return x_282; -} -} -} -else -{ -uint8_t x_283; -lean_dec(x_62); -lean_dec(x_7); -lean_dec(x_50); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_283 = !lean_is_exclusive(x_268); -if (x_283 == 0) -{ -return x_268; -} -else -{ -lean_object* x_284; lean_object* x_285; lean_object* x_286; -x_284 = lean_ctor_get(x_268, 0); -x_285 = lean_ctor_get(x_268, 1); -lean_inc(x_285); -lean_inc(x_284); -lean_dec(x_268); -x_286 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_286, 0, x_284); -lean_ctor_set(x_286, 1, x_285); -return x_286; -} -} -} -} -else -{ -lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; -lean_dec(x_69); -x_287 = l_Lean_Elab_Term_Do_getDoHaveVar(x_62); -x_288 = l_Lean_mkOptionalNode___closed__2; -x_289 = lean_array_push(x_288, x_287); -x_290 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_50, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_60); -if (lean_obj_tag(x_290) == 0) -{ -uint8_t x_291; -x_291 = !lean_is_exclusive(x_290); -if (x_291 == 0) -{ -lean_object* x_292; lean_object* x_293; -x_292 = lean_ctor_get(x_290, 0); -x_293 = l_Lean_Elab_Term_Do_mkVarDeclCore(x_289, x_62, x_292); -lean_ctor_set(x_290, 0, x_293); -return x_290; -} -else -{ -lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; -x_294 = lean_ctor_get(x_290, 0); -x_295 = lean_ctor_get(x_290, 1); -lean_inc(x_295); -lean_inc(x_294); -lean_dec(x_290); -x_296 = l_Lean_Elab_Term_Do_mkVarDeclCore(x_289, x_62, x_294); -x_297 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_297, 0, x_296); -lean_ctor_set(x_297, 1, x_295); -return x_297; -} -} -else -{ -uint8_t x_298; -lean_dec(x_289); -lean_dec(x_62); -x_298 = !lean_is_exclusive(x_290); -if (x_298 == 0) -{ -return x_290; -} -else -{ -lean_object* x_299; lean_object* x_300; lean_object* x_301; -x_299 = lean_ctor_get(x_290, 0); -x_300 = lean_ctor_get(x_290, 1); -lean_inc(x_300); -lean_inc(x_299); -lean_dec(x_290); -x_301 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_301, 0, x_299); -lean_ctor_set(x_301, 1, x_300); -return x_301; -} -} -} -} -else -{ -lean_object* x_302; -lean_dec(x_69); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_302 = l_Lean_Elab_Term_Do_getDoLetVars(x_62, x_3, x_4, x_5, x_6, x_7, x_8, x_60); -if (lean_obj_tag(x_302) == 0) -{ -lean_object* x_303; lean_object* x_304; uint8_t x_305; -x_303 = lean_ctor_get(x_302, 0); -lean_inc(x_303); -x_304 = lean_ctor_get(x_302, 1); -lean_inc(x_304); -lean_dec(x_302); -lean_inc(x_62); -x_305 = l_Lean_Elab_Term_Do_isMutableLet(x_62); -if (x_305 == 0) -{ -lean_object* x_306; -x_306 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_50, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_304); -if (lean_obj_tag(x_306) == 0) -{ -uint8_t x_307; -x_307 = !lean_is_exclusive(x_306); -if (x_307 == 0) -{ -lean_object* x_308; lean_object* x_309; -x_308 = lean_ctor_get(x_306, 0); -x_309 = l_Lean_Elab_Term_Do_mkVarDeclCore(x_303, x_62, x_308); -lean_ctor_set(x_306, 0, x_309); -return x_306; -} -else -{ -lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; -x_310 = lean_ctor_get(x_306, 0); -x_311 = lean_ctor_get(x_306, 1); -lean_inc(x_311); -lean_inc(x_310); -lean_dec(x_306); -x_312 = l_Lean_Elab_Term_Do_mkVarDeclCore(x_303, x_62, x_310); -x_313 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_313, 0, x_312); -lean_ctor_set(x_313, 1, x_311); -return x_313; -} -} -else -{ -uint8_t x_314; -lean_dec(x_303); -lean_dec(x_62); -x_314 = !lean_is_exclusive(x_306); -if (x_314 == 0) -{ -return x_306; -} -else -{ -lean_object* x_315; lean_object* x_316; lean_object* x_317; -x_315 = lean_ctor_get(x_306, 0); -x_316 = lean_ctor_get(x_306, 1); -lean_inc(x_316); -lean_inc(x_315); -lean_dec(x_306); -x_317 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_317, 0, x_315); -lean_ctor_set(x_317, 1, x_316); -return x_317; -} -} -} -else -{ -uint8_t x_318; -x_318 = !lean_is_exclusive(x_2); -if (x_318 == 0) -{ -lean_object* x_319; lean_object* x_320; lean_object* x_321; -x_319 = lean_ctor_get(x_2, 2); -x_320 = l_Lean_Elab_Term_Do_insertVars(x_319, x_303); -lean_ctor_set(x_2, 2, x_320); -x_321 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_50, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_304); -if (lean_obj_tag(x_321) == 0) -{ -uint8_t x_322; -x_322 = !lean_is_exclusive(x_321); -if (x_322 == 0) -{ -lean_object* x_323; lean_object* x_324; -x_323 = lean_ctor_get(x_321, 0); -x_324 = l_Lean_Elab_Term_Do_mkVarDeclCore(x_303, x_62, x_323); -lean_ctor_set(x_321, 0, x_324); -return x_321; -} -else -{ -lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; -x_325 = lean_ctor_get(x_321, 0); -x_326 = lean_ctor_get(x_321, 1); -lean_inc(x_326); -lean_inc(x_325); -lean_dec(x_321); -x_327 = l_Lean_Elab_Term_Do_mkVarDeclCore(x_303, x_62, x_325); -x_328 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_328, 0, x_327); -lean_ctor_set(x_328, 1, x_326); -return x_328; -} -} -else -{ -uint8_t x_329; -lean_dec(x_303); -lean_dec(x_62); -x_329 = !lean_is_exclusive(x_321); -if (x_329 == 0) -{ -return x_321; -} -else -{ -lean_object* x_330; lean_object* x_331; lean_object* x_332; -x_330 = lean_ctor_get(x_321, 0); -x_331 = lean_ctor_get(x_321, 1); -lean_inc(x_331); -lean_inc(x_330); -lean_dec(x_321); -x_332 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_332, 0, x_330); -lean_ctor_set(x_332, 1, x_331); -return x_332; -} -} -} -else -{ -lean_object* x_333; lean_object* x_334; lean_object* x_335; uint8_t x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; -x_333 = lean_ctor_get(x_2, 0); -x_334 = lean_ctor_get(x_2, 1); -x_335 = lean_ctor_get(x_2, 2); -x_336 = lean_ctor_get_uint8(x_2, sizeof(void*)*3); -lean_inc(x_335); -lean_inc(x_334); -lean_inc(x_333); -lean_dec(x_2); -x_337 = l_Lean_Elab_Term_Do_insertVars(x_335, x_303); -x_338 = lean_alloc_ctor(0, 3, 1); -lean_ctor_set(x_338, 0, x_333); -lean_ctor_set(x_338, 1, x_334); -lean_ctor_set(x_338, 2, x_337); -lean_ctor_set_uint8(x_338, sizeof(void*)*3, x_336); -x_339 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_50, x_338, x_3, x_4, x_5, x_6, x_7, x_8, x_304); -if (lean_obj_tag(x_339) == 0) -{ -lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; -x_340 = lean_ctor_get(x_339, 0); -lean_inc(x_340); -x_341 = lean_ctor_get(x_339, 1); -lean_inc(x_341); -if (lean_is_exclusive(x_339)) { - lean_ctor_release(x_339, 0); - lean_ctor_release(x_339, 1); - x_342 = x_339; -} else { - lean_dec_ref(x_339); - x_342 = lean_box(0); -} -x_343 = l_Lean_Elab_Term_Do_mkVarDeclCore(x_303, x_62, x_340); -if (lean_is_scalar(x_342)) { - x_344 = lean_alloc_ctor(0, 2, 0); -} else { - x_344 = x_342; -} -lean_ctor_set(x_344, 0, x_343); -lean_ctor_set(x_344, 1, x_341); -return x_344; -} -else -{ -lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; -lean_dec(x_303); -lean_dec(x_62); -x_345 = lean_ctor_get(x_339, 0); -lean_inc(x_345); -x_346 = lean_ctor_get(x_339, 1); -lean_inc(x_346); -if (lean_is_exclusive(x_339)) { - lean_ctor_release(x_339, 0); - lean_ctor_release(x_339, 1); - x_347 = x_339; -} else { - lean_dec_ref(x_339); - x_347 = lean_box(0); -} -if (lean_is_scalar(x_347)) { - x_348 = lean_alloc_ctor(1, 2, 0); -} else { - x_348 = x_347; -} -lean_ctor_set(x_348, 0, x_345); -lean_ctor_set(x_348, 1, x_346); -return x_348; -} -} -} -} -else -{ -uint8_t x_349; -lean_dec(x_62); -lean_dec(x_7); -lean_dec(x_50); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_349 = !lean_is_exclusive(x_302); -if (x_349 == 0) -{ -return x_302; -} -else -{ -lean_object* x_350; lean_object* x_351; lean_object* x_352; -x_350 = lean_ctor_get(x_302, 0); -x_351 = lean_ctor_get(x_302, 1); -lean_inc(x_351); -lean_inc(x_350); -lean_dec(x_302); -x_352 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_352, 0, x_350); -lean_ctor_set(x_352, 1, x_351); -return x_352; -} -} -} -} -} -} -block_440: -{ -if (lean_obj_tag(x_404) == 0) -{ -lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; uint8_t x_427; -x_406 = lean_st_ref_get(x_8, x_405); -x_407 = lean_ctor_get(x_406, 0); -lean_inc(x_407); -x_408 = lean_ctor_get(x_406, 1); -lean_inc(x_408); -lean_dec(x_406); -x_409 = lean_ctor_get(x_407, 0); -lean_inc(x_409); -lean_dec(x_407); -x_410 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_408); -x_411 = lean_ctor_get(x_410, 0); -lean_inc(x_411); -x_412 = lean_ctor_get(x_410, 1); -lean_inc(x_412); -lean_dec(x_410); -x_413 = lean_st_ref_get(x_8, x_412); -x_414 = lean_ctor_get(x_413, 0); -lean_inc(x_414); -x_415 = lean_ctor_get(x_413, 1); -lean_inc(x_415); -lean_dec(x_413); -x_416 = lean_ctor_get(x_414, 1); -lean_inc(x_416); -lean_dec(x_414); -lean_inc(x_409); -x_417 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); -lean_closure_set(x_417, 0, x_409); -x_418 = x_417; -x_419 = lean_environment_main_module(x_409); -lean_inc(x_56); -lean_inc(x_54); -lean_inc(x_53); -x_420 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_420, 0, x_418); -lean_ctor_set(x_420, 1, x_419); -lean_ctor_set(x_420, 2, x_411); -lean_ctor_set(x_420, 3, x_53); -lean_ctor_set(x_420, 4, x_54); -lean_ctor_set(x_420, 5, x_56); -lean_inc(x_49); -x_421 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f(x_49, x_420, x_416); -x_422 = lean_ctor_get(x_421, 0); -lean_inc(x_422); -x_423 = lean_ctor_get(x_421, 1); -lean_inc(x_423); -lean_dec(x_421); -x_424 = lean_st_ref_take(x_8, x_415); -x_425 = lean_ctor_get(x_424, 0); -lean_inc(x_425); -x_426 = lean_ctor_get(x_424, 1); -lean_inc(x_426); -lean_dec(x_424); -x_427 = !lean_is_exclusive(x_425); -if (x_427 == 0) -{ -lean_object* x_428; lean_object* x_429; lean_object* x_430; -x_428 = lean_ctor_get(x_425, 1); -lean_dec(x_428); -lean_ctor_set(x_425, 1, x_423); -x_429 = lean_st_ref_set(x_8, x_425, x_426); -x_430 = lean_ctor_get(x_429, 1); -lean_inc(x_430); -lean_dec(x_429); -x_57 = x_422; -x_58 = x_430; -goto block_403; -} -else -{ -lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; -x_431 = lean_ctor_get(x_425, 0); -x_432 = lean_ctor_get(x_425, 2); -x_433 = lean_ctor_get(x_425, 3); -lean_inc(x_433); -lean_inc(x_432); -lean_inc(x_431); -lean_dec(x_425); -x_434 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_434, 0, x_431); -lean_ctor_set(x_434, 1, x_423); -lean_ctor_set(x_434, 2, x_432); -lean_ctor_set(x_434, 3, x_433); -x_435 = lean_st_ref_set(x_8, x_434, x_426); -x_436 = lean_ctor_get(x_435, 1); -lean_inc(x_436); -lean_dec(x_435); -x_57 = x_422; -x_58 = x_436; -goto block_403; -} -} -else -{ -lean_object* x_437; lean_object* x_438; -lean_dec(x_56); -lean_dec(x_54); -lean_dec(x_53); -lean_dec(x_51); -lean_dec(x_49); -x_437 = lean_ctor_get(x_404, 0); -lean_inc(x_437); -lean_dec(x_404); -x_438 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_438, 0, x_437); -lean_ctor_set(x_438, 1, x_50); -x_1 = x_438; -x_9 = x_405; -goto _start; -} -} -} -else -{ -lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_790; lean_object* x_791; lean_object* x_824; lean_object* x_825; lean_object* x_826; lean_object* x_827; lean_object* x_828; lean_object* x_829; lean_object* x_830; lean_object* x_831; lean_object* x_832; lean_object* x_833; lean_object* x_834; lean_object* x_835; lean_object* x_836; lean_object* x_837; lean_object* x_838; lean_object* x_839; -x_487 = lean_ctor_get(x_7, 0); -x_488 = lean_ctor_get(x_7, 1); -x_489 = lean_ctor_get(x_7, 2); -x_490 = lean_ctor_get(x_7, 3); -x_491 = lean_ctor_get(x_7, 4); -x_492 = lean_ctor_get(x_7, 5); -x_493 = lean_ctor_get(x_7, 6); -x_494 = lean_ctor_get(x_7, 7); -lean_inc(x_494); -lean_inc(x_493); -lean_inc(x_492); -lean_inc(x_491); -lean_inc(x_490); -lean_inc(x_489); -lean_inc(x_488); -lean_inc(x_487); -lean_dec(x_7); -x_495 = l_Lean_replaceRef(x_49, x_490); -lean_dec(x_490); -lean_inc(x_495); -lean_inc(x_489); -lean_inc(x_488); -x_496 = lean_alloc_ctor(0, 8, 0); -lean_ctor_set(x_496, 0, x_487); -lean_ctor_set(x_496, 1, x_488); -lean_ctor_set(x_496, 2, x_489); -lean_ctor_set(x_496, 3, x_495); -lean_ctor_set(x_496, 4, x_491); -lean_ctor_set(x_496, 5, x_492); -lean_ctor_set(x_496, 6, x_493); -lean_ctor_set(x_496, 7, x_494); -x_824 = lean_st_ref_get(x_8, x_9); -x_825 = lean_ctor_get(x_824, 0); -lean_inc(x_825); -x_826 = lean_ctor_get(x_824, 1); -lean_inc(x_826); -lean_dec(x_824); -x_827 = lean_ctor_get(x_825, 0); -lean_inc(x_827); -lean_dec(x_825); -x_828 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_496, x_8, x_826); -x_829 = lean_ctor_get(x_828, 0); -lean_inc(x_829); -x_830 = lean_ctor_get(x_828, 1); -lean_inc(x_830); -lean_dec(x_828); -x_831 = lean_st_ref_get(x_8, x_830); -x_832 = lean_ctor_get(x_831, 0); -lean_inc(x_832); -x_833 = lean_ctor_get(x_831, 1); -lean_inc(x_833); -lean_dec(x_831); -x_834 = lean_ctor_get(x_832, 1); -lean_inc(x_834); -lean_dec(x_832); -lean_inc(x_827); -x_835 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); -lean_closure_set(x_835, 0, x_827); -x_836 = x_835; -x_837 = lean_environment_main_module(x_827); -lean_inc(x_495); -lean_inc(x_489); -lean_inc(x_488); -x_838 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_838, 0, x_836); -lean_ctor_set(x_838, 1, x_837); -lean_ctor_set(x_838, 2, x_829); -lean_ctor_set(x_838, 3, x_488); -lean_ctor_set(x_838, 4, x_489); -lean_ctor_set(x_838, 5, x_495); -lean_inc(x_49); -x_839 = l_Lean_Macro_expandMacro_x3fImp(x_49, x_838, x_834); -if (lean_obj_tag(x_839) == 0) -{ -lean_object* x_840; lean_object* x_841; lean_object* x_842; lean_object* x_843; lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; lean_object* x_850; lean_object* x_851; -x_840 = lean_ctor_get(x_839, 0); -lean_inc(x_840); -x_841 = lean_ctor_get(x_839, 1); -lean_inc(x_841); -lean_dec(x_839); -x_842 = lean_st_ref_take(x_8, x_833); -x_843 = lean_ctor_get(x_842, 0); -lean_inc(x_843); -x_844 = lean_ctor_get(x_842, 1); -lean_inc(x_844); -lean_dec(x_842); -x_845 = lean_ctor_get(x_843, 0); -lean_inc(x_845); -x_846 = lean_ctor_get(x_843, 2); -lean_inc(x_846); -x_847 = lean_ctor_get(x_843, 3); -lean_inc(x_847); -if (lean_is_exclusive(x_843)) { - lean_ctor_release(x_843, 0); - lean_ctor_release(x_843, 1); - lean_ctor_release(x_843, 2); - lean_ctor_release(x_843, 3); - x_848 = x_843; -} else { - lean_dec_ref(x_843); - x_848 = lean_box(0); -} -if (lean_is_scalar(x_848)) { - x_849 = lean_alloc_ctor(0, 4, 0); -} else { - x_849 = x_848; -} -lean_ctor_set(x_849, 0, x_845); -lean_ctor_set(x_849, 1, x_841); -lean_ctor_set(x_849, 2, x_846); -lean_ctor_set(x_849, 3, x_847); -x_850 = lean_st_ref_set(x_8, x_849, x_844); -x_851 = lean_ctor_get(x_850, 1); -lean_inc(x_851); -lean_dec(x_850); -x_790 = x_840; -x_791 = x_851; -goto block_823; -} -else -{ -lean_object* x_852; -lean_dec(x_495); -lean_dec(x_489); -lean_dec(x_488); -lean_dec(x_51); -lean_dec(x_50); -lean_dec(x_49); -x_852 = lean_ctor_get(x_839, 0); -lean_inc(x_852); -lean_dec(x_839); -if (lean_obj_tag(x_852) == 0) -{ -lean_object* x_853; lean_object* x_854; lean_object* x_855; lean_object* x_856; lean_object* x_857; lean_object* x_858; lean_object* x_859; lean_object* x_860; lean_object* x_861; -x_853 = lean_ctor_get(x_852, 0); -lean_inc(x_853); -x_854 = lean_ctor_get(x_852, 1); -lean_inc(x_854); -lean_dec(x_852); -x_855 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_855, 0, x_854); -x_856 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_856, 0, x_855); -x_857 = l_Lean_throwErrorAt___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__7(x_853, x_856, x_2, x_3, x_4, x_5, x_6, x_496, x_8, x_833); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_853); -x_858 = lean_ctor_get(x_857, 0); -lean_inc(x_858); -x_859 = lean_ctor_get(x_857, 1); -lean_inc(x_859); -if (lean_is_exclusive(x_857)) { - lean_ctor_release(x_857, 0); - lean_ctor_release(x_857, 1); - x_860 = x_857; -} else { - lean_dec_ref(x_857); - x_860 = lean_box(0); -} -if (lean_is_scalar(x_860)) { - x_861 = lean_alloc_ctor(1, 2, 0); -} else { - x_861 = x_860; -} -lean_ctor_set(x_861, 0, x_858); -lean_ctor_set(x_861, 1, x_859); -return x_861; -} -else -{ -lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; -lean_dec(x_496); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_862 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__9___rarg(x_833); -x_863 = lean_ctor_get(x_862, 0); -lean_inc(x_863); -x_864 = lean_ctor_get(x_862, 1); -lean_inc(x_864); -if (lean_is_exclusive(x_862)) { - lean_ctor_release(x_862, 0); - lean_ctor_release(x_862, 1); - x_865 = x_862; -} else { - lean_dec_ref(x_862); - x_865 = lean_box(0); -} -if (lean_is_scalar(x_865)) { - x_866 = lean_alloc_ctor(1, 2, 0); -} else { - x_866 = x_865; -} -lean_ctor_set(x_866, 0, x_863); -lean_ctor_set(x_866, 1, x_864); -return x_866; -} -} -block_789: -{ -lean_object* x_499; lean_object* x_500; -if (lean_obj_tag(x_497) == 0) -{ -lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; lean_object* x_748; lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; -x_743 = lean_st_ref_get(x_8, x_498); -x_744 = lean_ctor_get(x_743, 0); -lean_inc(x_744); -x_745 = lean_ctor_get(x_743, 1); -lean_inc(x_745); -lean_dec(x_743); -x_746 = lean_ctor_get(x_744, 0); -lean_inc(x_746); -lean_dec(x_744); -x_747 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_496, x_8, x_745); -x_748 = lean_ctor_get(x_747, 0); -lean_inc(x_748); -x_749 = lean_ctor_get(x_747, 1); -lean_inc(x_749); -lean_dec(x_747); -x_750 = lean_st_ref_get(x_8, x_749); -x_751 = lean_ctor_get(x_750, 0); -lean_inc(x_751); -x_752 = lean_ctor_get(x_750, 1); -lean_inc(x_752); -lean_dec(x_750); -x_753 = lean_ctor_get(x_751, 1); -lean_inc(x_753); -lean_dec(x_751); -lean_inc(x_746); -x_754 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); -lean_closure_set(x_754, 0, x_746); -x_755 = x_754; -x_756 = lean_environment_main_module(x_746); -x_757 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_757, 0, x_755); -lean_ctor_set(x_757, 1, x_756); -lean_ctor_set(x_757, 2, x_748); -lean_ctor_set(x_757, 3, x_488); -lean_ctor_set(x_757, 4, x_489); -lean_ctor_set(x_757, 5, x_495); -x_758 = l_Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethod(x_49, x_757, x_753); -if (lean_obj_tag(x_758) == 0) -{ -lean_object* x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; lean_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; -x_759 = lean_ctor_get(x_758, 0); -lean_inc(x_759); -x_760 = lean_ctor_get(x_758, 1); -lean_inc(x_760); -lean_dec(x_758); -x_761 = lean_st_ref_take(x_8, x_752); -x_762 = lean_ctor_get(x_761, 0); -lean_inc(x_762); -x_763 = lean_ctor_get(x_761, 1); -lean_inc(x_763); -lean_dec(x_761); -x_764 = lean_ctor_get(x_762, 0); -lean_inc(x_764); -x_765 = lean_ctor_get(x_762, 2); -lean_inc(x_765); -x_766 = lean_ctor_get(x_762, 3); -lean_inc(x_766); -if (lean_is_exclusive(x_762)) { - lean_ctor_release(x_762, 0); - lean_ctor_release(x_762, 1); - lean_ctor_release(x_762, 2); - lean_ctor_release(x_762, 3); - x_767 = x_762; -} else { - lean_dec_ref(x_762); - x_767 = lean_box(0); -} -if (lean_is_scalar(x_767)) { - x_768 = lean_alloc_ctor(0, 4, 0); -} else { - x_768 = x_767; -} -lean_ctor_set(x_768, 0, x_764); -lean_ctor_set(x_768, 1, x_760); -lean_ctor_set(x_768, 2, x_765); -lean_ctor_set(x_768, 3, x_766); -x_769 = lean_st_ref_set(x_8, x_768, x_763); -x_770 = lean_ctor_get(x_769, 1); -lean_inc(x_770); -lean_dec(x_769); -x_499 = x_759; -x_500 = x_770; -goto block_742; -} -else -{ -lean_object* x_771; -lean_dec(x_51); -lean_dec(x_50); -lean_dec(x_2); -x_771 = lean_ctor_get(x_758, 0); -lean_inc(x_771); -lean_dec(x_758); -if (lean_obj_tag(x_771) == 0) -{ -lean_object* x_772; lean_object* x_773; lean_object* x_774; lean_object* x_775; lean_object* x_776; lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; -x_772 = lean_ctor_get(x_771, 0); -lean_inc(x_772); -x_773 = lean_ctor_get(x_771, 1); -lean_inc(x_773); -lean_dec(x_771); -x_774 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_774, 0, x_773); -x_775 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_775, 0, x_774); -x_776 = l_Lean_throwErrorAt___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__4(x_772, x_775, x_3, x_4, x_5, x_6, x_496, x_8, x_752); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_772); -x_777 = lean_ctor_get(x_776, 0); -lean_inc(x_777); -x_778 = lean_ctor_get(x_776, 1); -lean_inc(x_778); -if (lean_is_exclusive(x_776)) { - lean_ctor_release(x_776, 0); - lean_ctor_release(x_776, 1); - x_779 = x_776; -} else { - lean_dec_ref(x_776); - x_779 = lean_box(0); -} -if (lean_is_scalar(x_779)) { - x_780 = lean_alloc_ctor(1, 2, 0); -} else { - x_780 = x_779; -} -lean_ctor_set(x_780, 0, x_777); -lean_ctor_set(x_780, 1, x_778); -return x_780; -} -else -{ -lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; -lean_dec(x_496); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_781 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__6___rarg(x_752); -x_782 = lean_ctor_get(x_781, 0); -lean_inc(x_782); -x_783 = lean_ctor_get(x_781, 1); -lean_inc(x_783); -if (lean_is_exclusive(x_781)) { - lean_ctor_release(x_781, 0); - lean_ctor_release(x_781, 1); - x_784 = x_781; -} else { - lean_dec_ref(x_781); - x_784 = lean_box(0); -} -if (lean_is_scalar(x_784)) { - x_785 = lean_alloc_ctor(1, 2, 0); -} else { - x_785 = x_784; -} -lean_ctor_set(x_785, 0, x_782); -lean_ctor_set(x_785, 1, x_783); -return x_785; -} -} -} -else -{ -lean_object* x_786; lean_object* x_787; -lean_dec(x_495); -lean_dec(x_489); -lean_dec(x_488); -lean_dec(x_51); -lean_dec(x_49); -x_786 = lean_ctor_get(x_497, 0); -lean_inc(x_786); -lean_dec(x_497); -x_787 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_787, 0, x_786); -lean_ctor_set(x_787, 1, x_50); -x_1 = x_787; -x_7 = x_496; -x_9 = x_498; -goto _start; -} -block_742: -{ -lean_object* x_501; lean_object* x_502; uint8_t x_503; -x_501 = lean_ctor_get(x_499, 0); -lean_inc(x_501); -x_502 = lean_ctor_get(x_499, 1); -lean_inc(x_502); -lean_dec(x_499); -x_503 = l_List_isEmpty___rarg(x_501); -if (x_503 == 0) -{ -lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; -x_504 = lean_box(0); -if (lean_is_scalar(x_51)) { - x_505 = lean_alloc_ctor(1, 2, 0); -} else { - x_505 = x_51; -} -lean_ctor_set(x_505, 0, x_502); -lean_ctor_set(x_505, 1, x_504); -x_506 = l_List_append___rarg(x_501, x_505); -x_507 = l_List_append___rarg(x_506, x_50); -x_1 = x_507; -x_7 = x_496; -x_9 = x_500; -goto _start; -} -else -{ -lean_object* x_509; lean_object* x_510; uint8_t x_511; -lean_dec(x_501); -lean_dec(x_51); -lean_inc(x_502); -x_509 = l_Lean_Syntax_getKind(x_502); -x_510 = l_Lean_Parser_Term_doLet___elambda__1___closed__2; -x_511 = lean_name_eq(x_509, x_510); -if (x_511 == 0) -{ -lean_object* x_512; uint8_t x_513; -x_512 = l_Lean_Parser_Term_doHave___elambda__1___closed__2; -x_513 = lean_name_eq(x_509, x_512); -if (x_513 == 0) -{ -lean_object* x_514; uint8_t x_515; -x_514 = l_Lean_Parser_Term_doLetRec___elambda__1___closed__2; -x_515 = lean_name_eq(x_509, x_514); -if (x_515 == 0) -{ -lean_object* x_516; uint8_t x_517; -x_516 = l_Lean_Parser_Term_doReassign___elambda__1___closed__2; -x_517 = lean_name_eq(x_509, x_516); -if (x_517 == 0) -{ -lean_object* x_518; uint8_t x_519; -x_518 = l_Lean_Parser_Term_doLetArrow___elambda__1___closed__2; -x_519 = lean_name_eq(x_509, x_518); -if (x_519 == 0) -{ -lean_object* x_520; uint8_t x_521; -x_520 = l_Lean_Parser_Term_doReassignArrow___elambda__1___closed__2; -x_521 = lean_name_eq(x_509, x_520); -if (x_521 == 0) -{ -lean_object* x_522; uint8_t x_523; -x_522 = l_Lean_Parser_Term_doIf___elambda__1___closed__2; -x_523 = lean_name_eq(x_509, x_522); -if (x_523 == 0) -{ -lean_object* x_524; uint8_t x_525; -x_524 = l_Lean_Parser_Term_doUnless___elambda__1___closed__2; -x_525 = lean_name_eq(x_509, x_524); -if (x_525 == 0) -{ -lean_object* x_526; uint8_t x_527; -x_526 = l_Lean_Parser_Term_doFor___elambda__1___closed__2; -x_527 = lean_name_eq(x_509, x_526); -if (x_527 == 0) -{ -lean_object* x_528; uint8_t x_529; -x_528 = l_Lean_Parser_Term_doMatch___elambda__1___closed__2; -x_529 = lean_name_eq(x_509, x_528); -if (x_529 == 0) -{ -lean_object* x_530; uint8_t x_531; -x_530 = l_Lean_Parser_Term_doTry___elambda__1___closed__2; -x_531 = lean_name_eq(x_509, x_530); -if (x_531 == 0) -{ -lean_object* x_532; uint8_t x_533; -x_532 = l_Lean_Parser_Term_doBreak___elambda__1___closed__2; -x_533 = lean_name_eq(x_509, x_532); -if (x_533 == 0) -{ -lean_object* x_534; uint8_t x_535; -x_534 = l_Lean_Parser_Term_doContinue___elambda__1___closed__2; -x_535 = lean_name_eq(x_509, x_534); -if (x_535 == 0) -{ -lean_object* x_536; uint8_t x_537; -x_536 = l_Lean_Parser_Term_doReturn___elambda__1___closed__2; -x_537 = lean_name_eq(x_509, x_536); -if (x_537 == 0) -{ -lean_object* x_538; uint8_t x_539; -x_538 = l_Lean_Parser_Term_doDbgTrace___elambda__1___closed__2; -x_539 = lean_name_eq(x_509, x_538); -if (x_539 == 0) -{ -lean_object* x_540; uint8_t x_541; -x_540 = l_Lean_Parser_Term_doAssert___elambda__1___closed__2; -x_541 = lean_name_eq(x_509, x_540); -if (x_541 == 0) -{ -lean_object* x_542; uint8_t x_543; -x_542 = l_Lean_Parser_Term_doNested___elambda__1___closed__2; -x_543 = lean_name_eq(x_509, x_542); -if (x_543 == 0) -{ -lean_object* x_544; uint8_t x_545; -x_544 = l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_897____closed__13; -x_545 = lean_name_eq(x_509, x_544); -lean_dec(x_509); -if (x_545 == 0) -{ -lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; -lean_dec(x_50); -x_546 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_546, 0, x_502); -x_547 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___closed__2; -x_548 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_548, 0, x_547); -lean_ctor_set(x_548, 1, x_546); -x_549 = l_Lean_KernelException_toMessageData___closed__15; -x_550 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_550, 0, x_548); -lean_ctor_set(x_550, 1, x_549); -x_551 = l_Lean_throwError___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__2(x_550, x_2, x_3, x_4, x_5, x_6, x_496, x_8, x_500); -lean_dec(x_8); -lean_dec(x_496); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -return x_551; -} -else -{ -lean_object* x_552; lean_object* x_553; uint8_t x_554; -x_552 = lean_unsigned_to_nat(0u); -x_553 = l_Lean_Syntax_getArg(x_502, x_552); -lean_dec(x_502); -x_554 = l_List_isEmpty___rarg(x_50); -if (x_554 == 0) -{ -lean_object* x_555; -x_555 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_50, x_2, x_3, x_4, x_5, x_6, x_496, x_8, x_500); -if (lean_obj_tag(x_555) == 0) -{ -lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; -x_556 = lean_ctor_get(x_555, 0); -lean_inc(x_556); -x_557 = lean_ctor_get(x_555, 1); -lean_inc(x_557); -if (lean_is_exclusive(x_555)) { - lean_ctor_release(x_555, 0); - lean_ctor_release(x_555, 1); - x_558 = x_555; -} else { - lean_dec_ref(x_555); - x_558 = lean_box(0); -} -x_559 = l_Lean_Elab_Term_Do_mkSeq(x_553, x_556); -if (lean_is_scalar(x_558)) { - x_560 = lean_alloc_ctor(0, 2, 0); -} else { - x_560 = x_558; -} -lean_ctor_set(x_560, 0, x_559); -lean_ctor_set(x_560, 1, x_557); -return x_560; -} -else -{ -lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; -lean_dec(x_553); -x_561 = lean_ctor_get(x_555, 0); -lean_inc(x_561); -x_562 = lean_ctor_get(x_555, 1); -lean_inc(x_562); -if (lean_is_exclusive(x_555)) { - lean_ctor_release(x_555, 0); - lean_ctor_release(x_555, 1); - x_563 = x_555; -} else { - lean_dec_ref(x_555); - x_563 = lean_box(0); -} -if (lean_is_scalar(x_563)) { - x_564 = lean_alloc_ctor(1, 2, 0); -} else { - x_564 = x_563; -} -lean_ctor_set(x_564, 0, x_561); -lean_ctor_set(x_564, 1, x_562); -return x_564; -} -} -else -{ -lean_object* x_565; lean_object* x_566; -lean_dec(x_496); -lean_dec(x_50); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_565 = l_Lean_Elab_Term_Do_mkTerminalAction(x_553); -x_566 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_566, 0, x_565); -lean_ctor_set(x_566, 1, x_500); -return x_566; -} -} -} -else -{ -lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; -lean_dec(x_509); -x_567 = lean_unsigned_to_nat(1u); -x_568 = l_Lean_Syntax_getArg(x_502, x_567); -lean_dec(x_502); -x_569 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_getDoSeqElems(x_568); -x_570 = l_List_append___rarg(x_569, x_50); -x_1 = x_570; -x_7 = x_496; -x_9 = x_500; -goto _start; -} -} -else -{ -lean_object* x_572; -lean_dec(x_509); -x_572 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_50, x_2, x_3, x_4, x_5, x_6, x_496, x_8, x_500); -if (lean_obj_tag(x_572) == 0) -{ -lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; -x_573 = lean_ctor_get(x_572, 0); -lean_inc(x_573); -x_574 = lean_ctor_get(x_572, 1); -lean_inc(x_574); -if (lean_is_exclusive(x_572)) { - lean_ctor_release(x_572, 0); - lean_ctor_release(x_572, 1); - x_575 = x_572; -} else { - lean_dec_ref(x_572); - x_575 = lean_box(0); -} -x_576 = l_Lean_Elab_Term_Do_mkSeq(x_502, x_573); -if (lean_is_scalar(x_575)) { - x_577 = lean_alloc_ctor(0, 2, 0); -} else { - x_577 = x_575; -} -lean_ctor_set(x_577, 0, x_576); -lean_ctor_set(x_577, 1, x_574); -return x_577; -} -else -{ -lean_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; -lean_dec(x_502); -x_578 = lean_ctor_get(x_572, 0); -lean_inc(x_578); -x_579 = lean_ctor_get(x_572, 1); -lean_inc(x_579); -if (lean_is_exclusive(x_572)) { - lean_ctor_release(x_572, 0); - lean_ctor_release(x_572, 1); - x_580 = x_572; -} else { - lean_dec_ref(x_572); - x_580 = lean_box(0); -} -if (lean_is_scalar(x_580)) { - x_581 = lean_alloc_ctor(1, 2, 0); -} else { - x_581 = x_580; -} -lean_ctor_set(x_581, 0, x_578); -lean_ctor_set(x_581, 1, x_579); -return x_581; -} -} -} -else -{ -lean_object* x_582; -lean_dec(x_509); -x_582 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_50, x_2, x_3, x_4, x_5, x_6, x_496, x_8, x_500); -if (lean_obj_tag(x_582) == 0) -{ -lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; -x_583 = lean_ctor_get(x_582, 0); -lean_inc(x_583); -x_584 = lean_ctor_get(x_582, 1); -lean_inc(x_584); -if (lean_is_exclusive(x_582)) { - lean_ctor_release(x_582, 0); - lean_ctor_release(x_582, 1); - x_585 = x_582; -} else { - lean_dec_ref(x_582); - x_585 = lean_box(0); -} -x_586 = l_Lean_Elab_Term_Do_mkSeq(x_502, x_583); -if (lean_is_scalar(x_585)) { - x_587 = lean_alloc_ctor(0, 2, 0); -} else { - x_587 = x_585; -} -lean_ctor_set(x_587, 0, x_586); -lean_ctor_set(x_587, 1, x_584); -return x_587; -} -else -{ -lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; -lean_dec(x_502); -x_588 = lean_ctor_get(x_582, 0); -lean_inc(x_588); -x_589 = lean_ctor_get(x_582, 1); -lean_inc(x_589); -if (lean_is_exclusive(x_582)) { - lean_ctor_release(x_582, 0); - lean_ctor_release(x_582, 1); - x_590 = x_582; -} else { - lean_dec_ref(x_582); - x_590 = lean_box(0); -} -if (lean_is_scalar(x_590)) { - x_591 = lean_alloc_ctor(1, 2, 0); -} else { - x_591 = x_590; -} -lean_ctor_set(x_591, 0, x_588); -lean_ctor_set(x_591, 1, x_589); -return x_591; -} -} -} -else -{ -lean_object* x_592; -lean_dec(x_509); -x_592 = l_Lean_Elab_Term_Do_ToCodeBlock_doReturnToCode(x_502, x_50, x_2, x_3, x_4, x_5, x_6, x_496, x_8, x_500); -lean_dec(x_50); -lean_dec(x_502); -return x_592; -} -} -else -{ -lean_object* x_593; -lean_dec(x_509); -x_593 = l_Lean_Elab_Term_Do_ToCodeBlock_ensureInsideFor(x_2, x_3, x_4, x_5, x_6, x_496, x_8, x_500); -if (lean_obj_tag(x_593) == 0) -{ -lean_object* x_594; lean_object* x_595; -x_594 = lean_ctor_get(x_593, 1); -lean_inc(x_594); -lean_dec(x_593); -x_595 = l_Lean_Elab_Term_Do_ToCodeBlock_ensureEOS(x_50, x_2, x_3, x_4, x_5, x_6, x_496, x_8, x_594); -lean_dec(x_8); -lean_dec(x_496); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_50); -if (lean_obj_tag(x_595) == 0) -{ -lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; -x_596 = lean_ctor_get(x_595, 1); -lean_inc(x_596); -if (lean_is_exclusive(x_595)) { - lean_ctor_release(x_595, 0); - lean_ctor_release(x_595, 1); - x_597 = x_595; -} else { - lean_dec_ref(x_595); - x_597 = lean_box(0); -} -x_598 = l_Lean_Elab_Term_Do_mkContinue(x_502); -if (lean_is_scalar(x_597)) { - x_599 = lean_alloc_ctor(0, 2, 0); -} else { - x_599 = x_597; -} -lean_ctor_set(x_599, 0, x_598); -lean_ctor_set(x_599, 1, x_596); -return x_599; -} -else -{ -lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; -lean_dec(x_502); -x_600 = lean_ctor_get(x_595, 0); -lean_inc(x_600); -x_601 = lean_ctor_get(x_595, 1); -lean_inc(x_601); -if (lean_is_exclusive(x_595)) { - lean_ctor_release(x_595, 0); - lean_ctor_release(x_595, 1); - x_602 = x_595; -} else { - lean_dec_ref(x_595); - x_602 = lean_box(0); -} -if (lean_is_scalar(x_602)) { - x_603 = lean_alloc_ctor(1, 2, 0); -} else { - x_603 = x_602; -} -lean_ctor_set(x_603, 0, x_600); -lean_ctor_set(x_603, 1, x_601); -return x_603; -} -} -else -{ -lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; -lean_dec(x_502); -lean_dec(x_496); -lean_dec(x_50); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_604 = lean_ctor_get(x_593, 0); -lean_inc(x_604); -x_605 = lean_ctor_get(x_593, 1); -lean_inc(x_605); -if (lean_is_exclusive(x_593)) { - lean_ctor_release(x_593, 0); - lean_ctor_release(x_593, 1); - x_606 = x_593; -} else { - lean_dec_ref(x_593); - x_606 = lean_box(0); -} -if (lean_is_scalar(x_606)) { - x_607 = lean_alloc_ctor(1, 2, 0); -} else { - x_607 = x_606; -} -lean_ctor_set(x_607, 0, x_604); -lean_ctor_set(x_607, 1, x_605); -return x_607; -} -} -} -else -{ -lean_object* x_608; -lean_dec(x_509); -x_608 = l_Lean_Elab_Term_Do_ToCodeBlock_ensureInsideFor(x_2, x_3, x_4, x_5, x_6, x_496, x_8, x_500); -if (lean_obj_tag(x_608) == 0) -{ -lean_object* x_609; lean_object* x_610; -x_609 = lean_ctor_get(x_608, 1); -lean_inc(x_609); -lean_dec(x_608); -x_610 = l_Lean_Elab_Term_Do_ToCodeBlock_ensureEOS(x_50, x_2, x_3, x_4, x_5, x_6, x_496, x_8, x_609); -lean_dec(x_8); -lean_dec(x_496); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_50); -if (lean_obj_tag(x_610) == 0) -{ -lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; -x_611 = lean_ctor_get(x_610, 1); -lean_inc(x_611); -if (lean_is_exclusive(x_610)) { - lean_ctor_release(x_610, 0); - lean_ctor_release(x_610, 1); - x_612 = x_610; -} else { - lean_dec_ref(x_610); - x_612 = lean_box(0); -} -x_613 = l_Lean_Elab_Term_Do_mkBreak(x_502); -if (lean_is_scalar(x_612)) { - x_614 = lean_alloc_ctor(0, 2, 0); -} else { - x_614 = x_612; -} -lean_ctor_set(x_614, 0, x_613); -lean_ctor_set(x_614, 1, x_611); -return x_614; -} -else -{ -lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; -lean_dec(x_502); -x_615 = lean_ctor_get(x_610, 0); -lean_inc(x_615); -x_616 = lean_ctor_get(x_610, 1); -lean_inc(x_616); -if (lean_is_exclusive(x_610)) { - lean_ctor_release(x_610, 0); - lean_ctor_release(x_610, 1); - x_617 = x_610; -} else { - lean_dec_ref(x_610); - x_617 = lean_box(0); -} -if (lean_is_scalar(x_617)) { - x_618 = lean_alloc_ctor(1, 2, 0); -} else { - x_618 = x_617; -} -lean_ctor_set(x_618, 0, x_615); -lean_ctor_set(x_618, 1, x_616); -return x_618; -} -} -else -{ -lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; -lean_dec(x_502); -lean_dec(x_496); -lean_dec(x_50); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_619 = lean_ctor_get(x_608, 0); -lean_inc(x_619); -x_620 = lean_ctor_get(x_608, 1); -lean_inc(x_620); -if (lean_is_exclusive(x_608)) { - lean_ctor_release(x_608, 0); - lean_ctor_release(x_608, 1); - x_621 = x_608; -} else { - lean_dec_ref(x_608); - x_621 = lean_box(0); -} -if (lean_is_scalar(x_621)) { - x_622 = lean_alloc_ctor(1, 2, 0); -} else { - x_622 = x_621; -} -lean_ctor_set(x_622, 0, x_619); -lean_ctor_set(x_622, 1, x_620); -return x_622; -} -} -} -else -{ -lean_object* x_623; -lean_dec(x_509); -x_623 = l_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode(x_502, x_50, x_2, x_3, x_4, x_5, x_6, x_496, x_8, x_500); -lean_dec(x_502); -return x_623; -} -} -else -{ -lean_object* x_624; -lean_dec(x_509); -x_624 = l_Lean_Elab_Term_Do_ToCodeBlock_doMatchToCode(x_502, x_50, x_2, x_3, x_4, x_5, x_6, x_496, x_8, x_500); -return x_624; -} -} -else -{ -lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; uint8_t x_642; uint8_t x_643; uint8_t x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; uint8_t x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; -lean_dec(x_509); -x_625 = lean_st_ref_take(x_8, x_500); -x_626 = lean_ctor_get(x_625, 0); -lean_inc(x_626); -x_627 = lean_ctor_get(x_625, 1); -lean_inc(x_627); -lean_dec(x_625); -x_628 = lean_ctor_get(x_626, 0); -lean_inc(x_628); -x_629 = lean_ctor_get(x_626, 1); -lean_inc(x_629); -x_630 = lean_ctor_get(x_626, 2); -lean_inc(x_630); -x_631 = lean_ctor_get(x_626, 3); -lean_inc(x_631); -if (lean_is_exclusive(x_626)) { - lean_ctor_release(x_626, 0); - lean_ctor_release(x_626, 1); - lean_ctor_release(x_626, 2); - lean_ctor_release(x_626, 3); - x_632 = x_626; -} else { - lean_dec_ref(x_626); - x_632 = lean_box(0); -} -x_633 = lean_unsigned_to_nat(1u); -x_634 = lean_nat_add(x_629, x_633); -if (lean_is_scalar(x_632)) { - x_635 = lean_alloc_ctor(0, 4, 0); -} else { - x_635 = x_632; -} -lean_ctor_set(x_635, 0, x_628); -lean_ctor_set(x_635, 1, x_634); -lean_ctor_set(x_635, 2, x_630); -lean_ctor_set(x_635, 3, x_631); -x_636 = lean_st_ref_set(x_8, x_635, x_627); -x_637 = lean_ctor_get(x_636, 1); -lean_inc(x_637); -lean_dec(x_636); -x_638 = lean_ctor_get(x_3, 0); -lean_inc(x_638); -x_639 = lean_ctor_get(x_3, 1); -lean_inc(x_639); -x_640 = lean_ctor_get(x_3, 2); -lean_inc(x_640); -x_641 = lean_ctor_get(x_3, 3); -lean_inc(x_641); -x_642 = lean_ctor_get_uint8(x_3, sizeof(void*)*8); -x_643 = lean_ctor_get_uint8(x_3, sizeof(void*)*8 + 1); -x_644 = lean_ctor_get_uint8(x_3, sizeof(void*)*8 + 2); -x_645 = lean_ctor_get(x_3, 5); -lean_inc(x_645); -x_646 = lean_ctor_get(x_3, 6); -lean_inc(x_646); -x_647 = lean_ctor_get(x_3, 7); -lean_inc(x_647); -x_648 = lean_ctor_get_uint8(x_3, sizeof(void*)*8 + 3); -if (lean_is_exclusive(x_3)) { - lean_ctor_release(x_3, 0); - lean_ctor_release(x_3, 1); - lean_ctor_release(x_3, 2); - lean_ctor_release(x_3, 3); - lean_ctor_release(x_3, 4); - lean_ctor_release(x_3, 5); - lean_ctor_release(x_3, 6); - lean_ctor_release(x_3, 7); - x_649 = x_3; -} else { - lean_dec_ref(x_3); - x_649 = lean_box(0); -} -if (lean_is_scalar(x_649)) { - x_650 = lean_alloc_ctor(0, 8, 4); -} else { - x_650 = x_649; -} -lean_ctor_set(x_650, 0, x_638); -lean_ctor_set(x_650, 1, x_639); -lean_ctor_set(x_650, 2, x_640); -lean_ctor_set(x_650, 3, x_641); -lean_ctor_set(x_650, 4, x_629); -lean_ctor_set(x_650, 5, x_645); -lean_ctor_set(x_650, 6, x_646); -lean_ctor_set(x_650, 7, x_647); -lean_ctor_set_uint8(x_650, sizeof(void*)*8, x_642); -lean_ctor_set_uint8(x_650, sizeof(void*)*8 + 1, x_643); -lean_ctor_set_uint8(x_650, sizeof(void*)*8 + 2, x_644); -lean_ctor_set_uint8(x_650, sizeof(void*)*8 + 3, x_648); -x_651 = l_Lean_Elab_Term_Do_ToCodeBlock_doForToCode(x_502, x_50, x_2, x_650, x_4, x_5, x_6, x_496, x_8, x_637); -lean_dec(x_502); -return x_651; -} -} -else -{ -lean_object* x_652; -lean_dec(x_509); -x_652 = l_Lean_Elab_Term_Do_ToCodeBlock_doUnlessToCode(x_502, x_50, x_2, x_3, x_4, x_5, x_6, x_496, x_8, x_500); -lean_dec(x_502); -return x_652; -} -} -else -{ -lean_object* x_653; -lean_dec(x_509); -x_653 = l_Lean_Elab_Term_Do_ToCodeBlock_doIfToCode(x_502, x_50, x_2, x_3, x_4, x_5, x_6, x_496, x_8, x_500); -return x_653; -} -} -else -{ -lean_object* x_654; -lean_dec(x_509); -x_654 = l_Lean_Elab_Term_Do_ToCodeBlock_doReassignArrowToCode(x_502, x_50, x_2, x_3, x_4, x_5, x_6, x_496, x_8, x_500); -lean_dec(x_502); -return x_654; -} -} -else -{ -lean_object* x_655; -lean_dec(x_509); -x_655 = l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode(x_502, x_50, x_2, x_3, x_4, x_5, x_6, x_496, x_8, x_500); -return x_655; -} -} -else -{ -lean_object* x_656; -lean_dec(x_509); -lean_inc(x_8); -lean_inc(x_496); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_656 = l_Lean_Elab_Term_Do_getDoReassignVars(x_502, x_3, x_4, x_5, x_6, x_496, x_8, x_500); -if (lean_obj_tag(x_656) == 0) -{ -lean_object* x_657; lean_object* x_658; lean_object* x_659; -x_657 = lean_ctor_get(x_656, 0); -lean_inc(x_657); -x_658 = lean_ctor_get(x_656, 1); -lean_inc(x_658); -lean_dec(x_656); -x_659 = l_Lean_Elab_Term_Do_ToCodeBlock_checkReassignable(x_657, x_2, x_3, x_4, x_5, x_6, x_496, x_8, x_658); -if (lean_obj_tag(x_659) == 0) -{ -lean_object* x_660; lean_object* x_661; -x_660 = lean_ctor_get(x_659, 1); -lean_inc(x_660); -lean_dec(x_659); -lean_inc(x_8); -lean_inc(x_496); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_661 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_50, x_2, x_3, x_4, x_5, x_6, x_496, x_8, x_660); -if (lean_obj_tag(x_661) == 0) -{ -lean_object* x_662; lean_object* x_663; lean_object* x_664; -x_662 = lean_ctor_get(x_661, 0); -lean_inc(x_662); -x_663 = lean_ctor_get(x_661, 1); -lean_inc(x_663); -lean_dec(x_661); -x_664 = l_Lean_Elab_Term_Do_mkReassignCore(x_657, x_502, x_662, x_3, x_4, x_5, x_6, x_496, x_8, x_663); -return x_664; -} -else -{ -lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; -lean_dec(x_657); -lean_dec(x_502); -lean_dec(x_496); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_665 = lean_ctor_get(x_661, 0); -lean_inc(x_665); -x_666 = lean_ctor_get(x_661, 1); -lean_inc(x_666); -if (lean_is_exclusive(x_661)) { - lean_ctor_release(x_661, 0); - lean_ctor_release(x_661, 1); - x_667 = x_661; -} else { - lean_dec_ref(x_661); - x_667 = lean_box(0); -} -if (lean_is_scalar(x_667)) { - x_668 = lean_alloc_ctor(1, 2, 0); -} else { - x_668 = x_667; -} -lean_ctor_set(x_668, 0, x_665); -lean_ctor_set(x_668, 1, x_666); -return x_668; -} -} -else -{ -lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; -lean_dec(x_657); -lean_dec(x_502); -lean_dec(x_496); -lean_dec(x_50); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_669 = lean_ctor_get(x_659, 0); -lean_inc(x_669); -x_670 = lean_ctor_get(x_659, 1); -lean_inc(x_670); -if (lean_is_exclusive(x_659)) { - lean_ctor_release(x_659, 0); - lean_ctor_release(x_659, 1); - x_671 = x_659; -} else { - lean_dec_ref(x_659); - x_671 = lean_box(0); -} -if (lean_is_scalar(x_671)) { - x_672 = lean_alloc_ctor(1, 2, 0); -} else { - x_672 = x_671; -} -lean_ctor_set(x_672, 0, x_669); -lean_ctor_set(x_672, 1, x_670); -return x_672; -} -} -else -{ -lean_object* x_673; lean_object* x_674; lean_object* x_675; lean_object* x_676; -lean_dec(x_502); -lean_dec(x_496); -lean_dec(x_50); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_673 = lean_ctor_get(x_656, 0); -lean_inc(x_673); -x_674 = lean_ctor_get(x_656, 1); -lean_inc(x_674); -if (lean_is_exclusive(x_656)) { - lean_ctor_release(x_656, 0); - lean_ctor_release(x_656, 1); - x_675 = x_656; -} else { - lean_dec_ref(x_656); - x_675 = lean_box(0); -} -if (lean_is_scalar(x_675)) { - x_676 = lean_alloc_ctor(1, 2, 0); -} else { - x_676 = x_675; -} -lean_ctor_set(x_676, 0, x_673); -lean_ctor_set(x_676, 1, x_674); -return x_676; -} -} -} -else -{ -lean_object* x_677; -lean_dec(x_509); -lean_inc(x_8); -lean_inc(x_496); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_677 = l_Lean_Elab_Term_Do_getDoLetRecVars(x_502, x_3, x_4, x_5, x_6, x_496, x_8, x_500); -if (lean_obj_tag(x_677) == 0) -{ -lean_object* x_678; lean_object* x_679; lean_object* x_680; -x_678 = lean_ctor_get(x_677, 0); -lean_inc(x_678); -x_679 = lean_ctor_get(x_677, 1); -lean_inc(x_679); -lean_dec(x_677); -x_680 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_50, x_2, x_3, x_4, x_5, x_6, x_496, x_8, x_679); -if (lean_obj_tag(x_680) == 0) -{ -lean_object* x_681; lean_object* x_682; lean_object* x_683; lean_object* x_684; lean_object* x_685; -x_681 = lean_ctor_get(x_680, 0); -lean_inc(x_681); -x_682 = lean_ctor_get(x_680, 1); -lean_inc(x_682); -if (lean_is_exclusive(x_680)) { - lean_ctor_release(x_680, 0); - lean_ctor_release(x_680, 1); - x_683 = x_680; -} else { - lean_dec_ref(x_680); - x_683 = lean_box(0); -} -x_684 = l_Lean_Elab_Term_Do_mkVarDeclCore(x_678, x_502, x_681); -if (lean_is_scalar(x_683)) { - x_685 = lean_alloc_ctor(0, 2, 0); -} else { - x_685 = x_683; -} -lean_ctor_set(x_685, 0, x_684); -lean_ctor_set(x_685, 1, x_682); -return x_685; -} -else -{ -lean_object* x_686; lean_object* x_687; lean_object* x_688; lean_object* x_689; -lean_dec(x_678); -lean_dec(x_502); -x_686 = lean_ctor_get(x_680, 0); -lean_inc(x_686); -x_687 = lean_ctor_get(x_680, 1); -lean_inc(x_687); -if (lean_is_exclusive(x_680)) { - lean_ctor_release(x_680, 0); - lean_ctor_release(x_680, 1); - x_688 = x_680; -} else { - lean_dec_ref(x_680); - x_688 = lean_box(0); -} -if (lean_is_scalar(x_688)) { - x_689 = lean_alloc_ctor(1, 2, 0); -} else { - x_689 = x_688; -} -lean_ctor_set(x_689, 0, x_686); -lean_ctor_set(x_689, 1, x_687); -return x_689; -} -} -else -{ -lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; -lean_dec(x_502); -lean_dec(x_496); -lean_dec(x_50); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_690 = lean_ctor_get(x_677, 0); -lean_inc(x_690); -x_691 = lean_ctor_get(x_677, 1); -lean_inc(x_691); -if (lean_is_exclusive(x_677)) { - lean_ctor_release(x_677, 0); - lean_ctor_release(x_677, 1); - x_692 = x_677; -} else { - lean_dec_ref(x_677); - x_692 = lean_box(0); -} -if (lean_is_scalar(x_692)) { - x_693 = lean_alloc_ctor(1, 2, 0); -} else { - x_693 = x_692; -} -lean_ctor_set(x_693, 0, x_690); -lean_ctor_set(x_693, 1, x_691); -return x_693; -} -} -} -else -{ -lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; -lean_dec(x_509); -x_694 = l_Lean_Elab_Term_Do_getDoHaveVar(x_502); -x_695 = l_Lean_mkOptionalNode___closed__2; -x_696 = lean_array_push(x_695, x_694); -x_697 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_50, x_2, x_3, x_4, x_5, x_6, x_496, x_8, x_500); -if (lean_obj_tag(x_697) == 0) -{ -lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; -x_698 = lean_ctor_get(x_697, 0); -lean_inc(x_698); -x_699 = lean_ctor_get(x_697, 1); -lean_inc(x_699); -if (lean_is_exclusive(x_697)) { - lean_ctor_release(x_697, 0); - lean_ctor_release(x_697, 1); - x_700 = x_697; -} else { - lean_dec_ref(x_697); - x_700 = lean_box(0); -} -x_701 = l_Lean_Elab_Term_Do_mkVarDeclCore(x_696, x_502, x_698); -if (lean_is_scalar(x_700)) { - x_702 = lean_alloc_ctor(0, 2, 0); -} else { - x_702 = x_700; -} -lean_ctor_set(x_702, 0, x_701); -lean_ctor_set(x_702, 1, x_699); -return x_702; -} -else -{ -lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; -lean_dec(x_696); -lean_dec(x_502); -x_703 = lean_ctor_get(x_697, 0); -lean_inc(x_703); -x_704 = lean_ctor_get(x_697, 1); -lean_inc(x_704); -if (lean_is_exclusive(x_697)) { - lean_ctor_release(x_697, 0); - lean_ctor_release(x_697, 1); - x_705 = x_697; -} else { - lean_dec_ref(x_697); - x_705 = lean_box(0); -} -if (lean_is_scalar(x_705)) { - x_706 = lean_alloc_ctor(1, 2, 0); -} else { - x_706 = x_705; -} -lean_ctor_set(x_706, 0, x_703); -lean_ctor_set(x_706, 1, x_704); -return x_706; -} -} -} -else -{ -lean_object* x_707; -lean_dec(x_509); -lean_inc(x_8); -lean_inc(x_496); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_707 = l_Lean_Elab_Term_Do_getDoLetVars(x_502, x_3, x_4, x_5, x_6, x_496, x_8, x_500); -if (lean_obj_tag(x_707) == 0) -{ -lean_object* x_708; lean_object* x_709; uint8_t x_710; -x_708 = lean_ctor_get(x_707, 0); -lean_inc(x_708); -x_709 = lean_ctor_get(x_707, 1); -lean_inc(x_709); -lean_dec(x_707); -lean_inc(x_502); -x_710 = l_Lean_Elab_Term_Do_isMutableLet(x_502); -if (x_710 == 0) -{ -lean_object* x_711; -x_711 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_50, x_2, x_3, x_4, x_5, x_6, x_496, x_8, x_709); -if (lean_obj_tag(x_711) == 0) -{ -lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; -x_712 = lean_ctor_get(x_711, 0); -lean_inc(x_712); -x_713 = lean_ctor_get(x_711, 1); -lean_inc(x_713); -if (lean_is_exclusive(x_711)) { - lean_ctor_release(x_711, 0); - lean_ctor_release(x_711, 1); - x_714 = x_711; -} else { - lean_dec_ref(x_711); - x_714 = lean_box(0); -} -x_715 = l_Lean_Elab_Term_Do_mkVarDeclCore(x_708, x_502, x_712); -if (lean_is_scalar(x_714)) { - x_716 = lean_alloc_ctor(0, 2, 0); -} else { - x_716 = x_714; -} -lean_ctor_set(x_716, 0, x_715); -lean_ctor_set(x_716, 1, x_713); -return x_716; -} -else -{ -lean_object* x_717; lean_object* x_718; lean_object* x_719; lean_object* x_720; -lean_dec(x_708); -lean_dec(x_502); -x_717 = lean_ctor_get(x_711, 0); -lean_inc(x_717); -x_718 = lean_ctor_get(x_711, 1); -lean_inc(x_718); -if (lean_is_exclusive(x_711)) { - lean_ctor_release(x_711, 0); - lean_ctor_release(x_711, 1); - x_719 = x_711; -} else { - lean_dec_ref(x_711); - x_719 = lean_box(0); -} -if (lean_is_scalar(x_719)) { - x_720 = lean_alloc_ctor(1, 2, 0); -} else { - x_720 = x_719; -} -lean_ctor_set(x_720, 0, x_717); -lean_ctor_set(x_720, 1, x_718); -return x_720; -} -} -else -{ -lean_object* x_721; lean_object* x_722; lean_object* x_723; uint8_t x_724; lean_object* x_725; lean_object* x_726; lean_object* x_727; lean_object* x_728; -x_721 = lean_ctor_get(x_2, 0); -lean_inc(x_721); -x_722 = lean_ctor_get(x_2, 1); -lean_inc(x_722); -x_723 = lean_ctor_get(x_2, 2); -lean_inc(x_723); -x_724 = lean_ctor_get_uint8(x_2, sizeof(void*)*3); -if (lean_is_exclusive(x_2)) { - lean_ctor_release(x_2, 0); - lean_ctor_release(x_2, 1); - lean_ctor_release(x_2, 2); - x_725 = x_2; -} else { - lean_dec_ref(x_2); - x_725 = lean_box(0); -} -x_726 = l_Lean_Elab_Term_Do_insertVars(x_723, x_708); -if (lean_is_scalar(x_725)) { - x_727 = lean_alloc_ctor(0, 3, 1); -} else { - x_727 = x_725; -} -lean_ctor_set(x_727, 0, x_721); -lean_ctor_set(x_727, 1, x_722); -lean_ctor_set(x_727, 2, x_726); -lean_ctor_set_uint8(x_727, sizeof(void*)*3, x_724); -x_728 = l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(x_50, x_727, x_3, x_4, x_5, x_6, x_496, x_8, x_709); -if (lean_obj_tag(x_728) == 0) -{ -lean_object* x_729; lean_object* x_730; lean_object* x_731; lean_object* x_732; lean_object* x_733; -x_729 = lean_ctor_get(x_728, 0); -lean_inc(x_729); -x_730 = lean_ctor_get(x_728, 1); -lean_inc(x_730); -if (lean_is_exclusive(x_728)) { - lean_ctor_release(x_728, 0); - lean_ctor_release(x_728, 1); - x_731 = x_728; -} else { - lean_dec_ref(x_728); - x_731 = lean_box(0); -} -x_732 = l_Lean_Elab_Term_Do_mkVarDeclCore(x_708, x_502, x_729); -if (lean_is_scalar(x_731)) { - x_733 = lean_alloc_ctor(0, 2, 0); -} else { - x_733 = x_731; -} -lean_ctor_set(x_733, 0, x_732); -lean_ctor_set(x_733, 1, x_730); -return x_733; -} -else -{ -lean_object* x_734; lean_object* x_735; lean_object* x_736; lean_object* x_737; -lean_dec(x_708); -lean_dec(x_502); -x_734 = lean_ctor_get(x_728, 0); -lean_inc(x_734); -x_735 = lean_ctor_get(x_728, 1); -lean_inc(x_735); -if (lean_is_exclusive(x_728)) { - lean_ctor_release(x_728, 0); - lean_ctor_release(x_728, 1); - x_736 = x_728; -} else { - lean_dec_ref(x_728); - x_736 = lean_box(0); -} -if (lean_is_scalar(x_736)) { - x_737 = lean_alloc_ctor(1, 2, 0); -} else { - x_737 = x_736; -} -lean_ctor_set(x_737, 0, x_734); -lean_ctor_set(x_737, 1, x_735); -return x_737; -} -} -} -else -{ -lean_object* x_738; lean_object* x_739; lean_object* x_740; lean_object* x_741; -lean_dec(x_502); -lean_dec(x_496); -lean_dec(x_50); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_738 = lean_ctor_get(x_707, 0); -lean_inc(x_738); -x_739 = lean_ctor_get(x_707, 1); -lean_inc(x_739); -if (lean_is_exclusive(x_707)) { - lean_ctor_release(x_707, 0); - lean_ctor_release(x_707, 1); - x_740 = x_707; -} else { - lean_dec_ref(x_707); - x_740 = lean_box(0); -} -if (lean_is_scalar(x_740)) { - x_741 = lean_alloc_ctor(1, 2, 0); -} else { - x_741 = x_740; -} -lean_ctor_set(x_741, 0, x_738); -lean_ctor_set(x_741, 1, x_739); -return x_741; -} -} -} -} -} -block_823: -{ -if (lean_obj_tag(x_790) == 0) -{ -lean_object* x_792; lean_object* x_793; lean_object* x_794; lean_object* x_795; lean_object* x_796; lean_object* x_797; lean_object* x_798; lean_object* x_799; lean_object* x_800; lean_object* x_801; lean_object* x_802; lean_object* x_803; lean_object* x_804; lean_object* x_805; lean_object* x_806; lean_object* x_807; lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; lean_object* x_812; lean_object* x_813; lean_object* x_814; lean_object* x_815; lean_object* x_816; lean_object* x_817; lean_object* x_818; lean_object* x_819; -x_792 = lean_st_ref_get(x_8, x_791); -x_793 = lean_ctor_get(x_792, 0); -lean_inc(x_793); -x_794 = lean_ctor_get(x_792, 1); -lean_inc(x_794); -lean_dec(x_792); -x_795 = lean_ctor_get(x_793, 0); -lean_inc(x_795); -lean_dec(x_793); -x_796 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_496, x_8, x_794); -x_797 = lean_ctor_get(x_796, 0); -lean_inc(x_797); -x_798 = lean_ctor_get(x_796, 1); -lean_inc(x_798); -lean_dec(x_796); -x_799 = lean_st_ref_get(x_8, x_798); -x_800 = lean_ctor_get(x_799, 0); -lean_inc(x_800); -x_801 = lean_ctor_get(x_799, 1); -lean_inc(x_801); -lean_dec(x_799); -x_802 = lean_ctor_get(x_800, 1); -lean_inc(x_802); -lean_dec(x_800); -lean_inc(x_795); -x_803 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); -lean_closure_set(x_803, 0, x_795); -x_804 = x_803; -x_805 = lean_environment_main_module(x_795); -lean_inc(x_495); -lean_inc(x_489); -lean_inc(x_488); -x_806 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_806, 0, x_804); -lean_ctor_set(x_806, 1, x_805); -lean_ctor_set(x_806, 2, x_797); -lean_ctor_set(x_806, 3, x_488); -lean_ctor_set(x_806, 4, x_489); -lean_ctor_set(x_806, 5, x_495); -lean_inc(x_49); -x_807 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f(x_49, x_806, x_802); -x_808 = lean_ctor_get(x_807, 0); -lean_inc(x_808); -x_809 = lean_ctor_get(x_807, 1); -lean_inc(x_809); -lean_dec(x_807); -x_810 = lean_st_ref_take(x_8, x_801); -x_811 = lean_ctor_get(x_810, 0); -lean_inc(x_811); -x_812 = lean_ctor_get(x_810, 1); -lean_inc(x_812); -lean_dec(x_810); -x_813 = lean_ctor_get(x_811, 0); -lean_inc(x_813); -x_814 = lean_ctor_get(x_811, 2); -lean_inc(x_814); -x_815 = lean_ctor_get(x_811, 3); -lean_inc(x_815); -if (lean_is_exclusive(x_811)) { - lean_ctor_release(x_811, 0); - lean_ctor_release(x_811, 1); - lean_ctor_release(x_811, 2); - lean_ctor_release(x_811, 3); - x_816 = x_811; -} else { - lean_dec_ref(x_811); - x_816 = lean_box(0); -} -if (lean_is_scalar(x_816)) { - x_817 = lean_alloc_ctor(0, 4, 0); -} else { - x_817 = x_816; -} -lean_ctor_set(x_817, 0, x_813); -lean_ctor_set(x_817, 1, x_809); -lean_ctor_set(x_817, 2, x_814); -lean_ctor_set(x_817, 3, x_815); -x_818 = lean_st_ref_set(x_8, x_817, x_812); -x_819 = lean_ctor_get(x_818, 1); -lean_inc(x_819); -lean_dec(x_818); -x_497 = x_808; -x_498 = x_819; -goto block_789; -} -else -{ -lean_object* x_820; lean_object* x_821; -lean_dec(x_495); -lean_dec(x_489); -lean_dec(x_488); -lean_dec(x_51); -lean_dec(x_49); -x_820 = lean_ctor_get(x_790, 0); -lean_inc(x_820); -lean_dec(x_790); -x_821 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_821, 0, x_820); -lean_ctor_set(x_821, 1, x_50); -x_1 = x_821; -x_7 = x_496; -x_9 = x_791; -goto _start; -} +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; } } } @@ -62403,6 +63057,31 @@ lean_dec(x_1); return x_8; } } +lean_object* l_Lean_throwError___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__10___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_throwError___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__10(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, 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_10; +} +} +lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___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_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___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_4); +lean_dec(x_1); +return x_13; +} +} lean_object* l_Lean_throwError___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___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) { _start: { @@ -62920,7 +63599,7 @@ lean_ctor_set(x_26, 1, x_25); lean_ctor_set(x_26, 2, x_23); lean_ctor_set(x_26, 3, x_24); x_27 = lean_array_push(x_21, x_26); -x_28 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; +x_28 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); @@ -63588,7 +64267,7 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Do___hyg_28396_(lean_object* x_1) { +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Do___hyg_28723_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -64390,6 +65069,8 @@ l_Lean_Elab_Term_Do_ToCodeBlock_ensureEOS___closed__1 = _init_l_Lean_Elab_Term_D lean_mark_persistent(l_Lean_Elab_Term_Do_ToCodeBlock_ensureEOS___closed__1); l_Lean_Elab_Term_Do_ToCodeBlock_ensureEOS___closed__2 = _init_l_Lean_Elab_Term_Do_ToCodeBlock_ensureEOS___closed__2(); lean_mark_persistent(l_Lean_Elab_Term_Do_ToCodeBlock_ensureEOS___closed__2); +l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___closed__1 = _init_l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___closed__1); l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___boxed__const__1 = _init_l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___boxed__const__1(); lean_mark_persistent(l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___boxed__const__1); l_Lean_Elab_Term_Do_ToCodeBlock_checkLetArrowRHS___closed__1 = _init_l_Lean_Elab_Term_Do_ToCodeBlock_checkLetArrowRHS___closed__1(); @@ -64402,10 +65083,12 @@ l_Lean_Elab_Term_Do_ToCodeBlock_checkLetArrowRHS___closed__4 = _init_l_Lean_Elab lean_mark_persistent(l_Lean_Elab_Term_Do_ToCodeBlock_checkLetArrowRHS___closed__4); l_Lean_Elab_Term_Do_ToCodeBlock_doReturnToCode___closed__1 = _init_l_Lean_Elab_Term_Do_ToCodeBlock_doReturnToCode___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_Do_ToCodeBlock_doReturnToCode___closed__1); -l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___closed__1 = _init_l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___closed__1(); -lean_mark_persistent(l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___closed__1); -l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___closed__2 = _init_l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___closed__2(); -lean_mark_persistent(l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___closed__2); +l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___lambda__1___closed__1 = _init_l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___lambda__1___closed__1); +l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___lambda__1___closed__2 = _init_l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___lambda__1___closed__2); +l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___lambda__1___closed__3 = _init_l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___lambda__1___closed__3(); +lean_mark_persistent(l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___lambda__1___closed__3); l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__3___closed__1 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__3___closed__1(); lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__3___closed__1); l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__3___closed__2 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__3___closed__2(); @@ -64575,7 +65258,7 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Do_elabDo___closed__1); res = l___regBuiltin_Lean_Elab_Term_Do_elabDo(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_Do___hyg_28396_(lean_io_mk_world()); +res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Do___hyg_28723_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l___regBuiltin_Lean_Elab_Term_expandTermFor___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_expandTermFor___closed__1(); diff --git a/stage0/stdlib/Lean/Elab/Frontend.c b/stage0/stdlib/Lean/Elab/Frontend.c index e5b26fc1c5..98f3f3f7ba 100644 --- a/stage0/stdlib/Lean/Elab/Frontend.c +++ b/stage0/stdlib/Lean/Elab/Frontend.c @@ -13,17 +13,17 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_737____closed__4; +lean_object* l_Lean_Elab_Frontend_initFn____x40_Lean_Elab_Frontend___hyg_423_(lean_object*); lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); lean_object* l_List_head_x21___at_Lean_Elab_Command_instMonadOptionsCommandElabM___spec__1(lean_object*); lean_object* l_Lean_Elab_Frontend_runCommandElabM_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_IO_processCommands_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Frontend_elabCommandAtFrontend___lambda__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); +lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_817____closed__3; lean_object* l_Lean_Parser_parseHeader(lean_object*, lean_object*); lean_object* l_Lean_Elab_Frontend_State_commands___default; lean_object* l_Lean_Elab_Frontend_runCommandElabM___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_737____closed__1; lean_object* l_Lean_Elab_Frontend_runCommandElabM_match__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_IO_processCommands(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_registerTraceClass___closed__1; @@ -34,6 +34,7 @@ lean_object* lean_environment_set_main_module(lean_object*, lean_object*); extern lean_object* l_Array_empty___closed__1; lean_object* l_Lean_Elab_Frontend_setCommandState___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*); +lean_object* l_Std_PersistentArray_append___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Frontend_getCommandState___rarg___boxed(lean_object*, lean_object*); lean_object* lean_st_ref_get(lean_object*, lean_object*); extern lean_object* l_Lean_instInhabitedParserDescr___closed__1; @@ -47,33 +48,42 @@ lean_object* lean_string_append(lean_object*, lean_object*); lean_object* l_Lean_Elab_Frontend_processCommand_match__1(lean_object*); lean_object* lean_profileit(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_enableInfoTree___at_Lean_Elab_Frontend_elabCommandAtFrontend___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_737____closed__2; lean_object* l_Lean_Elab_processHeader(lean_object*, lean_object*, lean_object*, lean_object*, uint32_t, lean_object*); extern lean_object* l_Lean_Elab_parseImports___closed__1; lean_object* l_Lean_Elab_runFrontend_match__1___rarg(lean_object*, lean_object*); lean_object* l_List_forIn_loop___at_Lean_Elab_runFrontend___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageLog_toList(lean_object*); lean_object* l_Lean_Elab_runFrontend_match__1(lean_object*); -lean_object* l_Lean_Elab_Frontend_processCommand___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_737____closed__3; +lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_817____closed__4; +lean_object* l_Lean_Elab_Frontend_processCommand___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Frontend_processCommand___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Frontend_showPartialSyntaxErrors; lean_object* l_Lean_MessageData_toString(lean_object*, lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); +lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_817____closed__1; lean_object* l_Lean_Elab_Frontend_getInputContext___boxed(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_KVMap_getBool(lean_object*, lean_object*, uint8_t); lean_object* l_Lean_Elab_Frontend_setParserState___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_817____closed__2; lean_object* l_IO_print___at_IO_println___spec__1(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Frontend_initFn____x40_Lean_Elab_Frontend___hyg_423____closed__3; lean_object* l_Lean_Elab_Command_mkState(lean_object*, lean_object*, lean_object*); lean_object* l_List_forIn_loop___at_Lean_Elab_runFrontend___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Option_get___at_Lean_ppExpr___spec__1(lean_object*, lean_object*); lean_object* lean_st_mk_ref(lean_object*, lean_object*); +extern lean_object* l_Lean_Elab_autoBoundImplicitLocal___closed__1; +lean_object* l_Lean_Elab_Frontend_processCommand___closed__3; lean_object* l_Lean_Elab_Frontend_elabCommandAtFrontend(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_getPrintMessageEndPos___boxed(lean_object*); lean_object* l_Lean_Elab_Frontend_processCommand___closed__1; extern lean_object* l_Lean_Parser_instInhabitedModuleParserState___closed__1; -lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_737_(lean_object*); +lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_817_(lean_object*); lean_object* l_Lean_Elab_Frontend_updateCmdPos(lean_object*); extern lean_object* l_Lean_firstFrontendMacroScope; lean_object* l_Lean_Elab_Command_elabCommand(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Frontend_processCommand___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Frontend_setCommandState(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Frontend_initFn____x40_Lean_Elab_Frontend___hyg_423____closed__4; lean_object* l_Lean_Elab_Frontend_processCommand___closed__2; lean_object* l_Lean_Elab_Frontend_processCommand(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Frontend_updateCmdPos___rarg___boxed(lean_object*, lean_object*); @@ -86,7 +96,7 @@ lean_object* l_Lean_Elab_Frontend_getInputContext(lean_object*, lean_object*, le lean_object* l_Lean_Elab_Frontend_getCommandState(lean_object*); lean_object* l_Lean_Elab_Frontend_getParserState(lean_object*); lean_object* l_Lean_Elab_Frontend_getParserState___rarg(lean_object*, lean_object*); -lean_object* l_Lean_Elab_Frontend_processCommand___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Frontend_processCommand___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_register_option(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Frontend_runCommandElabM_match__2(lean_object*); lean_object* l_Lean_Elab_IO_processCommands_match__1(lean_object*); @@ -95,10 +105,13 @@ lean_object* l_Lean_Elab_Frontend_setParserState(lean_object*, lean_object*, lea lean_object* l_Lean_Elab_enableInfoTree___at_Lean_Elab_Frontend_elabCommandAtFrontend___spec__1(uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_profileitIOUnsafe___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Frontend_updateCmdPos___boxed(lean_object*); +lean_object* l_Lean_Option_register___at_Lean_Elab_initFn____x40_Lean_Elab_AutoBound___hyg_4____spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Frontend_getCommandState___rarg(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Frontend_initFn____x40_Lean_Elab_Frontend___hyg_423____closed__1; uint8_t l_Lean_Parser_isEOI(lean_object*); lean_object* l_Lean_Elab_Frontend_setMessages(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Frontend_setMessages___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Frontend_initFn____x40_Lean_Elab_Frontend___hyg_423____closed__2; lean_object* l_Lean_Elab_Frontend_runCommandElabM_match__1(lean_object*); uint8_t l_Std_PersistentArray_anyM___at_Lean_MessageLog_hasErrors___spec__1(lean_object*); uint8_t l_Lean_Elab_getPrintMessageEndPos(lean_object*); @@ -1481,6 +1494,57 @@ lean_dec(x_2); return x_4; } } +static lean_object* _init_l_Lean_Elab_Frontend_initFn____x40_Lean_Elab_Frontend___hyg_423____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("showPartialSyntaxErrors"); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Frontend_initFn____x40_Lean_Elab_Frontend___hyg_423____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_Frontend_initFn____x40_Lean_Elab_Frontend___hyg_423____closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Frontend_initFn____x40_Lean_Elab_Frontend___hyg_423____closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("show elaboration errors from partial syntax tree (i.e. after parser recovery)"); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Frontend_initFn____x40_Lean_Elab_Frontend___hyg_423____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 = 0; +x_2 = l_Lean_instInhabitedParserDescr___closed__1; +x_3 = l_Lean_Elab_Frontend_initFn____x40_Lean_Elab_Frontend___hyg_423____closed__3; +x_4 = lean_box(x_1); +x_5 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_5, 0, x_4); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_3); +return x_5; +} +} +lean_object* l_Lean_Elab_Frontend_initFn____x40_Lean_Elab_Frontend___hyg_423_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_2 = l_Lean_Elab_Frontend_initFn____x40_Lean_Elab_Frontend___hyg_423____closed__2; +x_3 = l_Lean_Elab_Frontend_initFn____x40_Lean_Elab_Frontend___hyg_423____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; +} +} lean_object* l_Lean_Elab_Frontend_processCommand_match__1___rarg(lean_object* x_1, lean_object* x_2) { _start: { @@ -1524,14 +1588,27 @@ x_2 = lean_alloc_closure((void*)(l_Lean_profileitM___at_Lean_Elab_Frontend_proce return x_2; } } -lean_object* l_Lean_Elab_Frontend_processCommand___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Lean_Elab_Frontend_processCommand___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { -lean_object* x_6; -x_6 = l_Lean_Parser_parseCommand_parse(x_1, x_2, x_3, x_4); +lean_object* x_5; lean_object* x_6; +x_5 = l_Std_PersistentArray_empty___closed__1; +x_6 = l_Lean_Parser_parseCommand_parse(x_1, x_2, x_3, x_5); return x_6; } } +lean_object* l_Lean_Elab_Frontend_processCommand___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +uint8_t x_5; lean_object* x_6; lean_object* x_7; +x_5 = 0; +x_6 = lean_box(x_5); +x_7 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_7, 0, x_6); +lean_ctor_set(x_7, 1, x_4); +return x_7; +} +} static lean_object* _init_l_Lean_Elab_Frontend_processCommand___closed__1() { _start: { @@ -1548,6 +1625,14 @@ x_1 = lean_mk_string("elaboration"); return x_1; } } +static lean_object* _init_l_Lean_Elab_Frontend_processCommand___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Frontend_processCommand___lambda__2___boxed), 4, 0); +return x_1; +} +} lean_object* l_Lean_Elab_Frontend_processCommand(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -1591,11 +1676,10 @@ lean_ctor_set(x_19, 1, x_16); lean_ctor_set(x_19, 2, x_17); lean_ctor_set(x_19, 3, x_18); lean_inc(x_1); -x_20 = lean_alloc_closure((void*)(l_Lean_Elab_Frontend_processCommand___lambda__1___boxed), 5, 4); +x_20 = lean_alloc_closure((void*)(l_Lean_Elab_Frontend_processCommand___lambda__1___boxed), 4, 3); lean_closure_set(x_20, 0, x_1); lean_closure_set(x_20, 1, x_19); lean_closure_set(x_20, 2, x_10); -lean_closure_set(x_20, 3, x_13); x_21 = l_Lean_Elab_Frontend_processCommand___closed__1; x_22 = lean_profileit(x_21, x_16, x_20); x_23 = lean_ctor_get(x_22, 1); @@ -1617,7 +1701,7 @@ lean_dec(x_27); x_30 = !lean_is_exclusive(x_28); if (x_30 == 0) { -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; uint8_t x_38; +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; uint8_t x_39; x_31 = lean_ctor_get(x_28, 3); lean_inc(x_24); x_32 = lean_array_push(x_31, x_24); @@ -1630,347 +1714,443 @@ x_35 = l_Lean_Elab_Frontend_setParserState(x_25, x_1, x_2, x_34); x_36 = lean_ctor_get(x_35, 1); lean_inc(x_36); lean_dec(x_35); -x_37 = l_Lean_Elab_Frontend_setMessages(x_26, x_1, x_2, x_36); -x_38 = !lean_is_exclusive(x_37); -if (x_38 == 0) +x_37 = l_Std_PersistentArray_append___rarg(x_13, x_26); +lean_inc(x_37); +x_38 = l_Lean_Elab_Frontend_setMessages(x_37, x_1, x_2, x_36); +x_39 = !lean_is_exclusive(x_38); +if (x_39 == 0) { -lean_object* x_39; lean_object* x_40; uint8_t x_41; -x_39 = lean_ctor_get(x_37, 1); -x_40 = lean_ctor_get(x_37, 0); -lean_dec(x_40); +lean_object* x_40; lean_object* x_41; uint8_t x_42; +x_40 = lean_ctor_get(x_38, 1); +x_41 = lean_ctor_get(x_38, 0); +lean_dec(x_41); lean_inc(x_24); -x_41 = l_Lean_Parser_isEOI(x_24); -if (x_41 == 0) -{ -uint8_t x_42; -lean_inc(x_24); -x_42 = l_Lean_Parser_isExitCommand(x_24); +x_42 = l_Lean_Parser_isEOI(x_24); if (x_42 == 0) { -lean_object* x_43; lean_object* x_44; lean_object* x_45; -lean_free_object(x_37); -x_43 = lean_alloc_closure((void*)(l_Lean_Elab_Frontend_elabCommandAtFrontend___boxed), 4, 1); -lean_closure_set(x_43, 0, x_24); -x_44 = l_Lean_Elab_Frontend_processCommand___closed__2; -x_45 = l_Lean_profileitM___at_Lean_Elab_Frontend_processCommand___spec__1___rarg(x_44, x_16, x_43, x_1, x_2, x_39); +uint8_t x_43; +lean_inc(x_24); +x_43 = l_Lean_Parser_isExitCommand(x_24); +if (x_43 == 0) +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; +lean_free_object(x_38); +x_44 = lean_alloc_closure((void*)(l_Lean_Elab_Frontend_elabCommandAtFrontend___boxed), 4, 1); +lean_closure_set(x_44, 0, x_24); +x_45 = l_Lean_Elab_Frontend_processCommand___closed__2; +lean_inc(x_2); +lean_inc(x_1); +x_46 = l_Lean_profileitM___at_Lean_Elab_Frontend_processCommand___spec__1___rarg(x_45, x_16, x_44, x_1, x_2, x_40); +if (lean_obj_tag(x_46) == 0) +{ +lean_object* x_47; lean_object* x_48; uint8_t x_49; +x_47 = lean_ctor_get(x_46, 1); +lean_inc(x_47); +lean_dec(x_46); +x_48 = l_Lean_Elab_Frontend_processCommand___closed__3; +x_49 = l_Std_PersistentArray_anyM___at_Lean_MessageLog_hasErrors___spec__1(x_26); +lean_dec(x_26); +if (x_49 == 0) +{ +lean_object* x_50; lean_object* x_51; +lean_dec(x_37); lean_dec(x_16); -if (lean_obj_tag(x_45) == 0) -{ -uint8_t x_46; -x_46 = !lean_is_exclusive(x_45); -if (x_46 == 0) -{ -lean_object* x_47; uint8_t x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_45, 0); -lean_dec(x_47); -x_48 = 0; -x_49 = lean_box(x_48); -lean_ctor_set(x_45, 0, x_49); -return x_45; +x_50 = lean_box(0); +x_51 = lean_apply_4(x_48, x_50, x_1, x_2, x_47); +return x_51; } else { -lean_object* x_50; uint8_t x_51; lean_object* x_52; lean_object* x_53; -x_50 = lean_ctor_get(x_45, 1); -lean_inc(x_50); -lean_dec(x_45); -x_51 = 0; -x_52 = lean_box(x_51); -x_53 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_53, 0, x_52); -lean_ctor_set(x_53, 1, x_50); -return x_53; -} -} -else +lean_object* x_52; uint8_t x_53; +x_52 = l_Lean_Elab_Frontend_showPartialSyntaxErrors; +x_53 = l_Lean_Option_get___at_Lean_ppExpr___spec__1(x_16, x_52); +lean_dec(x_16); +if (x_53 == 0) { -uint8_t x_54; -x_54 = !lean_is_exclusive(x_45); -if (x_54 == 0) -{ -return x_45; -} -else -{ -lean_object* x_55; lean_object* x_56; lean_object* x_57; -x_55 = lean_ctor_get(x_45, 0); -x_56 = lean_ctor_get(x_45, 1); -lean_inc(x_56); +lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_54 = l_Lean_Elab_Frontend_setMessages(x_37, x_1, x_2, x_47); +x_55 = lean_ctor_get(x_54, 0); lean_inc(x_55); -lean_dec(x_45); -x_57 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_57, 0, x_55); -lean_ctor_set(x_57, 1, x_56); +x_56 = lean_ctor_get(x_54, 1); +lean_inc(x_56); +lean_dec(x_54); +x_57 = lean_apply_4(x_48, x_55, x_1, x_2, x_56); return x_57; } -} -} else { -uint8_t x_58; lean_object* x_59; -lean_dec(x_24); -lean_dec(x_16); -lean_dec(x_2); -lean_dec(x_1); -x_58 = 1; -x_59 = lean_box(x_58); -lean_ctor_set(x_37, 0, x_59); -return x_37; -} -} -else -{ -uint8_t x_60; lean_object* x_61; -lean_dec(x_24); -lean_dec(x_16); -lean_dec(x_2); -lean_dec(x_1); -x_60 = 1; -x_61 = lean_box(x_60); -lean_ctor_set(x_37, 0, x_61); -return x_37; -} -} -else -{ -lean_object* x_62; uint8_t x_63; -x_62 = lean_ctor_get(x_37, 1); -lean_inc(x_62); +lean_object* x_58; lean_object* x_59; lean_dec(x_37); -lean_inc(x_24); -x_63 = l_Lean_Parser_isEOI(x_24); -if (x_63 == 0) +x_58 = lean_box(0); +x_59 = lean_apply_4(x_48, x_58, x_1, x_2, x_47); +return x_59; +} +} +} +else { -uint8_t x_64; -lean_inc(x_24); -x_64 = l_Lean_Parser_isExitCommand(x_24); -if (x_64 == 0) -{ -lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_65 = lean_alloc_closure((void*)(l_Lean_Elab_Frontend_elabCommandAtFrontend___boxed), 4, 1); -lean_closure_set(x_65, 0, x_24); -x_66 = l_Lean_Elab_Frontend_processCommand___closed__2; -x_67 = l_Lean_profileitM___at_Lean_Elab_Frontend_processCommand___spec__1___rarg(x_66, x_16, x_65, x_1, x_2, x_62); +uint8_t x_60; +lean_dec(x_37); +lean_dec(x_26); lean_dec(x_16); -if (lean_obj_tag(x_67) == 0) +lean_dec(x_2); +lean_dec(x_1); +x_60 = !lean_is_exclusive(x_46); +if (x_60 == 0) { -lean_object* x_68; lean_object* x_69; uint8_t x_70; lean_object* x_71; lean_object* x_72; -x_68 = lean_ctor_get(x_67, 1); +return x_46; +} +else +{ +lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_61 = lean_ctor_get(x_46, 0); +x_62 = lean_ctor_get(x_46, 1); +lean_inc(x_62); +lean_inc(x_61); +lean_dec(x_46); +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 +{ +uint8_t x_64; lean_object* x_65; +lean_dec(x_37); +lean_dec(x_26); +lean_dec(x_24); +lean_dec(x_16); +lean_dec(x_2); +lean_dec(x_1); +x_64 = 1; +x_65 = lean_box(x_64); +lean_ctor_set(x_38, 0, x_65); +return x_38; +} +} +else +{ +uint8_t x_66; lean_object* x_67; +lean_dec(x_37); +lean_dec(x_26); +lean_dec(x_24); +lean_dec(x_16); +lean_dec(x_2); +lean_dec(x_1); +x_66 = 1; +x_67 = lean_box(x_66); +lean_ctor_set(x_38, 0, x_67); +return x_38; +} +} +else +{ +lean_object* x_68; uint8_t x_69; +x_68 = lean_ctor_get(x_38, 1); lean_inc(x_68); -if (lean_is_exclusive(x_67)) { - lean_ctor_release(x_67, 0); - lean_ctor_release(x_67, 1); - x_69 = x_67; -} else { - lean_dec_ref(x_67); - x_69 = lean_box(0); -} -x_70 = 0; -x_71 = lean_box(x_70); -if (lean_is_scalar(x_69)) { - x_72 = lean_alloc_ctor(0, 2, 0); -} else { - x_72 = x_69; -} -lean_ctor_set(x_72, 0, x_71); -lean_ctor_set(x_72, 1, x_68); -return x_72; -} -else +lean_dec(x_38); +lean_inc(x_24); +x_69 = l_Lean_Parser_isEOI(x_24); +if (x_69 == 0) { -lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; -x_73 = lean_ctor_get(x_67, 0); -lean_inc(x_73); -x_74 = lean_ctor_get(x_67, 1); +uint8_t x_70; +lean_inc(x_24); +x_70 = l_Lean_Parser_isExitCommand(x_24); +if (x_70 == 0) +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; +x_71 = lean_alloc_closure((void*)(l_Lean_Elab_Frontend_elabCommandAtFrontend___boxed), 4, 1); +lean_closure_set(x_71, 0, x_24); +x_72 = l_Lean_Elab_Frontend_processCommand___closed__2; +lean_inc(x_2); +lean_inc(x_1); +x_73 = l_Lean_profileitM___at_Lean_Elab_Frontend_processCommand___spec__1___rarg(x_72, x_16, x_71, x_1, x_2, x_68); +if (lean_obj_tag(x_73) == 0) +{ +lean_object* x_74; lean_object* x_75; uint8_t x_76; +x_74 = lean_ctor_get(x_73, 1); lean_inc(x_74); -if (lean_is_exclusive(x_67)) { - lean_ctor_release(x_67, 0); - lean_ctor_release(x_67, 1); - x_75 = x_67; -} else { - lean_dec_ref(x_67); - x_75 = lean_box(0); -} -if (lean_is_scalar(x_75)) { - x_76 = lean_alloc_ctor(1, 2, 0); -} else { - x_76 = x_75; -} -lean_ctor_set(x_76, 0, x_73); -lean_ctor_set(x_76, 1, x_74); -return x_76; -} -} -else +lean_dec(x_73); +x_75 = l_Lean_Elab_Frontend_processCommand___closed__3; +x_76 = l_Std_PersistentArray_anyM___at_Lean_MessageLog_hasErrors___spec__1(x_26); +lean_dec(x_26); +if (x_76 == 0) { -uint8_t x_77; lean_object* x_78; lean_object* x_79; -lean_dec(x_24); +lean_object* x_77; lean_object* x_78; +lean_dec(x_37); lean_dec(x_16); -lean_dec(x_2); -lean_dec(x_1); -x_77 = 1; -x_78 = lean_box(x_77); -x_79 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_79, 0, x_78); -lean_ctor_set(x_79, 1, x_62); -return x_79; -} +x_77 = lean_box(0); +x_78 = lean_apply_4(x_75, x_77, x_1, x_2, x_74); +return x_78; } else { -uint8_t x_80; lean_object* x_81; lean_object* x_82; -lean_dec(x_24); +lean_object* x_79; uint8_t x_80; +x_79 = l_Lean_Elab_Frontend_showPartialSyntaxErrors; +x_80 = l_Lean_Option_get___at_Lean_ppExpr___spec__1(x_16, x_79); lean_dec(x_16); -lean_dec(x_2); -lean_dec(x_1); -x_80 = 1; -x_81 = lean_box(x_80); -x_82 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_82, 0, x_81); -lean_ctor_set(x_82, 1, x_62); -return x_82; -} -} -} -else +if (x_80 == 0) { -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; lean_object* x_95; uint8_t x_96; -x_83 = lean_ctor_get(x_28, 0); -x_84 = lean_ctor_get(x_28, 1); -x_85 = lean_ctor_get(x_28, 2); -x_86 = lean_ctor_get(x_28, 3); -lean_inc(x_86); -lean_inc(x_85); -lean_inc(x_84); +lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_81 = l_Lean_Elab_Frontend_setMessages(x_37, x_1, x_2, x_74); +x_82 = lean_ctor_get(x_81, 0); +lean_inc(x_82); +x_83 = lean_ctor_get(x_81, 1); lean_inc(x_83); +lean_dec(x_81); +x_84 = lean_apply_4(x_75, x_82, x_1, x_2, x_83); +return x_84; +} +else +{ +lean_object* x_85; lean_object* x_86; +lean_dec(x_37); +x_85 = lean_box(0); +x_86 = lean_apply_4(x_75, x_85, x_1, x_2, x_74); +return x_86; +} +} +} +else +{ +lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; +lean_dec(x_37); +lean_dec(x_26); +lean_dec(x_16); +lean_dec(x_2); +lean_dec(x_1); +x_87 = lean_ctor_get(x_73, 0); +lean_inc(x_87); +x_88 = lean_ctor_get(x_73, 1); +lean_inc(x_88); +if (lean_is_exclusive(x_73)) { + lean_ctor_release(x_73, 0); + lean_ctor_release(x_73, 1); + x_89 = x_73; +} else { + lean_dec_ref(x_73); + x_89 = lean_box(0); +} +if (lean_is_scalar(x_89)) { + x_90 = lean_alloc_ctor(1, 2, 0); +} else { + x_90 = x_89; +} +lean_ctor_set(x_90, 0, x_87); +lean_ctor_set(x_90, 1, x_88); +return x_90; +} +} +else +{ +uint8_t x_91; lean_object* x_92; lean_object* x_93; +lean_dec(x_37); +lean_dec(x_26); +lean_dec(x_24); +lean_dec(x_16); +lean_dec(x_2); +lean_dec(x_1); +x_91 = 1; +x_92 = lean_box(x_91); +x_93 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_93, 0, x_92); +lean_ctor_set(x_93, 1, x_68); +return x_93; +} +} +else +{ +uint8_t x_94; lean_object* x_95; lean_object* x_96; +lean_dec(x_37); +lean_dec(x_26); +lean_dec(x_24); +lean_dec(x_16); +lean_dec(x_2); +lean_dec(x_1); +x_94 = 1; +x_95 = lean_box(x_94); +x_96 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_96, 0, x_95); +lean_ctor_set(x_96, 1, x_68); +return x_96; +} +} +} +else +{ +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; uint8_t x_111; +x_97 = lean_ctor_get(x_28, 0); +x_98 = lean_ctor_get(x_28, 1); +x_99 = lean_ctor_get(x_28, 2); +x_100 = lean_ctor_get(x_28, 3); +lean_inc(x_100); +lean_inc(x_99); +lean_inc(x_98); +lean_inc(x_97); lean_dec(x_28); lean_inc(x_24); -x_87 = lean_array_push(x_86, x_24); -x_88 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_88, 0, x_83); -lean_ctor_set(x_88, 1, x_84); -lean_ctor_set(x_88, 2, x_85); -lean_ctor_set(x_88, 3, x_87); -x_89 = lean_st_ref_set(x_2, x_88, x_29); -x_90 = lean_ctor_get(x_89, 1); -lean_inc(x_90); -lean_dec(x_89); -x_91 = l_Lean_Elab_Frontend_setParserState(x_25, x_1, x_2, x_90); -x_92 = lean_ctor_get(x_91, 1); -lean_inc(x_92); -lean_dec(x_91); -x_93 = l_Lean_Elab_Frontend_setMessages(x_26, x_1, x_2, x_92); -x_94 = lean_ctor_get(x_93, 1); -lean_inc(x_94); -if (lean_is_exclusive(x_93)) { - lean_ctor_release(x_93, 0); - lean_ctor_release(x_93, 1); - x_95 = x_93; -} else { - lean_dec_ref(x_93); - x_95 = lean_box(0); -} -lean_inc(x_24); -x_96 = l_Lean_Parser_isEOI(x_24); -if (x_96 == 0) -{ -uint8_t x_97; -lean_inc(x_24); -x_97 = l_Lean_Parser_isExitCommand(x_24); -if (x_97 == 0) -{ -lean_object* x_98; lean_object* x_99; lean_object* x_100; -lean_dec(x_95); -x_98 = lean_alloc_closure((void*)(l_Lean_Elab_Frontend_elabCommandAtFrontend___boxed), 4, 1); -lean_closure_set(x_98, 0, x_24); -x_99 = l_Lean_Elab_Frontend_processCommand___closed__2; -x_100 = l_Lean_profileitM___at_Lean_Elab_Frontend_processCommand___spec__1___rarg(x_99, x_16, x_98, x_1, x_2, x_94); -lean_dec(x_16); -if (lean_obj_tag(x_100) == 0) -{ -lean_object* x_101; lean_object* x_102; uint8_t x_103; lean_object* x_104; lean_object* x_105; -x_101 = lean_ctor_get(x_100, 1); -lean_inc(x_101); -if (lean_is_exclusive(x_100)) { - lean_ctor_release(x_100, 0); - lean_ctor_release(x_100, 1); - x_102 = x_100; -} else { - lean_dec_ref(x_100); - x_102 = lean_box(0); -} -x_103 = 0; -x_104 = lean_box(x_103); -if (lean_is_scalar(x_102)) { - x_105 = lean_alloc_ctor(0, 2, 0); -} else { - x_105 = x_102; -} -lean_ctor_set(x_105, 0, x_104); -lean_ctor_set(x_105, 1, x_101); -return x_105; -} -else -{ -lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; -x_106 = lean_ctor_get(x_100, 0); +x_101 = lean_array_push(x_100, x_24); +x_102 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_102, 0, x_97); +lean_ctor_set(x_102, 1, x_98); +lean_ctor_set(x_102, 2, x_99); +lean_ctor_set(x_102, 3, x_101); +x_103 = lean_st_ref_set(x_2, x_102, x_29); +x_104 = lean_ctor_get(x_103, 1); +lean_inc(x_104); +lean_dec(x_103); +x_105 = l_Lean_Elab_Frontend_setParserState(x_25, x_1, x_2, x_104); +x_106 = lean_ctor_get(x_105, 1); lean_inc(x_106); -x_107 = lean_ctor_get(x_100, 1); +lean_dec(x_105); +x_107 = l_Std_PersistentArray_append___rarg(x_13, x_26); lean_inc(x_107); -if (lean_is_exclusive(x_100)) { - lean_ctor_release(x_100, 0); - lean_ctor_release(x_100, 1); - x_108 = x_100; +x_108 = l_Lean_Elab_Frontend_setMessages(x_107, x_1, x_2, x_106); +x_109 = lean_ctor_get(x_108, 1); +lean_inc(x_109); +if (lean_is_exclusive(x_108)) { + lean_ctor_release(x_108, 0); + lean_ctor_release(x_108, 1); + x_110 = x_108; } else { - lean_dec_ref(x_100); - x_108 = lean_box(0); + lean_dec_ref(x_108); + x_110 = lean_box(0); } -if (lean_is_scalar(x_108)) { - x_109 = lean_alloc_ctor(1, 2, 0); -} else { - x_109 = x_108; +lean_inc(x_24); +x_111 = l_Lean_Parser_isEOI(x_24); +if (x_111 == 0) +{ +uint8_t x_112; +lean_inc(x_24); +x_112 = l_Lean_Parser_isExitCommand(x_24); +if (x_112 == 0) +{ +lean_object* x_113; lean_object* x_114; lean_object* x_115; +lean_dec(x_110); +x_113 = lean_alloc_closure((void*)(l_Lean_Elab_Frontend_elabCommandAtFrontend___boxed), 4, 1); +lean_closure_set(x_113, 0, x_24); +x_114 = l_Lean_Elab_Frontend_processCommand___closed__2; +lean_inc(x_2); +lean_inc(x_1); +x_115 = l_Lean_profileitM___at_Lean_Elab_Frontend_processCommand___spec__1___rarg(x_114, x_16, x_113, x_1, x_2, x_109); +if (lean_obj_tag(x_115) == 0) +{ +lean_object* x_116; lean_object* x_117; uint8_t x_118; +x_116 = lean_ctor_get(x_115, 1); +lean_inc(x_116); +lean_dec(x_115); +x_117 = l_Lean_Elab_Frontend_processCommand___closed__3; +x_118 = l_Std_PersistentArray_anyM___at_Lean_MessageLog_hasErrors___spec__1(x_26); +lean_dec(x_26); +if (x_118 == 0) +{ +lean_object* x_119; lean_object* x_120; +lean_dec(x_107); +lean_dec(x_16); +x_119 = lean_box(0); +x_120 = lean_apply_4(x_117, x_119, x_1, x_2, x_116); +return x_120; +} +else +{ +lean_object* x_121; uint8_t x_122; +x_121 = l_Lean_Elab_Frontend_showPartialSyntaxErrors; +x_122 = l_Lean_Option_get___at_Lean_ppExpr___spec__1(x_16, x_121); +lean_dec(x_16); +if (x_122 == 0) +{ +lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; +x_123 = l_Lean_Elab_Frontend_setMessages(x_107, x_1, x_2, x_116); +x_124 = lean_ctor_get(x_123, 0); +lean_inc(x_124); +x_125 = lean_ctor_get(x_123, 1); +lean_inc(x_125); +lean_dec(x_123); +x_126 = lean_apply_4(x_117, x_124, x_1, x_2, x_125); +return x_126; +} +else +{ +lean_object* x_127; lean_object* x_128; +lean_dec(x_107); +x_127 = lean_box(0); +x_128 = lean_apply_4(x_117, x_127, x_1, x_2, x_116); +return x_128; } -lean_ctor_set(x_109, 0, x_106); -lean_ctor_set(x_109, 1, x_107); -return x_109; } } else { -uint8_t x_110; lean_object* x_111; lean_object* x_112; -lean_dec(x_24); +lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; +lean_dec(x_107); +lean_dec(x_26); lean_dec(x_16); lean_dec(x_2); lean_dec(x_1); -x_110 = 1; -x_111 = lean_box(x_110); -if (lean_is_scalar(x_95)) { - x_112 = lean_alloc_ctor(0, 2, 0); +x_129 = lean_ctor_get(x_115, 0); +lean_inc(x_129); +x_130 = lean_ctor_get(x_115, 1); +lean_inc(x_130); +if (lean_is_exclusive(x_115)) { + lean_ctor_release(x_115, 0); + lean_ctor_release(x_115, 1); + x_131 = x_115; } else { - x_112 = x_95; + lean_dec_ref(x_115); + x_131 = lean_box(0); } -lean_ctor_set(x_112, 0, x_111); -lean_ctor_set(x_112, 1, x_94); -return x_112; +if (lean_is_scalar(x_131)) { + x_132 = lean_alloc_ctor(1, 2, 0); +} else { + x_132 = x_131; +} +lean_ctor_set(x_132, 0, x_129); +lean_ctor_set(x_132, 1, x_130); +return x_132; } } else { -uint8_t x_113; lean_object* x_114; lean_object* x_115; +uint8_t x_133; lean_object* x_134; lean_object* x_135; +lean_dec(x_107); +lean_dec(x_26); lean_dec(x_24); lean_dec(x_16); lean_dec(x_2); lean_dec(x_1); -x_113 = 1; -x_114 = lean_box(x_113); -if (lean_is_scalar(x_95)) { - x_115 = lean_alloc_ctor(0, 2, 0); +x_133 = 1; +x_134 = lean_box(x_133); +if (lean_is_scalar(x_110)) { + x_135 = lean_alloc_ctor(0, 2, 0); } else { - x_115 = x_95; + x_135 = x_110; } -lean_ctor_set(x_115, 0, x_114); -lean_ctor_set(x_115, 1, x_94); -return x_115; +lean_ctor_set(x_135, 0, x_134); +lean_ctor_set(x_135, 1, x_109); +return x_135; +} +} +else +{ +uint8_t x_136; lean_object* x_137; lean_object* x_138; +lean_dec(x_107); +lean_dec(x_26); +lean_dec(x_24); +lean_dec(x_16); +lean_dec(x_2); +lean_dec(x_1); +x_136 = 1; +x_137 = lean_box(x_136); +if (lean_is_scalar(x_110)) { + x_138 = lean_alloc_ctor(0, 2, 0); +} else { + x_138 = x_110; +} +lean_ctor_set(x_138, 0, x_137); +lean_ctor_set(x_138, 1, x_109); +return x_138; } } } @@ -1985,13 +2165,24 @@ lean_dec(x_1); return x_7; } } -lean_object* l_Lean_Elab_Frontend_processCommand___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* l_Lean_Elab_Frontend_processCommand___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { -lean_object* x_6; -x_6 = l_Lean_Elab_Frontend_processCommand___lambda__1(x_1, x_2, x_3, x_4, x_5); -lean_dec(x_5); -return x_6; +lean_object* x_5; +x_5 = l_Lean_Elab_Frontend_processCommand___lambda__1(x_1, x_2, x_3, x_4); +lean_dec(x_4); +return x_5; +} +} +lean_object* l_Lean_Elab_Frontend_processCommand___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_Elab_Frontend_processCommand___lambda__2(x_1, x_2, x_3, x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_5; } } lean_object* l_Lean_Elab_Frontend_processCommands(lean_object* x_1, lean_object* x_2, lean_object* x_3) { @@ -2325,7 +2516,7 @@ return x_47; } } } -static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_737____closed__1() { +static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_817____closed__1() { _start: { lean_object* x_1; @@ -2333,17 +2524,17 @@ x_1 = lean_mk_string("printMessageEndPos"); return x_1; } } -static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_737____closed__2() { +static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_817____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_initFn____x40_Lean_Elab_Frontend___hyg_737____closed__1; +x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_817____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_737____closed__3() { +static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_817____closed__3() { _start: { lean_object* x_1; @@ -2351,13 +2542,13 @@ x_1 = lean_mk_string("print end position of each message in addition to start po return x_1; } } -static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_737____closed__4() { +static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_817____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_registerTraceClass___closed__1; x_2 = l_Lean_instInhabitedParserDescr___closed__1; -x_3 = l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_737____closed__3; +x_3 = l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_817____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); @@ -2365,12 +2556,12 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_737_(lean_object* x_1) { +lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_817_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_737____closed__2; -x_3 = l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_737____closed__4; +x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_817____closed__2; +x_3 = l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_817____closed__4; x_4 = lean_register_option(x_2, x_3, x_1); if (lean_obj_tag(x_4) == 0) { @@ -2410,7 +2601,7 @@ uint8_t l_Lean_Elab_getPrintMessageEndPos(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; uint8_t x_4; -x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_737____closed__2; +x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_817____closed__2; x_3 = 0; x_4 = l_Lean_KVMap_getBool(x_1, x_2, x_3); return x_4; @@ -2948,19 +3139,34 @@ l_Lean_Elab_Frontend_State_commands___default = _init_l_Lean_Elab_Frontend_State lean_mark_persistent(l_Lean_Elab_Frontend_State_commands___default); l_Lean_Elab_Frontend_runCommandElabM___closed__1 = _init_l_Lean_Elab_Frontend_runCommandElabM___closed__1(); lean_mark_persistent(l_Lean_Elab_Frontend_runCommandElabM___closed__1); +l_Lean_Elab_Frontend_initFn____x40_Lean_Elab_Frontend___hyg_423____closed__1 = _init_l_Lean_Elab_Frontend_initFn____x40_Lean_Elab_Frontend___hyg_423____closed__1(); +lean_mark_persistent(l_Lean_Elab_Frontend_initFn____x40_Lean_Elab_Frontend___hyg_423____closed__1); +l_Lean_Elab_Frontend_initFn____x40_Lean_Elab_Frontend___hyg_423____closed__2 = _init_l_Lean_Elab_Frontend_initFn____x40_Lean_Elab_Frontend___hyg_423____closed__2(); +lean_mark_persistent(l_Lean_Elab_Frontend_initFn____x40_Lean_Elab_Frontend___hyg_423____closed__2); +l_Lean_Elab_Frontend_initFn____x40_Lean_Elab_Frontend___hyg_423____closed__3 = _init_l_Lean_Elab_Frontend_initFn____x40_Lean_Elab_Frontend___hyg_423____closed__3(); +lean_mark_persistent(l_Lean_Elab_Frontend_initFn____x40_Lean_Elab_Frontend___hyg_423____closed__3); +l_Lean_Elab_Frontend_initFn____x40_Lean_Elab_Frontend___hyg_423____closed__4 = _init_l_Lean_Elab_Frontend_initFn____x40_Lean_Elab_Frontend___hyg_423____closed__4(); +lean_mark_persistent(l_Lean_Elab_Frontend_initFn____x40_Lean_Elab_Frontend___hyg_423____closed__4); +res = l_Lean_Elab_Frontend_initFn____x40_Lean_Elab_Frontend___hyg_423_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +l_Lean_Elab_Frontend_showPartialSyntaxErrors = lean_io_result_get_value(res); +lean_mark_persistent(l_Lean_Elab_Frontend_showPartialSyntaxErrors); +lean_dec_ref(res); l_Lean_Elab_Frontend_processCommand___closed__1 = _init_l_Lean_Elab_Frontend_processCommand___closed__1(); lean_mark_persistent(l_Lean_Elab_Frontend_processCommand___closed__1); l_Lean_Elab_Frontend_processCommand___closed__2 = _init_l_Lean_Elab_Frontend_processCommand___closed__2(); lean_mark_persistent(l_Lean_Elab_Frontend_processCommand___closed__2); -l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_737____closed__1 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_737____closed__1(); -lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_737____closed__1); -l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_737____closed__2 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_737____closed__2(); -lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_737____closed__2); -l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_737____closed__3 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_737____closed__3(); -lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_737____closed__3); -l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_737____closed__4 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_737____closed__4(); -lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_737____closed__4); -res = l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_737_(lean_io_mk_world()); +l_Lean_Elab_Frontend_processCommand___closed__3 = _init_l_Lean_Elab_Frontend_processCommand___closed__3(); +lean_mark_persistent(l_Lean_Elab_Frontend_processCommand___closed__3); +l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_817____closed__1 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_817____closed__1(); +lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_817____closed__1); +l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_817____closed__2 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_817____closed__2(); +lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_817____closed__2); +l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_817____closed__3 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_817____closed__3(); +lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_817____closed__3); +l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_817____closed__4 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_817____closed__4(); +lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_817____closed__4); +res = l_Lean_Elab_initFn____x40_Lean_Elab_Frontend___hyg_817_(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/InfoTree.c b/stage0/stdlib/Lean/Elab/InfoTree.c index 5cc52449d2..ee5a07a27b 100644 --- a/stage0/stdlib/Lean/Elab/InfoTree.c +++ b/stage0/stdlib/Lean/Elab/InfoTree.c @@ -6969,7 +6969,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_assignInfoHoleId___rarg___lambda__2___closed__3; x_2 = l_Lean_Elab_assignInfoHoleId___rarg___lambda__2___closed__4; -x_3 = lean_unsigned_to_nat(282u); +x_3 = lean_unsigned_to_nat(284u); x_4 = lean_unsigned_to_nat(2u); x_5 = l_Lean_Elab_assignInfoHoleId___rarg___lambda__2___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); diff --git a/stage0/stdlib/Lean/Elab/LetRec.c b/stage0/stdlib/Lean/Elab/LetRec.c index 962ef2f5c5..662597962d 100644 --- a/stage0/stdlib/Lean/Elab/LetRec.c +++ b/stage0/stdlib/Lean/Elab/LetRec.c @@ -132,7 +132,6 @@ lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_LetRec_0__Lean_Elab_Te extern lean_object* l_Lean_docStringExt; extern lean_object* l_Lean_instInhabitedExpr; lean_object* l_Lean_FileMap_toPosition(lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__2; extern lean_object* l_Lean_KernelException_toMessageData___closed__15; lean_object* l_Lean_throwError___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -178,6 +177,7 @@ lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Elab_Term_0__Lean_Ela lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__19(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_checkNotAlreadyDeclared___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___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* l_Lean_Elab_Term_withDeclName___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__2; lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_match__1(lean_object*); extern lean_object* l_Lean_Elab_elabAttr___rarg___lambda__8___closed__3; lean_object* l_Lean_Elab_Term_elabType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -4178,7 +4178,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Term_termElabAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__2; x_4 = l___regBuiltin_Lean_Elab_Term_elabLetRec___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; diff --git a/stage0/stdlib/Lean/Elab/Match.c b/stage0/stdlib/Lean/Elab/Match.c index 768132498f..124eeb64cd 100644 --- a/stage0/stdlib/Lean/Elab/Match.c +++ b/stage0/stdlib/Lean/Elab/Match.c @@ -29,6 +29,7 @@ lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_withDepElimPatterns__ extern lean_object* l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_loop___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*, lean_object*, lean_object*); lean_object* l_Lean_Expr_mvarId_x21(lean_object*); +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297____closed__5; lean_object* l_Lean_throwError___at___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_throwCtorExpected___spec__1(lean_object*); uint8_t l_Lean_Expr_isCharLit(lean_object*); lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_nameToPattern___closed__3; @@ -61,6 +62,7 @@ lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Match_0__Lean_Ela lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___closed__4; lean_object* l_Lean_Elab_Term_CollectPatternVars_collect_pushNewArg___closed__2; lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_nameToPattern___closed__5; +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297____closed__3; lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltViews_collectDeps_match__1(lean_object*); lean_object* l_Lean_LocalDecl_userName(lean_object*); lean_object* l_Lean_Elab_Term_elabMatch(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -99,7 +101,6 @@ lean_object* l_Lean_Elab_Term_finalizePatternDecls_match__1___rarg(lean_object*, lean_object* l_Lean_Syntax_mkSep(lean_object*, lean_object*); extern lean_object* l_Lean_Elab_throwUnsupportedSyntax___rarg___closed__1; lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabDiscrsWitMatchType___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_Term_initFn____x40_Lean_Elab_Match___hyg_7290____closed__4; lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_withPatternVars_loop___rarg___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* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_quoteAutoTactic___spec__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_List_forIn_loop___at_Lean_Elab_Term_reportMatcherResultErrors___spec__1___closed__3; @@ -120,7 +121,6 @@ lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_mkMVarSyntax___boxed( lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_mkLocalDeclFor___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_uset(lean_object*, size_t, lean_object*); lean_object* l_Lean_Elab_Term_expandMacrosInPatterns___boxed__const__1; -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7290____closed__2; lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_isNextArgAccessible___boxed(lean_object*); lean_object* l_Array_qpartition_loop___at___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_sortFVarIds___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_identKind___closed__2; @@ -133,6 +133,7 @@ lean_object* l_Lean_Syntax_getHead_x3f(lean_object*); lean_object* l_Lean_throwError___at___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_throwInvalidPattern___spec__1(lean_object*); lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_mkLocalDeclFor(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabMVarWithIdKind(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297____closed__2; lean_object* lean_local_ctx_erase(lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_13954____closed__8; lean_object* l_Lean_Elab_Term_CollectPatternVars_collect_processCtorAppCore___lambda__2___closed__1; @@ -172,6 +173,7 @@ lean_object* l_Lean_mkFreshId___at___private_Lean_Elab_Match_0__Lean_Elab_Term_T lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabDiscrsWitMatchType___closed__1; lean_object* l_Array_qsort_sort___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltViews_collectDeps___spec__6___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_reportMatcherResultErrors___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_Term_initFn____x40_Lean_Elab_Match___hyg_7297____closed__1; lean_object* l_List_mapM___at_Lean_Elab_Term_ToDepElimPattern_main___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_ToDepElimPattern_main___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_throwError___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabPatterns___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -180,7 +182,6 @@ lean_object* l_Array_qsort_sort___at___private_Lean_Elab_Match_0__Lean_Elab_Term lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_loop___lambda__1(lean_object*, lean_object*, lean_object*, 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*, lean_object*); lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_nameToPattern___closed__9; lean_object* lean_expr_instantiate1(lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7290____closed__1; lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabPatterns___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*); lean_object* l_Array_toSubarray___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Array_split___rarg(lean_object*, lean_object*); @@ -212,11 +213,11 @@ lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Match_0__Lean_Ela lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_getNumExplicitCtorParams(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_isNextArgAccessible(lean_object*); lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_finalize___spec__2___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7290____closed__3; lean_object* l_Lean_Elab_Term_mkAuxName(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_CollectPatternVars_collect_pushNewArg_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_getPatternsVars___spec__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_CollectPatternVars_collect_processId_match__3(lean_object*); +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1572____closed__2; lean_object* l_Lean_Elab_Term_elabMatch_elabMatchDefault_match__1___rarg(lean_object*, lean_object*, lean_object*); uint8_t l___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_isDone(lean_object*); lean_object* l_Lean_Elab_Term_throwMVarError___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -237,14 +238,13 @@ lean_object* l_List_forIn_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ lean_object* l_Lean_Meta_Match_mkMatcher(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_elabDiscrsWitMatchType(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_elabMatchAltView___closed__3; +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297____closed__4; lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_finalizePatternDecls___spec__1___closed__4; lean_object* l_Lean_Elab_Term_CollectPatternVars_collect_processCtorAppCore___lambda__2(uint8_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_Term_initFn____x40_Lean_Elab_Match___hyg_7290____closed__5; lean_object* l_Lean_Elab_Term_getMainModule___rarg(lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_1481____closed__8; uint8_t l_USize_decLt(size_t, size_t); -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1565____closed__2; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltViews_loop___spec__1(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_CollectPatternVars_collect_processId_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_rootNamespace___closed__2; @@ -257,6 +257,7 @@ lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_expandNonAtomicDiscrs extern lean_object* l_myMacro____x40_Init_Notation___hyg_13954____closed__13; lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_finalize(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_throwAbortTerm___at_Lean_Elab_Term_isAtomicDiscr_x3f___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_ToDepElimPattern_main_match__1(lean_object*); lean_object* l_Lean_Elab_Term_getPatternsVars___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_throwUnknownConstant___rarg___closed__2; @@ -529,6 +530,7 @@ lean_object* l_ReaderT_bind___at_Lean_Elab_Term_instMonadLogTermElabM___spec__2_ lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAux___lambda__1___closed__2; lean_object* l_Lean_Elab_Term_elabTermEnsuringType___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_Meta_whnf(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Elab_throwAbortTerm___rarg___closed__1; lean_object* l_Lean_Elab_Term_mkInaccessible(lean_object*); lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_doubleQuotedNameToPattern(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_anyMUnsafe_any___at_Lean_Elab_Term_elabMatch_elabMatchDefault___spec__1(lean_object*, size_t, size_t); @@ -584,6 +586,7 @@ lean_object* l_Lean_LocalDecl_type(lean_object*); lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltView___lambda__1___closed__2; lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltView___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_Array_forInUnsafe_loop___at_Lean_Elab_Term_finalizePatternDecls___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Syntax_isMissing(lean_object*); extern uint8_t l_Lean_instInhabitedBinderInfo; lean_object* l_Lean_Elab_Term_reportMatcherResultErrors___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_synthesizeSyntheticMVarsUsingDefault(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -595,6 +598,7 @@ lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_na lean_object* l_Lean_Elab_Term_CollectPatternVars_collect_pushNewArg___closed__5; lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_isNextArgAccessible_match__1(lean_object*); lean_object* l_Lean_Elab_Term_instToStringPatternVar_match__1___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_throwAbortTerm___at_Lean_Elab_Term_isAtomicDiscr_x3f___spec__1___rarg(lean_object*); extern lean_object* l_Lean_Syntax_mkApp___closed__1; lean_object* l_Array_filterMapM___at___private_Lean_Elab_Match_0__Lean_Elab_Term_getMatchAlts___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_term_x5b___x5d___closed__5; @@ -765,6 +769,7 @@ lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Match_0__Lean_Ela lean_object* l_Lean_Elab_Term_withoutErrToSorry___rarg(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_tryPostponeIfDiscrTypeIsMVar(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_elabMatchAltView_match__1(lean_object*); +lean_object* l_Lean_Elab_throwAbortTerm___at_Lean_Elab_Term_isAtomicDiscr_x3f___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_anyMUnsafe_any___at_Lean_Elab_Term_ToDepElimPattern_main___spec__5(lean_object*, lean_object*, size_t, size_t); lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___closed__7; lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_nameToPattern___closed__20; @@ -866,9 +871,9 @@ lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAux_match__3 lean_object* l_Lean_Elab_Term_isLocalIdent_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_forIn_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAux___spec__4___lambda__1___closed__1; lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_Closure_mkBinding___spec__1(size_t, size_t, lean_object*); -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_9815_(lean_object*); -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1565_(lean_object*); -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7290_(lean_object*); +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_9822_(lean_object*); +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1572_(lean_object*); +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297_(lean_object*); lean_object* l_Lean_mkConst(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_reportMatcherResultErrors___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkSimpleThunk(lean_object*); @@ -899,7 +904,6 @@ lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___closed__5; lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltViews_containsFVar___boxed(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_withElaboratedLHS(lean_object*); uint8_t l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_mkLocalDeclFor___lambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1565____closed__1; lean_object* l_Lean_Meta_forallTelescopeReducing___at_Lean_Elab_Term_CollectPatternVars_collect_processCtorAppCore___spec__4(lean_object*); lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabDiscrsWitMatchType___spec__1___lambda__3(lean_object*, size_t, lean_object*, lean_object*, size_t, 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_elabMatchAltViews_loop___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*); @@ -937,6 +941,7 @@ lean_object* l_Lean_Elab_Term_reportMatcherResultErrors___closed__1; uint8_t l_Lean_Elab_Term_CollectPatternVars_collect_processCtorAppContext___lambda__1(lean_object*, lean_object*); lean_object* l_Lean_throwError___at___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_finalize___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getFVarLocalDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1572____closed__1; extern lean_object* l_Lean_matchPatternAttr; lean_object* l_Lean_Elab_Term_getPatternVars_match__1___rarg(lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabDiscrsWitMatchType___spec__1___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2117,6 +2122,25 @@ x_3 = lean_box(x_2); return x_3; } } +lean_object* l_Lean_Elab_throwAbortTerm___at_Lean_Elab_Term_isAtomicDiscr_x3f___spec__1___rarg(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_Elab_throwAbortTerm___rarg___closed__1; +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_Elab_throwAbortTerm___at_Lean_Elab_Term_isAtomicDiscr_x3f___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) { +_start: +{ +lean_object* x_7; +x_7 = lean_alloc_closure((void*)(l_Lean_Elab_throwAbortTerm___at_Lean_Elab_Term_isAtomicDiscr_x3f___spec__1___rarg), 1, 0); +return x_7; +} +} lean_object* l_Lean_Elab_Term_isAtomicDiscr_x3f(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: { @@ -2132,50 +2156,87 @@ lean_inc(x_1); x_12 = l_Lean_Syntax_isOfKind(x_1, x_11); if (x_12 == 0) { -lean_object* x_13; lean_object* x_14; +uint8_t x_13; lean_dec(x_4); +x_13 = l_Lean_Syntax_isMissing(x_1); lean_dec(x_1); -x_13 = lean_box(0); -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_8); -return x_14; +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; +x_14 = lean_box(0); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_8); +return x_15; } else { -lean_object* x_15; lean_object* x_16; uint8_t x_17; -x_15 = lean_unsigned_to_nat(1u); -x_16 = l_Lean_Syntax_getArg(x_1, x_15); -lean_dec(x_1); -lean_inc(x_16); -x_17 = l_Lean_Syntax_isOfKind(x_16, x_9); -if (x_17 == 0) +lean_object* x_16; +x_16 = l_Lean_Elab_throwAbortTerm___at_Lean_Elab_Term_isAtomicDiscr_x3f___spec__1___rarg(x_8); +return x_16; +} +} +else { -lean_object* x_18; lean_object* x_19; -lean_dec(x_16); +lean_object* x_17; lean_object* x_18; uint8_t x_19; +x_17 = lean_unsigned_to_nat(1u); +x_18 = l_Lean_Syntax_getArg(x_1, x_17); +lean_inc(x_18); +x_19 = l_Lean_Syntax_isOfKind(x_18, x_9); +if (x_19 == 0) +{ +uint8_t x_20; +lean_dec(x_18); lean_dec(x_4); -x_18 = lean_box(0); -x_19 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_19, 0, x_18); -lean_ctor_set(x_19, 1, x_8); -return x_19; +x_20 = l_Lean_Syntax_isMissing(x_1); +lean_dec(x_1); +if (x_20 == 0) +{ +lean_object* x_21; lean_object* x_22; +x_21 = lean_box(0); +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_21); +lean_ctor_set(x_22, 1, x_8); +return x_22; } else { -lean_object* x_20; -x_20 = l_Lean_Elab_Term_isLocalIdent_x3f(x_16, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -return x_20; +lean_object* x_23; +x_23 = l_Lean_Elab_throwAbortTerm___at_Lean_Elab_Term_isAtomicDiscr_x3f___spec__1___rarg(x_8); +return x_23; +} +} +else +{ +lean_object* x_24; +lean_dec(x_1); +x_24 = l_Lean_Elab_Term_isLocalIdent_x3f(x_18, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_24; } } } else { -lean_object* x_21; -x_21 = l_Lean_Elab_Term_isLocalIdent_x3f(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -return x_21; +lean_object* x_25; +x_25 = l_Lean_Elab_Term_isLocalIdent_x3f(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_25; } } } +lean_object* l_Lean_Elab_throwAbortTerm___at_Lean_Elab_Term_isAtomicDiscr_x3f___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_Elab_throwAbortTerm___at_Lean_Elab_Term_isAtomicDiscr_x3f___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_7; +} +} lean_object* l_Lean_Elab_Term_isAtomicDiscr_x3f___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: { @@ -2255,11 +2316,14 @@ return x_2; lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabAtomicDiscr(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; +lean_object* x_9; lean_object* x_10; lean_object* x_11; x_9 = lean_unsigned_to_nat(1u); x_10 = l_Lean_Syntax_getArg(x_1, x_9); lean_inc(x_4); x_11 = l_Lean_Elab_Term_isAtomicDiscr_x3f(x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_11) == 0) +{ +lean_object* x_12; x_12 = lean_ctor_get(x_11, 0); lean_inc(x_12); if (lean_obj_tag(x_12) == 0) @@ -2275,11 +2339,14 @@ return x_15; } else { -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; -lean_dec(x_2); +lean_object* x_16; x_16 = lean_ctor_get(x_12, 0); lean_inc(x_16); lean_dec(x_12); +if (lean_obj_tag(x_16) == 1) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +lean_dec(x_2); x_17 = lean_ctor_get(x_11, 1); lean_inc(x_17); lean_dec(x_11); @@ -2369,6 +2436,45 @@ return x_35; } } } +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; +lean_dec(x_16); +x_36 = lean_ctor_get(x_11, 1); +lean_inc(x_36); +lean_dec(x_11); +x_37 = l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabAtomicDiscr___closed__2; +x_38 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabCompletion___spec__1(x_1, x_37, x_2, x_3, x_4, x_5, x_6, x_7, x_36); +lean_dec(x_4); +return x_38; +} +} +} +else +{ +uint8_t x_39; +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_2); +x_39 = !lean_is_exclusive(x_11); +if (x_39 == 0) +{ +return x_11; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_11, 0); +x_41 = lean_ctor_get(x_11, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_11); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} } } lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabAtomicDiscr___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) { @@ -3973,7 +4079,7 @@ return x_11; } } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1565____closed__1() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1572____closed__1() { _start: { lean_object* x_1; @@ -3981,21 +4087,21 @@ x_1 = lean_mk_string("MVarWithIdKind"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1565____closed__2() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1572____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_Match___hyg_1565____closed__1; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1572____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_Match___hyg_1565_(lean_object* x_1) { +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1572_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1565____closed__2; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1572____closed__2; x_3 = l_Lean_Parser_registerBuiltinNodeKind(x_2, x_1); return x_3; } @@ -4016,7 +4122,7 @@ lean_ctor_set(x_7, 0, x_5); lean_ctor_set(x_7, 1, x_6); x_8 = l_Lean_mkOptionalNode___closed__2; x_9 = lean_array_push(x_8, x_7); -x_10 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1565____closed__2; +x_10 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1572____closed__2; x_11 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_11, 0, x_10); lean_ctor_set(x_11, 1, x_9); @@ -4037,7 +4143,7 @@ lean_ctor_set(x_15, 0, x_12); lean_ctor_set(x_15, 1, x_14); x_16 = l_Lean_mkOptionalNode___closed__2; x_17 = lean_array_push(x_16, x_15); -x_18 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1565____closed__2; +x_18 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1572____closed__2; x_19 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_19, 0, x_18); lean_ctor_set(x_19, 1, x_17); @@ -4139,7 +4245,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Term_termElabAttribute; -x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1565____closed__2; +x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1572____closed__2; x_4 = l___regBuiltin_Lean_Elab_Term_elabMVarWithIdKind___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -8630,7 +8736,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_CollectPatternVars_collect_pushNewArg___closed__3; x_2 = l_Lean_Elab_Term_CollectPatternVars_collect_pushNewArg___closed__4; -x_3 = lean_unsigned_to_nat(431u); +x_3 = lean_unsigned_to_nat(446u); x_4 = lean_unsigned_to_nat(11u); x_5 = l_Lean_Name_getString_x21___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -25635,7 +25741,7 @@ lean_dec(x_5); return x_12; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7290____closed__1() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -25645,7 +25751,7 @@ 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_Match___hyg_7290____closed__2() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297____closed__2() { _start: { lean_object* x_1; @@ -25653,17 +25759,17 @@ x_1 = lean_mk_string("ignoreUnusedAlts"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7290____closed__3() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7290____closed__1; -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7290____closed__2; +x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297____closed__1; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297____closed__2; 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_Match___hyg_7290____closed__4() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297____closed__4() { _start: { lean_object* x_1; @@ -25671,13 +25777,13 @@ x_1 = lean_mk_string("if true, do not generate error if an alternative is not us return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7290____closed__5() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297____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 = 0; x_2 = l_Lean_instInhabitedParserDescr___closed__1; -x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7290____closed__4; +x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297____closed__4; x_4 = lean_box(x_1); x_5 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_5, 0, x_4); @@ -25686,12 +25792,12 @@ lean_ctor_set(x_5, 2, x_3); return x_5; } } -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7290_(lean_object* x_1) { +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297_(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_Match___hyg_7290____closed__3; -x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7290____closed__5; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297____closed__3; +x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297____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; } @@ -27717,7 +27823,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_CollectPatternVars_collect_pushNewArg___closed__3; x_2 = l___private_Lean_Elab_Match_0__Lean_Elab_Term_isMatchUnit_x3f___closed__3; -x_3 = lean_unsigned_to_nat(871u); +x_3 = lean_unsigned_to_nat(886u); x_4 = lean_unsigned_to_nat(2u); x_5 = l___private_Lean_Elab_Match_0__Lean_Elab_Term_isMatchUnit_x3f___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -29839,7 +29945,7 @@ x_29 = lean_ctor_get(x_27, 1); lean_inc(x_29); lean_dec(x_27); x_30 = lean_array_get_size(x_23); -x_31 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7290____closed__1; +x_31 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297____closed__1; lean_inc(x_5); x_32 = l_Lean_Elab_Term_mkAuxName(x_31, x_5, x_6, x_7, x_8, x_9, x_10, x_29); if (lean_obj_tag(x_32) == 0) @@ -30245,7 +30351,7 @@ x_107 = lean_ctor_get(x_19, 1); lean_inc(x_107); lean_dec(x_19); x_108 = lean_array_get_size(x_104); -x_109 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7290____closed__1; +x_109 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297____closed__1; lean_inc(x_5); x_110 = l_Lean_Elab_Term_mkAuxName(x_109, x_5, x_6, x_7, x_8, x_9, x_10, x_103); if (lean_obj_tag(x_110) == 0) @@ -30997,7 +31103,7 @@ return x_17; } else { -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_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; x_18 = lean_ctor_get(x_2, 0); lean_inc(x_18); x_19 = lean_ctor_get(x_2, 1); @@ -31008,6 +31114,9 @@ x_21 = l_Lean_Syntax_getArg(x_18, x_20); lean_inc(x_7); lean_inc(x_21); x_22 = l_Lean_Elab_Term_isAtomicDiscr_x3f(x_21, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; x_23 = lean_ctor_get(x_22, 0); lean_inc(x_23); if (lean_obj_tag(x_23) == 0) @@ -31733,6 +31842,37 @@ goto _start; } } } +else +{ +uint8_t x_263; +lean_dec(x_21); +lean_dec(x_19); +lean_dec(x_18); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_263 = !lean_is_exclusive(x_22); +if (x_263 == 0) +{ +return x_22; +} +else +{ +lean_object* x_264; lean_object* x_265; lean_object* x_266; +x_264 = lean_ctor_get(x_22, 0); +x_265 = lean_ctor_get(x_22, 1); +lean_inc(x_265); +lean_inc(x_264); +lean_dec(x_22); +x_266 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_266, 0, x_264); +lean_ctor_set(x_266, 1, x_265); +return x_266; +} +} +} } } lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_expandNonAtomicDiscrs_x3f_loop___lambda__1___boxed(lean_object** _args) { @@ -31785,13 +31925,16 @@ uint8_t x_11; x_11 = x_2 == x_3; 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_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; x_12 = lean_array_uget(x_1, x_2); x_13 = lean_unsigned_to_nat(1u); x_14 = l_Lean_Syntax_getArg(x_12, x_13); lean_dec(x_12); lean_inc(x_6); x_15 = l_Lean_Elab_Term_isAtomicDiscr_x3f(x_14, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_16; x_16 = lean_ctor_get(x_15, 0); lean_inc(x_16); if (lean_obj_tag(x_16) == 0) @@ -31839,14 +31982,38 @@ goto _start; } else { -uint8_t x_29; lean_object* x_30; lean_object* x_31; +uint8_t x_29; lean_dec(x_6); -x_29 = 0; -x_30 = lean_box(x_29); -x_31 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_31, 0, x_30); -lean_ctor_set(x_31, 1, x_10); -return x_31; +x_29 = !lean_is_exclusive(x_15); +if (x_29 == 0) +{ +return x_15; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_15, 0); +x_31 = lean_ctor_get(x_15, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_15); +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; +} +} +} +else +{ +uint8_t x_33; lean_object* x_34; lean_object* x_35; +lean_dec(x_6); +x_33 = 0; +x_34 = lean_box(x_33); +x_35 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_10); +return x_35; } } } @@ -31901,12 +32068,15 @@ goto block_34; } else { -size_t x_41; size_t x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; +size_t x_41; size_t x_42; lean_object* x_43; x_41 = 0; x_42 = lean_usize_of_nat(x_35); lean_dec(x_35); lean_inc(x_4); x_43 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_Match_0__Lean_Elab_Term_expandNonAtomicDiscrs_x3f___spec__1(x_14, x_41, x_42, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_43) == 0) +{ +lean_object* x_44; uint8_t x_45; x_44 = lean_ctor_get(x_43, 0); lean_inc(x_44); x_45 = lean_unbox(x_44); @@ -31934,6 +32104,33 @@ x_16 = x_48; goto block_34; } } +else +{ +uint8_t x_50; +lean_dec(x_14); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_50 = !lean_is_exclusive(x_43); +if (x_50 == 0) +{ +return x_43; +} +else +{ +lean_object* x_51; lean_object* x_52; lean_object* x_53; +x_51 = lean_ctor_get(x_43, 0); +x_52 = lean_ctor_get(x_43, 1); +lean_inc(x_52); +lean_inc(x_51); +lean_dec(x_43); +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; +} +} +} } block_34: { @@ -32180,13 +32377,16 @@ return x_20; } else { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_dec(x_4); x_21 = lean_array_uget(x_1, x_3); x_22 = lean_unsigned_to_nat(1u); x_23 = l_Lean_Syntax_getArg(x_21, x_22); lean_inc(x_7); x_24 = l_Lean_Elab_Term_isAtomicDiscr_x3f(x_23, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_24) == 0) +{ +lean_object* x_25; x_25 = lean_ctor_get(x_24, 0); lean_inc(x_25); if (lean_obj_tag(x_25) == 0) @@ -32436,6 +32636,35 @@ return x_82; } } } +else +{ +uint8_t x_83; +lean_dec(x_21); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +x_83 = !lean_is_exclusive(x_24); +if (x_83 == 0) +{ +return x_24; +} +else +{ +lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_84 = lean_ctor_get(x_24, 0); +x_85 = lean_ctor_get(x_24, 1); +lean_inc(x_85); +lean_inc(x_84); +lean_dec(x_24); +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; +} +} +} block_18: { lean_object* x_14; size_t x_15; size_t x_16; @@ -33709,7 +33938,7 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_9815_(lean_object* x_1) { +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_9822_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -34013,11 +34242,11 @@ l_Lean_Elab_Term_expandMacrosInPatterns___boxed__const__1 = _init_l_Lean_Elab_Te lean_mark_persistent(l_Lean_Elab_Term_expandMacrosInPatterns___boxed__const__1); l_Lean_Elab_Term_instToStringPatternVar___closed__1 = _init_l_Lean_Elab_Term_instToStringPatternVar___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_instToStringPatternVar___closed__1); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1565____closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1565____closed__1(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1565____closed__1); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1565____closed__2 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1565____closed__2(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1565____closed__2); -res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1565_(lean_io_mk_world()); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1572____closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1572____closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1572____closed__1); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1572____closed__2 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1572____closed__2(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1572____closed__2); +res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_1572_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l___regBuiltin_Lean_Elab_Term_elabMVarWithIdKind___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_elabMVarWithIdKind___closed__1(); @@ -34214,17 +34443,17 @@ l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltViews_collectDeps___cl lean_mark_persistent(l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltViews_collectDeps___closed__1); l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltViews_loop___boxed__const__1 = _init_l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltViews_loop___boxed__const__1(); lean_mark_persistent(l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltViews_loop___boxed__const__1); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7290____closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7290____closed__1(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7290____closed__1); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7290____closed__2 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7290____closed__2(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7290____closed__2); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7290____closed__3 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7290____closed__3(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7290____closed__3); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7290____closed__4 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7290____closed__4(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7290____closed__4); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7290____closed__5 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7290____closed__5(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7290____closed__5); -res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7290_(lean_io_mk_world()); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297____closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297____closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297____closed__1); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297____closed__2 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297____closed__2(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297____closed__2); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297____closed__3 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297____closed__3(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297____closed__3); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297____closed__4 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297____closed__4(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297____closed__4); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297____closed__5 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297____closed__5(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297____closed__5); +res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_Elab_Term_match_ignoreUnusedAlts = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Elab_Term_match_ignoreUnusedAlts); @@ -34298,7 +34527,7 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabMatch___closed__1); res = l___regBuiltin_Lean_Elab_Term_elabMatch(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_Match___hyg_9815_(lean_io_mk_world()); +res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_9822_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Elab_Term_elabNoMatch___closed__1 = _init_l_Lean_Elab_Term_elabNoMatch___closed__1(); diff --git a/stage0/stdlib/Lean/Elab/PreDefinition/Structural.c b/stage0/stdlib/Lean/Elab/PreDefinition/Structural.c index 8c94b2ff72..41c293500a 100644 --- a/stage0/stdlib/Lean/Elab/PreDefinition/Structural.c +++ b/stage0/stdlib/Lean/Elab/PreDefinition/Structural.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Elab.PreDefinition.Structural -// Imports: Init Lean.Util.ForEachExpr Lean.Meta.ForEachExpr Lean.Meta.RecursorInfo Lean.Meta.Match.Match Lean.Elab.PreDefinition.Basic +// Imports: Init Lean.Util.ForEachExpr Lean.Meta.ForEachExpr Lean.Meta.RecursorInfo Lean.Meta.Match.Match Lean.Meta.Transform Lean.Elab.PreDefinition.Basic #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -17,6 +17,7 @@ lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Structural_addSmartUnfoldingD lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_replaceRecApps_loop___spec__12___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_PreDefinition_Structural_0__Lean_Elab_Structural_findRecArg_loop___spec__8___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_set(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_shouldBetaReduce___boxed(lean_object*, lean_object*); lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_withBelowDict___spec__1___rarg___lambda__3(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); extern lean_object* l_Lean_Name_getString_x21___closed__3; @@ -70,13 +71,13 @@ lean_object* l_Lean_Elab_Structural_structuralRecursion(lean_object*, lean_objec lean_object* lean_array_uset(lean_object*, size_t, lean_object*); lean_object* l_Lean_throwError___at___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_throwToBelowFailed___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_forallTelescopeReducing___at_Lean_Meta_getParamNames___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_preprocess___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_ensureNoRecFn(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_toBelowAux_match__2(lean_object*); lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_mkBRecOn___lambda__3___closed__2; lean_object* l_Lean_throwError___at_Lean_Meta_addDefaultInstance___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_findRecArg_loop___rarg___closed__16; lean_object* l_Array_extract___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Structural_addSmartUnfoldingDefAux_visit_match__2(lean_object*); lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_recArgHasLooseBVarsAt___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Structural_structuralRecursion___lambda__1___closed__1; lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -200,7 +201,7 @@ lean_object* l_Lean_addTrace___at_Lean_Meta_isLevelDefEqAux___spec__1(lean_objec lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_toBelowAux___closed__5; lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_withBelowDict___spec__1___rarg___closed__1; lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_replaceRecApps_loop___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*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_replaceRecApps_loop_match__3___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_PreDefinition_Structural_0__Lean_Elab_Structural_replaceRecApps_loop_match__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_findRecArg_loop___rarg___lambda__1___closed__4; lean_object* l_Lean_Elab_Structural_structuralRecursion___lambda__1(lean_object*); lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_run(lean_object*); @@ -219,6 +220,7 @@ lean_object* l_Lean_Expr_fvarId_x21(lean_object*); lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_replaceRecApps_loop___lambda__1___closed__2; lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_replaceRecApps_loop_match__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_withBelowDict___spec__1___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Expr_isHeadBetaTarget(lean_object*); lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_toBelowAux___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___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_ensureNoRecFn___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_findRecArg_loop___rarg___closed__10; @@ -227,6 +229,7 @@ lean_object* l_Lean_throwError___at___private_Lean_Elab_PreDefinition_Structural lean_object* l_Lean_throwError___at___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_findRecArg_loop___spec__4(lean_object*); lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_toBelowAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_toBelowAux___closed__2; +extern lean_object* l_Lean_Core_betaReduce___closed__2; lean_object* l_Lean_Meta_decLevel(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Structural_addSmartUnfoldingDefAux_visit___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* l_Lean_throwError___at___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_findRecArg_loop___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -247,6 +250,7 @@ lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structu lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_hasBadParamDep_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*); extern lean_object* l_Lean_Elab_instInhabitedPreDefinition; lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_mkBRecOn___lambda__2___closed__2; +lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_preprocess___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_to_list(lean_object*, lean_object*); lean_object* l_ReaderT_bind___at___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_findRecArg_loop___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Environment_contains(lean_object*, lean_object*); @@ -275,6 +279,7 @@ lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structu lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_toBelowAux_match__2___rarg___closed__1; lean_object* l_Lean_Meta_mapErrorImp___rarg(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_PreDefinition_Structural_0__Lean_Elab_Structural_replaceRecApps_loop___spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Core_transform___at_Lean_Core_betaReduce___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_replaceRecApps_loop___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_toBelowAux_match__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Structural_addSmartUnfoldingDefAux_visit___spec__6___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*); @@ -372,7 +377,7 @@ lean_object* l_Lean_setEnv___at_Lean_Meta_orelse___spec__1(lean_object*, lean_ob lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_getFixedPrefix___spec__2___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_forallBoundedTelescope___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_hasBadIndexDep_x3f_match__1(lean_object*); -lean_object* l_Lean_Elab_Structural_initFn____x40_Lean_Elab_PreDefinition_Structural___hyg_5115_(lean_object*); +lean_object* l_Lean_Elab_Structural_initFn____x40_Lean_Elab_PreDefinition_Structural___hyg_5135_(lean_object*); lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_hasBadParamDep_x3f___spec__2(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_ofSubarray___rarg(lean_object*); lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_replaceRecApps_loop___spec__5___lambda__2___closed__2; @@ -396,6 +401,7 @@ lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Structural_addSmartUnfoldingD lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_mkBRecOn___spec__2(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_Meta_inferType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_findRecArg_loop___spec__2___closed__3; +uint8_t l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_shouldBetaReduce(lean_object*, lean_object*); lean_object* l_Lean_Meta_isExprDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Structural_addSmartUnfoldingDefAux_visit___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* l_Lean_Elab_Structural_addSmartUnfoldingDefAux_visit___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -430,6 +436,7 @@ lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structu extern lean_object* l_Lean_mkOptionalNode___closed__2; lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_getFixedPrefix_match__2___rarg(lean_object*, lean_object*, lean_object*); uint8_t l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_containsRecFn(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_preprocess(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_brecOnSuffix; lean_object* l_Lean_throwError___at___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_findRecArg_loop___spec__9___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Structural_addSmartUnfoldingDefAux_visit___spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -482,7 +489,6 @@ lean_object* l_Lean_Meta_lambdaTelescope___at___private_Lean_Elab_PreDefinition_ lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_replaceRecApps_loop___spec__5___closed__2; lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_findRecArg_loop___rarg___closed__13; lean_object* l_Lean_Meta_check(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Structural_addSmartUnfoldingDefAux_visit_match__2___rarg(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_PreDefinition_Structural_0__Lean_Elab_Structural_findRecArg_loop___spec__9(lean_object*); lean_object* l_Lean_Elab_Structural_addSmartUnfoldingDefAux___lambda__2___boxed(lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_hasBadIndexDep_x3f___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*); @@ -3542,7 +3548,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_Array_mapMUnsafe_map___at___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_findRecArg_loop___spec__2___closed__1; x_2 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_findRecArg_loop___spec__2___closed__2; -x_3 = lean_unsigned_to_nat(149u); +x_3 = lean_unsigned_to_nat(150u); x_4 = lean_unsigned_to_nat(119u); x_5 = l_Lean_Name_getString_x21___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -7208,142 +7214,145 @@ x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_PreDefinition_Structural_ return x_2; } } -lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_replaceRecApps_loop_match__3___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, lean_object* x_9) { +lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_replaceRecApps_loop_match__3___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: { -switch (lean_obj_tag(x_2)) { +switch (lean_obj_tag(x_1)) { case 5: { -lean_object* x_10; lean_object* x_11; uint64_t x_12; lean_object* x_13; lean_object* x_14; -lean_dec(x_9); -lean_dec(x_7); +lean_object* x_9; lean_object* x_10; uint64_t x_11; lean_object* x_12; lean_object* x_13; +lean_dec(x_8); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_10 = lean_ctor_get(x_2, 0); +lean_dec(x_2); +x_9 = lean_ctor_get(x_1, 0); +lean_inc(x_9); +x_10 = lean_ctor_get(x_1, 1); lean_inc(x_10); -x_11 = lean_ctor_get(x_2, 1); -lean_inc(x_11); -x_12 = lean_ctor_get_uint64(x_2, sizeof(void*)*2); -x_13 = lean_box_uint64(x_12); -x_14 = lean_apply_5(x_8, x_1, x_2, x_10, x_11, x_13); -return x_14; +x_11 = lean_ctor_get_uint64(x_1, sizeof(void*)*2); +lean_dec(x_1); +x_12 = lean_box_uint64(x_11); +x_13 = lean_apply_3(x_7, x_9, x_10, x_12); +return x_13; } case 6: { -lean_object* x_15; lean_object* x_16; lean_object* x_17; uint64_t x_18; lean_object* x_19; lean_object* x_20; -lean_dec(x_9); +lean_object* x_14; lean_object* x_15; lean_object* x_16; uint64_t x_17; lean_object* x_18; lean_object* x_19; lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_15 = lean_ctor_get(x_2, 0); +lean_dec(x_3); +x_14 = lean_ctor_get(x_1, 0); +lean_inc(x_14); +x_15 = lean_ctor_get(x_1, 1); lean_inc(x_15); -x_16 = lean_ctor_get(x_2, 1); +x_16 = lean_ctor_get(x_1, 2); lean_inc(x_16); -x_17 = lean_ctor_get(x_2, 2); -lean_inc(x_17); -x_18 = lean_ctor_get_uint64(x_2, sizeof(void*)*3); -x_19 = lean_box_uint64(x_18); -x_20 = lean_apply_6(x_3, x_1, x_2, x_15, x_16, x_17, x_19); -return x_20; +x_17 = lean_ctor_get_uint64(x_1, sizeof(void*)*3); +lean_dec(x_1); +x_18 = lean_box_uint64(x_17); +x_19 = lean_apply_4(x_2, x_14, x_15, x_16, x_18); +return x_19; } case 7: { -lean_object* x_21; lean_object* x_22; lean_object* x_23; uint64_t x_24; lean_object* x_25; lean_object* x_26; -lean_dec(x_9); +lean_object* x_20; lean_object* x_21; lean_object* x_22; uint64_t x_23; lean_object* x_24; lean_object* x_25; lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_3); -x_21 = lean_ctor_get(x_2, 0); +lean_dec(x_4); +lean_dec(x_2); +x_20 = lean_ctor_get(x_1, 0); +lean_inc(x_20); +x_21 = lean_ctor_get(x_1, 1); lean_inc(x_21); -x_22 = lean_ctor_get(x_2, 1); +x_22 = lean_ctor_get(x_1, 2); lean_inc(x_22); -x_23 = lean_ctor_get(x_2, 2); -lean_inc(x_23); -x_24 = lean_ctor_get_uint64(x_2, sizeof(void*)*3); -x_25 = lean_box_uint64(x_24); -x_26 = lean_apply_6(x_4, x_1, x_2, x_21, x_22, x_23, x_25); -return x_26; +x_23 = lean_ctor_get_uint64(x_1, sizeof(void*)*3); +lean_dec(x_1); +x_24 = lean_box_uint64(x_23); +x_25 = lean_apply_4(x_3, x_20, x_21, x_22, x_24); +return x_25; } case 8: { -lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; uint64_t x_31; lean_object* x_32; lean_object* x_33; -lean_dec(x_9); +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint64_t x_30; lean_object* x_31; lean_object* x_32; lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); -lean_dec(x_4); +lean_dec(x_5); lean_dec(x_3); -x_27 = lean_ctor_get(x_2, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_2, 1); -lean_inc(x_28); -x_29 = lean_ctor_get(x_2, 2); -lean_inc(x_29); -x_30 = lean_ctor_get(x_2, 3); -lean_inc(x_30); -x_31 = lean_ctor_get_uint64(x_2, sizeof(void*)*4); lean_dec(x_2); -x_32 = lean_box_uint64(x_31); -x_33 = lean_apply_6(x_5, x_1, x_27, x_28, x_29, x_30, x_32); -return x_33; +x_26 = lean_ctor_get(x_1, 0); +lean_inc(x_26); +x_27 = lean_ctor_get(x_1, 1); +lean_inc(x_27); +x_28 = lean_ctor_get(x_1, 2); +lean_inc(x_28); +x_29 = lean_ctor_get(x_1, 3); +lean_inc(x_29); +x_30 = lean_ctor_get_uint64(x_1, sizeof(void*)*4); +lean_dec(x_1); +x_31 = lean_box_uint64(x_30); +x_32 = lean_apply_5(x_4, x_26, x_27, x_28, x_29, x_31); +return x_32; } case 10: { -lean_object* x_34; lean_object* x_35; uint64_t x_36; lean_object* x_37; lean_object* x_38; -lean_dec(x_9); +lean_object* x_33; lean_object* x_34; uint64_t x_35; lean_object* x_36; lean_object* x_37; lean_dec(x_8); lean_dec(x_7); -lean_dec(x_5); +lean_dec(x_6); lean_dec(x_4); lean_dec(x_3); -x_34 = lean_ctor_get(x_2, 0); -lean_inc(x_34); -x_35 = lean_ctor_get(x_2, 1); -lean_inc(x_35); -x_36 = lean_ctor_get_uint64(x_2, sizeof(void*)*2); lean_dec(x_2); -x_37 = lean_box_uint64(x_36); -x_38 = lean_apply_4(x_6, x_1, x_34, x_35, x_37); -return x_38; +x_33 = lean_ctor_get(x_1, 0); +lean_inc(x_33); +x_34 = lean_ctor_get(x_1, 1); +lean_inc(x_34); +x_35 = lean_ctor_get_uint64(x_1, sizeof(void*)*2); +lean_dec(x_1); +x_36 = lean_box_uint64(x_35); +x_37 = lean_apply_3(x_5, x_33, x_34, x_36); +return x_37; } case 11: { -lean_object* x_39; lean_object* x_40; lean_object* x_41; uint64_t x_42; lean_object* x_43; lean_object* x_44; -lean_dec(x_9); +lean_object* x_38; lean_object* x_39; lean_object* x_40; uint64_t x_41; lean_object* x_42; lean_object* x_43; lean_dec(x_8); -lean_dec(x_6); +lean_dec(x_7); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_39 = lean_ctor_get(x_2, 0); -lean_inc(x_39); -x_40 = lean_ctor_get(x_2, 1); -lean_inc(x_40); -x_41 = lean_ctor_get(x_2, 2); -lean_inc(x_41); -x_42 = lean_ctor_get_uint64(x_2, sizeof(void*)*3); lean_dec(x_2); -x_43 = lean_box_uint64(x_42); -x_44 = lean_apply_5(x_7, x_1, x_39, x_40, x_41, x_43); -return x_44; +x_38 = lean_ctor_get(x_1, 0); +lean_inc(x_38); +x_39 = lean_ctor_get(x_1, 1); +lean_inc(x_39); +x_40 = lean_ctor_get(x_1, 2); +lean_inc(x_40); +x_41 = lean_ctor_get_uint64(x_1, sizeof(void*)*3); +lean_dec(x_1); +x_42 = lean_box_uint64(x_41); +x_43 = lean_apply_4(x_6, x_38, x_39, x_40, x_42); +return x_43; } default: { -lean_object* x_45; -lean_dec(x_8); +lean_object* x_44; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_45 = lean_apply_2(x_9, x_1, x_2); -return x_45; +lean_dec(x_2); +x_44 = lean_apply_1(x_8, x_1); +return x_44; } } } @@ -7352,7 +7361,7 @@ lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structu _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_replaceRecApps_loop_match__3___rarg), 9, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_replaceRecApps_loop_match__3___rarg), 8, 0); return x_2; } } @@ -12304,6 +12313,105 @@ lean_dec(x_10); return x_18; } } +uint8_t l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_shouldBetaReduce(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; +x_3 = l_Lean_Expr_isHeadBetaTarget(x_1); +if (x_3 == 0) +{ +uint8_t x_4; +lean_dec(x_2); +x_4 = 0; +return x_4; +} +else +{ +lean_object* x_5; lean_object* x_6; size_t x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_5 = lean_alloc_closure((void*)(l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_containsRecFn___lambda__1___boxed), 2, 1); +lean_closure_set(x_5, 0, x_2); +x_6 = l_Lean_Expr_getAppFn(x_1); +x_7 = 8192; +x_8 = l_Lean_Expr_FindImpl_initCache; +x_9 = l_Lean_Expr_FindImpl_findM_x3f_visit(x_5, x_7, x_6, x_8); +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +lean_dec(x_9); +if (lean_obj_tag(x_10) == 0) +{ +uint8_t x_11; +x_11 = 0; +return x_11; +} +else +{ +uint8_t x_12; +lean_dec(x_10); +x_12 = 1; +return x_12; +} +} +} +} +lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_shouldBetaReduce___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_shouldBetaReduce(x_1, x_2); +lean_dec(x_1); +x_4 = lean_box(x_3); +return x_4; +} +} +lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_preprocess___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +uint8_t x_6; +x_6 = l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_shouldBetaReduce(x_2, x_1); +if (x_6 == 0) +{ +lean_object* x_7; lean_object* x_8; +x_7 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_7, 0, x_2); +x_8 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_8, 0, x_7); +lean_ctor_set(x_8, 1, x_5); +return x_8; +} +else +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_9 = l_Lean_Expr_headBeta(x_2); +x_10 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_10, 0, x_9); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_10); +lean_ctor_set(x_11, 1, x_5); +return x_11; +} +} +} +lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_preprocess(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; lean_object* x_7; lean_object* x_8; +x_6 = lean_alloc_closure((void*)(l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_preprocess___lambda__1___boxed), 5, 1); +lean_closure_set(x_6, 0, x_2); +x_7 = l_Lean_Core_betaReduce___closed__2; +x_8 = l_Lean_Core_transform___at_Lean_Core_betaReduce___spec__1(x_1, x_6, x_7, x_3, x_4, x_5); +return x_8; +} +} +lean_object* l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_preprocess___lambda__1___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___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_preprocess___lambda__1(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_6; +} +} lean_object* l_Lean_Meta_lambdaTelescope___at___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_elimRecursion___spec__1___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: { @@ -12825,245 +12933,287 @@ lean_inc(x_7); x_10 = l_Lean_Elab_addAsAxiom(x_1, x_5, x_6, x_7, x_8, x_9); if (lean_obj_tag(x_10) == 0) { -lean_object* x_11; lean_object* x_12; uint8_t x_51; lean_object* x_52; lean_object* x_72; lean_object* x_73; lean_object* x_74; uint8_t x_75; +lean_object* x_11; lean_object* x_12; lean_object* x_13; x_11 = lean_ctor_get(x_10, 1); lean_inc(x_11); lean_dec(x_10); -x_72 = lean_st_ref_get(x_8, x_11); -x_73 = lean_ctor_get(x_72, 0); -lean_inc(x_73); -x_74 = lean_ctor_get(x_73, 3); -lean_inc(x_74); -lean_dec(x_73); -x_75 = lean_ctor_get_uint8(x_74, sizeof(void*)*1); -lean_dec(x_74); -if (x_75 == 0) +x_12 = lean_ctor_get(x_1, 3); +lean_inc(x_12); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_12); +x_13 = l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_preprocess(x_3, x_12, x_7, x_8, x_11); +if (lean_obj_tag(x_13) == 0) { -lean_object* x_76; uint8_t x_77; -x_76 = lean_ctor_get(x_72, 1); +lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_54; lean_object* x_55; lean_object* x_74; lean_object* x_75; lean_object* x_76; uint8_t x_77; +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_74 = lean_st_ref_get(x_8, x_15); +x_75 = lean_ctor_get(x_74, 0); +lean_inc(x_75); +x_76 = lean_ctor_get(x_75, 3); lean_inc(x_76); -lean_dec(x_72); -x_77 = 0; -x_51 = x_77; -x_52 = x_76; -goto block_71; +lean_dec(x_75); +x_77 = lean_ctor_get_uint8(x_76, sizeof(void*)*1); +lean_dec(x_76); +if (x_77 == 0) +{ +lean_object* x_78; uint8_t x_79; +x_78 = lean_ctor_get(x_74, 1); +lean_inc(x_78); +lean_dec(x_74); +x_79 = 0; +x_54 = x_79; +x_55 = x_78; +goto block_73; } else { -lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; -x_78 = lean_ctor_get(x_72, 1); -lean_inc(x_78); -lean_dec(x_72); -x_79 = l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_toBelowAux___closed__11; -x_80 = l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_replaceRecApps_loop___spec__10(x_79, x_4, x_5, x_6, x_7, x_8, x_78); -x_81 = lean_ctor_get(x_80, 0); -lean_inc(x_81); -x_82 = lean_ctor_get(x_80, 1); -lean_inc(x_82); -lean_dec(x_80); -x_83 = lean_unbox(x_81); -lean_dec(x_81); -x_51 = x_83; -x_52 = x_82; -goto block_71; +lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; uint8_t x_85; +x_80 = lean_ctor_get(x_74, 1); +lean_inc(x_80); +lean_dec(x_74); +x_81 = l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_toBelowAux___closed__11; +x_82 = l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_replaceRecApps_loop___spec__10(x_81, x_4, x_5, x_6, x_7, x_8, x_80); +x_83 = lean_ctor_get(x_82, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_82, 1); +lean_inc(x_84); +lean_dec(x_82); +x_85 = lean_unbox(x_83); +lean_dec(x_83); +x_54 = x_85; +x_55 = x_84; +goto block_73; } -block_50: +block_53: { -lean_object* x_13; lean_object* x_14; -x_13 = lean_ctor_get(x_1, 3); -lean_inc(x_13); +lean_object* x_17; lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); -lean_inc(x_3); +lean_inc(x_14); lean_inc(x_2); -lean_inc(x_13); -x_14 = l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_getFixedPrefix(x_13, x_2, x_3, x_5, x_6, x_7, x_8, x_12); -if (lean_obj_tag(x_14) == 0) +lean_inc(x_12); +x_17 = l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_getFixedPrefix(x_12, x_2, x_14, x_5, x_6, x_7, x_8, x_16); +if (lean_obj_tag(x_17) == 0) { -lean_object* x_15; lean_object* x_16; uint8_t x_17; lean_object* x_18; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; -x_15 = lean_ctor_get(x_14, 0); -lean_inc(x_15); -x_16 = lean_ctor_get(x_14, 1); -lean_inc(x_16); -lean_dec(x_14); -x_34 = lean_st_ref_get(x_8, x_16); -x_35 = lean_ctor_get(x_34, 0); -lean_inc(x_35); -x_36 = lean_ctor_get(x_35, 3); -lean_inc(x_36); -lean_dec(x_35); -x_37 = lean_ctor_get_uint8(x_36, sizeof(void*)*1); -lean_dec(x_36); -if (x_37 == 0) -{ -lean_object* x_38; uint8_t x_39; -x_38 = lean_ctor_get(x_34, 1); +lean_object* x_18; lean_object* x_19; uint8_t x_20; lean_object* x_21; lean_object* x_37; lean_object* x_38; lean_object* x_39; uint8_t x_40; +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); +x_37 = lean_st_ref_get(x_8, x_19); +x_38 = lean_ctor_get(x_37, 0); lean_inc(x_38); -lean_dec(x_34); -x_39 = 0; -x_17 = x_39; -x_18 = x_38; -goto block_33; +x_39 = lean_ctor_get(x_38, 3); +lean_inc(x_39); +lean_dec(x_38); +x_40 = lean_ctor_get_uint8(x_39, sizeof(void*)*1); +lean_dec(x_39); +if (x_40 == 0) +{ +lean_object* x_41; uint8_t x_42; +x_41 = lean_ctor_get(x_37, 1); +lean_inc(x_41); +lean_dec(x_37); +x_42 = 0; +x_20 = x_42; +x_21 = x_41; +goto block_36; } else { -lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; -x_40 = lean_ctor_get(x_34, 1); -lean_inc(x_40); -lean_dec(x_34); -x_41 = l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_toBelowAux___closed__11; -x_42 = l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_replaceRecApps_loop___spec__10(x_41, x_4, x_5, x_6, x_7, x_8, x_40); -x_43 = lean_ctor_get(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; +x_43 = lean_ctor_get(x_37, 1); lean_inc(x_43); -x_44 = lean_ctor_get(x_42, 1); -lean_inc(x_44); -lean_dec(x_42); -x_45 = lean_unbox(x_43); -lean_dec(x_43); -x_17 = x_45; -x_18 = x_44; -goto block_33; +lean_dec(x_37); +x_44 = l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_toBelowAux___closed__11; +x_45 = l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_replaceRecApps_loop___spec__10(x_44, x_4, x_5, x_6, x_7, x_8, x_43); +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_unbox(x_46); +lean_dec(x_46); +x_20 = x_48; +x_21 = x_47; +goto block_36; } -block_33: +block_36: { -if (x_17 == 0) +if (x_20 == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_toBelowAux___closed__11; +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_toBelowAux___closed__11; lean_inc(x_2); -x_20 = lean_alloc_closure((void*)(l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_elimRecursion___lambda__1___boxed), 12, 5); -lean_closure_set(x_20, 0, x_13); -lean_closure_set(x_20, 1, x_3); -lean_closure_set(x_20, 2, x_2); -lean_closure_set(x_20, 3, x_1); -lean_closure_set(x_20, 4, x_19); -lean_inc(x_15); -x_21 = l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_findRecArg_loop___rarg(x_15, x_2, x_20, x_15, x_4, x_5, x_6, x_7, x_8, x_18); -return x_21; +x_23 = lean_alloc_closure((void*)(l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_elimRecursion___lambda__1___boxed), 12, 5); +lean_closure_set(x_23, 0, x_12); +lean_closure_set(x_23, 1, x_14); +lean_closure_set(x_23, 2, x_2); +lean_closure_set(x_23, 3, x_1); +lean_closure_set(x_23, 4, x_22); +lean_inc(x_18); +x_24 = l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_findRecArg_loop___rarg(x_18, x_2, x_23, x_18, x_4, x_5, x_6, x_7, x_8, x_21); +return x_24; } 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; -lean_inc(x_15); -x_22 = l_Std_fmt___at_Lean_Position_instToFormatPosition___spec__1(x_15); -x_23 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_23, 0, x_22); -x_24 = l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_elimRecursion___lambda__2___closed__2; -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_KernelException_toMessageData___closed__15; -x_27 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_27, 0, x_25); -lean_ctor_set(x_27, 1, x_26); -x_28 = l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_toBelowAux___closed__11; -x_29 = l_Lean_addTrace___at___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_replaceRecApps_loop___spec__9(x_28, x_27, x_4, x_5, x_6, x_7, x_8, x_18); -x_30 = lean_ctor_get(x_29, 1); -lean_inc(x_30); -lean_dec(x_29); +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_inc(x_18); +x_25 = l_Std_fmt___at_Lean_Position_instToFormatPosition___spec__1(x_18); +x_26 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_26, 0, x_25); +x_27 = l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_elimRecursion___lambda__2___closed__2; +x_28 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_28, 0, x_27); +lean_ctor_set(x_28, 1, x_26); +x_29 = l_Lean_KernelException_toMessageData___closed__15; +x_30 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_30, 0, x_28); +lean_ctor_set(x_30, 1, x_29); +x_31 = l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_toBelowAux___closed__11; +x_32 = l_Lean_addTrace___at___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_replaceRecApps_loop___spec__9(x_31, x_30, x_4, x_5, x_6, x_7, x_8, x_21); +x_33 = lean_ctor_get(x_32, 1); +lean_inc(x_33); +lean_dec(x_32); lean_inc(x_2); -x_31 = lean_alloc_closure((void*)(l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_elimRecursion___lambda__1___boxed), 12, 5); -lean_closure_set(x_31, 0, x_13); -lean_closure_set(x_31, 1, x_3); -lean_closure_set(x_31, 2, x_2); -lean_closure_set(x_31, 3, x_1); -lean_closure_set(x_31, 4, x_28); -lean_inc(x_15); -x_32 = l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_findRecArg_loop___rarg(x_15, x_2, x_31, x_15, x_4, x_5, x_6, x_7, x_8, x_30); -return x_32; +x_34 = lean_alloc_closure((void*)(l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_elimRecursion___lambda__1___boxed), 12, 5); +lean_closure_set(x_34, 0, x_12); +lean_closure_set(x_34, 1, x_14); +lean_closure_set(x_34, 2, x_2); +lean_closure_set(x_34, 3, x_1); +lean_closure_set(x_34, 4, x_31); +lean_inc(x_18); +x_35 = l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_findRecArg_loop___rarg(x_18, x_2, x_34, x_18, x_4, x_5, x_6, x_7, x_8, x_33); +return x_35; } } } else { -uint8_t x_46; -lean_dec(x_13); +uint8_t x_49; +lean_dec(x_14); +lean_dec(x_12); 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_46 = !lean_is_exclusive(x_14); -if (x_46 == 0) +x_49 = !lean_is_exclusive(x_17); +if (x_49 == 0) { -return x_14; +return x_17; } else { -lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_47 = lean_ctor_get(x_14, 0); -x_48 = lean_ctor_get(x_14, 1); -lean_inc(x_48); -lean_inc(x_47); -lean_dec(x_14); -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; +lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_50 = lean_ctor_get(x_17, 0); +x_51 = lean_ctor_get(x_17, 1); +lean_inc(x_51); +lean_inc(x_50); +lean_dec(x_17); +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; } } } -block_71: +block_73: { -if (x_51 == 0) +if (x_54 == 0) { -x_12 = x_52; -goto block_50; +x_16 = x_55; +goto block_53; } else { -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; -x_53 = lean_ctor_get(x_1, 3); -lean_inc(x_53); -x_54 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_54, 0, x_53); -x_55 = l_Lean_KernelException_toMessageData___closed__15; -x_56 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_56, 0, x_55); -lean_ctor_set(x_56, 1, x_54); -x_57 = l_Lean_Meta_substCore___lambda__1___closed__3; +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_inc(x_12); +x_56 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_56, 0, x_12); +x_57 = l_Lean_KernelException_toMessageData___closed__15; x_58 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_58, 0, x_56); -lean_ctor_set(x_58, 1, x_57); +lean_ctor_set(x_58, 0, x_57); +lean_ctor_set(x_58, 1, x_56); +x_59 = l_Lean_Meta_substCore___lambda__1___closed__3; +x_60 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_60, 0, x_58); +lean_ctor_set(x_60, 1, x_59); lean_inc(x_2); -x_59 = lean_array_to_list(lean_box(0), x_2); -x_60 = l_List_map___at_Lean_MessageData_instCoeListExprMessageData___spec__1(x_59); -x_61 = l_Lean_MessageData_ofList(x_60); -lean_dec(x_60); -x_62 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_62, 0, x_58); -lean_ctor_set(x_62, 1, x_61); -x_63 = l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_elimRecursion___lambda__2___closed__3; +x_61 = lean_array_to_list(lean_box(0), x_2); +x_62 = l_List_map___at_Lean_MessageData_instCoeListExprMessageData___spec__1(x_61); +x_63 = l_Lean_MessageData_ofList(x_62); +lean_dec(x_62); x_64 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_64, 0, x_62); +lean_ctor_set(x_64, 0, x_60); lean_ctor_set(x_64, 1, x_63); -lean_inc(x_3); -x_65 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_65, 0, x_3); +x_65 = l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_elimRecursion___lambda__2___closed__3; x_66 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_66, 0, x_64); lean_ctor_set(x_66, 1, x_65); -x_67 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_67, 0, x_66); -lean_ctor_set(x_67, 1, x_55); -x_68 = l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_toBelowAux___closed__11; -x_69 = l_Lean_addTrace___at___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_replaceRecApps_loop___spec__9(x_68, x_67, x_4, x_5, x_6, x_7, x_8, x_52); -x_70 = lean_ctor_get(x_69, 1); -lean_inc(x_70); -lean_dec(x_69); -x_12 = x_70; -goto block_50; +lean_inc(x_14); +x_67 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_67, 0, x_14); +x_68 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_68, 0, x_66); +lean_ctor_set(x_68, 1, x_67); +x_69 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_69, 0, x_68); +lean_ctor_set(x_69, 1, x_57); +x_70 = l___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_toBelowAux___closed__11; +x_71 = l_Lean_addTrace___at___private_Lean_Elab_PreDefinition_Structural_0__Lean_Elab_Structural_replaceRecApps_loop___spec__9(x_70, x_69, x_4, x_5, x_6, x_7, x_8, x_55); +x_72 = lean_ctor_get(x_71, 1); +lean_inc(x_72); +lean_dec(x_71); +x_16 = x_72; +goto block_53; } } } else { -uint8_t x_84; +uint8_t x_86; +lean_dec(x_12); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_86 = !lean_is_exclusive(x_13); +if (x_86 == 0) +{ +return x_13; +} +else +{ +lean_object* x_87; lean_object* x_88; lean_object* x_89; +x_87 = lean_ctor_get(x_13, 0); +x_88 = lean_ctor_get(x_13, 1); +lean_inc(x_88); +lean_inc(x_87); +lean_dec(x_13); +x_89 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_89, 0, x_87); +lean_ctor_set(x_89, 1, x_88); +return x_89; +} +} +} +else +{ +uint8_t x_90; lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); @@ -13072,23 +13222,23 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_84 = !lean_is_exclusive(x_10); -if (x_84 == 0) +x_90 = !lean_is_exclusive(x_10); +if (x_90 == 0) { return x_10; } else { -lean_object* x_85; lean_object* x_86; lean_object* x_87; -x_85 = lean_ctor_get(x_10, 0); -x_86 = lean_ctor_get(x_10, 1); -lean_inc(x_86); -lean_inc(x_85); +lean_object* x_91; lean_object* x_92; lean_object* x_93; +x_91 = lean_ctor_get(x_10, 0); +x_92 = lean_ctor_get(x_10, 1); +lean_inc(x_92); +lean_inc(x_91); lean_dec(x_10); -x_87 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_87, 0, x_85); -lean_ctor_set(x_87, 1, x_86); -return x_87; +x_93 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_93, 0, x_91); +lean_ctor_set(x_93, 1, x_92); +return x_93; } } } @@ -13263,157 +13413,6 @@ x_6 = l_Lean_Elab_Structural_addSmartUnfoldingDefAux_visit_match__1___rarg(x_5, return x_6; } } -lean_object* l_Lean_Elab_Structural_addSmartUnfoldingDefAux_visit_match__2___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: -{ -switch (lean_obj_tag(x_1)) { -case 5: -{ -lean_object* x_9; lean_object* x_10; uint64_t x_11; lean_object* x_12; lean_object* x_13; -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_9 = lean_ctor_get(x_1, 0); -lean_inc(x_9); -x_10 = lean_ctor_get(x_1, 1); -lean_inc(x_10); -x_11 = lean_ctor_get_uint64(x_1, sizeof(void*)*2); -lean_dec(x_1); -x_12 = lean_box_uint64(x_11); -x_13 = lean_apply_3(x_7, x_9, x_10, x_12); -return x_13; -} -case 6: -{ -lean_object* x_14; lean_object* x_15; lean_object* x_16; uint64_t x_17; lean_object* x_18; lean_object* x_19; -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_14 = lean_ctor_get(x_1, 0); -lean_inc(x_14); -x_15 = lean_ctor_get(x_1, 1); -lean_inc(x_15); -x_16 = lean_ctor_get(x_1, 2); -lean_inc(x_16); -x_17 = lean_ctor_get_uint64(x_1, sizeof(void*)*3); -lean_dec(x_1); -x_18 = lean_box_uint64(x_17); -x_19 = lean_apply_4(x_2, x_14, x_15, x_16, x_18); -return x_19; -} -case 7: -{ -lean_object* x_20; lean_object* x_21; lean_object* x_22; uint64_t x_23; lean_object* x_24; lean_object* x_25; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_2); -x_20 = lean_ctor_get(x_1, 0); -lean_inc(x_20); -x_21 = lean_ctor_get(x_1, 1); -lean_inc(x_21); -x_22 = lean_ctor_get(x_1, 2); -lean_inc(x_22); -x_23 = lean_ctor_get_uint64(x_1, sizeof(void*)*3); -lean_dec(x_1); -x_24 = lean_box_uint64(x_23); -x_25 = lean_apply_4(x_3, x_20, x_21, x_22, x_24); -return x_25; -} -case 8: -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint64_t x_30; lean_object* x_31; lean_object* x_32; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_3); -lean_dec(x_2); -x_26 = lean_ctor_get(x_1, 0); -lean_inc(x_26); -x_27 = lean_ctor_get(x_1, 1); -lean_inc(x_27); -x_28 = lean_ctor_get(x_1, 2); -lean_inc(x_28); -x_29 = lean_ctor_get(x_1, 3); -lean_inc(x_29); -x_30 = lean_ctor_get_uint64(x_1, sizeof(void*)*4); -lean_dec(x_1); -x_31 = lean_box_uint64(x_30); -x_32 = lean_apply_5(x_4, x_26, x_27, x_28, x_29, x_31); -return x_32; -} -case 10: -{ -lean_object* x_33; lean_object* x_34; uint64_t x_35; lean_object* x_36; lean_object* x_37; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_33 = lean_ctor_get(x_1, 0); -lean_inc(x_33); -x_34 = lean_ctor_get(x_1, 1); -lean_inc(x_34); -x_35 = lean_ctor_get_uint64(x_1, sizeof(void*)*2); -lean_dec(x_1); -x_36 = lean_box_uint64(x_35); -x_37 = lean_apply_3(x_5, x_33, x_34, x_36); -return x_37; -} -case 11: -{ -lean_object* x_38; lean_object* x_39; lean_object* x_40; uint64_t x_41; lean_object* x_42; lean_object* x_43; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_38 = lean_ctor_get(x_1, 0); -lean_inc(x_38); -x_39 = lean_ctor_get(x_1, 1); -lean_inc(x_39); -x_40 = lean_ctor_get(x_1, 2); -lean_inc(x_40); -x_41 = lean_ctor_get_uint64(x_1, sizeof(void*)*3); -lean_dec(x_1); -x_42 = lean_box_uint64(x_41); -x_43 = lean_apply_4(x_6, x_38, x_39, x_40, x_42); -return x_43; -} -default: -{ -lean_object* x_44; -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_apply_1(x_8, x_1); -return x_44; -} -} -} -} -lean_object* l_Lean_Elab_Structural_addSmartUnfoldingDefAux_visit_match__2(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Structural_addSmartUnfoldingDefAux_visit_match__2___rarg), 8, 0); -return x_2; -} -} lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Structural_addSmartUnfoldingDefAux_visit___spec__1(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) { _start: { @@ -15705,7 +15704,7 @@ return x_42; } } } -lean_object* l_Lean_Elab_Structural_initFn____x40_Lean_Elab_PreDefinition_Structural___hyg_5115_(lean_object* x_1) { +lean_object* l_Lean_Elab_Structural_initFn____x40_Lean_Elab_PreDefinition_Structural___hyg_5135_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -15719,6 +15718,7 @@ lean_object* initialize_Lean_Util_ForEachExpr(lean_object*); lean_object* initialize_Lean_Meta_ForEachExpr(lean_object*); lean_object* initialize_Lean_Meta_RecursorInfo(lean_object*); lean_object* initialize_Lean_Meta_Match_Match(lean_object*); +lean_object* initialize_Lean_Meta_Transform(lean_object*); lean_object* initialize_Lean_Elab_PreDefinition_Basic(lean_object*); static bool _G_initialized = false; lean_object* initialize_Lean_Elab_PreDefinition_Structural(lean_object* w) { @@ -15740,6 +15740,9 @@ lean_dec_ref(res); res = initialize_Lean_Meta_Match_Match(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Lean_Meta_Transform(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); res = initialize_Lean_Elab_PreDefinition_Basic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); @@ -15943,7 +15946,7 @@ l_Lean_Elab_Structural_structuralRecursion___closed__2 = _init_l_Lean_Elab_Struc lean_mark_persistent(l_Lean_Elab_Structural_structuralRecursion___closed__2); l_Lean_Elab_Structural_structuralRecursion___closed__3 = _init_l_Lean_Elab_Structural_structuralRecursion___closed__3(); lean_mark_persistent(l_Lean_Elab_Structural_structuralRecursion___closed__3); -res = l_Lean_Elab_Structural_initFn____x40_Lean_Elab_PreDefinition_Structural___hyg_5115_(lean_io_mk_world()); +res = l_Lean_Elab_Structural_initFn____x40_Lean_Elab_PreDefinition_Structural___hyg_5135_(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/Quotation.c b/stage0/stdlib/Lean/Elab/Quotation.c index e24daa1c81..ec352d3ffb 100644 --- a/stage0/stdlib/Lean/Elab/Quotation.c +++ b/stage0/stdlib/Lean/Elab/Quotation.c @@ -19,7 +19,6 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHead lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__18___boxed(lean_object**); extern lean_object* l_Lean_Syntax_getQuotContent___closed__1; lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__16___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* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__9; lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__6___closed__3; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo_match__7___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__21___closed__17; @@ -27,6 +26,7 @@ extern lean_object* l_Lean_Name_toString___closed__1; lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__19(lean_object*, 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*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__24; lean_object* l_Array_sequenceMap___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1___boxed(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__9; extern lean_object* l_myMacro____x40_Init_Notation___hyg_13954____closed__3; lean_object* l_Lean_Syntax_unescapeAntiquot(lean_object*); uint8_t l_Lean_Syntax_isAntiquotSuffixSplice(lean_object*); @@ -56,12 +56,13 @@ extern lean_object* l_instReprOption___rarg___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__18(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*); extern lean_object* l_Lean_Syntax_isQuot_match__1___rarg___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__11; +lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__17; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__27; -lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__17; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11___closed__12; lean_object* lean_mk_empty_array_with_capacity(lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_15419____closed__1; lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__22(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__12; lean_object* l_List_head_x21___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__1(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -74,7 +75,6 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHead lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__1; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__21___lambda__3___boxed(lean_object**); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__1; -lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__12; extern lean_object* l_term_x5b___x5d___closed__9; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__21___lambda__3___closed__1; lean_object* l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_7____closed__2; @@ -105,12 +105,12 @@ extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1160____close lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___boxed__const__1; lean_object* l_Lean_Elab_Term_Quotation_resolveSectionVariable___boxed(lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4214____closed__1; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__21(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, 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*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__31; lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_______closed__6; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__17; extern lean_object* l_Lean_Elab_throwUnsupportedSyntax___rarg___closed__1; +lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4213____closed__1; extern lean_object* l_myMacro____x40_Init_Notation___hyg_13765____closed__6; lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__20___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* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -146,6 +146,7 @@ lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean uint8_t l_Lean_Syntax_structEq(lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_doElem_quot___elambda__1___closed__2; +lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__11; extern lean_object* l_myMacro____x40_Init_Notation___hyg_13954____closed__8; extern lean_object* l_Lean_Meta_mkPure___closed__4; extern lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5021____closed__1; @@ -153,7 +154,6 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHead size_t l_USize_sub(size_t, size_t); extern lean_object* l_Array_empty___closed__1; extern lean_object* l_instReprProd___rarg___closed__2; -lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__11; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__4; extern lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5484____closed__28; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__15___boxed(lean_object**); @@ -188,10 +188,10 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHead lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11___closed__21; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__15___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___lambda__1___closed__3; +lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__19; lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__7___boxed(lean_object**); lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___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*, lean_object*, lean_object*, lean_object*); lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__5___closed__3; -lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__19; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_adaptRhs_match__1___rarg(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_noOpMatchAdaptPats___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__5___closed__5; @@ -229,7 +229,6 @@ lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Quotati lean_object* l_Lean_Syntax_getAntiquotTerm(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__15___closed__4; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__13___closed__11; -lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__10; extern lean_object* l_myMacro____x40_Init_Notation___hyg_1481____closed__1; extern lean_object* l_Std_Format_sbracket___closed__4; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__6___rarg(lean_object*); @@ -248,6 +247,7 @@ lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lea lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__6; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__21___closed__12; lean_object* lean_string_utf8_byte_size(lean_object*); +lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__10; lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_instReprProd___rarg___closed__1; lean_object* l_Lean_Elab_Term_Quotation_getPatternsVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -255,9 +255,9 @@ lean_object* l_Lean_Elab_Term_Quotation_mkTuple(lean_object*, lean_object*, lean lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__13; extern lean_object* l_myMacro____x40_Init_Notation___hyg_15419____closed__6; -lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__20; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__14; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__16; +lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__20; extern lean_object* l_instReprBool___closed__2; lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__8___closed__4; @@ -272,19 +272,19 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHead lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__11; lean_object* l_Lean_Elab_Term_Quotation_resolveSectionVariable_loop_match__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4259_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4264_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4269_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4229_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4274_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4244_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4234_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4224_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4249_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4254_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4239_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4214_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4219_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4263_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4268_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4258_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4228_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4273_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4243_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4233_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4238_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4223_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4248_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4253_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4213_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4218_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___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*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_13954____closed__13; @@ -295,6 +295,7 @@ lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__3; lean_object* l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_7____closed__3; extern lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5484____closed__24; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11___closed__7; +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4238____closed__1; extern lean_object* l_myMacro____x40_Init_Notation___hyg_15419____closed__3; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__21___lambda__1___closed__3; lean_object* l_Lean_Syntax_SepArray_ofElems(lean_object*, lean_object*); @@ -308,14 +309,14 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSy lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__5___closed__10; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_zip___rarg(lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__6; +lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__6; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__30; lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__20(lean_object*, 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*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___lambda__2(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__20; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo_match__6(lean_object*); +lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__25; extern lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_948____closed__4; -lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__27; lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9(lean_object*, 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*); lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__3___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__5; @@ -325,18 +326,20 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOu lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_______closed__9; lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation___hyg_113____spec__1(lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__12(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4273____closed__1; lean_object* l_List_replicate___rarg(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__25; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__27; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11___closed__16; lean_object* l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_713____at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___boxed(lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__10___boxed(lean_object**); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11___closed__24; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__1; +lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__4; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__21___lambda__3___closed__5; extern lean_object* l_myMacro____x40_Init_Notation___hyg_13954____closed__6; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___lambda__1___closed__4; -lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__4; extern lean_object* l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__6; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -409,15 +412,14 @@ extern lean_object* l_Lean_Parser_Syntax_addPrec___closed__5; extern lean_object* l_Lean_Parser_Term_notFollowedByRedefinedTermToken___elambda__1___closed__43; lean_object* l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__38; -lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__13; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__6; +lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__23; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__21; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__21___lambda__3___closed__3; extern lean_object* l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__3___rarg(lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__21___lambda__2___closed__10; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__3(lean_object*); -lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__23; lean_object* l_instInhabited___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand_match__1(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__13___closed__10; @@ -485,6 +487,7 @@ lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__4; lean_object* l_Lean_Elab_Term_Quotation_mkTuple___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__2; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__21___closed__20; +lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__24; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___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___private_Init_Meta_0__Lean_quoteName(lean_object*); lean_object* l_Lean_Syntax_mkStrLit(lean_object*, lean_object*); @@ -502,7 +505,6 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSy lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__5; lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__5___closed__11; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__21___closed__24; -lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__16; extern lean_object* l_myMacro____x40_Init_Notation___hyg_13352____closed__7; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__15___closed__11; lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__8___closed__1; @@ -512,16 +514,17 @@ lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_______closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__9; lean_object* l_Std_RBNode_find___at___private_Lean_Hygiene_0__Lean_sanitizeSyntaxAux___spec__2(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__24(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__7; lean_object* l_Lean_throwError___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__23___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_11819_(lean_object*); +lean_object* l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_11818_(lean_object*); lean_object* l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_7_(lean_object*); extern lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5484____closed__2; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__21___closed__7; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__3; lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__16; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__8; +lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__7; lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__17(lean_object*, 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*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__22; extern lean_object* l_Lean_KernelException_toMessageData___closed__15; @@ -541,11 +544,9 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHead lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___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_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__4(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4239____closed__1; extern lean_object* l_instReprList___rarg___closed__2; lean_object* l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7(lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__21___closed__16; -lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__25; extern lean_object* l_Lean_Parser_Syntax_addPrec___closed__10; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__25___closed__3; extern lean_object* l_Lean_Parser_Term_quot___elambda__1___closed__1; @@ -570,12 +571,14 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHead lean_object* l_Lean_Elab_Term_Quotation_resolveSectionVariable(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__2; lean_object* l_Lean_addTrace___at___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm___spec__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_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__13; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__15(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_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__36; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_mkArrow___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4248____closed__1; extern lean_object* l_Lean_Level_PP_Result_quote___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11(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_myMacro____x40_Init_Notation___hyg_11334____closed__7; @@ -614,28 +617,27 @@ lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__8___closed__5; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms_match__1(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__19(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_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__28; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__21___lambda__2___closed__5; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__11; -lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__14; uint8_t l_Lean_Syntax_isNodeOf(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__3(lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__29; extern lean_object* l_term_x2d_____closed__3; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__21___lambda__1___closed__2; -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4249____closed__1; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__25; lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24(lean_object*); extern lean_object* l_Lean_instToMessageDataOption___rarg___closed__3; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__5; +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4258____closed__1; extern lean_object* l_Lean_Parser_Term_funBinder_quot___elambda__1___closed__3; +lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__14; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice(lean_object*); -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4274____closed__1; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4(size_t, size_t, lean_object*); +lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__28; lean_object* l_Lean_Syntax_getQuotContent(lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__5(size_t, size_t, lean_object*); -lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__5; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__12; +lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__5; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__32; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__10; extern lean_object* l_Option_get_x21___rarg___closed__4; @@ -653,7 +655,7 @@ lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lea lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__16___boxed(lean_object**); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__15; lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__6; -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4269____closed__1; +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4268____closed__1; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__21___closed__11; extern lean_object* l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__8; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__2; @@ -663,22 +665,23 @@ lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at___privat lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11___closed__20; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__23; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__7; +lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__3; lean_object* l_Lean_Syntax_getNumArgs(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__25___closed__5; -lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__21; -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4224_(lean_object*); -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4219_(lean_object*); -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4229_(lean_object*); -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4214_(lean_object*); -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4264_(lean_object*); -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4259_(lean_object*); -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4269_(lean_object*); -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4249_(lean_object*); -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4244_(lean_object*); -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4254_(lean_object*); -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4239_(lean_object*); -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4234_(lean_object*); -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4274_(lean_object*); +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4228_(lean_object*); +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4238_(lean_object*); +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4223_(lean_object*); +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4218_(lean_object*); +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4268_(lean_object*); +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4213_(lean_object*); +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4263_(lean_object*); +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4258_(lean_object*); +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4248_(lean_object*); +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4243_(lean_object*); +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4253_(lean_object*); +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4233_(lean_object*); +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4273_(lean_object*); +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4213____closed__1; lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_______closed__4; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__5; lean_object* l_Lean_Syntax_setArg(lean_object*, lean_object*, lean_object*); @@ -689,7 +692,7 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSy lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__21; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__20; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__30; -lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__3; +lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__21; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__15___closed__10; extern lean_object* l_Id_instMonadId; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__13___closed__22; @@ -712,13 +715,13 @@ lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__1(lean_ob uint8_t l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__7(lean_object*); lean_object* l_Lean_Syntax_getAntiquotSpliceSuffix(lean_object*); lean_object* l_Lean_Syntax_getKind(lean_object*); -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4229____closed__1; 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_Lean_MacroScopesView_review(lean_object*); -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4234____closed__1; +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4228____closed__1; extern lean_object* l_Lean_Parser_Term_prio_quot___elambda__1___closed__2; lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__8___closed__2; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__21___lambda__2___closed__9; +lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__8; extern lean_object* l_myMacro____x40_Init_Notation___hyg_15419____closed__12; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__33; @@ -730,7 +733,6 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHead extern lean_object* l_Lean_instQuoteSubstring___closed__4; lean_object* l_Array_appendCore___rarg(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___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_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__8; lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__10(lean_object*, lean_object*, lean_object*, lean_object*, 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*); lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__11(lean_object*, 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*); @@ -738,14 +740,15 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHead lean_object* l_List_head_x21___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__1___boxed(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__13___closed__5; -lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__1; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__21___closed__6; -lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__2; +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4223____closed__1; +lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__11; lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__15___closed__7; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__17(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_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4224____closed__1; +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4233____closed__1; lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__13___closed__15; lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -784,10 +787,10 @@ lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_______closed__3; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___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* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate_match__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__6; -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4219____closed__1; +lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__26; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___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___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4218____closed__1; lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__16(lean_object*, 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*); -lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__26; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11___closed__4; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__1(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__5; @@ -821,17 +824,16 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepF lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11___closed__8; lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__6___closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__13; -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4264____closed__1; lean_object* l_Array_sequenceMap_loop___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_adaptRhs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22(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_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__25___closed__1; extern lean_object* l_prec_x28___x29___closed__7; -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4214____closed__1; lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, 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*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__10; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__32; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__23; +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4263____closed__1; lean_object* l_Lean_Elab_Term_Quotation_resolveSectionVariable_loop_match__1___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_changeWith___closed__3; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11___closed__17; @@ -888,7 +890,6 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHead lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__25___boxed(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___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_Quotation_match__syntax_expand___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4259____closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__16; lean_object* l_Std_Format_joinSep___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__1; @@ -900,7 +901,7 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHead lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__3(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_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate_match__2(lean_object*); -lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788_(lean_object*, lean_object*, lean_object*); lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__5___closed__6; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__5; lean_object* l_Array_sequenceMap___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1(lean_object*, lean_object*); @@ -914,8 +915,8 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHead lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__22; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__9; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4253____closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__18; -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4254____closed__1; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__21___boxed(lean_object**); extern lean_object* l_myMacro____x40_Init_Notation___hyg_7361____closed__3; lean_object* l_Lean_Elab_Term_Quotation_hygiene; @@ -923,30 +924,29 @@ extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_1131____close lean_object* l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__25(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_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11___closed__15; -lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__15; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___boxed(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__6___closed__1; +lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__18; +lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__15; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_13352____closed__10; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__21___lambda__2___closed__1; extern lean_object* l_myMacro____x40_Init_Notation___hyg_7361____closed__4; -lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__18; +lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__29; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo_match__6___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l___private_Init_Meta_0__Lean_quoteList___rarg___closed__1; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__21___closed__2; -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4244____closed__1; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__21___lambda__1___closed__1; extern lean_object* l_Lean_Parser_Term_namedPattern___elambda__1___closed__1; lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_______closed__5; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__21___lambda__2___closed__2; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__21___boxed__const__1; -lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__22; extern lean_object* l_myMacro____x40_Init_Notation___hyg_12069____closed__7; +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4243____closed__1; lean_object* l_Lean_Syntax_antiquotKind_x3f(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___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___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11___closed__3; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__29; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__8(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_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__13___closed__3; @@ -957,6 +957,7 @@ lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__13; lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__21___boxed(lean_object**); +lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__22; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__11; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___closed__7; extern lean_object* l_myMacro____x40_Init_Notation___hyg_1481____closed__5; @@ -972,7 +973,6 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_13954____closed__5; extern lean_object* l_Std_Format_paren___closed__3; extern lean_object* l_myMacro____x40_Init_Notation___hyg_13954____closed__14; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo_match__1(lean_object*); -lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__24; extern lean_object* l_myMacro____x40_Init_Notation___hyg_13352____closed__12; lean_object* l_Lean_Elab_getBetterRef(lean_object*, lean_object*); lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -13904,7 +13904,7 @@ x_1 = l_Lean_Elab_Term_Quotation_commandElab__stx__quot_______closed__9; return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__1() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -13913,13 +13913,13 @@ x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__2() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__4; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__1; +x_3 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____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); @@ -13927,7 +13927,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__3() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__3() { _start: { lean_object* x_1; @@ -13935,22 +13935,22 @@ x_1 = lean_mk_string("elabQuot"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__4() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__3; +x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__3; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__5() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__3; +x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__3; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__4; +x_3 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____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); @@ -13958,17 +13958,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__6() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__3; +x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__7() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__7() { _start: { lean_object* x_1; lean_object* x_2; @@ -13977,13 +13977,13 @@ x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__8() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__8; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__7; +x_3 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__7; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -13991,7 +13991,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__9() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -14001,7 +14001,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__10() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -14013,19 +14013,19 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__11() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__10; +x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__10; 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_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__12() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__12() { _start: { lean_object* x_1; @@ -14033,22 +14033,22 @@ x_1 = lean_mk_string("adaptExpander"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__13() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__13() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__12; +x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__12; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__14() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__12; +x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__12; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__13; +x_3 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__13; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -14056,51 +14056,51 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__15() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__12; +x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__12; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__16() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__1; -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__12; +x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__12; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__17() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__16; +x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__16; 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_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__18() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__18() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__17; +x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__17; 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_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__19() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__19() { _start: { lean_object* x_1; @@ -14108,22 +14108,22 @@ x_1 = lean_mk_string("stxQuot.expand"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__20() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__20() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__19; +x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__19; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__21() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__19; +x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__19; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__20; +x_3 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__20; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -14131,7 +14131,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__22() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__22() { _start: { lean_object* x_1; @@ -14139,17 +14139,17 @@ x_1 = lean_mk_string("stxQuot"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__23() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__23() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__22; +x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__22; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__24() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__24() { _start: { lean_object* x_1; @@ -14157,61 +14157,61 @@ x_1 = lean_mk_string("expand"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__25() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__25() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__23; -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__24; +x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__23; +x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__24; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__26() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__26() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_Quotation_commandElab__stx__quot_______closed__2; -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__22; +x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__22; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__27() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__27() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__26; -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__24; +x_1 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__26; +x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__24; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__28() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__28() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__27; +x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__27; 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_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__29() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__29() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__28; +x_2 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__28; 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_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -14258,7 +14258,7 @@ lean_inc(x_13); lean_inc(x_14); x_20 = l_Lean_addMacroScope(x_14, x_19, x_13); x_21 = lean_box(0); -x_22 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__2; +x_22 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__2; lean_inc(x_12); x_23 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_23, 0, x_12); @@ -14319,11 +14319,11 @@ x_56 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_56, 0, x_12); lean_ctor_set(x_56, 1, x_55); x_57 = lean_array_push(x_17, x_56); -x_58 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__6; +x_58 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__6; lean_inc(x_13); lean_inc(x_14); x_59 = l_Lean_addMacroScope(x_14, x_58, x_13); -x_60 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__5; +x_60 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__5; lean_inc(x_12); x_61 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_61, 0, x_12); @@ -14343,12 +14343,12 @@ x_68 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_68, 0, x_12); lean_ctor_set(x_68, 1, x_67); x_69 = lean_array_push(x_17, x_68); -x_70 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__9; +x_70 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__9; lean_inc(x_13); lean_inc(x_14); x_71 = l_Lean_addMacroScope(x_14, x_70, x_13); -x_72 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__8; -x_73 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__11; +x_72 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__8; +x_73 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__11; lean_inc(x_12); x_74 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_74, 0, x_12); @@ -14376,12 +14376,12 @@ x_85 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_85, 0, x_12); lean_ctor_set(x_85, 1, x_84); x_86 = lean_array_push(x_17, x_85); -x_87 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__15; +x_87 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__15; lean_inc(x_13); lean_inc(x_14); x_88 = l_Lean_addMacroScope(x_14, x_87, x_13); -x_89 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__14; -x_90 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__18; +x_89 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__14; +x_90 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__18; lean_inc(x_12); x_91 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_91, 0, x_12); @@ -14389,10 +14389,10 @@ lean_ctor_set(x_91, 1, x_89); lean_ctor_set(x_91, 2, x_88); lean_ctor_set(x_91, 3, x_90); x_92 = lean_array_push(x_17, x_91); -x_93 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__25; +x_93 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__25; x_94 = l_Lean_addMacroScope(x_14, x_93, x_13); -x_95 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__21; -x_96 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__29; +x_95 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__21; +x_96 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__29; x_97 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_97, 0, x_12); lean_ctor_set(x_97, 1, x_95); @@ -14451,7 +14451,7 @@ lean_inc(x_115); lean_inc(x_116); x_122 = l_Lean_addMacroScope(x_116, x_121, x_115); x_123 = lean_box(0); -x_124 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__2; +x_124 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__2; lean_inc(x_113); x_125 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_125, 0, x_113); @@ -14512,11 +14512,11 @@ x_158 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_158, 0, x_113); lean_ctor_set(x_158, 1, x_157); x_159 = lean_array_push(x_119, x_158); -x_160 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__6; +x_160 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__6; lean_inc(x_115); lean_inc(x_116); x_161 = l_Lean_addMacroScope(x_116, x_160, x_115); -x_162 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__5; +x_162 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__5; lean_inc(x_113); x_163 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_163, 0, x_113); @@ -14536,12 +14536,12 @@ x_170 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_170, 0, x_113); lean_ctor_set(x_170, 1, x_169); x_171 = lean_array_push(x_119, x_170); -x_172 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__9; +x_172 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__9; lean_inc(x_115); lean_inc(x_116); x_173 = l_Lean_addMacroScope(x_116, x_172, x_115); -x_174 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__8; -x_175 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__11; +x_174 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__8; +x_175 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__11; lean_inc(x_113); x_176 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_176, 0, x_113); @@ -14569,12 +14569,12 @@ x_187 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_187, 0, x_113); lean_ctor_set(x_187, 1, x_186); x_188 = lean_array_push(x_119, x_187); -x_189 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__15; +x_189 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__15; lean_inc(x_115); lean_inc(x_116); x_190 = l_Lean_addMacroScope(x_116, x_189, x_115); -x_191 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__14; -x_192 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__18; +x_191 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__14; +x_192 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__18; lean_inc(x_113); x_193 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_193, 0, x_113); @@ -14582,10 +14582,10 @@ lean_ctor_set(x_193, 1, x_191); lean_ctor_set(x_193, 2, x_190); lean_ctor_set(x_193, 3, x_192); x_194 = lean_array_push(x_119, x_193); -x_195 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__25; +x_195 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__25; x_196 = l_Lean_addMacroScope(x_116, x_195, x_115); -x_197 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__21; -x_198 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__29; +x_197 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__21; +x_198 = l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__29; x_199 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_199, 0, x_113); lean_ctor_set(x_199, 1, x_197); @@ -14624,7 +14624,7 @@ return x_215; } } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4214____closed__1() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4213____closed__1() { _start: { lean_object* x_1; @@ -14632,366 +14632,366 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_stxQuot_expand), 8, return x_1; } } -lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4214_(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* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4213_(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 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4214____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4213____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4214____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4213____closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4214_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4213_), 9, 0); return x_1; } } -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4214_(lean_object* x_1) { +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4213_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Term_termElabAttribute; x_3 = l_Lean_Parser_Level_quot___elambda__1___closed__1; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4214____closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4213____closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4219_(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* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4218_(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 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4214____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4213____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4219____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4218____closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4219_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4218_), 9, 0); return x_1; } } -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4219_(lean_object* x_1) { +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4218_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Term_termElabAttribute; x_3 = l_Lean_Parser_Term_quot___elambda__1___closed__1; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4219____closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4218____closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4224_(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* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4223_(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 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4214____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4213____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4224____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4223____closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4224_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4223_), 9, 0); return x_1; } } -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4224_(lean_object* x_1) { +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4223_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Term_termElabAttribute; x_3 = l_Lean_Parser_Term_funBinder_quot___elambda__1___closed__3; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4224____closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4223____closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4229_(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* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4228_(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 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4214____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4213____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4229____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4228____closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4229_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4228_), 9, 0); return x_1; } } -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4229_(lean_object* x_1) { +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4228_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Term_termElabAttribute; x_3 = l_Lean_Parser_Term_bracketedBinder_quot___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4229____closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4228____closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4234_(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* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4233_(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 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4214____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4213____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4234____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4233____closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4234_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4233_), 9, 0); return x_1; } } -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4234_(lean_object* x_1) { +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4233_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Term_termElabAttribute; x_3 = l_Lean_Parser_Term_matchDiscr_quot___elambda__1___closed__1; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4234____closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4233____closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4239_(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* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4238_(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 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4214____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4213____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4239____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4238____closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4239_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4238_), 9, 0); return x_1; } } -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4239_(lean_object* x_1) { +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4238_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Term_termElabAttribute; x_3 = l_Lean_Parser_Tactic_quot___elambda__1___closed__1; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4239____closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4238____closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4244_(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* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4243_(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 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4214____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4213____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4244____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4243____closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4244_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4243_), 9, 0); return x_1; } } -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4244_(lean_object* x_1) { +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4243_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Term_termElabAttribute; x_3 = l_Lean_Parser_Tactic_quotSeq___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4244____closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4243____closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4249_(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* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4248_(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 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4214____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4213____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4249____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4248____closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4249_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4248_), 9, 0); return x_1; } } -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4249_(lean_object* x_1) { +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4248_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Term_termElabAttribute; x_3 = l_Lean_Parser_Term_stx_quot___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4249____closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4248____closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4254_(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* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4253_(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 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4214____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4213____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4254____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4253____closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4254_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4253_), 9, 0); return x_1; } } -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4254_(lean_object* x_1) { +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4253_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Term_termElabAttribute; x_3 = l_Lean_Parser_Term_prec_quot___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4254____closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4253____closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4259_(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* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4258_(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 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4214____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4213____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4259____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4258____closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4259_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4258_), 9, 0); return x_1; } } -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4259_(lean_object* x_1) { +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4258_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Term_termElabAttribute; x_3 = l_Lean_Parser_Term_attr_quot___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4259____closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4258____closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4264_(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* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4263_(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 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4214____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4213____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4264____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4263____closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4264_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4263_), 9, 0); return x_1; } } -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4264_(lean_object* x_1) { +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4263_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Term_termElabAttribute; x_3 = l_Lean_Parser_Term_prio_quot___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4264____closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4263____closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4269_(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* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4268_(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 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4214____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4213____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4269____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4268____closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4269_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4268_), 9, 0); return x_1; } } -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4269_(lean_object* x_1) { +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4268_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Term_termElabAttribute; x_3 = l_Lean_Parser_Term_doElem_quot___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4269____closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4268____closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4274_(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* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4273_(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 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4214____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4213____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4274____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4273____closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4274_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4273_), 9, 0); return x_1; } } -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4274_(lean_object* x_1) { +lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4273_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Term_termElabAttribute; x_3 = l_Lean_Syntax_getQuotContent___closed__1; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4274____closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4273____closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } @@ -31525,7 +31525,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___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__2; x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__3; -x_3 = lean_unsigned_to_nat(457u); +x_3 = lean_unsigned_to_nat(458u); x_4 = lean_unsigned_to_nat(12u); x_5 = l_Lean_Name_getString_x21___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -34192,7 +34192,7 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_11819_(lean_object* x_1) { +lean_object* l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_11818_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -34628,129 +34628,129 @@ l_Lean_Elab_Term_Quotation_commandElab__stx__quot_______closed__9 = _init_l_Lean lean_mark_persistent(l_Lean_Elab_Term_Quotation_commandElab__stx__quot_______closed__9); l_Lean_Elab_Term_Quotation_commandElab__stx__quot____ = _init_l_Lean_Elab_Term_Quotation_commandElab__stx__quot____(); lean_mark_persistent(l_Lean_Elab_Term_Quotation_commandElab__stx__quot____); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__1 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__1(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__1); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__2 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__2(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__2); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__3 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__3(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__3); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__4 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__4(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__4); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__5 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__5(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__5); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__6 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__6(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__6); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__7 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__7(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__7); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__8 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__8(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__8); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__9 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__9(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__9); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__10 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__10(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__10); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__11 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__11(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__11); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__12 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__12(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__12); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__13 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__13(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__13); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__14 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__14(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__14); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__15 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__15(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__15); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__16 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__16(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__16); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__17 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__17(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__17); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__18 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__18(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__18); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__19 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__19(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__19); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__20 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__20(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__20); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__21 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__21(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__21); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__22 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__22(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__22); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__23 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__23(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__23); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__24 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__24(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__24); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__25 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__25(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__25); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__26 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__26(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__26); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__27 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__27(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__27); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__28 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__28(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__28); -l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__29 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__29(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3789____closed__29); -l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4214____closed__1 = _init_l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4214____closed__1(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4214____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4214____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4214____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4214____closed__1); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4214_(lean_io_mk_world()); +l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__1 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__1); +l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__2 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__2(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__2); +l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__3 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__3(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__3); +l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__4 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__4(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__4); +l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__5 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__5(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__5); +l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__6 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__6(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__6); +l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__7 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__7(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__7); +l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__8 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__8(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__8); +l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__9 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__9(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__9); +l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__10 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__10(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__10); +l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__11 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__11(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__11); +l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__12 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__12(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__12); +l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__13 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__13(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__13); +l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__14 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__14(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__14); +l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__15 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__15(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__15); +l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__16 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__16(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__16); +l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__17 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__17(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__17); +l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__18 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__18(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__18); +l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__19 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__19(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__19); +l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__20 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__20(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__20); +l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__21 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__21(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__21); +l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__22 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__22(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__22); +l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__23 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__23(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__23); +l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__24 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__24(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__24); +l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__25 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__25(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__25); +l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__26 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__26(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__26); +l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__27 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__27(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__27); +l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__28 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__28(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__28); +l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__29 = _init_l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__29(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3788____closed__29); +l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4213____closed__1 = _init_l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4213____closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4213____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4213____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4213____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4213____closed__1); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4213_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4219____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4219____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4219____closed__1); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4219_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4218____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4218____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4218____closed__1); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4218_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4224____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4224____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4224____closed__1); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4224_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4223____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4223____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4223____closed__1); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4223_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4229____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4229____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4229____closed__1); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4229_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4228____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4228____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4228____closed__1); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4228_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4234____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4234____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4234____closed__1); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4234_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4233____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4233____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4233____closed__1); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4233_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4239____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4239____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4239____closed__1); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4239_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4238____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4238____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4238____closed__1); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4238_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4244____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4244____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4244____closed__1); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4244_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4243____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4243____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4243____closed__1); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4243_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4249____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4249____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4249____closed__1); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4249_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4248____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4248____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4248____closed__1); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4248_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4254____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4254____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4254____closed__1); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4254_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4253____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4253____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4253____closed__1); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4253_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4259____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4259____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4259____closed__1); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4259_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4258____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4258____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4258____closed__1); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4258_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4264____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4264____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4264____closed__1); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4264_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4263____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4263____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4263____closed__1); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4263_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4269____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4269____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4269____closed__1); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4269_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4268____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4268____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4268____closed__1); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4268_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4274____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4274____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4274____closed__1); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4274_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4273____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4273____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4273____closed__1); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4273_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_noOpMatchAdaptPats___closed__1 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_noOpMatchAdaptPats___closed__1(); @@ -35096,7 +35096,7 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___c res = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_11819_(lean_io_mk_world()); +res = l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_11818_(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/SetOption.c b/stage0/stdlib/Lean/Elab/SetOption.c index 7c94663cce..c6ddfa5f7f 100644 --- a/stage0/stdlib/Lean/Elab/SetOption.c +++ b/stage0/stdlib/Lean/Elab/SetOption.c @@ -33,9 +33,9 @@ lean_object* l_Lean_throwError___at_Lean_Elab_elabSetOption_setOption___spec__1_ lean_object* l_Lean_Elab_elabSetOption_setOption___rarg___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_elabSetOption___rarg___lambda__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_elabSetOption___rarg___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; lean_object* l_Lean_Elab_elabSetOption_match__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_elabSetOption___rarg___lambda__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; lean_object* l_Lean_getOptionDecl(lean_object*, lean_object*); extern lean_object* l_Lean_numLitKind; lean_object* l_Lean_Elab_elabSetOption_setOption___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); @@ -94,7 +94,7 @@ if (x_8 == 0) { lean_object* x_9; uint8_t x_10; lean_dec(x_2); -x_9 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_9 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; x_10 = lean_string_dec_eq(x_6, x_9); lean_dec(x_6); if (x_10 == 0) @@ -791,7 +791,7 @@ x_25 = lean_string_dec_eq(x_23, x_24); if (x_25 == 0) { lean_object* x_26; uint8_t x_27; -x_26 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_26 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; x_27 = lean_string_dec_eq(x_23, x_26); lean_dec(x_23); if (x_27 == 0) diff --git a/stage0/stdlib/Lean/Elab/StructInst.c b/stage0/stdlib/Lean/Elab/StructInst.c index 5b8d236b9b..5abce8ae5f 100644 --- a/stage0/stdlib/Lean/Elab/StructInst.c +++ b/stage0/stdlib/Lean/Elab/StructInst.c @@ -99,7 +99,7 @@ lean_object* l_Lean_Elab_Term_StructInst_Struct_allDefault_match__1(lean_object* lean_object* l_Lean_Elab_Term_StructInst_markDefaultMissing(lean_object*); extern lean_object* l_Array_empty___closed__1; lean_object* lean_environment_find(lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_StructInst_initFn____x40_Lean_Elab_StructInst___hyg_7094_(lean_object*); +lean_object* l_Lean_Elab_Term_StructInst_initFn____x40_Lean_Elab_StructInst___hyg_7098_(lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_mkDefaultValueAux_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Meta_0__Lean_Syntax_isNatLitAux(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_mkCtorHeaderAux___closed__1; @@ -247,6 +247,7 @@ lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_mkFie lean_object* l_Lean_Elab_Term_StructInst_formatStruct___closed__3; lean_object* l_Lean_Elab_Term_StructInst_FieldVal_toSyntax___boxed(lean_object*); lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_elabModifyOp___closed__9; +lean_object* l_Lean_Elab_throwAbortTerm___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandNonAtomicExplicitSource___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructName_throwUnexpectedExpectedType___closed__3; lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_elabModifyOp___closed__8; lean_object* lean_st_ref_take(lean_object*, lean_object*); @@ -388,6 +389,7 @@ lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_elabS lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_toFieldLHS_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_mkCtorHeaderAux___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_whnf(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Elab_throwAbortTerm___rarg___closed__1; lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_isModifyOp_x3f_match__1(lean_object*); lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_mkCtorHeaderAux___closed__2; uint8_t l_Lean_Elab_Term_StructInst_Field_isSimple___rarg(lean_object*); @@ -440,6 +442,7 @@ lean_object* l_Std_fmt___at_Lean_Level_PP_Result_format___spec__1(lean_object*); lean_object* l_List_foldlM___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_elabStruct___spec__3(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_groupKind; uint8_t l_Lean_Elab_Term_StructInst_DefaultFields_tryToSynthesizeDefault_loop___lambda__1(lean_object*); +uint8_t l_Lean_Syntax_isMissing(lean_object*); lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_isModifyOp_x3f___spec__1___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_StructInst_findField_x3f_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_instToFormatFieldLHS(lean_object*); @@ -463,6 +466,7 @@ lean_object* l_Lean_Elab_Term_StructInst_expandStructInstExpectedType___boxed(le lean_object* l_Lean_Expr_getAppNumArgsAux(lean_object*, 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_StructInst_formatField___closed__1; +lean_object* l_Lean_Elab_throwAbortTerm___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandNonAtomicExplicitSource___spec__1___rarg(lean_object*); lean_object* l_List_find_x3f___rarg(lean_object*, lean_object*); lean_object* l_Lean_mkHole(lean_object*); extern lean_object* l_Lean_Elab_macroAttribute; @@ -559,6 +563,7 @@ lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_StructInst_DefaultFields_pr lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_propagateLoop(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_StructInst_Field_toSyntax___closed__2; extern lean_object* l_Lean_mkOptionalNode___closed__1; +lean_object* l_Lean_Elab_throwAbortTerm___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandNonAtomicExplicitSource___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_propagateLoop_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_elabStruct___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_hasLooseBVars(lean_object*); @@ -885,6 +890,25 @@ x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_StructInst_0__Lean_Elab_T return x_2; } } +lean_object* l_Lean_Elab_throwAbortTerm___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandNonAtomicExplicitSource___spec__1___rarg(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_Elab_throwAbortTerm___rarg___closed__1; +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_Elab_throwAbortTerm___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandNonAtomicExplicitSource___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) { +_start: +{ +lean_object* x_7; +x_7 = lean_alloc_closure((void*)(l_Lean_Elab_throwAbortTerm___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandNonAtomicExplicitSource___spec__1___rarg), 1, 0); +return x_7; +} +} static lean_object* _init_l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandNonAtomicExplicitSource___closed__1() { _start: { @@ -929,40 +953,40 @@ return x_3; lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandNonAtomicExplicitSource(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; uint8_t x_11; uint8_t x_12; lean_object* x_13; lean_object* x_14; lean_object* x_297; +lean_object* x_9; lean_object* x_10; uint8_t x_11; uint8_t x_12; lean_object* x_13; lean_object* x_14; lean_object* x_303; x_9 = lean_unsigned_to_nat(1u); x_10 = l_Lean_Syntax_getArg(x_1, x_9); x_11 = l_Lean_Syntax_isNone(x_10); -x_297 = lean_st_ref_take(x_7, x_8); +x_303 = lean_st_ref_take(x_7, x_8); if (x_11 == 0) { -lean_object* x_298; lean_object* x_299; uint8_t x_300; -x_298 = lean_ctor_get(x_297, 0); -lean_inc(x_298); -x_299 = lean_ctor_get(x_297, 1); -lean_inc(x_299); -lean_dec(x_297); -x_300 = 0; -x_12 = x_300; -x_13 = x_298; -x_14 = x_299; -goto block_296; +lean_object* x_304; lean_object* x_305; uint8_t x_306; +x_304 = lean_ctor_get(x_303, 0); +lean_inc(x_304); +x_305 = lean_ctor_get(x_303, 1); +lean_inc(x_305); +lean_dec(x_303); +x_306 = 0; +x_12 = x_306; +x_13 = x_304; +x_14 = x_305; +goto block_302; } else { -lean_object* x_301; lean_object* x_302; uint8_t x_303; -x_301 = lean_ctor_get(x_297, 0); -lean_inc(x_301); -x_302 = lean_ctor_get(x_297, 1); -lean_inc(x_302); -lean_dec(x_297); -x_303 = 1; -x_12 = x_303; -x_13 = x_301; -x_14 = x_302; -goto block_296; +lean_object* x_307; lean_object* x_308; uint8_t x_309; +x_307 = lean_ctor_get(x_303, 0); +lean_inc(x_307); +x_308 = lean_ctor_get(x_303, 1); +lean_inc(x_308); +lean_dec(x_303); +x_309 = 1; +x_12 = x_309; +x_13 = x_307; +x_14 = x_308; +goto block_302; } -block_296: +block_302: { uint8_t x_15; x_15 = !lean_is_exclusive(x_13); @@ -995,484 +1019,516 @@ x_25 = lean_ctor_get(x_24, 0); lean_inc(x_25); if (lean_obj_tag(x_25) == 0) { -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; uint8_t x_50; +lean_object* x_26; uint8_t x_27; x_26 = lean_ctor_get(x_24, 1); lean_inc(x_26); lean_dec(x_24); -x_27 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_quoteAutoTactic___spec__1___rarg(x_6, x_7, x_26); -x_28 = lean_ctor_get(x_27, 0); -lean_inc(x_28); -x_29 = lean_ctor_get(x_27, 1); +x_27 = l_Lean_Syntax_isMissing(x_23); +if (x_27 == 0) +{ +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; uint8_t x_51; +x_28 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_quoteAutoTactic___spec__1___rarg(x_6, x_7, x_26); +x_29 = lean_ctor_get(x_28, 0); lean_inc(x_29); -lean_dec(x_27); -x_30 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_29); -x_31 = lean_ctor_get(x_30, 0); -lean_inc(x_31); -x_32 = lean_ctor_get(x_30, 1); +x_30 = lean_ctor_get(x_28, 1); +lean_inc(x_30); +lean_dec(x_28); +x_31 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_30); +x_32 = lean_ctor_get(x_31, 0); lean_inc(x_32); -lean_dec(x_30); -x_33 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_32); -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -x_35 = lean_ctor_get(x_33, 1); +x_33 = lean_ctor_get(x_31, 1); +lean_inc(x_33); +lean_dec(x_31); +x_34 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_33); +x_35 = lean_ctor_get(x_34, 0); lean_inc(x_35); -lean_dec(x_33); -x_36 = l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandNonAtomicExplicitSource___closed__4; -x_37 = l_Lean_addMacroScope(x_34, x_36, x_31); -x_38 = lean_box(0); -x_39 = l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandNonAtomicExplicitSource___closed__3; -x_40 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_40, 0, x_28); -lean_ctor_set(x_40, 1, x_39); -lean_ctor_set(x_40, 2, x_37); -lean_ctor_set(x_40, 3, x_38); -x_41 = l_Lean_Syntax_setArg(x_10, x_22, x_40); -x_42 = l_Lean_Syntax_setArg(x_1, x_9, x_41); -x_43 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_quoteAutoTactic___spec__4___rarg(x_6, x_7, x_35); -x_44 = lean_ctor_get(x_43, 0); -lean_inc(x_44); -x_45 = lean_ctor_get(x_43, 1); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandNonAtomicExplicitSource___closed__4; +x_38 = l_Lean_addMacroScope(x_35, x_37, x_32); +x_39 = lean_box(0); +x_40 = l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandNonAtomicExplicitSource___closed__3; +x_41 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_41, 0, x_29); +lean_ctor_set(x_41, 1, x_40); +lean_ctor_set(x_41, 2, x_38); +lean_ctor_set(x_41, 3, x_39); +x_42 = l_Lean_Syntax_setArg(x_10, x_22, x_41); +x_43 = l_Lean_Syntax_setArg(x_1, x_9, x_42); +x_44 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_quoteAutoTactic___spec__4___rarg(x_6, x_7, x_36); +x_45 = lean_ctor_get(x_44, 0); lean_inc(x_45); -lean_dec(x_43); -x_46 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_45); +x_46 = lean_ctor_get(x_44, 1); +lean_inc(x_46); +lean_dec(x_44); +x_47 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_46); lean_dec(x_4); lean_dec(x_2); -x_47 = lean_ctor_get(x_46, 0); -lean_inc(x_47); -x_48 = lean_ctor_get(x_46, 1); +x_48 = lean_ctor_get(x_47, 0); lean_inc(x_48); -lean_dec(x_46); -x_49 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_48); -x_50 = !lean_is_exclusive(x_49); -if (x_50 == 0) +x_49 = lean_ctor_get(x_47, 1); +lean_inc(x_49); +lean_dec(x_47); +x_50 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_49); +x_51 = !lean_is_exclusive(x_50); +if (x_51 == 0) { -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; -x_51 = lean_ctor_get(x_49, 0); -x_52 = l_myMacro____x40_Init_Notation___hyg_15419____closed__1; -lean_inc(x_44); -x_53 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_53, 0, x_44); -lean_ctor_set(x_53, 1, x_52); -x_54 = l_Array_empty___closed__1; -x_55 = lean_array_push(x_54, x_53); -x_56 = l_Lean_addMacroScope(x_51, x_36, x_47); -lean_inc(x_44); -x_57 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_57, 0, x_44); -lean_ctor_set(x_57, 1, x_39); -lean_ctor_set(x_57, 2, x_56); -lean_ctor_set(x_57, 3, x_38); -x_58 = lean_array_push(x_54, x_57); -x_59 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; -x_60 = lean_array_push(x_58, x_59); -x_61 = lean_array_push(x_60, x_59); -x_62 = l_myMacro____x40_Init_Notation___hyg_15419____closed__11; -lean_inc(x_44); -x_63 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_63, 0, x_44); -lean_ctor_set(x_63, 1, x_62); -x_64 = lean_array_push(x_61, x_63); -x_65 = lean_array_push(x_64, x_23); -x_66 = l_myMacro____x40_Init_Notation___hyg_15419____closed__6; -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_54, x_67); -x_69 = l_myMacro____x40_Init_Notation___hyg_15419____closed__4; -x_70 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_68); -x_71 = lean_array_push(x_55, x_70); -x_72 = l_myMacro____x40_Init_Notation___hyg_15419____closed__12; -x_73 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_73, 0, x_44); -lean_ctor_set(x_73, 1, x_72); -x_74 = lean_array_push(x_54, x_73); -x_75 = l_Lean_nullKind___closed__2; -x_76 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_76, 0, x_75); -lean_ctor_set(x_76, 1, x_74); -x_77 = lean_array_push(x_71, x_76); -x_78 = lean_array_push(x_77, x_42); -x_79 = l_myMacro____x40_Init_Notation___hyg_15419____closed__2; -x_80 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_80, 0, x_79); -lean_ctor_set(x_80, 1, x_78); -x_81 = lean_alloc_ctor(1, 1, 0); +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; +x_52 = lean_ctor_get(x_50, 0); +x_53 = l_myMacro____x40_Init_Notation___hyg_15419____closed__1; +lean_inc(x_45); +x_54 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_54, 0, x_45); +lean_ctor_set(x_54, 1, x_53); +x_55 = l_Array_empty___closed__1; +x_56 = lean_array_push(x_55, x_54); +x_57 = l_Lean_addMacroScope(x_52, x_37, x_48); +lean_inc(x_45); +x_58 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_58, 0, x_45); +lean_ctor_set(x_58, 1, x_40); +lean_ctor_set(x_58, 2, x_57); +lean_ctor_set(x_58, 3, x_39); +x_59 = lean_array_push(x_55, x_58); +x_60 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; +x_61 = lean_array_push(x_59, x_60); +x_62 = lean_array_push(x_61, x_60); +x_63 = l_myMacro____x40_Init_Notation___hyg_15419____closed__11; +lean_inc(x_45); +x_64 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_64, 0, x_45); +lean_ctor_set(x_64, 1, x_63); +x_65 = lean_array_push(x_62, x_64); +x_66 = lean_array_push(x_65, x_23); +x_67 = l_myMacro____x40_Init_Notation___hyg_15419____closed__6; +x_68 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_68, 0, x_67); +lean_ctor_set(x_68, 1, x_66); +x_69 = lean_array_push(x_55, x_68); +x_70 = l_myMacro____x40_Init_Notation___hyg_15419____closed__4; +x_71 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_71, 0, x_70); +lean_ctor_set(x_71, 1, x_69); +x_72 = lean_array_push(x_56, x_71); +x_73 = l_myMacro____x40_Init_Notation___hyg_15419____closed__12; +x_74 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_74, 0, x_45); +lean_ctor_set(x_74, 1, x_73); +x_75 = lean_array_push(x_55, x_74); +x_76 = l_Lean_nullKind___closed__2; +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 = lean_array_push(x_72, x_77); +x_79 = lean_array_push(x_78, x_43); +x_80 = l_myMacro____x40_Init_Notation___hyg_15419____closed__2; +x_81 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_81, 0, x_80); -lean_ctor_set(x_49, 0, x_81); -return x_49; +lean_ctor_set(x_81, 1, x_79); +x_82 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_82, 0, x_81); +lean_ctor_set(x_50, 0, x_82); +return x_50; } else { -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; 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; -x_82 = lean_ctor_get(x_49, 0); -x_83 = lean_ctor_get(x_49, 1); +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; 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; +x_83 = lean_ctor_get(x_50, 0); +x_84 = lean_ctor_get(x_50, 1); +lean_inc(x_84); lean_inc(x_83); -lean_inc(x_82); -lean_dec(x_49); -x_84 = l_myMacro____x40_Init_Notation___hyg_15419____closed__1; -lean_inc(x_44); -x_85 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_85, 0, x_44); -lean_ctor_set(x_85, 1, x_84); -x_86 = l_Array_empty___closed__1; -x_87 = lean_array_push(x_86, x_85); -x_88 = l_Lean_addMacroScope(x_82, x_36, x_47); -lean_inc(x_44); -x_89 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_89, 0, x_44); -lean_ctor_set(x_89, 1, x_39); -lean_ctor_set(x_89, 2, x_88); -lean_ctor_set(x_89, 3, x_38); -x_90 = lean_array_push(x_86, x_89); -x_91 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; -x_92 = lean_array_push(x_90, x_91); -x_93 = lean_array_push(x_92, x_91); -x_94 = l_myMacro____x40_Init_Notation___hyg_15419____closed__11; -lean_inc(x_44); -x_95 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_95, 0, x_44); -lean_ctor_set(x_95, 1, x_94); -x_96 = lean_array_push(x_93, x_95); -x_97 = lean_array_push(x_96, x_23); -x_98 = l_myMacro____x40_Init_Notation___hyg_15419____closed__6; -x_99 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_99, 0, x_98); -lean_ctor_set(x_99, 1, x_97); -x_100 = lean_array_push(x_86, x_99); -x_101 = l_myMacro____x40_Init_Notation___hyg_15419____closed__4; -x_102 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_102, 0, x_101); -lean_ctor_set(x_102, 1, x_100); -x_103 = lean_array_push(x_87, x_102); -x_104 = l_myMacro____x40_Init_Notation___hyg_15419____closed__12; -x_105 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_105, 0, x_44); -lean_ctor_set(x_105, 1, x_104); -x_106 = lean_array_push(x_86, x_105); -x_107 = l_Lean_nullKind___closed__2; -x_108 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_108, 0, x_107); -lean_ctor_set(x_108, 1, x_106); -x_109 = lean_array_push(x_103, x_108); -x_110 = lean_array_push(x_109, x_42); -x_111 = l_myMacro____x40_Init_Notation___hyg_15419____closed__2; -x_112 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_112, 0, x_111); -lean_ctor_set(x_112, 1, x_110); -x_113 = lean_alloc_ctor(1, 1, 0); +lean_dec(x_50); +x_85 = l_myMacro____x40_Init_Notation___hyg_15419____closed__1; +lean_inc(x_45); +x_86 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_86, 0, x_45); +lean_ctor_set(x_86, 1, x_85); +x_87 = l_Array_empty___closed__1; +x_88 = lean_array_push(x_87, x_86); +x_89 = l_Lean_addMacroScope(x_83, x_37, x_48); +lean_inc(x_45); +x_90 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_90, 0, x_45); +lean_ctor_set(x_90, 1, x_40); +lean_ctor_set(x_90, 2, x_89); +lean_ctor_set(x_90, 3, x_39); +x_91 = lean_array_push(x_87, x_90); +x_92 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; +x_93 = lean_array_push(x_91, x_92); +x_94 = lean_array_push(x_93, x_92); +x_95 = l_myMacro____x40_Init_Notation___hyg_15419____closed__11; +lean_inc(x_45); +x_96 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_96, 0, x_45); +lean_ctor_set(x_96, 1, x_95); +x_97 = lean_array_push(x_94, x_96); +x_98 = lean_array_push(x_97, x_23); +x_99 = l_myMacro____x40_Init_Notation___hyg_15419____closed__6; +x_100 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_100, 0, x_99); +lean_ctor_set(x_100, 1, x_98); +x_101 = lean_array_push(x_87, x_100); +x_102 = l_myMacro____x40_Init_Notation___hyg_15419____closed__4; +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 = lean_array_push(x_88, x_103); +x_105 = l_myMacro____x40_Init_Notation___hyg_15419____closed__12; +x_106 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_106, 0, x_45); +lean_ctor_set(x_106, 1, x_105); +x_107 = lean_array_push(x_87, x_106); +x_108 = l_Lean_nullKind___closed__2; +x_109 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_109, 0, x_108); +lean_ctor_set(x_109, 1, x_107); +x_110 = lean_array_push(x_104, x_109); +x_111 = lean_array_push(x_110, x_43); +x_112 = l_myMacro____x40_Init_Notation___hyg_15419____closed__2; +x_113 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_113, 0, x_112); -x_114 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_113, 1, x_111); +x_114 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_114, 0, x_113); -lean_ctor_set(x_114, 1, x_83); -return x_114; +x_115 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_115, 0, x_114); +lean_ctor_set(x_115, 1, x_84); +return x_115; } } else { -uint8_t x_115; +lean_object* x_116; +lean_dec(x_23); +lean_dec(x_2); +lean_dec(x_10); +lean_dec(x_4); +lean_dec(x_1); +x_116 = l_Lean_Elab_throwAbortTerm___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandNonAtomicExplicitSource___spec__1___rarg(x_26); +return x_116; +} +} +else +{ +uint8_t x_117; lean_dec(x_25); lean_dec(x_23); lean_dec(x_2); lean_dec(x_10); lean_dec(x_4); lean_dec(x_1); -x_115 = !lean_is_exclusive(x_24); -if (x_115 == 0) +x_117 = !lean_is_exclusive(x_24); +if (x_117 == 0) { -lean_object* x_116; lean_object* x_117; -x_116 = lean_ctor_get(x_24, 0); -lean_dec(x_116); -x_117 = lean_box(0); -lean_ctor_set(x_24, 0, x_117); +lean_object* x_118; lean_object* x_119; +x_118 = lean_ctor_get(x_24, 0); +lean_dec(x_118); +x_119 = lean_box(0); +lean_ctor_set(x_24, 0, x_119); return x_24; } else { -lean_object* x_118; lean_object* x_119; lean_object* x_120; -x_118 = lean_ctor_get(x_24, 1); -lean_inc(x_118); +lean_object* x_120; lean_object* x_121; lean_object* x_122; +x_120 = lean_ctor_get(x_24, 1); +lean_inc(x_120); lean_dec(x_24); -x_119 = lean_box(0); -x_120 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_120, 0, x_119); -lean_ctor_set(x_120, 1, x_118); -return x_120; +x_121 = lean_box(0); +x_122 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_122, 0, x_121); +lean_ctor_set(x_122, 1, x_120); +return x_122; } } } else { -lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; uint8_t x_125; uint8_t x_126; uint8_t x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; uint8_t x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; -x_121 = lean_ctor_get(x_2, 0); -x_122 = lean_ctor_get(x_2, 1); -x_123 = lean_ctor_get(x_2, 2); -x_124 = lean_ctor_get(x_2, 3); -x_125 = lean_ctor_get_uint8(x_2, sizeof(void*)*8); -x_126 = lean_ctor_get_uint8(x_2, sizeof(void*)*8 + 1); -x_127 = lean_ctor_get_uint8(x_2, sizeof(void*)*8 + 2); -x_128 = lean_ctor_get(x_2, 5); -x_129 = lean_ctor_get(x_2, 6); -x_130 = lean_ctor_get(x_2, 7); -x_131 = lean_ctor_get_uint8(x_2, sizeof(void*)*8 + 3); +lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; uint8_t x_127; uint8_t x_128; uint8_t x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; uint8_t x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; +x_123 = lean_ctor_get(x_2, 0); +x_124 = lean_ctor_get(x_2, 1); +x_125 = lean_ctor_get(x_2, 2); +x_126 = lean_ctor_get(x_2, 3); +x_127 = lean_ctor_get_uint8(x_2, sizeof(void*)*8); +x_128 = lean_ctor_get_uint8(x_2, sizeof(void*)*8 + 1); +x_129 = lean_ctor_get_uint8(x_2, sizeof(void*)*8 + 2); +x_130 = lean_ctor_get(x_2, 5); +x_131 = lean_ctor_get(x_2, 6); +x_132 = lean_ctor_get(x_2, 7); +x_133 = lean_ctor_get_uint8(x_2, sizeof(void*)*8 + 3); +lean_inc(x_132); +lean_inc(x_131); lean_inc(x_130); -lean_inc(x_129); -lean_inc(x_128); +lean_inc(x_126); +lean_inc(x_125); lean_inc(x_124); lean_inc(x_123); -lean_inc(x_122); -lean_inc(x_121); lean_dec(x_2); -x_132 = lean_alloc_ctor(0, 8, 4); -lean_ctor_set(x_132, 0, x_121); -lean_ctor_set(x_132, 1, x_122); -lean_ctor_set(x_132, 2, x_123); -lean_ctor_set(x_132, 3, x_124); -lean_ctor_set(x_132, 4, x_16); -lean_ctor_set(x_132, 5, x_128); -lean_ctor_set(x_132, 6, x_129); -lean_ctor_set(x_132, 7, x_130); -lean_ctor_set_uint8(x_132, sizeof(void*)*8, x_125); -lean_ctor_set_uint8(x_132, sizeof(void*)*8 + 1, x_126); -lean_ctor_set_uint8(x_132, sizeof(void*)*8 + 2, x_127); -lean_ctor_set_uint8(x_132, sizeof(void*)*8 + 3, x_131); -x_133 = lean_unsigned_to_nat(0u); -x_134 = l_Lean_Syntax_getArg(x_10, x_133); +x_134 = lean_alloc_ctor(0, 8, 4); +lean_ctor_set(x_134, 0, x_123); +lean_ctor_set(x_134, 1, x_124); +lean_ctor_set(x_134, 2, x_125); +lean_ctor_set(x_134, 3, x_126); +lean_ctor_set(x_134, 4, x_16); +lean_ctor_set(x_134, 5, x_130); +lean_ctor_set(x_134, 6, x_131); +lean_ctor_set(x_134, 7, x_132); +lean_ctor_set_uint8(x_134, sizeof(void*)*8, x_127); +lean_ctor_set_uint8(x_134, sizeof(void*)*8 + 1, x_128); +lean_ctor_set_uint8(x_134, sizeof(void*)*8 + 2, x_129); +lean_ctor_set_uint8(x_134, sizeof(void*)*8 + 3, x_133); +x_135 = lean_unsigned_to_nat(0u); +x_136 = l_Lean_Syntax_getArg(x_10, x_135); lean_inc(x_4); -lean_inc(x_134); -x_135 = l_Lean_Elab_Term_isLocalIdent_x3f(x_134, x_132, x_3, x_4, x_5, x_6, x_7, x_19); -x_136 = lean_ctor_get(x_135, 0); lean_inc(x_136); -if (lean_obj_tag(x_136) == 0) +x_137 = l_Lean_Elab_Term_isLocalIdent_x3f(x_136, x_134, x_3, x_4, x_5, x_6, x_7, x_19); +x_138 = lean_ctor_get(x_137, 0); +lean_inc(x_138); +if (lean_obj_tag(x_138) == 0) { -lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; 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; 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; 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; -x_137 = lean_ctor_get(x_135, 1); -lean_inc(x_137); -lean_dec(x_135); -x_138 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_quoteAutoTactic___spec__1___rarg(x_6, x_7, x_137); -x_139 = lean_ctor_get(x_138, 0); +lean_object* x_139; uint8_t x_140; +x_139 = lean_ctor_get(x_137, 1); lean_inc(x_139); -x_140 = lean_ctor_get(x_138, 1); -lean_inc(x_140); -lean_dec(x_138); -x_141 = l_Lean_Elab_Term_getCurrMacroScope(x_132, x_3, x_4, x_5, x_6, x_7, x_140); +lean_dec(x_137); +x_140 = l_Lean_Syntax_isMissing(x_136); +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; 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; 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; +x_141 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_quoteAutoTactic___spec__1___rarg(x_6, x_7, x_139); x_142 = lean_ctor_get(x_141, 0); lean_inc(x_142); x_143 = lean_ctor_get(x_141, 1); lean_inc(x_143); lean_dec(x_141); -x_144 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_143); +x_144 = l_Lean_Elab_Term_getCurrMacroScope(x_134, x_3, x_4, x_5, x_6, x_7, x_143); x_145 = lean_ctor_get(x_144, 0); lean_inc(x_145); x_146 = lean_ctor_get(x_144, 1); lean_inc(x_146); lean_dec(x_144); -x_147 = l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandNonAtomicExplicitSource___closed__4; -x_148 = l_Lean_addMacroScope(x_145, x_147, x_142); -x_149 = lean_box(0); -x_150 = l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandNonAtomicExplicitSource___closed__3; -x_151 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_151, 0, x_139); -lean_ctor_set(x_151, 1, x_150); -lean_ctor_set(x_151, 2, x_148); -lean_ctor_set(x_151, 3, x_149); -x_152 = l_Lean_Syntax_setArg(x_10, x_133, x_151); -x_153 = l_Lean_Syntax_setArg(x_1, x_9, x_152); -x_154 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_quoteAutoTactic___spec__4___rarg(x_6, x_7, x_146); -x_155 = lean_ctor_get(x_154, 0); -lean_inc(x_155); -x_156 = lean_ctor_get(x_154, 1); -lean_inc(x_156); -lean_dec(x_154); -x_157 = l_Lean_Elab_Term_getCurrMacroScope(x_132, x_3, x_4, x_5, x_6, x_7, x_156); -lean_dec(x_4); -lean_dec(x_132); +x_147 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_146); +x_148 = lean_ctor_get(x_147, 0); +lean_inc(x_148); +x_149 = lean_ctor_get(x_147, 1); +lean_inc(x_149); +lean_dec(x_147); +x_150 = l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandNonAtomicExplicitSource___closed__4; +x_151 = l_Lean_addMacroScope(x_148, x_150, x_145); +x_152 = lean_box(0); +x_153 = l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandNonAtomicExplicitSource___closed__3; +x_154 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_154, 0, x_142); +lean_ctor_set(x_154, 1, x_153); +lean_ctor_set(x_154, 2, x_151); +lean_ctor_set(x_154, 3, x_152); +x_155 = l_Lean_Syntax_setArg(x_10, x_135, x_154); +x_156 = l_Lean_Syntax_setArg(x_1, x_9, x_155); +x_157 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_quoteAutoTactic___spec__4___rarg(x_6, x_7, x_149); x_158 = lean_ctor_get(x_157, 0); lean_inc(x_158); x_159 = lean_ctor_get(x_157, 1); lean_inc(x_159); lean_dec(x_157); -x_160 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_159); +x_160 = l_Lean_Elab_Term_getCurrMacroScope(x_134, x_3, x_4, x_5, x_6, x_7, x_159); +lean_dec(x_4); +lean_dec(x_134); x_161 = lean_ctor_get(x_160, 0); lean_inc(x_161); x_162 = lean_ctor_get(x_160, 1); lean_inc(x_162); -if (lean_is_exclusive(x_160)) { - lean_ctor_release(x_160, 0); - lean_ctor_release(x_160, 1); - x_163 = x_160; +lean_dec(x_160); +x_163 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_162); +x_164 = lean_ctor_get(x_163, 0); +lean_inc(x_164); +x_165 = lean_ctor_get(x_163, 1); +lean_inc(x_165); +if (lean_is_exclusive(x_163)) { + lean_ctor_release(x_163, 0); + lean_ctor_release(x_163, 1); + x_166 = x_163; } else { - lean_dec_ref(x_160); - x_163 = lean_box(0); + lean_dec_ref(x_163); + x_166 = lean_box(0); } -x_164 = l_myMacro____x40_Init_Notation___hyg_15419____closed__1; -lean_inc(x_155); -x_165 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_165, 0, x_155); -lean_ctor_set(x_165, 1, x_164); -x_166 = l_Array_empty___closed__1; -x_167 = lean_array_push(x_166, x_165); -x_168 = l_Lean_addMacroScope(x_161, x_147, x_158); -lean_inc(x_155); -x_169 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_169, 0, x_155); -lean_ctor_set(x_169, 1, x_150); -lean_ctor_set(x_169, 2, x_168); -lean_ctor_set(x_169, 3, x_149); -x_170 = lean_array_push(x_166, x_169); -x_171 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; -x_172 = lean_array_push(x_170, x_171); -x_173 = lean_array_push(x_172, x_171); -x_174 = l_myMacro____x40_Init_Notation___hyg_15419____closed__11; -lean_inc(x_155); -x_175 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_175, 0, x_155); -lean_ctor_set(x_175, 1, x_174); -x_176 = lean_array_push(x_173, x_175); -x_177 = lean_array_push(x_176, x_134); -x_178 = l_myMacro____x40_Init_Notation___hyg_15419____closed__6; -x_179 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_179, 0, x_178); -lean_ctor_set(x_179, 1, x_177); -x_180 = lean_array_push(x_166, x_179); -x_181 = l_myMacro____x40_Init_Notation___hyg_15419____closed__4; +x_167 = l_myMacro____x40_Init_Notation___hyg_15419____closed__1; +lean_inc(x_158); +x_168 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_168, 0, x_158); +lean_ctor_set(x_168, 1, x_167); +x_169 = l_Array_empty___closed__1; +x_170 = lean_array_push(x_169, x_168); +x_171 = l_Lean_addMacroScope(x_164, x_150, x_161); +lean_inc(x_158); +x_172 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_172, 0, x_158); +lean_ctor_set(x_172, 1, x_153); +lean_ctor_set(x_172, 2, x_171); +lean_ctor_set(x_172, 3, x_152); +x_173 = lean_array_push(x_169, x_172); +x_174 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; +x_175 = lean_array_push(x_173, x_174); +x_176 = lean_array_push(x_175, x_174); +x_177 = l_myMacro____x40_Init_Notation___hyg_15419____closed__11; +lean_inc(x_158); +x_178 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_178, 0, x_158); +lean_ctor_set(x_178, 1, x_177); +x_179 = lean_array_push(x_176, x_178); +x_180 = lean_array_push(x_179, x_136); +x_181 = l_myMacro____x40_Init_Notation___hyg_15419____closed__6; x_182 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_182, 0, x_181); lean_ctor_set(x_182, 1, x_180); -x_183 = lean_array_push(x_167, x_182); -x_184 = l_myMacro____x40_Init_Notation___hyg_15419____closed__12; -x_185 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_185, 0, x_155); -lean_ctor_set(x_185, 1, x_184); -x_186 = lean_array_push(x_166, x_185); -x_187 = l_Lean_nullKind___closed__2; -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 = lean_array_push(x_183, x_188); -x_190 = lean_array_push(x_189, x_153); -x_191 = l_myMacro____x40_Init_Notation___hyg_15419____closed__2; -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_alloc_ctor(1, 1, 0); -lean_ctor_set(x_193, 0, x_192); -if (lean_is_scalar(x_163)) { - x_194 = lean_alloc_ctor(0, 2, 0); +x_183 = lean_array_push(x_169, x_182); +x_184 = l_myMacro____x40_Init_Notation___hyg_15419____closed__4; +x_185 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_185, 0, x_184); +lean_ctor_set(x_185, 1, x_183); +x_186 = lean_array_push(x_170, x_185); +x_187 = l_myMacro____x40_Init_Notation___hyg_15419____closed__12; +x_188 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_188, 0, x_158); +lean_ctor_set(x_188, 1, x_187); +x_189 = lean_array_push(x_169, x_188); +x_190 = l_Lean_nullKind___closed__2; +x_191 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_191, 0, x_190); +lean_ctor_set(x_191, 1, x_189); +x_192 = lean_array_push(x_186, x_191); +x_193 = lean_array_push(x_192, x_156); +x_194 = l_myMacro____x40_Init_Notation___hyg_15419____closed__2; +x_195 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_195, 0, x_194); +lean_ctor_set(x_195, 1, x_193); +x_196 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_196, 0, x_195); +if (lean_is_scalar(x_166)) { + x_197 = lean_alloc_ctor(0, 2, 0); } else { - x_194 = x_163; + x_197 = x_166; } -lean_ctor_set(x_194, 0, x_193); -lean_ctor_set(x_194, 1, x_162); -return x_194; +lean_ctor_set(x_197, 0, x_196); +lean_ctor_set(x_197, 1, x_165); +return x_197; } else { -lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; +lean_object* x_198; lean_dec(x_136); lean_dec(x_134); -lean_dec(x_132); lean_dec(x_10); lean_dec(x_4); lean_dec(x_1); -x_195 = lean_ctor_get(x_135, 1); -lean_inc(x_195); -if (lean_is_exclusive(x_135)) { - lean_ctor_release(x_135, 0); - lean_ctor_release(x_135, 1); - x_196 = x_135; -} else { - lean_dec_ref(x_135); - x_196 = lean_box(0); -} -x_197 = lean_box(0); -if (lean_is_scalar(x_196)) { - x_198 = lean_alloc_ctor(0, 2, 0); -} else { - x_198 = x_196; -} -lean_ctor_set(x_198, 0, x_197); -lean_ctor_set(x_198, 1, x_195); +x_198 = l_Lean_Elab_throwAbortTerm___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandNonAtomicExplicitSource___spec__1___rarg(x_139); return x_198; } } +else +{ +lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; +lean_dec(x_138); +lean_dec(x_136); +lean_dec(x_134); +lean_dec(x_10); +lean_dec(x_4); +lean_dec(x_1); +x_199 = lean_ctor_get(x_137, 1); +lean_inc(x_199); +if (lean_is_exclusive(x_137)) { + lean_ctor_release(x_137, 0); + lean_ctor_release(x_137, 1); + x_200 = x_137; +} else { + lean_dec_ref(x_137); + x_200 = lean_box(0); +} +x_201 = lean_box(0); +if (lean_is_scalar(x_200)) { + x_202 = lean_alloc_ctor(0, 2, 0); +} else { + x_202 = x_200; +} +lean_ctor_set(x_202, 0, x_201); +lean_ctor_set(x_202, 1, x_199); +return x_202; +} +} } else { -uint8_t x_199; +uint8_t x_203; lean_dec(x_16); lean_dec(x_10); lean_dec(x_4); lean_dec(x_2); lean_dec(x_1); -x_199 = !lean_is_exclusive(x_18); -if (x_199 == 0) +x_203 = !lean_is_exclusive(x_18); +if (x_203 == 0) { -lean_object* x_200; lean_object* x_201; -x_200 = lean_ctor_get(x_18, 0); -lean_dec(x_200); -x_201 = lean_box(0); -lean_ctor_set(x_18, 0, x_201); +lean_object* x_204; lean_object* x_205; +x_204 = lean_ctor_get(x_18, 0); +lean_dec(x_204); +x_205 = lean_box(0); +lean_ctor_set(x_18, 0, x_205); return x_18; } else { -lean_object* x_202; lean_object* x_203; lean_object* x_204; -x_202 = lean_ctor_get(x_18, 1); -lean_inc(x_202); +lean_object* x_206; lean_object* x_207; lean_object* x_208; +x_206 = lean_ctor_get(x_18, 1); +lean_inc(x_206); lean_dec(x_18); -x_203 = lean_box(0); -x_204 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_204, 0, x_203); -lean_ctor_set(x_204, 1, x_202); -return x_204; +x_207 = lean_box(0); +x_208 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_208, 0, x_207); +lean_ctor_set(x_208, 1, x_206); +return x_208; } } } else { -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; -x_205 = lean_ctor_get(x_13, 0); -x_206 = lean_ctor_get(x_13, 1); -x_207 = lean_ctor_get(x_13, 2); -x_208 = lean_ctor_get(x_13, 3); -lean_inc(x_208); -lean_inc(x_207); -lean_inc(x_206); -lean_inc(x_205); +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; +x_209 = lean_ctor_get(x_13, 0); +x_210 = lean_ctor_get(x_13, 1); +x_211 = lean_ctor_get(x_13, 2); +x_212 = lean_ctor_get(x_13, 3); +lean_inc(x_212); +lean_inc(x_211); +lean_inc(x_210); +lean_inc(x_209); lean_dec(x_13); -x_209 = lean_nat_add(x_206, x_9); -x_210 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_210, 0, x_205); -lean_ctor_set(x_210, 1, x_209); -lean_ctor_set(x_210, 2, x_207); -lean_ctor_set(x_210, 3, x_208); -x_211 = lean_st_ref_set(x_7, x_210, x_14); +x_213 = lean_nat_add(x_210, x_9); +x_214 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_214, 0, x_209); +lean_ctor_set(x_214, 1, x_213); +lean_ctor_set(x_214, 2, x_211); +lean_ctor_set(x_214, 3, x_212); +x_215 = lean_st_ref_set(x_7, x_214, x_14); if (x_12 == 0) { -lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; uint8_t x_217; uint8_t x_218; uint8_t x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; uint8_t 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; -x_212 = lean_ctor_get(x_211, 1); -lean_inc(x_212); -lean_dec(x_211); -x_213 = lean_ctor_get(x_2, 0); -lean_inc(x_213); -x_214 = lean_ctor_get(x_2, 1); -lean_inc(x_214); -x_215 = lean_ctor_get(x_2, 2); -lean_inc(x_215); -x_216 = lean_ctor_get(x_2, 3); +lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; uint8_t x_221; uint8_t x_222; uint8_t x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; uint8_t 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; +x_216 = lean_ctor_get(x_215, 1); lean_inc(x_216); -x_217 = lean_ctor_get_uint8(x_2, sizeof(void*)*8); -x_218 = lean_ctor_get_uint8(x_2, sizeof(void*)*8 + 1); -x_219 = lean_ctor_get_uint8(x_2, sizeof(void*)*8 + 2); -x_220 = lean_ctor_get(x_2, 5); +lean_dec(x_215); +x_217 = lean_ctor_get(x_2, 0); +lean_inc(x_217); +x_218 = lean_ctor_get(x_2, 1); +lean_inc(x_218); +x_219 = lean_ctor_get(x_2, 2); +lean_inc(x_219); +x_220 = lean_ctor_get(x_2, 3); lean_inc(x_220); -x_221 = lean_ctor_get(x_2, 6); -lean_inc(x_221); -x_222 = lean_ctor_get(x_2, 7); -lean_inc(x_222); -x_223 = lean_ctor_get_uint8(x_2, sizeof(void*)*8 + 3); +x_221 = lean_ctor_get_uint8(x_2, sizeof(void*)*8); +x_222 = lean_ctor_get_uint8(x_2, sizeof(void*)*8 + 1); +x_223 = lean_ctor_get_uint8(x_2, sizeof(void*)*8 + 2); +x_224 = lean_ctor_get(x_2, 5); +lean_inc(x_224); +x_225 = lean_ctor_get(x_2, 6); +lean_inc(x_225); +x_226 = lean_ctor_get(x_2, 7); +lean_inc(x_226); +x_227 = lean_ctor_get_uint8(x_2, sizeof(void*)*8 + 3); if (lean_is_exclusive(x_2)) { lean_ctor_release(x_2, 0); lean_ctor_release(x_2, 1); @@ -1482,220 +1538,250 @@ if (lean_is_exclusive(x_2)) { lean_ctor_release(x_2, 5); lean_ctor_release(x_2, 6); lean_ctor_release(x_2, 7); - x_224 = x_2; + x_228 = x_2; } else { lean_dec_ref(x_2); - x_224 = lean_box(0); + x_228 = lean_box(0); } -if (lean_is_scalar(x_224)) { - x_225 = lean_alloc_ctor(0, 8, 4); +if (lean_is_scalar(x_228)) { + x_229 = lean_alloc_ctor(0, 8, 4); } else { - x_225 = x_224; + x_229 = x_228; } -lean_ctor_set(x_225, 0, x_213); -lean_ctor_set(x_225, 1, x_214); -lean_ctor_set(x_225, 2, x_215); -lean_ctor_set(x_225, 3, x_216); -lean_ctor_set(x_225, 4, x_206); -lean_ctor_set(x_225, 5, x_220); -lean_ctor_set(x_225, 6, x_221); -lean_ctor_set(x_225, 7, x_222); -lean_ctor_set_uint8(x_225, sizeof(void*)*8, x_217); -lean_ctor_set_uint8(x_225, sizeof(void*)*8 + 1, x_218); -lean_ctor_set_uint8(x_225, sizeof(void*)*8 + 2, x_219); -lean_ctor_set_uint8(x_225, sizeof(void*)*8 + 3, x_223); -x_226 = lean_unsigned_to_nat(0u); -x_227 = l_Lean_Syntax_getArg(x_10, x_226); +lean_ctor_set(x_229, 0, x_217); +lean_ctor_set(x_229, 1, x_218); +lean_ctor_set(x_229, 2, x_219); +lean_ctor_set(x_229, 3, x_220); +lean_ctor_set(x_229, 4, x_210); +lean_ctor_set(x_229, 5, x_224); +lean_ctor_set(x_229, 6, x_225); +lean_ctor_set(x_229, 7, x_226); +lean_ctor_set_uint8(x_229, sizeof(void*)*8, x_221); +lean_ctor_set_uint8(x_229, sizeof(void*)*8 + 1, x_222); +lean_ctor_set_uint8(x_229, sizeof(void*)*8 + 2, x_223); +lean_ctor_set_uint8(x_229, sizeof(void*)*8 + 3, x_227); +x_230 = lean_unsigned_to_nat(0u); +x_231 = l_Lean_Syntax_getArg(x_10, x_230); lean_inc(x_4); -lean_inc(x_227); -x_228 = l_Lean_Elab_Term_isLocalIdent_x3f(x_227, x_225, x_3, x_4, x_5, x_6, x_7, x_212); -x_229 = lean_ctor_get(x_228, 0); -lean_inc(x_229); -if (lean_obj_tag(x_229) == 0) -{ -lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; 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; lean_object* x_286; lean_object* x_287; -x_230 = lean_ctor_get(x_228, 1); -lean_inc(x_230); -lean_dec(x_228); -x_231 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_quoteAutoTactic___spec__1___rarg(x_6, x_7, x_230); -x_232 = lean_ctor_get(x_231, 0); -lean_inc(x_232); -x_233 = lean_ctor_get(x_231, 1); +lean_inc(x_231); +x_232 = l_Lean_Elab_Term_isLocalIdent_x3f(x_231, x_229, x_3, x_4, x_5, x_6, x_7, x_216); +x_233 = lean_ctor_get(x_232, 0); lean_inc(x_233); -lean_dec(x_231); -x_234 = l_Lean_Elab_Term_getCurrMacroScope(x_225, x_3, x_4, x_5, x_6, x_7, x_233); -x_235 = lean_ctor_get(x_234, 0); -lean_inc(x_235); -x_236 = lean_ctor_get(x_234, 1); -lean_inc(x_236); -lean_dec(x_234); -x_237 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_236); -x_238 = lean_ctor_get(x_237, 0); +if (lean_obj_tag(x_233) == 0) +{ +lean_object* x_234; uint8_t x_235; +x_234 = lean_ctor_get(x_232, 1); +lean_inc(x_234); +lean_dec(x_232); +x_235 = l_Lean_Syntax_isMissing(x_231); +if (x_235 == 0) +{ +lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; 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; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; +x_236 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_quoteAutoTactic___spec__1___rarg(x_6, x_7, x_234); +x_237 = lean_ctor_get(x_236, 0); +lean_inc(x_237); +x_238 = lean_ctor_get(x_236, 1); lean_inc(x_238); -x_239 = lean_ctor_get(x_237, 1); -lean_inc(x_239); -lean_dec(x_237); -x_240 = l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandNonAtomicExplicitSource___closed__4; -x_241 = l_Lean_addMacroScope(x_238, x_240, x_235); -x_242 = lean_box(0); -x_243 = l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandNonAtomicExplicitSource___closed__3; -x_244 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_244, 0, x_232); -lean_ctor_set(x_244, 1, x_243); -lean_ctor_set(x_244, 2, x_241); -lean_ctor_set(x_244, 3, x_242); -x_245 = l_Lean_Syntax_setArg(x_10, x_226, x_244); -x_246 = l_Lean_Syntax_setArg(x_1, x_9, x_245); -x_247 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_quoteAutoTactic___spec__4___rarg(x_6, x_7, x_239); -x_248 = lean_ctor_get(x_247, 0); -lean_inc(x_248); -x_249 = lean_ctor_get(x_247, 1); -lean_inc(x_249); -lean_dec(x_247); -x_250 = l_Lean_Elab_Term_getCurrMacroScope(x_225, x_3, x_4, x_5, x_6, x_7, x_249); -lean_dec(x_4); -lean_dec(x_225); -x_251 = lean_ctor_get(x_250, 0); -lean_inc(x_251); -x_252 = lean_ctor_get(x_250, 1); -lean_inc(x_252); -lean_dec(x_250); -x_253 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_252); -x_254 = lean_ctor_get(x_253, 0); +lean_dec(x_236); +x_239 = l_Lean_Elab_Term_getCurrMacroScope(x_229, x_3, x_4, x_5, x_6, x_7, x_238); +x_240 = lean_ctor_get(x_239, 0); +lean_inc(x_240); +x_241 = lean_ctor_get(x_239, 1); +lean_inc(x_241); +lean_dec(x_239); +x_242 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_241); +x_243 = lean_ctor_get(x_242, 0); +lean_inc(x_243); +x_244 = lean_ctor_get(x_242, 1); +lean_inc(x_244); +lean_dec(x_242); +x_245 = l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandNonAtomicExplicitSource___closed__4; +x_246 = l_Lean_addMacroScope(x_243, x_245, x_240); +x_247 = lean_box(0); +x_248 = l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandNonAtomicExplicitSource___closed__3; +x_249 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_249, 0, x_237); +lean_ctor_set(x_249, 1, x_248); +lean_ctor_set(x_249, 2, x_246); +lean_ctor_set(x_249, 3, x_247); +x_250 = l_Lean_Syntax_setArg(x_10, x_230, x_249); +x_251 = l_Lean_Syntax_setArg(x_1, x_9, x_250); +x_252 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_quoteAutoTactic___spec__4___rarg(x_6, x_7, x_244); +x_253 = lean_ctor_get(x_252, 0); +lean_inc(x_253); +x_254 = lean_ctor_get(x_252, 1); lean_inc(x_254); -x_255 = lean_ctor_get(x_253, 1); -lean_inc(x_255); -if (lean_is_exclusive(x_253)) { - lean_ctor_release(x_253, 0); - lean_ctor_release(x_253, 1); - x_256 = x_253; +lean_dec(x_252); +x_255 = l_Lean_Elab_Term_getCurrMacroScope(x_229, x_3, x_4, x_5, x_6, x_7, x_254); +lean_dec(x_4); +lean_dec(x_229); +x_256 = lean_ctor_get(x_255, 0); +lean_inc(x_256); +x_257 = lean_ctor_get(x_255, 1); +lean_inc(x_257); +lean_dec(x_255); +x_258 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_257); +x_259 = lean_ctor_get(x_258, 0); +lean_inc(x_259); +x_260 = lean_ctor_get(x_258, 1); +lean_inc(x_260); +if (lean_is_exclusive(x_258)) { + lean_ctor_release(x_258, 0); + lean_ctor_release(x_258, 1); + x_261 = x_258; } else { - lean_dec_ref(x_253); - x_256 = lean_box(0); + lean_dec_ref(x_258); + x_261 = lean_box(0); } -x_257 = l_myMacro____x40_Init_Notation___hyg_15419____closed__1; -lean_inc(x_248); -x_258 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_258, 0, x_248); -lean_ctor_set(x_258, 1, x_257); -x_259 = l_Array_empty___closed__1; -x_260 = lean_array_push(x_259, x_258); -x_261 = l_Lean_addMacroScope(x_254, x_240, x_251); -lean_inc(x_248); -x_262 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_262, 0, x_248); -lean_ctor_set(x_262, 1, x_243); -lean_ctor_set(x_262, 2, x_261); -lean_ctor_set(x_262, 3, x_242); -x_263 = lean_array_push(x_259, x_262); -x_264 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; -x_265 = lean_array_push(x_263, x_264); -x_266 = lean_array_push(x_265, x_264); -x_267 = l_myMacro____x40_Init_Notation___hyg_15419____closed__11; -lean_inc(x_248); -x_268 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_268, 0, x_248); -lean_ctor_set(x_268, 1, x_267); -x_269 = lean_array_push(x_266, x_268); -x_270 = lean_array_push(x_269, x_227); -x_271 = l_myMacro____x40_Init_Notation___hyg_15419____closed__6; -x_272 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_272, 0, x_271); -lean_ctor_set(x_272, 1, x_270); -x_273 = lean_array_push(x_259, x_272); -x_274 = l_myMacro____x40_Init_Notation___hyg_15419____closed__4; -x_275 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_275, 0, x_274); -lean_ctor_set(x_275, 1, x_273); -x_276 = lean_array_push(x_260, x_275); -x_277 = l_myMacro____x40_Init_Notation___hyg_15419____closed__12; -x_278 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_278, 0, x_248); -lean_ctor_set(x_278, 1, x_277); -x_279 = lean_array_push(x_259, x_278); -x_280 = l_Lean_nullKind___closed__2; -x_281 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_281, 0, x_280); -lean_ctor_set(x_281, 1, x_279); -x_282 = lean_array_push(x_276, x_281); -x_283 = lean_array_push(x_282, x_246); -x_284 = l_myMacro____x40_Init_Notation___hyg_15419____closed__2; -x_285 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_285, 0, x_284); -lean_ctor_set(x_285, 1, x_283); -x_286 = lean_alloc_ctor(1, 1, 0); +x_262 = l_myMacro____x40_Init_Notation___hyg_15419____closed__1; +lean_inc(x_253); +x_263 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_263, 0, x_253); +lean_ctor_set(x_263, 1, x_262); +x_264 = l_Array_empty___closed__1; +x_265 = lean_array_push(x_264, x_263); +x_266 = l_Lean_addMacroScope(x_259, x_245, x_256); +lean_inc(x_253); +x_267 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_267, 0, x_253); +lean_ctor_set(x_267, 1, x_248); +lean_ctor_set(x_267, 2, x_266); +lean_ctor_set(x_267, 3, x_247); +x_268 = lean_array_push(x_264, x_267); +x_269 = l_myMacro____x40_Init_Notation___hyg_1481____closed__8; +x_270 = lean_array_push(x_268, x_269); +x_271 = lean_array_push(x_270, x_269); +x_272 = l_myMacro____x40_Init_Notation___hyg_15419____closed__11; +lean_inc(x_253); +x_273 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_273, 0, x_253); +lean_ctor_set(x_273, 1, x_272); +x_274 = lean_array_push(x_271, x_273); +x_275 = lean_array_push(x_274, x_231); +x_276 = l_myMacro____x40_Init_Notation___hyg_15419____closed__6; +x_277 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_277, 0, x_276); +lean_ctor_set(x_277, 1, x_275); +x_278 = lean_array_push(x_264, x_277); +x_279 = l_myMacro____x40_Init_Notation___hyg_15419____closed__4; +x_280 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_280, 0, x_279); +lean_ctor_set(x_280, 1, x_278); +x_281 = lean_array_push(x_265, x_280); +x_282 = l_myMacro____x40_Init_Notation___hyg_15419____closed__12; +x_283 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_283, 0, x_253); +lean_ctor_set(x_283, 1, x_282); +x_284 = lean_array_push(x_264, x_283); +x_285 = l_Lean_nullKind___closed__2; +x_286 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_286, 0, x_285); -if (lean_is_scalar(x_256)) { - x_287 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_286, 1, x_284); +x_287 = lean_array_push(x_281, x_286); +x_288 = lean_array_push(x_287, x_251); +x_289 = l_myMacro____x40_Init_Notation___hyg_15419____closed__2; +x_290 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_290, 0, x_289); +lean_ctor_set(x_290, 1, x_288); +x_291 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_291, 0, x_290); +if (lean_is_scalar(x_261)) { + x_292 = lean_alloc_ctor(0, 2, 0); } else { - x_287 = x_256; + x_292 = x_261; } -lean_ctor_set(x_287, 0, x_286); -lean_ctor_set(x_287, 1, x_255); -return x_287; +lean_ctor_set(x_292, 0, x_291); +lean_ctor_set(x_292, 1, x_260); +return x_292; } else { -lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; +lean_object* x_293; +lean_dec(x_231); lean_dec(x_229); -lean_dec(x_227); -lean_dec(x_225); lean_dec(x_10); lean_dec(x_4); lean_dec(x_1); -x_288 = lean_ctor_get(x_228, 1); -lean_inc(x_288); -if (lean_is_exclusive(x_228)) { - lean_ctor_release(x_228, 0); - lean_ctor_release(x_228, 1); - x_289 = x_228; -} else { - lean_dec_ref(x_228); - x_289 = lean_box(0); -} -x_290 = lean_box(0); -if (lean_is_scalar(x_289)) { - x_291 = lean_alloc_ctor(0, 2, 0); -} else { - x_291 = x_289; -} -lean_ctor_set(x_291, 0, x_290); -lean_ctor_set(x_291, 1, x_288); -return x_291; +x_293 = l_Lean_Elab_throwAbortTerm___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandNonAtomicExplicitSource___spec__1___rarg(x_234); +return x_293; } } else { -lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; -lean_dec(x_206); +lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; +lean_dec(x_233); +lean_dec(x_231); +lean_dec(x_229); +lean_dec(x_10); +lean_dec(x_4); +lean_dec(x_1); +x_294 = lean_ctor_get(x_232, 1); +lean_inc(x_294); +if (lean_is_exclusive(x_232)) { + lean_ctor_release(x_232, 0); + lean_ctor_release(x_232, 1); + x_295 = x_232; +} else { + lean_dec_ref(x_232); + x_295 = lean_box(0); +} +x_296 = lean_box(0); +if (lean_is_scalar(x_295)) { + x_297 = lean_alloc_ctor(0, 2, 0); +} else { + x_297 = x_295; +} +lean_ctor_set(x_297, 0, x_296); +lean_ctor_set(x_297, 1, x_294); +return x_297; +} +} +else +{ +lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; +lean_dec(x_210); lean_dec(x_10); lean_dec(x_4); lean_dec(x_2); lean_dec(x_1); -x_292 = lean_ctor_get(x_211, 1); -lean_inc(x_292); -if (lean_is_exclusive(x_211)) { - lean_ctor_release(x_211, 0); - lean_ctor_release(x_211, 1); - x_293 = x_211; +x_298 = lean_ctor_get(x_215, 1); +lean_inc(x_298); +if (lean_is_exclusive(x_215)) { + lean_ctor_release(x_215, 0); + lean_ctor_release(x_215, 1); + x_299 = x_215; } else { - lean_dec_ref(x_211); - x_293 = lean_box(0); + lean_dec_ref(x_215); + x_299 = lean_box(0); } -x_294 = lean_box(0); -if (lean_is_scalar(x_293)) { - x_295 = lean_alloc_ctor(0, 2, 0); +x_300 = lean_box(0); +if (lean_is_scalar(x_299)) { + x_301 = lean_alloc_ctor(0, 2, 0); } else { - x_295 = x_293; + x_301 = x_299; } -lean_ctor_set(x_295, 0, x_294); -lean_ctor_set(x_295, 1, x_292); -return x_295; +lean_ctor_set(x_301, 0, x_300); +lean_ctor_set(x_301, 1, x_298); +return x_301; } } } } } +lean_object* l_Lean_Elab_throwAbortTerm___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandNonAtomicExplicitSource___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_Elab_throwAbortTerm___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandNonAtomicExplicitSource___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_7; +} +} lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandNonAtomicExplicitSource___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: { @@ -1980,7 +2066,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___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource___closed__3; x_2 = l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource___closed__4; -x_3 = lean_unsigned_to_nat(81u); +x_3 = lean_unsigned_to_nat(84u); x_4 = lean_unsigned_to_nat(21u); x_5 = l_Lean_Name_getString_x21___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -6052,7 +6138,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___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource___closed__3; x_2 = l_Lean_Elab_Term_StructInst_FieldVal_toSyntax___closed__1; -x_3 = lean_unsigned_to_nat(271u); +x_3 = lean_unsigned_to_nat(274u); x_4 = lean_unsigned_to_nat(25u); x_5 = l_Lean_Name_getString_x21___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -6164,7 +6250,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___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource___closed__3; x_2 = l_Lean_Elab_Term_StructInst_Field_toSyntax___closed__1; -x_3 = lean_unsigned_to_nat(279u); +x_3 = lean_unsigned_to_nat(282u); x_4 = lean_unsigned_to_nat(11u); x_5 = l_Lean_Name_getString_x21___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -9135,7 +9221,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___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource___closed__3; x_2 = l_List_map___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandParentFields___spec__1___closed__1; -x_3 = lean_unsigned_to_nat(373u); +x_3 = lean_unsigned_to_nat(376u); x_4 = lean_unsigned_to_nat(34u); x_5 = l_Lean_Name_getString_x21___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -10255,7 +10341,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___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource___closed__3; x_2 = l_List_foldlM___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_mkFieldMap___spec__12___closed__1; -x_3 = lean_unsigned_to_nat(391u); +x_3 = lean_unsigned_to_nat(394u); x_4 = lean_unsigned_to_nat(11u); x_5 = l_Lean_Name_getString_x21___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -22088,7 +22174,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___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource___closed__3; x_2 = l_Lean_Elab_Term_StructInst_DefaultFields_findDefaultMissing_x3f___lambda__1___closed__1; -x_3 = lean_unsigned_to_nat(623u); +x_3 = lean_unsigned_to_nat(626u); x_4 = lean_unsigned_to_nat(20u); x_5 = l_Lean_Name_getString_x21___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -22263,7 +22349,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___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource___closed__3; x_2 = l_Lean_Elab_Term_StructInst_DefaultFields_getFieldName___closed__1; -x_3 = lean_unsigned_to_nat(631u); +x_3 = lean_unsigned_to_nat(634u); x_4 = lean_unsigned_to_nat(9u); x_5 = l_Lean_Name_getString_x21___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -25037,7 +25123,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___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource___closed__3; x_2 = l_List_forIn_loop___at_Lean_Elab_Term_StructInst_DefaultFields_step___spec__1___lambda__1___closed__1; -x_3 = lean_unsigned_to_nat(754u); +x_3 = lean_unsigned_to_nat(757u); x_4 = lean_unsigned_to_nat(25u); x_5 = l_Lean_Name_getString_x21___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -27225,11 +27311,14 @@ return x_2; lean_object* l_Lean_Elab_Term_StructInst_elabStructInst(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; +lean_object* x_10; lean_inc(x_5); lean_inc(x_3); lean_inc(x_1); x_10 = l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandNonAtomicExplicitSource(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_11; x_11 = lean_ctor_get(x_10, 0); lean_inc(x_11); if (lean_obj_tag(x_11) == 0) @@ -27390,6 +27479,37 @@ x_38 = l_Lean_Elab_withMacroExpansionInfo___at___private_Lean_Elab_Term_0__Lean_ return x_38; } } +else +{ +uint8_t x_39; +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_39 = !lean_is_exclusive(x_10); +if (x_39 == 0) +{ +return x_10; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_10, 0); +x_41 = lean_ctor_get(x_10, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_10); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} } static lean_object* _init_l___regBuiltin_Lean_Elab_Term_StructInst_elabStructInst___closed__1() { _start: @@ -27410,7 +27530,7 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l_Lean_Elab_Term_StructInst_initFn____x40_Lean_Elab_StructInst___hyg_7094_(lean_object* x_1) { +lean_object* l_Lean_Elab_Term_StructInst_initFn____x40_Lean_Elab_StructInst___hyg_7098_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -27715,7 +27835,7 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_StructInst_elabStructInst___c res = l___regBuiltin_Lean_Elab_Term_StructInst_elabStructInst(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = l_Lean_Elab_Term_StructInst_initFn____x40_Lean_Elab_StructInst___hyg_7094_(lean_io_mk_world()); +res = l_Lean_Elab_Term_StructInst_initFn____x40_Lean_Elab_StructInst___hyg_7098_(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/Syntax.c b/stage0/stdlib/Lean/Elab/Syntax.c index 4e66887c48..f1433be591 100644 --- a/stage0/stdlib/Lean/Elab/Syntax.c +++ b/stage0/stdlib/Lean/Elab/Syntax.c @@ -46,7 +46,6 @@ lean_object* l_Lean_Elab_Command_expandNotation___closed__1; lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_toParserDescr_processNonReserved___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); lean_object* lean_erase_macro_scopes(lean_object*); -lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_15961____closed__1; lean_object* l_Lean_Elab_Term_checkLeftRec___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* l_Lean_Elab_Term_toParserDescr_resolveParserName___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_Syntax_0__Lean_Elab_Command_expandNotationAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -235,6 +234,7 @@ lean_object* l_Lean_Elab_Command_expandElab___lambda__2___closed__50; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Term_withNotFirst(lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__9(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab___spec__3(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_15958____closed__1; lean_object* l_Lean_Elab_Command_expandMixfix___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_resolveGlobalName___at_Lean_Elab_Term_toParserDescr_resolveParserName___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_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__5; @@ -304,7 +304,6 @@ lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation_ lean_object* l_Lean_Elab_Term_toParserDescr_processNullaryOrCat___closed__6; lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Command_mkNameFromParserSyntax_visit___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandOptPrecedence___boxed(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; lean_object* l_Lean_Elab_Command_expandMacroArgIntoPattern___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_toParserDescr_processParserCategory___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandElab___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -347,6 +346,7 @@ lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__11; lean_object* l_Lean_Elab_Command_expandMixfix___lambda__5___boxed(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_setOptionFromString___closed__4; lean_object* l_Lean_Elab_Term_toParserDescr_processNonReserved___closed__8; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__19; lean_object* l_Lean_Elab_Command_expandMixfix___lambda__7___closed__3; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_antiquote___lambda__1___boxed(lean_object*, lean_object*); @@ -406,7 +406,7 @@ lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQ lean_object* l_Lean_Elab_Command_expandElab___lambda__2___closed__23; lean_object* l_String_capitalize(lean_object*); lean_object* l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_15961_(lean_object*); +lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_15958_(lean_object*); lean_object* l_List_map___at_Lean_Elab_Term_toParserDescr_processNullaryOrCat___spec__3(lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax_match__2___rarg(lean_object*, lean_object*); extern lean_object* l_stx___x3c_x7c_x3e_____closed__6; @@ -3705,7 +3705,7 @@ static lean_object* _init_l_Lean_Elab_Term_toParserDescr_processNonReserved___cl _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } @@ -3714,7 +3714,7 @@ static lean_object* _init_l_Lean_Elab_Term_toParserDescr_processNonReserved___cl _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_22119____closed__8; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; x_2 = lean_unsigned_to_nat(0u); x_3 = l_Lean_Elab_Term_toParserDescr_processNonReserved___closed__9; x_4 = lean_alloc_ctor(0, 3, 0); @@ -10957,7 +10957,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___private_Lean_Elab_Syntax_0__Lean_Elab_Command_getCatSuffix___closed__1; x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_getCatSuffix___closed__2; -x_3 = lean_unsigned_to_nat(210u); +x_3 = lean_unsigned_to_nat(211u); x_4 = lean_unsigned_to_nat(22u); x_5 = l_Lean_Name_getString_x21___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -33677,7 +33677,7 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_15961____closed__1() { +static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_15958____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -33687,11 +33687,11 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_15961_(lean_object* x_1) { +lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_15958_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_15961____closed__1; +x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_15958____closed__1; x_3 = l_Lean_registerTraceClass(x_2, x_1); return x_3; } @@ -37688,9 +37688,9 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Command_elabMacro___closed__1); res = l___regBuiltin_Lean_Elab_Command_elabMacro(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_15961____closed__1 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_15961____closed__1(); -lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_15961____closed__1); -res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_15961_(lean_io_mk_world()); +l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_15958____closed__1 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_15958____closed__1(); +lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_15958____closed__1); +res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_15958_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Elab_Command_withExpectedType___closed__1 = _init_l_Lean_Elab_Command_withExpectedType___closed__1(); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Basic.c b/stage0/stdlib/Lean/Elab/Tactic/Basic.c index 78bf18d948..4c314f104c 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Basic.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Basic.c @@ -234,7 +234,6 @@ lean_object* l_Lean_Elab_Tactic_closeMainGoal___boxed(lean_object*, lean_object* lean_object* l_Lean_Elab_Tactic_getMainGoal_loop(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_tagUntaggedGoals___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_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*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; lean_object* l___regBuiltin_Lean_Elab_Tactic_evalAssumption(lean_object*); lean_object* l___private_Lean_Elab_Open_0__Lean_Elab_OpenDecl_elabOpenHiding___at_Lean_Elab_Tactic_evalOpen___spec__12(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_getMainGoal___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -265,6 +264,7 @@ lean_object* l___regBuiltin_Lean_Elab_Tactic_evalOpen___closed__1; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); uint8_t l_Array_qsort_sort___at___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_sortFVarIds___spec__1___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getMVarType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; lean_object* l_Lean_Meta_mkSorry(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalAssumption___rarg___closed__1; extern lean_object* l_Lean_Parser_Tactic_introMatch___elambda__1___closed__2; @@ -292,6 +292,7 @@ lean_object* l_Lean_Elab_Tactic_evalFirst___boxed(lean_object*, lean_object*, le lean_object* l_Lean_Syntax_isStrLit_x3f(lean_object*); extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16699____closed__5; lean_object* l___regBuiltin_Lean_Elab_Tactic_evalTacticSeq(lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__2; 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*); lean_object* l_List_findM_x3f___at___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_findTag_x3f___spec__2(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_Parser_Tactic_traceState___closed__2; @@ -448,6 +449,7 @@ lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withMVarContextImp___rarg( lean_object* l_Lean_Elab_Tactic_evalAssumption___boxed(lean_object*); lean_object* l_Lean_Elab_Tactic_evalFirst_loop___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_forEachVar___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_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; extern lean_object* l_Lean_nullKind___closed__2; lean_object* l_Lean_Elab_Tactic_instMonadExceptExceptionTacticM___closed__1; extern lean_object* l_Lean_Elab_elabSetOption___rarg___lambda__1___closed__2; @@ -460,7 +462,6 @@ lean_object* l_Lean_Elab_Tactic_tagUntaggedGoals_match__1(lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_evalClear___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* l_Lean_resolveNamespace___at_Lean_Elab_Tactic_evalOpen___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* l_Lean_Elab_Tactic_evalIntros___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_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; uint8_t l_Lean_Syntax_isNodeOf(lean_object*, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_evalClear___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* l_Lean_Elab_Tactic_getNameOfIdent_x27___boxed(lean_object*); @@ -546,7 +547,6 @@ lean_object* l_Array_appendCore___rarg(lean_object*, lean_object*); extern lean_object* l_Lean_resolveNamespace___rarg___lambda__1___closed__1; lean_object* l_Lean_KVMap_insertCore(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_elabSetOption_setOption___rarg___lambda__4___closed__2; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__2; lean_object* l_Lean_Elab_Tactic_tagUntaggedGoals(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_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Tactic_evalIntro___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Meta_setInlineAttribute___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -16139,7 +16139,7 @@ x_19 = lean_string_dec_eq(x_17, x_18); if (x_19 == 0) { lean_object* x_20; uint8_t x_21; -x_20 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_20 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; x_21 = lean_string_dec_eq(x_17, x_20); lean_dec(x_17); if (x_21 == 0) @@ -16489,7 +16489,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Tactic_tacticElabAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__2; x_4 = l___regBuiltin_Lean_Elab_Tactic_elabSetOption___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -19584,7 +19584,7 @@ x_121 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_121, 0, x_62); lean_ctor_set(x_121, 1, x_120); x_122 = lean_array_push(x_117, x_121); -x_123 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; +x_123 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; x_124 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_124, 0, x_123); lean_ctor_set(x_124, 1, x_122); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Induction.c b/stage0/stdlib/Lean/Elab/Tactic/Induction.c index 4c8faafa5d..51660f23f4 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Induction.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Induction.c @@ -32,7 +32,7 @@ lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_ lean_object* lean_erase_macro_scopes(lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_evalInduction___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* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_evalInduction_checkTargets___spec__1___closed__1; -lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_4683_(lean_object*); +lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_4686_(lean_object*); uint8_t l_Array_anyMUnsafe_any___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__6(lean_object*, lean_object*, size_t, size_t); lean_object* l_Lean_stringToMessageData(lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_evalInduction_checkTargets___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -263,8 +263,8 @@ lean_object* l_Lean_Elab_Tactic_evalAlt___lambda__1(lean_object*, lean_object*, lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts___spec__5___lambda__1___boxed(lean_object**); lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__35___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_checkAltsOfOptInductionAlts___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_initFn____x40_Lean_Elab_Tactic_Induction___hyg_4683____closed__1; lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_ElimApp_evalAlts___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_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_4686____closed__1; lean_object* l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visitMain___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__23___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getInductiveValFromMajor(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_Induction_0__Lean_Elab_Tactic_getAltDArrow___boxed(lean_object*); @@ -298,6 +298,7 @@ lean_object* l_Lean_Elab_Tactic_evalInduction_match__1(lean_object*); lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getFType___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_ElimApp_mkElimApp_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_log___at_Lean_Elab_Tactic_closeUsingOrAdmit___spec__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_LocalDecl_binderInfo(lean_object*); lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getElimNameInfo___closed__1; lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_ElimApp_evalAlts___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___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getOptPreTacOfOptInductionAlts(lean_object*); @@ -382,6 +383,7 @@ lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_generali lean_object* l_Lean_Elab_Tactic_evalCases___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*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_evalCases___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___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_BinderInfo_isInstImplicit(uint8_t); lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_checkAltsOfOptInductionAlts___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_whnf(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__41___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -408,6 +410,7 @@ lean_object* l_Lean_LocalDecl_fvarId(lean_object*); lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getTargetHypothesisName_x3f(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*); extern lean_object* l_Lean_Meta_addImplicitTargets_collect___closed__2; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; lean_object* l_Lean_Elab_Tactic_elabTermEnsuringType(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_Array_anyMUnsafe_any___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__21___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getFType___boxed(lean_object*); @@ -415,7 +418,6 @@ lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_ lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__57___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_Std_PersistentArray_forInAux___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__55(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentArray_anyM___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__3___boxed(lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; lean_object* l_Lean_Elab_Tactic_evalCases___lambda__2___boxed(lean_object**); uint8_t l_Array_anyMUnsafe_any___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__7(lean_object*, lean_object*, size_t, size_t); lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getElimNameInfo(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -546,7 +548,6 @@ lean_object* l_Lean_Elab_Tactic_evalCases___lambda__2(lean_object*, lean_object* lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkConstWithLevelParams___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getElimNameInfo___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* l_Array_anyMUnsafe_any___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__3; lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___closed__3; lean_object* l_Lean_throwError___at_Lean_Meta_getElimInfo___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_mkForbiddenSet_visit___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -591,6 +592,7 @@ lean_object* l_Lean_Elab_Tactic_evalInduction_match__2___rarg(lean_object*, lean uint8_t l_List_isEmpty___rarg(lean_object*); lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_map___at_Lean_mkConstWithLevelParams___spec__1(lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__3; lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___lambda__1___closed__1; lean_object* l_Lean_Elab_Tactic_ElimApp_State_insts___default; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_evalIntros___spec__1(size_t, size_t, lean_object*); @@ -794,7 +796,7 @@ uint8_t l_Lean_Elab_Tactic_isHoleRHS(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; lean_inc(x_1); x_3 = l_Lean_Syntax_isOfKind(x_1, x_2); if (x_3 == 0) @@ -12190,649 +12192,692 @@ uint8_t x_49; x_49 = l_Lean_LocalDecl_isAuxDecl(x_44); if (x_49 == 0) { -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_50 = lean_st_ref_get(x_10, x_11); -x_51 = lean_ctor_get(x_50, 1); -lean_inc(x_51); -if (lean_is_exclusive(x_50)) { - lean_ctor_release(x_50, 0); - lean_ctor_release(x_50, 1); - x_52 = x_50; +uint8_t x_50; uint8_t x_51; +x_50 = l_Lean_LocalDecl_binderInfo(x_44); +x_51 = l_Lean_BinderInfo_isInstImplicit(x_50); +if (x_51 == 0) +{ +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; +x_52 = lean_st_ref_get(x_10, x_11); +x_53 = lean_ctor_get(x_52, 1); +lean_inc(x_53); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_54 = x_52; } else { - lean_dec_ref(x_50); - x_52 = lean_box(0); + lean_dec_ref(x_52); + x_54 = lean_box(0); } -x_53 = lean_st_ref_get(x_8, x_51); -x_54 = lean_ctor_get(x_53, 0); -lean_inc(x_54); -x_55 = lean_ctor_get(x_53, 1); -lean_inc(x_55); -if (lean_is_exclusive(x_53)) { - lean_ctor_release(x_53, 0); - lean_ctor_release(x_53, 1); - x_56 = x_53; +x_55 = lean_st_ref_get(x_8, x_53); +x_56 = lean_ctor_get(x_55, 0); +lean_inc(x_56); +x_57 = lean_ctor_get(x_55, 1); +lean_inc(x_57); +if (lean_is_exclusive(x_55)) { + lean_ctor_release(x_55, 0); + lean_ctor_release(x_55, 1); + x_58 = x_55; } else { - lean_dec_ref(x_53); - x_56 = lean_box(0); + lean_dec_ref(x_55); + x_58 = lean_box(0); } if (lean_obj_tag(x_44) == 0) { -lean_object* x_65; lean_object* x_66; uint8_t x_67; -x_65 = lean_ctor_get(x_54, 0); -lean_inc(x_65); -lean_dec(x_54); -x_66 = lean_ctor_get(x_44, 3); -lean_inc(x_66); -lean_dec(x_44); -x_67 = l_Lean_Expr_hasFVar(x_66); -if (x_67 == 0) -{ -uint8_t x_68; -x_68 = l_Lean_Expr_hasMVar(x_66); -if (x_68 == 0) -{ -uint8_t x_69; -lean_dec(x_66); -lean_dec(x_65); +lean_object* x_67; lean_object* x_68; uint8_t x_69; +x_67 = lean_ctor_get(x_56, 0); +lean_inc(x_67); lean_dec(x_56); -lean_dec(x_47); -x_69 = !lean_is_exclusive(x_43); +x_68 = lean_ctor_get(x_44, 3); +lean_inc(x_68); +lean_dec(x_44); +x_69 = l_Lean_Expr_hasFVar(x_68); if (x_69 == 0) { -lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; -x_70 = lean_ctor_get(x_43, 1); -lean_dec(x_70); -x_71 = lean_ctor_get(x_43, 0); -lean_dec(x_71); -x_72 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_72, 0, x_43); -if (lean_is_scalar(x_52)) { - x_73 = lean_alloc_ctor(0, 2, 0); -} else { - x_73 = x_52; -} -lean_ctor_set(x_73, 0, x_72); -lean_ctor_set(x_73, 1, x_55); -x_20 = x_73; -goto block_36; -} -else +uint8_t x_70; +x_70 = l_Lean_Expr_hasMVar(x_68); +if (x_70 == 0) { -lean_object* x_74; lean_object* x_75; lean_object* x_76; -lean_dec(x_43); -x_74 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_74, 0, x_45); -lean_ctor_set(x_74, 1, x_46); -x_75 = lean_alloc_ctor(1, 1, 0); +uint8_t x_71; +lean_dec(x_68); +lean_dec(x_67); +lean_dec(x_58); +lean_dec(x_47); +x_71 = !lean_is_exclusive(x_43); +if (x_71 == 0) +{ +lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_72 = lean_ctor_get(x_43, 1); +lean_dec(x_72); +x_73 = lean_ctor_get(x_43, 0); +lean_dec(x_73); +x_74 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_74, 0, x_43); +if (lean_is_scalar(x_54)) { + x_75 = lean_alloc_ctor(0, 2, 0); +} else { + x_75 = x_54; +} lean_ctor_set(x_75, 0, x_74); -if (lean_is_scalar(x_52)) { - x_76 = lean_alloc_ctor(0, 2, 0); -} else { - x_76 = x_52; +lean_ctor_set(x_75, 1, x_57); +x_20 = x_75; +goto block_36; } -lean_ctor_set(x_76, 0, x_75); -lean_ctor_set(x_76, 1, x_55); -x_20 = x_76; +else +{ +lean_object* x_76; lean_object* x_77; lean_object* x_78; +lean_dec(x_43); +x_76 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_76, 0, x_45); +lean_ctor_set(x_76, 1, x_46); +x_77 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_77, 0, x_76); +if (lean_is_scalar(x_54)) { + x_78 = lean_alloc_ctor(0, 2, 0); +} else { + x_78 = x_54; +} +lean_ctor_set(x_78, 0, x_77); +lean_ctor_set(x_78, 1, x_57); +x_20 = x_78; goto block_36; } } else { -lean_object* x_77; lean_object* x_78; uint8_t x_79; -x_77 = l_Std_HashSet_instInhabitedHashSet___closed__1; -x_78 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__1(x_43, x_65, x_66, x_77); -x_79 = !lean_is_exclusive(x_43); -if (x_79 == 0) +lean_object* x_79; lean_object* x_80; uint8_t x_81; +x_79 = l_Std_HashSet_instInhabitedHashSet___closed__1; +x_80 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__1(x_43, x_67, x_68, x_79); +x_81 = !lean_is_exclusive(x_43); +if (x_81 == 0) { -lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; -x_80 = lean_ctor_get(x_43, 1); -lean_dec(x_80); -x_81 = lean_ctor_get(x_43, 0); -lean_dec(x_81); -x_82 = lean_ctor_get(x_78, 0); -lean_inc(x_82); -lean_dec(x_78); -x_83 = lean_unbox(x_82); +lean_object* x_82; lean_object* x_83; lean_object* x_84; uint8_t x_85; +x_82 = lean_ctor_get(x_43, 1); lean_dec(x_82); -if (x_83 == 0) +x_83 = lean_ctor_get(x_43, 0); +lean_dec(x_83); +x_84 = lean_ctor_get(x_80, 0); +lean_inc(x_84); +lean_dec(x_80); +x_85 = lean_unbox(x_84); +lean_dec(x_84); +if (x_85 == 0) { -lean_object* x_84; lean_object* x_85; -lean_dec(x_56); +lean_object* x_86; lean_object* x_87; +lean_dec(x_58); lean_dec(x_47); -x_84 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_84, 0, x_43); -if (lean_is_scalar(x_52)) { - x_85 = lean_alloc_ctor(0, 2, 0); +x_86 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_86, 0, x_43); +if (lean_is_scalar(x_54)) { + x_87 = lean_alloc_ctor(0, 2, 0); } else { - x_85 = x_52; + x_87 = x_54; } -lean_ctor_set(x_85, 0, x_84); -lean_ctor_set(x_85, 1, x_55); -x_20 = x_85; +lean_ctor_set(x_87, 0, x_86); +lean_ctor_set(x_87, 1, x_57); +x_20 = x_87; goto block_36; } else { -lean_object* x_86; +lean_object* x_88; lean_free_object(x_43); -lean_dec(x_52); -x_86 = lean_box(0); -x_57 = x_86; -goto block_64; -} -} -else -{ -lean_object* x_87; uint8_t x_88; -lean_dec(x_43); -x_87 = lean_ctor_get(x_78, 0); -lean_inc(x_87); -lean_dec(x_78); -x_88 = lean_unbox(x_87); -lean_dec(x_87); -if (x_88 == 0) -{ -lean_object* x_89; lean_object* x_90; lean_object* x_91; -lean_dec(x_56); -lean_dec(x_47); -x_89 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_89, 0, x_45); -lean_ctor_set(x_89, 1, x_46); -x_90 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_90, 0, x_89); -if (lean_is_scalar(x_52)) { - x_91 = lean_alloc_ctor(0, 2, 0); -} else { - x_91 = x_52; -} -lean_ctor_set(x_91, 0, x_90); -lean_ctor_set(x_91, 1, x_55); -x_20 = x_91; -goto block_36; -} -else -{ -lean_object* x_92; -lean_dec(x_52); -x_92 = lean_box(0); -x_57 = x_92; -goto block_64; -} -} -} -} -else -{ -lean_object* x_93; lean_object* x_94; uint8_t x_95; -x_93 = l_Std_HashSet_instInhabitedHashSet___closed__1; -x_94 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__8(x_43, x_65, x_66, x_93); -x_95 = !lean_is_exclusive(x_43); -if (x_95 == 0) -{ -lean_object* x_96; lean_object* x_97; lean_object* x_98; uint8_t x_99; -x_96 = lean_ctor_get(x_43, 1); -lean_dec(x_96); -x_97 = lean_ctor_get(x_43, 0); -lean_dec(x_97); -x_98 = lean_ctor_get(x_94, 0); -lean_inc(x_98); -lean_dec(x_94); -x_99 = lean_unbox(x_98); -lean_dec(x_98); -if (x_99 == 0) -{ -lean_object* x_100; lean_object* x_101; -lean_dec(x_56); -lean_dec(x_47); -x_100 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_100, 0, x_43); -if (lean_is_scalar(x_52)) { - x_101 = lean_alloc_ctor(0, 2, 0); -} else { - x_101 = x_52; -} -lean_ctor_set(x_101, 0, x_100); -lean_ctor_set(x_101, 1, x_55); -x_20 = x_101; -goto block_36; -} -else -{ -lean_object* x_102; -lean_free_object(x_43); -lean_dec(x_52); -x_102 = lean_box(0); -x_57 = x_102; -goto block_64; -} -} -else -{ -lean_object* x_103; uint8_t x_104; -lean_dec(x_43); -x_103 = lean_ctor_get(x_94, 0); -lean_inc(x_103); -lean_dec(x_94); -x_104 = lean_unbox(x_103); -lean_dec(x_103); -if (x_104 == 0) -{ -lean_object* x_105; lean_object* x_106; lean_object* x_107; -lean_dec(x_56); -lean_dec(x_47); -x_105 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_105, 0, x_45); -lean_ctor_set(x_105, 1, x_46); -x_106 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_106, 0, x_105); -if (lean_is_scalar(x_52)) { - x_107 = lean_alloc_ctor(0, 2, 0); -} else { - x_107 = x_52; -} -lean_ctor_set(x_107, 0, x_106); -lean_ctor_set(x_107, 1, x_55); -x_20 = x_107; -goto block_36; -} -else -{ -lean_object* x_108; -lean_dec(x_52); -x_108 = lean_box(0); -x_57 = x_108; -goto block_64; -} -} -} -} -else -{ -lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; uint8_t x_158; -x_109 = lean_ctor_get(x_54, 0); -lean_inc(x_109); lean_dec(x_54); -x_110 = lean_ctor_get(x_44, 3); -lean_inc(x_110); -x_111 = lean_ctor_get(x_44, 4); -lean_inc(x_111); -lean_dec(x_44); -x_158 = l_Lean_Expr_hasFVar(x_110); -if (x_158 == 0) -{ -uint8_t x_159; -x_159 = l_Lean_Expr_hasMVar(x_110); -if (x_159 == 0) -{ -lean_object* x_160; -lean_dec(x_110); -x_160 = l_Lean_MetavarContext_findLocalDeclDependsOn___closed__1; -x_112 = x_160; -goto block_157; +x_88 = lean_box(0); +x_59 = x_88; +goto block_66; +} } else { -lean_object* x_161; lean_object* x_162; -x_161 = l_Std_HashSet_instInhabitedHashSet___closed__1; -lean_inc(x_109); -x_162 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__29(x_43, x_109, x_110, x_161); -x_112 = x_162; -goto block_157; +lean_object* x_89; uint8_t x_90; +lean_dec(x_43); +x_89 = lean_ctor_get(x_80, 0); +lean_inc(x_89); +lean_dec(x_80); +x_90 = lean_unbox(x_89); +lean_dec(x_89); +if (x_90 == 0) +{ +lean_object* x_91; lean_object* x_92; lean_object* x_93; +lean_dec(x_58); +lean_dec(x_47); +x_91 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_91, 0, x_45); +lean_ctor_set(x_91, 1, x_46); +x_92 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_92, 0, x_91); +if (lean_is_scalar(x_54)) { + x_93 = lean_alloc_ctor(0, 2, 0); +} else { + x_93 = x_54; } +lean_ctor_set(x_93, 0, x_92); +lean_ctor_set(x_93, 1, x_57); +x_20 = x_93; +goto block_36; +} +else +{ +lean_object* x_94; +lean_dec(x_54); +x_94 = lean_box(0); +x_59 = x_94; +goto block_66; +} +} +} +} +else +{ +lean_object* x_95; lean_object* x_96; uint8_t x_97; +x_95 = l_Std_HashSet_instInhabitedHashSet___closed__1; +x_96 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__8(x_43, x_67, x_68, x_95); +x_97 = !lean_is_exclusive(x_43); +if (x_97 == 0) +{ +lean_object* x_98; lean_object* x_99; lean_object* x_100; uint8_t x_101; +x_98 = lean_ctor_get(x_43, 1); +lean_dec(x_98); +x_99 = lean_ctor_get(x_43, 0); +lean_dec(x_99); +x_100 = lean_ctor_get(x_96, 0); +lean_inc(x_100); +lean_dec(x_96); +x_101 = lean_unbox(x_100); +lean_dec(x_100); +if (x_101 == 0) +{ +lean_object* x_102; lean_object* x_103; +lean_dec(x_58); +lean_dec(x_47); +x_102 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_102, 0, x_43); +if (lean_is_scalar(x_54)) { + x_103 = lean_alloc_ctor(0, 2, 0); +} else { + x_103 = x_54; +} +lean_ctor_set(x_103, 0, x_102); +lean_ctor_set(x_103, 1, x_57); +x_20 = x_103; +goto block_36; +} +else +{ +lean_object* x_104; +lean_free_object(x_43); +lean_dec(x_54); +x_104 = lean_box(0); +x_59 = x_104; +goto block_66; +} +} +else +{ +lean_object* x_105; uint8_t x_106; +lean_dec(x_43); +x_105 = lean_ctor_get(x_96, 0); +lean_inc(x_105); +lean_dec(x_96); +x_106 = lean_unbox(x_105); +lean_dec(x_105); +if (x_106 == 0) +{ +lean_object* x_107; lean_object* x_108; lean_object* x_109; +lean_dec(x_58); +lean_dec(x_47); +x_107 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_107, 0, x_45); +lean_ctor_set(x_107, 1, x_46); +x_108 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_108, 0, x_107); +if (lean_is_scalar(x_54)) { + x_109 = lean_alloc_ctor(0, 2, 0); +} else { + x_109 = x_54; +} +lean_ctor_set(x_109, 0, x_108); +lean_ctor_set(x_109, 1, x_57); +x_20 = x_109; +goto block_36; +} +else +{ +lean_object* x_110; +lean_dec(x_54); +x_110 = lean_box(0); +x_59 = x_110; +goto block_66; +} +} +} +} +else +{ +lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; uint8_t x_160; +x_111 = lean_ctor_get(x_56, 0); +lean_inc(x_111); +lean_dec(x_56); +x_112 = lean_ctor_get(x_44, 3); +lean_inc(x_112); +x_113 = lean_ctor_get(x_44, 4); +lean_inc(x_113); +lean_dec(x_44); +x_160 = l_Lean_Expr_hasFVar(x_112); +if (x_160 == 0) +{ +uint8_t x_161; +x_161 = l_Lean_Expr_hasMVar(x_112); +if (x_161 == 0) +{ +lean_object* x_162; +lean_dec(x_112); +x_162 = l_Lean_MetavarContext_findLocalDeclDependsOn___closed__1; +x_114 = x_162; +goto block_159; } else { lean_object* x_163; lean_object* x_164; x_163 = l_Std_HashSet_instInhabitedHashSet___closed__1; -lean_inc(x_109); -x_164 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__36(x_43, x_109, x_110, x_163); -x_112 = x_164; -goto block_157; +lean_inc(x_111); +x_164 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__29(x_43, x_111, x_112, x_163); +x_114 = x_164; +goto block_159; } -block_157: +} +else { -lean_object* x_113; uint8_t x_114; -x_113 = lean_ctor_get(x_112, 0); -lean_inc(x_113); -x_114 = lean_unbox(x_113); -lean_dec(x_113); -if (x_114 == 0) +lean_object* x_165; lean_object* x_166; +x_165 = l_Std_HashSet_instInhabitedHashSet___closed__1; +lean_inc(x_111); +x_166 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__36(x_43, x_111, x_112, x_165); +x_114 = x_166; +goto block_159; +} +block_159: { lean_object* x_115; uint8_t x_116; -x_115 = lean_ctor_get(x_112, 1); +x_115 = lean_ctor_get(x_114, 0); lean_inc(x_115); -lean_dec(x_112); -x_116 = l_Lean_Expr_hasFVar(x_111); +x_116 = lean_unbox(x_115); +lean_dec(x_115); if (x_116 == 0) { -uint8_t x_117; -x_117 = l_Lean_Expr_hasMVar(x_111); -if (x_117 == 0) -{ -uint8_t x_118; -lean_dec(x_115); -lean_dec(x_111); -lean_dec(x_109); -lean_dec(x_56); -lean_dec(x_47); -x_118 = !lean_is_exclusive(x_43); +lean_object* x_117; uint8_t x_118; +x_117 = lean_ctor_get(x_114, 1); +lean_inc(x_117); +lean_dec(x_114); +x_118 = l_Lean_Expr_hasFVar(x_113); if (x_118 == 0) { -lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; -x_119 = lean_ctor_get(x_43, 1); -lean_dec(x_119); -x_120 = lean_ctor_get(x_43, 0); -lean_dec(x_120); -x_121 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_121, 0, x_43); -if (lean_is_scalar(x_52)) { - x_122 = lean_alloc_ctor(0, 2, 0); -} else { - x_122 = x_52; -} -lean_ctor_set(x_122, 0, x_121); -lean_ctor_set(x_122, 1, x_55); -x_20 = x_122; -goto block_36; -} -else +uint8_t x_119; +x_119 = l_Lean_Expr_hasMVar(x_113); +if (x_119 == 0) { -lean_object* x_123; lean_object* x_124; lean_object* x_125; -lean_dec(x_43); -x_123 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_123, 0, x_45); -lean_ctor_set(x_123, 1, x_46); -x_124 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_124, 0, x_123); -if (lean_is_scalar(x_52)) { - x_125 = lean_alloc_ctor(0, 2, 0); -} else { - x_125 = x_52; -} -lean_ctor_set(x_125, 0, x_124); -lean_ctor_set(x_125, 1, x_55); -x_20 = x_125; -goto block_36; -} -} -else -{ -lean_object* x_126; uint8_t x_127; -x_126 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__15(x_43, x_109, x_111, x_115); -x_127 = !lean_is_exclusive(x_43); -if (x_127 == 0) -{ -lean_object* x_128; lean_object* x_129; lean_object* x_130; uint8_t x_131; -x_128 = lean_ctor_get(x_43, 1); -lean_dec(x_128); -x_129 = lean_ctor_get(x_43, 0); -lean_dec(x_129); -x_130 = lean_ctor_get(x_126, 0); -lean_inc(x_130); -lean_dec(x_126); -x_131 = lean_unbox(x_130); -lean_dec(x_130); -if (x_131 == 0) -{ -lean_object* x_132; lean_object* x_133; -lean_dec(x_56); -lean_dec(x_47); -x_132 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_132, 0, x_43); -if (lean_is_scalar(x_52)) { - x_133 = lean_alloc_ctor(0, 2, 0); -} else { - x_133 = x_52; -} -lean_ctor_set(x_133, 0, x_132); -lean_ctor_set(x_133, 1, x_55); -x_20 = x_133; -goto block_36; -} -else -{ -lean_object* x_134; -lean_free_object(x_43); -lean_dec(x_52); -x_134 = lean_box(0); -x_57 = x_134; -goto block_64; -} -} -else -{ -lean_object* x_135; uint8_t x_136; -lean_dec(x_43); -x_135 = lean_ctor_get(x_126, 0); -lean_inc(x_135); -lean_dec(x_126); -x_136 = lean_unbox(x_135); -lean_dec(x_135); -if (x_136 == 0) -{ -lean_object* x_137; lean_object* x_138; lean_object* x_139; -lean_dec(x_56); -lean_dec(x_47); -x_137 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_137, 0, x_45); -lean_ctor_set(x_137, 1, x_46); -x_138 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_138, 0, x_137); -if (lean_is_scalar(x_52)) { - x_139 = lean_alloc_ctor(0, 2, 0); -} else { - x_139 = x_52; -} -lean_ctor_set(x_139, 0, x_138); -lean_ctor_set(x_139, 1, x_55); -x_20 = x_139; -goto block_36; -} -else -{ -lean_object* x_140; -lean_dec(x_52); -x_140 = lean_box(0); -x_57 = x_140; -goto block_64; -} -} -} -} -else -{ -lean_object* x_141; uint8_t x_142; -x_141 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__22(x_43, x_109, x_111, x_115); -x_142 = !lean_is_exclusive(x_43); -if (x_142 == 0) -{ -lean_object* x_143; lean_object* x_144; lean_object* x_145; uint8_t x_146; -x_143 = lean_ctor_get(x_43, 1); -lean_dec(x_143); -x_144 = lean_ctor_get(x_43, 0); -lean_dec(x_144); -x_145 = lean_ctor_get(x_141, 0); -lean_inc(x_145); -lean_dec(x_141); -x_146 = lean_unbox(x_145); -lean_dec(x_145); -if (x_146 == 0) -{ -lean_object* x_147; lean_object* x_148; -lean_dec(x_56); -lean_dec(x_47); -x_147 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_147, 0, x_43); -if (lean_is_scalar(x_52)) { - x_148 = lean_alloc_ctor(0, 2, 0); -} else { - x_148 = x_52; -} -lean_ctor_set(x_148, 0, x_147); -lean_ctor_set(x_148, 1, x_55); -x_20 = x_148; -goto block_36; -} -else -{ -lean_object* x_149; -lean_free_object(x_43); -lean_dec(x_52); -x_149 = lean_box(0); -x_57 = x_149; -goto block_64; -} -} -else -{ -lean_object* x_150; uint8_t x_151; -lean_dec(x_43); -x_150 = lean_ctor_get(x_141, 0); -lean_inc(x_150); -lean_dec(x_141); -x_151 = lean_unbox(x_150); -lean_dec(x_150); -if (x_151 == 0) -{ -lean_object* x_152; lean_object* x_153; lean_object* x_154; -lean_dec(x_56); -lean_dec(x_47); -x_152 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_152, 0, x_45); -lean_ctor_set(x_152, 1, x_46); -x_153 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_153, 0, x_152); -if (lean_is_scalar(x_52)) { - x_154 = lean_alloc_ctor(0, 2, 0); -} else { - x_154 = x_52; -} -lean_ctor_set(x_154, 0, x_153); -lean_ctor_set(x_154, 1, x_55); -x_20 = x_154; -goto block_36; -} -else -{ -lean_object* x_155; -lean_dec(x_52); -x_155 = lean_box(0); -x_57 = x_155; -goto block_64; -} -} -} -} -else -{ -lean_object* x_156; -lean_dec(x_112); +uint8_t x_120; +lean_dec(x_117); +lean_dec(x_113); lean_dec(x_111); -lean_dec(x_109); -lean_dec(x_52); -lean_dec(x_43); -x_156 = lean_box(0); -x_57 = x_156; -goto block_64; -} -} -} -block_64: +lean_dec(x_58); +lean_dec(x_47); +x_120 = !lean_is_exclusive(x_43); +if (x_120 == 0) { -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_dec(x_57); -x_58 = lean_box(0); -lean_inc(x_47); -x_59 = l_Std_RBNode_insert___at_Lean_NameSet_insert___spec__1(x_46, x_47, x_58); -x_60 = l_Std_RBNode_insert___at_Lean_NameSet_insert___spec__1(x_45, x_47, x_58); -x_61 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_61, 0, x_60); -lean_ctor_set(x_61, 1, x_59); -x_62 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_62, 0, x_61); -if (lean_is_scalar(x_56)) { - x_63 = lean_alloc_ctor(0, 2, 0); +lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; +x_121 = lean_ctor_get(x_43, 1); +lean_dec(x_121); +x_122 = lean_ctor_get(x_43, 0); +lean_dec(x_122); +x_123 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_123, 0, x_43); +if (lean_is_scalar(x_54)) { + x_124 = lean_alloc_ctor(0, 2, 0); } else { - x_63 = x_56; + x_124 = x_54; } +lean_ctor_set(x_124, 0, x_123); +lean_ctor_set(x_124, 1, x_57); +x_20 = x_124; +goto block_36; +} +else +{ +lean_object* x_125; lean_object* x_126; lean_object* x_127; +lean_dec(x_43); +x_125 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_125, 0, x_45); +lean_ctor_set(x_125, 1, x_46); +x_126 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_126, 0, x_125); +if (lean_is_scalar(x_54)) { + x_127 = lean_alloc_ctor(0, 2, 0); +} else { + x_127 = x_54; +} +lean_ctor_set(x_127, 0, x_126); +lean_ctor_set(x_127, 1, x_57); +x_20 = x_127; +goto block_36; +} +} +else +{ +lean_object* x_128; uint8_t x_129; +x_128 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__15(x_43, x_111, x_113, x_117); +x_129 = !lean_is_exclusive(x_43); +if (x_129 == 0) +{ +lean_object* x_130; lean_object* x_131; lean_object* x_132; uint8_t x_133; +x_130 = lean_ctor_get(x_43, 1); +lean_dec(x_130); +x_131 = lean_ctor_get(x_43, 0); +lean_dec(x_131); +x_132 = lean_ctor_get(x_128, 0); +lean_inc(x_132); +lean_dec(x_128); +x_133 = lean_unbox(x_132); +lean_dec(x_132); +if (x_133 == 0) +{ +lean_object* x_134; lean_object* x_135; +lean_dec(x_58); +lean_dec(x_47); +x_134 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_134, 0, x_43); +if (lean_is_scalar(x_54)) { + x_135 = lean_alloc_ctor(0, 2, 0); +} else { + x_135 = x_54; +} +lean_ctor_set(x_135, 0, x_134); +lean_ctor_set(x_135, 1, x_57); +x_20 = x_135; +goto block_36; +} +else +{ +lean_object* x_136; +lean_free_object(x_43); +lean_dec(x_54); +x_136 = lean_box(0); +x_59 = x_136; +goto block_66; +} +} +else +{ +lean_object* x_137; uint8_t x_138; +lean_dec(x_43); +x_137 = lean_ctor_get(x_128, 0); +lean_inc(x_137); +lean_dec(x_128); +x_138 = lean_unbox(x_137); +lean_dec(x_137); +if (x_138 == 0) +{ +lean_object* x_139; lean_object* x_140; lean_object* x_141; +lean_dec(x_58); +lean_dec(x_47); +x_139 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_139, 0, x_45); +lean_ctor_set(x_139, 1, x_46); +x_140 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_140, 0, x_139); +if (lean_is_scalar(x_54)) { + x_141 = lean_alloc_ctor(0, 2, 0); +} else { + x_141 = x_54; +} +lean_ctor_set(x_141, 0, x_140); +lean_ctor_set(x_141, 1, x_57); +x_20 = x_141; +goto block_36; +} +else +{ +lean_object* x_142; +lean_dec(x_54); +x_142 = lean_box(0); +x_59 = x_142; +goto block_66; +} +} +} +} +else +{ +lean_object* x_143; uint8_t x_144; +x_143 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__22(x_43, x_111, x_113, x_117); +x_144 = !lean_is_exclusive(x_43); +if (x_144 == 0) +{ +lean_object* x_145; lean_object* x_146; lean_object* x_147; uint8_t x_148; +x_145 = lean_ctor_get(x_43, 1); +lean_dec(x_145); +x_146 = lean_ctor_get(x_43, 0); +lean_dec(x_146); +x_147 = lean_ctor_get(x_143, 0); +lean_inc(x_147); +lean_dec(x_143); +x_148 = lean_unbox(x_147); +lean_dec(x_147); +if (x_148 == 0) +{ +lean_object* x_149; lean_object* x_150; +lean_dec(x_58); +lean_dec(x_47); +x_149 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_149, 0, x_43); +if (lean_is_scalar(x_54)) { + x_150 = lean_alloc_ctor(0, 2, 0); +} else { + x_150 = x_54; +} +lean_ctor_set(x_150, 0, x_149); +lean_ctor_set(x_150, 1, x_57); +x_20 = x_150; +goto block_36; +} +else +{ +lean_object* x_151; +lean_free_object(x_43); +lean_dec(x_54); +x_151 = lean_box(0); +x_59 = x_151; +goto block_66; +} +} +else +{ +lean_object* x_152; uint8_t x_153; +lean_dec(x_43); +x_152 = lean_ctor_get(x_143, 0); +lean_inc(x_152); +lean_dec(x_143); +x_153 = lean_unbox(x_152); +lean_dec(x_152); +if (x_153 == 0) +{ +lean_object* x_154; lean_object* x_155; lean_object* x_156; +lean_dec(x_58); +lean_dec(x_47); +x_154 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_154, 0, x_45); +lean_ctor_set(x_154, 1, x_46); +x_155 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_155, 0, x_154); +if (lean_is_scalar(x_54)) { + x_156 = lean_alloc_ctor(0, 2, 0); +} else { + x_156 = x_54; +} +lean_ctor_set(x_156, 0, x_155); +lean_ctor_set(x_156, 1, x_57); +x_20 = x_156; +goto block_36; +} +else +{ +lean_object* x_157; +lean_dec(x_54); +x_157 = lean_box(0); +x_59 = x_157; +goto block_66; +} +} +} +} +else +{ +lean_object* x_158; +lean_dec(x_114); +lean_dec(x_113); +lean_dec(x_111); +lean_dec(x_54); +lean_dec(x_43); +x_158 = lean_box(0); +x_59 = x_158; +goto block_66; +} +} +} +block_66: +{ +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_dec(x_59); +x_60 = lean_box(0); +lean_inc(x_47); +x_61 = l_Std_RBNode_insert___at_Lean_NameSet_insert___spec__1(x_46, x_47, x_60); +x_62 = l_Std_RBNode_insert___at_Lean_NameSet_insert___spec__1(x_45, x_47, x_60); +x_63 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_63, 0, x_62); -lean_ctor_set(x_63, 1, x_55); -x_20 = x_63; +lean_ctor_set(x_63, 1, x_61); +x_64 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_64, 0, x_63); +if (lean_is_scalar(x_58)) { + x_65 = lean_alloc_ctor(0, 2, 0); +} else { + x_65 = x_58; +} +lean_ctor_set(x_65, 0, x_64); +lean_ctor_set(x_65, 1, x_57); +x_20 = x_65; goto block_36; } } else { -uint8_t x_165; +uint8_t x_167; lean_dec(x_47); lean_dec(x_44); -x_165 = !lean_is_exclusive(x_43); -if (x_165 == 0) +x_167 = !lean_is_exclusive(x_43); +if (x_167 == 0) { -lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; -x_166 = lean_ctor_get(x_43, 1); -lean_dec(x_166); -x_167 = lean_ctor_get(x_43, 0); -lean_dec(x_167); -x_168 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_168, 0, x_43); -x_169 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_169, 0, x_168); -lean_ctor_set(x_169, 1, x_11); -x_20 = x_169; -goto block_36; -} -else -{ -lean_object* x_170; lean_object* x_171; lean_object* x_172; -lean_dec(x_43); -x_170 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_170, 0, x_45); -lean_ctor_set(x_170, 1, x_46); -x_171 = lean_alloc_ctor(1, 1, 0); +lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; +x_168 = lean_ctor_get(x_43, 1); +lean_dec(x_168); +x_169 = lean_ctor_get(x_43, 0); +lean_dec(x_169); +x_170 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_170, 0, x_43); +x_171 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_171, 0, x_170); +lean_ctor_set(x_171, 1, x_11); +x_20 = x_171; +goto block_36; +} +else +{ +lean_object* x_172; lean_object* x_173; lean_object* x_174; +lean_dec(x_43); x_172 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_172, 0, x_171); -lean_ctor_set(x_172, 1, x_11); -x_20 = x_172; +lean_ctor_set(x_172, 0, x_45); +lean_ctor_set(x_172, 1, x_46); +x_173 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_173, 0, x_172); +x_174 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_174, 0, x_173); +lean_ctor_set(x_174, 1, x_11); +x_20 = x_174; goto block_36; } } } else { -uint8_t x_173; +uint8_t x_175; lean_dec(x_47); lean_dec(x_44); -x_173 = !lean_is_exclusive(x_43); -if (x_173 == 0) +x_175 = !lean_is_exclusive(x_43); +if (x_175 == 0) { -lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; -x_174 = lean_ctor_get(x_43, 1); -lean_dec(x_174); -x_175 = lean_ctor_get(x_43, 0); -lean_dec(x_175); -x_176 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_176, 0, x_43); -x_177 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_177, 0, x_176); -lean_ctor_set(x_177, 1, x_11); -x_20 = x_177; +lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; +x_176 = lean_ctor_get(x_43, 1); +lean_dec(x_176); +x_177 = lean_ctor_get(x_43, 0); +lean_dec(x_177); +x_178 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_178, 0, x_43); +x_179 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_179, 0, x_178); +lean_ctor_set(x_179, 1, x_11); +x_20 = x_179; goto block_36; } else { -lean_object* x_178; lean_object* x_179; lean_object* x_180; +lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_dec(x_43); -x_178 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_178, 0, x_45); -lean_ctor_set(x_178, 1, x_46); -x_179 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_179, 0, x_178); x_180 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_180, 0, x_179); -lean_ctor_set(x_180, 1, x_11); -x_20 = x_180; +lean_ctor_set(x_180, 0, x_45); +lean_ctor_set(x_180, 1, x_46); +x_181 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_181, 0, x_180); +x_182 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_182, 0, x_181); +lean_ctor_set(x_182, 1, x_11); +x_20 = x_182; +goto block_36; +} +} +} +else +{ +uint8_t x_183; +lean_dec(x_47); +lean_dec(x_44); +x_183 = !lean_is_exclusive(x_43); +if (x_183 == 0) +{ +lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; +x_184 = lean_ctor_get(x_43, 1); +lean_dec(x_184); +x_185 = lean_ctor_get(x_43, 0); +lean_dec(x_185); +x_186 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_186, 0, x_43); +x_187 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_187, 0, x_186); +lean_ctor_set(x_187, 1, x_11); +x_20 = x_187; +goto block_36; +} +else +{ +lean_object* x_188; lean_object* x_189; lean_object* x_190; +lean_dec(x_43); +x_188 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_188, 0, x_45); +lean_ctor_set(x_188, 1, x_46); +x_189 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_189, 0, x_188); +x_190 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_190, 0, x_189); +lean_ctor_set(x_190, 1, x_11); +x_20 = x_190; goto block_36; } } @@ -13112,649 +13157,692 @@ uint8_t x_49; x_49 = l_Lean_LocalDecl_isAuxDecl(x_44); if (x_49 == 0) { -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_50 = lean_st_ref_get(x_10, x_11); -x_51 = lean_ctor_get(x_50, 1); -lean_inc(x_51); -if (lean_is_exclusive(x_50)) { - lean_ctor_release(x_50, 0); - lean_ctor_release(x_50, 1); - x_52 = x_50; +uint8_t x_50; uint8_t x_51; +x_50 = l_Lean_LocalDecl_binderInfo(x_44); +x_51 = l_Lean_BinderInfo_isInstImplicit(x_50); +if (x_51 == 0) +{ +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; +x_52 = lean_st_ref_get(x_10, x_11); +x_53 = lean_ctor_get(x_52, 1); +lean_inc(x_53); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_54 = x_52; } else { - lean_dec_ref(x_50); - x_52 = lean_box(0); + lean_dec_ref(x_52); + x_54 = lean_box(0); } -x_53 = lean_st_ref_get(x_8, x_51); -x_54 = lean_ctor_get(x_53, 0); -lean_inc(x_54); -x_55 = lean_ctor_get(x_53, 1); -lean_inc(x_55); -if (lean_is_exclusive(x_53)) { - lean_ctor_release(x_53, 0); - lean_ctor_release(x_53, 1); - x_56 = x_53; +x_55 = lean_st_ref_get(x_8, x_53); +x_56 = lean_ctor_get(x_55, 0); +lean_inc(x_56); +x_57 = lean_ctor_get(x_55, 1); +lean_inc(x_57); +if (lean_is_exclusive(x_55)) { + lean_ctor_release(x_55, 0); + lean_ctor_release(x_55, 1); + x_58 = x_55; } else { - lean_dec_ref(x_53); - x_56 = lean_box(0); + lean_dec_ref(x_55); + x_58 = lean_box(0); } if (lean_obj_tag(x_44) == 0) { -lean_object* x_65; lean_object* x_66; uint8_t x_67; -x_65 = lean_ctor_get(x_54, 0); -lean_inc(x_65); -lean_dec(x_54); -x_66 = lean_ctor_get(x_44, 3); -lean_inc(x_66); -lean_dec(x_44); -x_67 = l_Lean_Expr_hasFVar(x_66); -if (x_67 == 0) -{ -uint8_t x_68; -x_68 = l_Lean_Expr_hasMVar(x_66); -if (x_68 == 0) -{ -uint8_t x_69; -lean_dec(x_66); -lean_dec(x_65); +lean_object* x_67; lean_object* x_68; uint8_t x_69; +x_67 = lean_ctor_get(x_56, 0); +lean_inc(x_67); lean_dec(x_56); -lean_dec(x_47); -x_69 = !lean_is_exclusive(x_43); +x_68 = lean_ctor_get(x_44, 3); +lean_inc(x_68); +lean_dec(x_44); +x_69 = l_Lean_Expr_hasFVar(x_68); if (x_69 == 0) { -lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; -x_70 = lean_ctor_get(x_43, 1); -lean_dec(x_70); -x_71 = lean_ctor_get(x_43, 0); -lean_dec(x_71); -x_72 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_72, 0, x_43); -if (lean_is_scalar(x_52)) { - x_73 = lean_alloc_ctor(0, 2, 0); -} else { - x_73 = x_52; -} -lean_ctor_set(x_73, 0, x_72); -lean_ctor_set(x_73, 1, x_55); -x_20 = x_73; -goto block_36; -} -else +uint8_t x_70; +x_70 = l_Lean_Expr_hasMVar(x_68); +if (x_70 == 0) { -lean_object* x_74; lean_object* x_75; lean_object* x_76; -lean_dec(x_43); -x_74 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_74, 0, x_45); -lean_ctor_set(x_74, 1, x_46); -x_75 = lean_alloc_ctor(1, 1, 0); +uint8_t x_71; +lean_dec(x_68); +lean_dec(x_67); +lean_dec(x_58); +lean_dec(x_47); +x_71 = !lean_is_exclusive(x_43); +if (x_71 == 0) +{ +lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_72 = lean_ctor_get(x_43, 1); +lean_dec(x_72); +x_73 = lean_ctor_get(x_43, 0); +lean_dec(x_73); +x_74 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_74, 0, x_43); +if (lean_is_scalar(x_54)) { + x_75 = lean_alloc_ctor(0, 2, 0); +} else { + x_75 = x_54; +} lean_ctor_set(x_75, 0, x_74); -if (lean_is_scalar(x_52)) { - x_76 = lean_alloc_ctor(0, 2, 0); -} else { - x_76 = x_52; +lean_ctor_set(x_75, 1, x_57); +x_20 = x_75; +goto block_36; } -lean_ctor_set(x_76, 0, x_75); -lean_ctor_set(x_76, 1, x_55); -x_20 = x_76; +else +{ +lean_object* x_76; lean_object* x_77; lean_object* x_78; +lean_dec(x_43); +x_76 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_76, 0, x_45); +lean_ctor_set(x_76, 1, x_46); +x_77 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_77, 0, x_76); +if (lean_is_scalar(x_54)) { + x_78 = lean_alloc_ctor(0, 2, 0); +} else { + x_78 = x_54; +} +lean_ctor_set(x_78, 0, x_77); +lean_ctor_set(x_78, 1, x_57); +x_20 = x_78; goto block_36; } } else { -lean_object* x_77; lean_object* x_78; uint8_t x_79; -x_77 = l_Std_HashSet_instInhabitedHashSet___closed__1; -x_78 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__1(x_43, x_65, x_66, x_77); -x_79 = !lean_is_exclusive(x_43); -if (x_79 == 0) +lean_object* x_79; lean_object* x_80; uint8_t x_81; +x_79 = l_Std_HashSet_instInhabitedHashSet___closed__1; +x_80 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__1(x_43, x_67, x_68, x_79); +x_81 = !lean_is_exclusive(x_43); +if (x_81 == 0) { -lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; -x_80 = lean_ctor_get(x_43, 1); -lean_dec(x_80); -x_81 = lean_ctor_get(x_43, 0); -lean_dec(x_81); -x_82 = lean_ctor_get(x_78, 0); -lean_inc(x_82); -lean_dec(x_78); -x_83 = lean_unbox(x_82); +lean_object* x_82; lean_object* x_83; lean_object* x_84; uint8_t x_85; +x_82 = lean_ctor_get(x_43, 1); lean_dec(x_82); -if (x_83 == 0) +x_83 = lean_ctor_get(x_43, 0); +lean_dec(x_83); +x_84 = lean_ctor_get(x_80, 0); +lean_inc(x_84); +lean_dec(x_80); +x_85 = lean_unbox(x_84); +lean_dec(x_84); +if (x_85 == 0) { -lean_object* x_84; lean_object* x_85; -lean_dec(x_56); +lean_object* x_86; lean_object* x_87; +lean_dec(x_58); lean_dec(x_47); -x_84 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_84, 0, x_43); -if (lean_is_scalar(x_52)) { - x_85 = lean_alloc_ctor(0, 2, 0); +x_86 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_86, 0, x_43); +if (lean_is_scalar(x_54)) { + x_87 = lean_alloc_ctor(0, 2, 0); } else { - x_85 = x_52; + x_87 = x_54; } -lean_ctor_set(x_85, 0, x_84); -lean_ctor_set(x_85, 1, x_55); -x_20 = x_85; +lean_ctor_set(x_87, 0, x_86); +lean_ctor_set(x_87, 1, x_57); +x_20 = x_87; goto block_36; } else { -lean_object* x_86; +lean_object* x_88; lean_free_object(x_43); -lean_dec(x_52); -x_86 = lean_box(0); -x_57 = x_86; -goto block_64; -} -} -else -{ -lean_object* x_87; uint8_t x_88; -lean_dec(x_43); -x_87 = lean_ctor_get(x_78, 0); -lean_inc(x_87); -lean_dec(x_78); -x_88 = lean_unbox(x_87); -lean_dec(x_87); -if (x_88 == 0) -{ -lean_object* x_89; lean_object* x_90; lean_object* x_91; -lean_dec(x_56); -lean_dec(x_47); -x_89 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_89, 0, x_45); -lean_ctor_set(x_89, 1, x_46); -x_90 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_90, 0, x_89); -if (lean_is_scalar(x_52)) { - x_91 = lean_alloc_ctor(0, 2, 0); -} else { - x_91 = x_52; -} -lean_ctor_set(x_91, 0, x_90); -lean_ctor_set(x_91, 1, x_55); -x_20 = x_91; -goto block_36; -} -else -{ -lean_object* x_92; -lean_dec(x_52); -x_92 = lean_box(0); -x_57 = x_92; -goto block_64; -} -} -} -} -else -{ -lean_object* x_93; lean_object* x_94; uint8_t x_95; -x_93 = l_Std_HashSet_instInhabitedHashSet___closed__1; -x_94 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__8(x_43, x_65, x_66, x_93); -x_95 = !lean_is_exclusive(x_43); -if (x_95 == 0) -{ -lean_object* x_96; lean_object* x_97; lean_object* x_98; uint8_t x_99; -x_96 = lean_ctor_get(x_43, 1); -lean_dec(x_96); -x_97 = lean_ctor_get(x_43, 0); -lean_dec(x_97); -x_98 = lean_ctor_get(x_94, 0); -lean_inc(x_98); -lean_dec(x_94); -x_99 = lean_unbox(x_98); -lean_dec(x_98); -if (x_99 == 0) -{ -lean_object* x_100; lean_object* x_101; -lean_dec(x_56); -lean_dec(x_47); -x_100 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_100, 0, x_43); -if (lean_is_scalar(x_52)) { - x_101 = lean_alloc_ctor(0, 2, 0); -} else { - x_101 = x_52; -} -lean_ctor_set(x_101, 0, x_100); -lean_ctor_set(x_101, 1, x_55); -x_20 = x_101; -goto block_36; -} -else -{ -lean_object* x_102; -lean_free_object(x_43); -lean_dec(x_52); -x_102 = lean_box(0); -x_57 = x_102; -goto block_64; -} -} -else -{ -lean_object* x_103; uint8_t x_104; -lean_dec(x_43); -x_103 = lean_ctor_get(x_94, 0); -lean_inc(x_103); -lean_dec(x_94); -x_104 = lean_unbox(x_103); -lean_dec(x_103); -if (x_104 == 0) -{ -lean_object* x_105; lean_object* x_106; lean_object* x_107; -lean_dec(x_56); -lean_dec(x_47); -x_105 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_105, 0, x_45); -lean_ctor_set(x_105, 1, x_46); -x_106 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_106, 0, x_105); -if (lean_is_scalar(x_52)) { - x_107 = lean_alloc_ctor(0, 2, 0); -} else { - x_107 = x_52; -} -lean_ctor_set(x_107, 0, x_106); -lean_ctor_set(x_107, 1, x_55); -x_20 = x_107; -goto block_36; -} -else -{ -lean_object* x_108; -lean_dec(x_52); -x_108 = lean_box(0); -x_57 = x_108; -goto block_64; -} -} -} -} -else -{ -lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; uint8_t x_158; -x_109 = lean_ctor_get(x_54, 0); -lean_inc(x_109); lean_dec(x_54); -x_110 = lean_ctor_get(x_44, 3); -lean_inc(x_110); -x_111 = lean_ctor_get(x_44, 4); -lean_inc(x_111); -lean_dec(x_44); -x_158 = l_Lean_Expr_hasFVar(x_110); -if (x_158 == 0) -{ -uint8_t x_159; -x_159 = l_Lean_Expr_hasMVar(x_110); -if (x_159 == 0) -{ -lean_object* x_160; -lean_dec(x_110); -x_160 = l_Lean_MetavarContext_findLocalDeclDependsOn___closed__1; -x_112 = x_160; -goto block_157; +x_88 = lean_box(0); +x_59 = x_88; +goto block_66; +} } else { -lean_object* x_161; lean_object* x_162; -x_161 = l_Std_HashSet_instInhabitedHashSet___closed__1; -lean_inc(x_109); -x_162 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__29(x_43, x_109, x_110, x_161); -x_112 = x_162; -goto block_157; +lean_object* x_89; uint8_t x_90; +lean_dec(x_43); +x_89 = lean_ctor_get(x_80, 0); +lean_inc(x_89); +lean_dec(x_80); +x_90 = lean_unbox(x_89); +lean_dec(x_89); +if (x_90 == 0) +{ +lean_object* x_91; lean_object* x_92; lean_object* x_93; +lean_dec(x_58); +lean_dec(x_47); +x_91 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_91, 0, x_45); +lean_ctor_set(x_91, 1, x_46); +x_92 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_92, 0, x_91); +if (lean_is_scalar(x_54)) { + x_93 = lean_alloc_ctor(0, 2, 0); +} else { + x_93 = x_54; } +lean_ctor_set(x_93, 0, x_92); +lean_ctor_set(x_93, 1, x_57); +x_20 = x_93; +goto block_36; +} +else +{ +lean_object* x_94; +lean_dec(x_54); +x_94 = lean_box(0); +x_59 = x_94; +goto block_66; +} +} +} +} +else +{ +lean_object* x_95; lean_object* x_96; uint8_t x_97; +x_95 = l_Std_HashSet_instInhabitedHashSet___closed__1; +x_96 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__8(x_43, x_67, x_68, x_95); +x_97 = !lean_is_exclusive(x_43); +if (x_97 == 0) +{ +lean_object* x_98; lean_object* x_99; lean_object* x_100; uint8_t x_101; +x_98 = lean_ctor_get(x_43, 1); +lean_dec(x_98); +x_99 = lean_ctor_get(x_43, 0); +lean_dec(x_99); +x_100 = lean_ctor_get(x_96, 0); +lean_inc(x_100); +lean_dec(x_96); +x_101 = lean_unbox(x_100); +lean_dec(x_100); +if (x_101 == 0) +{ +lean_object* x_102; lean_object* x_103; +lean_dec(x_58); +lean_dec(x_47); +x_102 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_102, 0, x_43); +if (lean_is_scalar(x_54)) { + x_103 = lean_alloc_ctor(0, 2, 0); +} else { + x_103 = x_54; +} +lean_ctor_set(x_103, 0, x_102); +lean_ctor_set(x_103, 1, x_57); +x_20 = x_103; +goto block_36; +} +else +{ +lean_object* x_104; +lean_free_object(x_43); +lean_dec(x_54); +x_104 = lean_box(0); +x_59 = x_104; +goto block_66; +} +} +else +{ +lean_object* x_105; uint8_t x_106; +lean_dec(x_43); +x_105 = lean_ctor_get(x_96, 0); +lean_inc(x_105); +lean_dec(x_96); +x_106 = lean_unbox(x_105); +lean_dec(x_105); +if (x_106 == 0) +{ +lean_object* x_107; lean_object* x_108; lean_object* x_109; +lean_dec(x_58); +lean_dec(x_47); +x_107 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_107, 0, x_45); +lean_ctor_set(x_107, 1, x_46); +x_108 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_108, 0, x_107); +if (lean_is_scalar(x_54)) { + x_109 = lean_alloc_ctor(0, 2, 0); +} else { + x_109 = x_54; +} +lean_ctor_set(x_109, 0, x_108); +lean_ctor_set(x_109, 1, x_57); +x_20 = x_109; +goto block_36; +} +else +{ +lean_object* x_110; +lean_dec(x_54); +x_110 = lean_box(0); +x_59 = x_110; +goto block_66; +} +} +} +} +else +{ +lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; uint8_t x_160; +x_111 = lean_ctor_get(x_56, 0); +lean_inc(x_111); +lean_dec(x_56); +x_112 = lean_ctor_get(x_44, 3); +lean_inc(x_112); +x_113 = lean_ctor_get(x_44, 4); +lean_inc(x_113); +lean_dec(x_44); +x_160 = l_Lean_Expr_hasFVar(x_112); +if (x_160 == 0) +{ +uint8_t x_161; +x_161 = l_Lean_Expr_hasMVar(x_112); +if (x_161 == 0) +{ +lean_object* x_162; +lean_dec(x_112); +x_162 = l_Lean_MetavarContext_findLocalDeclDependsOn___closed__1; +x_114 = x_162; +goto block_159; } else { lean_object* x_163; lean_object* x_164; x_163 = l_Std_HashSet_instInhabitedHashSet___closed__1; -lean_inc(x_109); -x_164 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__36(x_43, x_109, x_110, x_163); -x_112 = x_164; -goto block_157; +lean_inc(x_111); +x_164 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__29(x_43, x_111, x_112, x_163); +x_114 = x_164; +goto block_159; } -block_157: +} +else { -lean_object* x_113; uint8_t x_114; -x_113 = lean_ctor_get(x_112, 0); -lean_inc(x_113); -x_114 = lean_unbox(x_113); -lean_dec(x_113); -if (x_114 == 0) +lean_object* x_165; lean_object* x_166; +x_165 = l_Std_HashSet_instInhabitedHashSet___closed__1; +lean_inc(x_111); +x_166 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__36(x_43, x_111, x_112, x_165); +x_114 = x_166; +goto block_159; +} +block_159: { lean_object* x_115; uint8_t x_116; -x_115 = lean_ctor_get(x_112, 1); +x_115 = lean_ctor_get(x_114, 0); lean_inc(x_115); -lean_dec(x_112); -x_116 = l_Lean_Expr_hasFVar(x_111); +x_116 = lean_unbox(x_115); +lean_dec(x_115); if (x_116 == 0) { -uint8_t x_117; -x_117 = l_Lean_Expr_hasMVar(x_111); -if (x_117 == 0) -{ -uint8_t x_118; -lean_dec(x_115); -lean_dec(x_111); -lean_dec(x_109); -lean_dec(x_56); -lean_dec(x_47); -x_118 = !lean_is_exclusive(x_43); +lean_object* x_117; uint8_t x_118; +x_117 = lean_ctor_get(x_114, 1); +lean_inc(x_117); +lean_dec(x_114); +x_118 = l_Lean_Expr_hasFVar(x_113); if (x_118 == 0) { -lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; -x_119 = lean_ctor_get(x_43, 1); -lean_dec(x_119); -x_120 = lean_ctor_get(x_43, 0); -lean_dec(x_120); -x_121 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_121, 0, x_43); -if (lean_is_scalar(x_52)) { - x_122 = lean_alloc_ctor(0, 2, 0); -} else { - x_122 = x_52; -} -lean_ctor_set(x_122, 0, x_121); -lean_ctor_set(x_122, 1, x_55); -x_20 = x_122; -goto block_36; -} -else +uint8_t x_119; +x_119 = l_Lean_Expr_hasMVar(x_113); +if (x_119 == 0) { -lean_object* x_123; lean_object* x_124; lean_object* x_125; -lean_dec(x_43); -x_123 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_123, 0, x_45); -lean_ctor_set(x_123, 1, x_46); -x_124 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_124, 0, x_123); -if (lean_is_scalar(x_52)) { - x_125 = lean_alloc_ctor(0, 2, 0); -} else { - x_125 = x_52; -} -lean_ctor_set(x_125, 0, x_124); -lean_ctor_set(x_125, 1, x_55); -x_20 = x_125; -goto block_36; -} -} -else -{ -lean_object* x_126; uint8_t x_127; -x_126 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__15(x_43, x_109, x_111, x_115); -x_127 = !lean_is_exclusive(x_43); -if (x_127 == 0) -{ -lean_object* x_128; lean_object* x_129; lean_object* x_130; uint8_t x_131; -x_128 = lean_ctor_get(x_43, 1); -lean_dec(x_128); -x_129 = lean_ctor_get(x_43, 0); -lean_dec(x_129); -x_130 = lean_ctor_get(x_126, 0); -lean_inc(x_130); -lean_dec(x_126); -x_131 = lean_unbox(x_130); -lean_dec(x_130); -if (x_131 == 0) -{ -lean_object* x_132; lean_object* x_133; -lean_dec(x_56); -lean_dec(x_47); -x_132 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_132, 0, x_43); -if (lean_is_scalar(x_52)) { - x_133 = lean_alloc_ctor(0, 2, 0); -} else { - x_133 = x_52; -} -lean_ctor_set(x_133, 0, x_132); -lean_ctor_set(x_133, 1, x_55); -x_20 = x_133; -goto block_36; -} -else -{ -lean_object* x_134; -lean_free_object(x_43); -lean_dec(x_52); -x_134 = lean_box(0); -x_57 = x_134; -goto block_64; -} -} -else -{ -lean_object* x_135; uint8_t x_136; -lean_dec(x_43); -x_135 = lean_ctor_get(x_126, 0); -lean_inc(x_135); -lean_dec(x_126); -x_136 = lean_unbox(x_135); -lean_dec(x_135); -if (x_136 == 0) -{ -lean_object* x_137; lean_object* x_138; lean_object* x_139; -lean_dec(x_56); -lean_dec(x_47); -x_137 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_137, 0, x_45); -lean_ctor_set(x_137, 1, x_46); -x_138 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_138, 0, x_137); -if (lean_is_scalar(x_52)) { - x_139 = lean_alloc_ctor(0, 2, 0); -} else { - x_139 = x_52; -} -lean_ctor_set(x_139, 0, x_138); -lean_ctor_set(x_139, 1, x_55); -x_20 = x_139; -goto block_36; -} -else -{ -lean_object* x_140; -lean_dec(x_52); -x_140 = lean_box(0); -x_57 = x_140; -goto block_64; -} -} -} -} -else -{ -lean_object* x_141; uint8_t x_142; -x_141 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__22(x_43, x_109, x_111, x_115); -x_142 = !lean_is_exclusive(x_43); -if (x_142 == 0) -{ -lean_object* x_143; lean_object* x_144; lean_object* x_145; uint8_t x_146; -x_143 = lean_ctor_get(x_43, 1); -lean_dec(x_143); -x_144 = lean_ctor_get(x_43, 0); -lean_dec(x_144); -x_145 = lean_ctor_get(x_141, 0); -lean_inc(x_145); -lean_dec(x_141); -x_146 = lean_unbox(x_145); -lean_dec(x_145); -if (x_146 == 0) -{ -lean_object* x_147; lean_object* x_148; -lean_dec(x_56); -lean_dec(x_47); -x_147 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_147, 0, x_43); -if (lean_is_scalar(x_52)) { - x_148 = lean_alloc_ctor(0, 2, 0); -} else { - x_148 = x_52; -} -lean_ctor_set(x_148, 0, x_147); -lean_ctor_set(x_148, 1, x_55); -x_20 = x_148; -goto block_36; -} -else -{ -lean_object* x_149; -lean_free_object(x_43); -lean_dec(x_52); -x_149 = lean_box(0); -x_57 = x_149; -goto block_64; -} -} -else -{ -lean_object* x_150; uint8_t x_151; -lean_dec(x_43); -x_150 = lean_ctor_get(x_141, 0); -lean_inc(x_150); -lean_dec(x_141); -x_151 = lean_unbox(x_150); -lean_dec(x_150); -if (x_151 == 0) -{ -lean_object* x_152; lean_object* x_153; lean_object* x_154; -lean_dec(x_56); -lean_dec(x_47); -x_152 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_152, 0, x_45); -lean_ctor_set(x_152, 1, x_46); -x_153 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_153, 0, x_152); -if (lean_is_scalar(x_52)) { - x_154 = lean_alloc_ctor(0, 2, 0); -} else { - x_154 = x_52; -} -lean_ctor_set(x_154, 0, x_153); -lean_ctor_set(x_154, 1, x_55); -x_20 = x_154; -goto block_36; -} -else -{ -lean_object* x_155; -lean_dec(x_52); -x_155 = lean_box(0); -x_57 = x_155; -goto block_64; -} -} -} -} -else -{ -lean_object* x_156; -lean_dec(x_112); +uint8_t x_120; +lean_dec(x_117); +lean_dec(x_113); lean_dec(x_111); -lean_dec(x_109); -lean_dec(x_52); -lean_dec(x_43); -x_156 = lean_box(0); -x_57 = x_156; -goto block_64; -} -} -} -block_64: +lean_dec(x_58); +lean_dec(x_47); +x_120 = !lean_is_exclusive(x_43); +if (x_120 == 0) { -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_dec(x_57); -x_58 = lean_box(0); -lean_inc(x_47); -x_59 = l_Std_RBNode_insert___at_Lean_NameSet_insert___spec__1(x_46, x_47, x_58); -x_60 = l_Std_RBNode_insert___at_Lean_NameSet_insert___spec__1(x_45, x_47, x_58); -x_61 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_61, 0, x_60); -lean_ctor_set(x_61, 1, x_59); -x_62 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_62, 0, x_61); -if (lean_is_scalar(x_56)) { - x_63 = lean_alloc_ctor(0, 2, 0); +lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; +x_121 = lean_ctor_get(x_43, 1); +lean_dec(x_121); +x_122 = lean_ctor_get(x_43, 0); +lean_dec(x_122); +x_123 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_123, 0, x_43); +if (lean_is_scalar(x_54)) { + x_124 = lean_alloc_ctor(0, 2, 0); } else { - x_63 = x_56; + x_124 = x_54; } +lean_ctor_set(x_124, 0, x_123); +lean_ctor_set(x_124, 1, x_57); +x_20 = x_124; +goto block_36; +} +else +{ +lean_object* x_125; lean_object* x_126; lean_object* x_127; +lean_dec(x_43); +x_125 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_125, 0, x_45); +lean_ctor_set(x_125, 1, x_46); +x_126 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_126, 0, x_125); +if (lean_is_scalar(x_54)) { + x_127 = lean_alloc_ctor(0, 2, 0); +} else { + x_127 = x_54; +} +lean_ctor_set(x_127, 0, x_126); +lean_ctor_set(x_127, 1, x_57); +x_20 = x_127; +goto block_36; +} +} +else +{ +lean_object* x_128; uint8_t x_129; +x_128 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__15(x_43, x_111, x_113, x_117); +x_129 = !lean_is_exclusive(x_43); +if (x_129 == 0) +{ +lean_object* x_130; lean_object* x_131; lean_object* x_132; uint8_t x_133; +x_130 = lean_ctor_get(x_43, 1); +lean_dec(x_130); +x_131 = lean_ctor_get(x_43, 0); +lean_dec(x_131); +x_132 = lean_ctor_get(x_128, 0); +lean_inc(x_132); +lean_dec(x_128); +x_133 = lean_unbox(x_132); +lean_dec(x_132); +if (x_133 == 0) +{ +lean_object* x_134; lean_object* x_135; +lean_dec(x_58); +lean_dec(x_47); +x_134 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_134, 0, x_43); +if (lean_is_scalar(x_54)) { + x_135 = lean_alloc_ctor(0, 2, 0); +} else { + x_135 = x_54; +} +lean_ctor_set(x_135, 0, x_134); +lean_ctor_set(x_135, 1, x_57); +x_20 = x_135; +goto block_36; +} +else +{ +lean_object* x_136; +lean_free_object(x_43); +lean_dec(x_54); +x_136 = lean_box(0); +x_59 = x_136; +goto block_66; +} +} +else +{ +lean_object* x_137; uint8_t x_138; +lean_dec(x_43); +x_137 = lean_ctor_get(x_128, 0); +lean_inc(x_137); +lean_dec(x_128); +x_138 = lean_unbox(x_137); +lean_dec(x_137); +if (x_138 == 0) +{ +lean_object* x_139; lean_object* x_140; lean_object* x_141; +lean_dec(x_58); +lean_dec(x_47); +x_139 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_139, 0, x_45); +lean_ctor_set(x_139, 1, x_46); +x_140 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_140, 0, x_139); +if (lean_is_scalar(x_54)) { + x_141 = lean_alloc_ctor(0, 2, 0); +} else { + x_141 = x_54; +} +lean_ctor_set(x_141, 0, x_140); +lean_ctor_set(x_141, 1, x_57); +x_20 = x_141; +goto block_36; +} +else +{ +lean_object* x_142; +lean_dec(x_54); +x_142 = lean_box(0); +x_59 = x_142; +goto block_66; +} +} +} +} +else +{ +lean_object* x_143; uint8_t x_144; +x_143 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__22(x_43, x_111, x_113, x_117); +x_144 = !lean_is_exclusive(x_43); +if (x_144 == 0) +{ +lean_object* x_145; lean_object* x_146; lean_object* x_147; uint8_t x_148; +x_145 = lean_ctor_get(x_43, 1); +lean_dec(x_145); +x_146 = lean_ctor_get(x_43, 0); +lean_dec(x_146); +x_147 = lean_ctor_get(x_143, 0); +lean_inc(x_147); +lean_dec(x_143); +x_148 = lean_unbox(x_147); +lean_dec(x_147); +if (x_148 == 0) +{ +lean_object* x_149; lean_object* x_150; +lean_dec(x_58); +lean_dec(x_47); +x_149 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_149, 0, x_43); +if (lean_is_scalar(x_54)) { + x_150 = lean_alloc_ctor(0, 2, 0); +} else { + x_150 = x_54; +} +lean_ctor_set(x_150, 0, x_149); +lean_ctor_set(x_150, 1, x_57); +x_20 = x_150; +goto block_36; +} +else +{ +lean_object* x_151; +lean_free_object(x_43); +lean_dec(x_54); +x_151 = lean_box(0); +x_59 = x_151; +goto block_66; +} +} +else +{ +lean_object* x_152; uint8_t x_153; +lean_dec(x_43); +x_152 = lean_ctor_get(x_143, 0); +lean_inc(x_152); +lean_dec(x_143); +x_153 = lean_unbox(x_152); +lean_dec(x_152); +if (x_153 == 0) +{ +lean_object* x_154; lean_object* x_155; lean_object* x_156; +lean_dec(x_58); +lean_dec(x_47); +x_154 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_154, 0, x_45); +lean_ctor_set(x_154, 1, x_46); +x_155 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_155, 0, x_154); +if (lean_is_scalar(x_54)) { + x_156 = lean_alloc_ctor(0, 2, 0); +} else { + x_156 = x_54; +} +lean_ctor_set(x_156, 0, x_155); +lean_ctor_set(x_156, 1, x_57); +x_20 = x_156; +goto block_36; +} +else +{ +lean_object* x_157; +lean_dec(x_54); +x_157 = lean_box(0); +x_59 = x_157; +goto block_66; +} +} +} +} +else +{ +lean_object* x_158; +lean_dec(x_114); +lean_dec(x_113); +lean_dec(x_111); +lean_dec(x_54); +lean_dec(x_43); +x_158 = lean_box(0); +x_59 = x_158; +goto block_66; +} +} +} +block_66: +{ +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_dec(x_59); +x_60 = lean_box(0); +lean_inc(x_47); +x_61 = l_Std_RBNode_insert___at_Lean_NameSet_insert___spec__1(x_46, x_47, x_60); +x_62 = l_Std_RBNode_insert___at_Lean_NameSet_insert___spec__1(x_45, x_47, x_60); +x_63 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_63, 0, x_62); -lean_ctor_set(x_63, 1, x_55); -x_20 = x_63; +lean_ctor_set(x_63, 1, x_61); +x_64 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_64, 0, x_63); +if (lean_is_scalar(x_58)) { + x_65 = lean_alloc_ctor(0, 2, 0); +} else { + x_65 = x_58; +} +lean_ctor_set(x_65, 0, x_64); +lean_ctor_set(x_65, 1, x_57); +x_20 = x_65; goto block_36; } } else { -uint8_t x_165; +uint8_t x_167; lean_dec(x_47); lean_dec(x_44); -x_165 = !lean_is_exclusive(x_43); -if (x_165 == 0) +x_167 = !lean_is_exclusive(x_43); +if (x_167 == 0) { -lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; -x_166 = lean_ctor_get(x_43, 1); -lean_dec(x_166); -x_167 = lean_ctor_get(x_43, 0); -lean_dec(x_167); -x_168 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_168, 0, x_43); -x_169 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_169, 0, x_168); -lean_ctor_set(x_169, 1, x_11); -x_20 = x_169; -goto block_36; -} -else -{ -lean_object* x_170; lean_object* x_171; lean_object* x_172; -lean_dec(x_43); -x_170 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_170, 0, x_45); -lean_ctor_set(x_170, 1, x_46); -x_171 = lean_alloc_ctor(1, 1, 0); +lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; +x_168 = lean_ctor_get(x_43, 1); +lean_dec(x_168); +x_169 = lean_ctor_get(x_43, 0); +lean_dec(x_169); +x_170 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_170, 0, x_43); +x_171 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_171, 0, x_170); +lean_ctor_set(x_171, 1, x_11); +x_20 = x_171; +goto block_36; +} +else +{ +lean_object* x_172; lean_object* x_173; lean_object* x_174; +lean_dec(x_43); x_172 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_172, 0, x_171); -lean_ctor_set(x_172, 1, x_11); -x_20 = x_172; +lean_ctor_set(x_172, 0, x_45); +lean_ctor_set(x_172, 1, x_46); +x_173 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_173, 0, x_172); +x_174 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_174, 0, x_173); +lean_ctor_set(x_174, 1, x_11); +x_20 = x_174; goto block_36; } } } else { -uint8_t x_173; +uint8_t x_175; lean_dec(x_47); lean_dec(x_44); -x_173 = !lean_is_exclusive(x_43); -if (x_173 == 0) +x_175 = !lean_is_exclusive(x_43); +if (x_175 == 0) { -lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; -x_174 = lean_ctor_get(x_43, 1); -lean_dec(x_174); -x_175 = lean_ctor_get(x_43, 0); -lean_dec(x_175); -x_176 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_176, 0, x_43); -x_177 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_177, 0, x_176); -lean_ctor_set(x_177, 1, x_11); -x_20 = x_177; +lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; +x_176 = lean_ctor_get(x_43, 1); +lean_dec(x_176); +x_177 = lean_ctor_get(x_43, 0); +lean_dec(x_177); +x_178 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_178, 0, x_43); +x_179 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_179, 0, x_178); +lean_ctor_set(x_179, 1, x_11); +x_20 = x_179; goto block_36; } else { -lean_object* x_178; lean_object* x_179; lean_object* x_180; +lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_dec(x_43); -x_178 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_178, 0, x_45); -lean_ctor_set(x_178, 1, x_46); -x_179 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_179, 0, x_178); x_180 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_180, 0, x_179); -lean_ctor_set(x_180, 1, x_11); -x_20 = x_180; +lean_ctor_set(x_180, 0, x_45); +lean_ctor_set(x_180, 1, x_46); +x_181 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_181, 0, x_180); +x_182 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_182, 0, x_181); +lean_ctor_set(x_182, 1, x_11); +x_20 = x_182; +goto block_36; +} +} +} +else +{ +uint8_t x_183; +lean_dec(x_47); +lean_dec(x_44); +x_183 = !lean_is_exclusive(x_43); +if (x_183 == 0) +{ +lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; +x_184 = lean_ctor_get(x_43, 1); +lean_dec(x_184); +x_185 = lean_ctor_get(x_43, 0); +lean_dec(x_185); +x_186 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_186, 0, x_43); +x_187 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_187, 0, x_186); +lean_ctor_set(x_187, 1, x_11); +x_20 = x_187; +goto block_36; +} +else +{ +lean_object* x_188; lean_object* x_189; lean_object* x_190; +lean_dec(x_43); +x_188 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_188, 0, x_45); +lean_ctor_set(x_188, 1, x_46); +x_189 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_189, 0, x_188); +x_190 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_190, 0, x_189); +lean_ctor_set(x_190, 1, x_11); +x_20 = x_190; goto block_36; } } @@ -14119,649 +14207,692 @@ uint8_t x_49; x_49 = l_Lean_LocalDecl_isAuxDecl(x_44); if (x_49 == 0) { -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_50 = lean_st_ref_get(x_10, x_11); -x_51 = lean_ctor_get(x_50, 1); -lean_inc(x_51); -if (lean_is_exclusive(x_50)) { - lean_ctor_release(x_50, 0); - lean_ctor_release(x_50, 1); - x_52 = x_50; +uint8_t x_50; uint8_t x_51; +x_50 = l_Lean_LocalDecl_binderInfo(x_44); +x_51 = l_Lean_BinderInfo_isInstImplicit(x_50); +if (x_51 == 0) +{ +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; +x_52 = lean_st_ref_get(x_10, x_11); +x_53 = lean_ctor_get(x_52, 1); +lean_inc(x_53); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_54 = x_52; } else { - lean_dec_ref(x_50); - x_52 = lean_box(0); + lean_dec_ref(x_52); + x_54 = lean_box(0); } -x_53 = lean_st_ref_get(x_8, x_51); -x_54 = lean_ctor_get(x_53, 0); -lean_inc(x_54); -x_55 = lean_ctor_get(x_53, 1); -lean_inc(x_55); -if (lean_is_exclusive(x_53)) { - lean_ctor_release(x_53, 0); - lean_ctor_release(x_53, 1); - x_56 = x_53; +x_55 = lean_st_ref_get(x_8, x_53); +x_56 = lean_ctor_get(x_55, 0); +lean_inc(x_56); +x_57 = lean_ctor_get(x_55, 1); +lean_inc(x_57); +if (lean_is_exclusive(x_55)) { + lean_ctor_release(x_55, 0); + lean_ctor_release(x_55, 1); + x_58 = x_55; } else { - lean_dec_ref(x_53); - x_56 = lean_box(0); + lean_dec_ref(x_55); + x_58 = lean_box(0); } if (lean_obj_tag(x_44) == 0) { -lean_object* x_65; lean_object* x_66; uint8_t x_67; -x_65 = lean_ctor_get(x_54, 0); -lean_inc(x_65); -lean_dec(x_54); -x_66 = lean_ctor_get(x_44, 3); -lean_inc(x_66); -lean_dec(x_44); -x_67 = l_Lean_Expr_hasFVar(x_66); -if (x_67 == 0) -{ -uint8_t x_68; -x_68 = l_Lean_Expr_hasMVar(x_66); -if (x_68 == 0) -{ -uint8_t x_69; -lean_dec(x_66); -lean_dec(x_65); +lean_object* x_67; lean_object* x_68; uint8_t x_69; +x_67 = lean_ctor_get(x_56, 0); +lean_inc(x_67); lean_dec(x_56); -lean_dec(x_47); -x_69 = !lean_is_exclusive(x_43); +x_68 = lean_ctor_get(x_44, 3); +lean_inc(x_68); +lean_dec(x_44); +x_69 = l_Lean_Expr_hasFVar(x_68); if (x_69 == 0) { -lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; -x_70 = lean_ctor_get(x_43, 1); -lean_dec(x_70); -x_71 = lean_ctor_get(x_43, 0); -lean_dec(x_71); -x_72 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_72, 0, x_43); -if (lean_is_scalar(x_52)) { - x_73 = lean_alloc_ctor(0, 2, 0); -} else { - x_73 = x_52; -} -lean_ctor_set(x_73, 0, x_72); -lean_ctor_set(x_73, 1, x_55); -x_20 = x_73; -goto block_36; -} -else +uint8_t x_70; +x_70 = l_Lean_Expr_hasMVar(x_68); +if (x_70 == 0) { -lean_object* x_74; lean_object* x_75; lean_object* x_76; -lean_dec(x_43); -x_74 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_74, 0, x_45); -lean_ctor_set(x_74, 1, x_46); -x_75 = lean_alloc_ctor(1, 1, 0); +uint8_t x_71; +lean_dec(x_68); +lean_dec(x_67); +lean_dec(x_58); +lean_dec(x_47); +x_71 = !lean_is_exclusive(x_43); +if (x_71 == 0) +{ +lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_72 = lean_ctor_get(x_43, 1); +lean_dec(x_72); +x_73 = lean_ctor_get(x_43, 0); +lean_dec(x_73); +x_74 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_74, 0, x_43); +if (lean_is_scalar(x_54)) { + x_75 = lean_alloc_ctor(0, 2, 0); +} else { + x_75 = x_54; +} lean_ctor_set(x_75, 0, x_74); -if (lean_is_scalar(x_52)) { - x_76 = lean_alloc_ctor(0, 2, 0); -} else { - x_76 = x_52; +lean_ctor_set(x_75, 1, x_57); +x_20 = x_75; +goto block_36; } -lean_ctor_set(x_76, 0, x_75); -lean_ctor_set(x_76, 1, x_55); -x_20 = x_76; +else +{ +lean_object* x_76; lean_object* x_77; lean_object* x_78; +lean_dec(x_43); +x_76 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_76, 0, x_45); +lean_ctor_set(x_76, 1, x_46); +x_77 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_77, 0, x_76); +if (lean_is_scalar(x_54)) { + x_78 = lean_alloc_ctor(0, 2, 0); +} else { + x_78 = x_54; +} +lean_ctor_set(x_78, 0, x_77); +lean_ctor_set(x_78, 1, x_57); +x_20 = x_78; goto block_36; } } else { -lean_object* x_77; lean_object* x_78; uint8_t x_79; -x_77 = l_Std_HashSet_instInhabitedHashSet___closed__1; -x_78 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__1(x_43, x_65, x_66, x_77); -x_79 = !lean_is_exclusive(x_43); -if (x_79 == 0) +lean_object* x_79; lean_object* x_80; uint8_t x_81; +x_79 = l_Std_HashSet_instInhabitedHashSet___closed__1; +x_80 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__1(x_43, x_67, x_68, x_79); +x_81 = !lean_is_exclusive(x_43); +if (x_81 == 0) { -lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; -x_80 = lean_ctor_get(x_43, 1); -lean_dec(x_80); -x_81 = lean_ctor_get(x_43, 0); -lean_dec(x_81); -x_82 = lean_ctor_get(x_78, 0); -lean_inc(x_82); -lean_dec(x_78); -x_83 = lean_unbox(x_82); +lean_object* x_82; lean_object* x_83; lean_object* x_84; uint8_t x_85; +x_82 = lean_ctor_get(x_43, 1); lean_dec(x_82); -if (x_83 == 0) +x_83 = lean_ctor_get(x_43, 0); +lean_dec(x_83); +x_84 = lean_ctor_get(x_80, 0); +lean_inc(x_84); +lean_dec(x_80); +x_85 = lean_unbox(x_84); +lean_dec(x_84); +if (x_85 == 0) { -lean_object* x_84; lean_object* x_85; -lean_dec(x_56); +lean_object* x_86; lean_object* x_87; +lean_dec(x_58); lean_dec(x_47); -x_84 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_84, 0, x_43); -if (lean_is_scalar(x_52)) { - x_85 = lean_alloc_ctor(0, 2, 0); +x_86 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_86, 0, x_43); +if (lean_is_scalar(x_54)) { + x_87 = lean_alloc_ctor(0, 2, 0); } else { - x_85 = x_52; + x_87 = x_54; } -lean_ctor_set(x_85, 0, x_84); -lean_ctor_set(x_85, 1, x_55); -x_20 = x_85; +lean_ctor_set(x_87, 0, x_86); +lean_ctor_set(x_87, 1, x_57); +x_20 = x_87; goto block_36; } else { -lean_object* x_86; +lean_object* x_88; lean_free_object(x_43); -lean_dec(x_52); -x_86 = lean_box(0); -x_57 = x_86; -goto block_64; -} -} -else -{ -lean_object* x_87; uint8_t x_88; -lean_dec(x_43); -x_87 = lean_ctor_get(x_78, 0); -lean_inc(x_87); -lean_dec(x_78); -x_88 = lean_unbox(x_87); -lean_dec(x_87); -if (x_88 == 0) -{ -lean_object* x_89; lean_object* x_90; lean_object* x_91; -lean_dec(x_56); -lean_dec(x_47); -x_89 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_89, 0, x_45); -lean_ctor_set(x_89, 1, x_46); -x_90 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_90, 0, x_89); -if (lean_is_scalar(x_52)) { - x_91 = lean_alloc_ctor(0, 2, 0); -} else { - x_91 = x_52; -} -lean_ctor_set(x_91, 0, x_90); -lean_ctor_set(x_91, 1, x_55); -x_20 = x_91; -goto block_36; -} -else -{ -lean_object* x_92; -lean_dec(x_52); -x_92 = lean_box(0); -x_57 = x_92; -goto block_64; -} -} -} -} -else -{ -lean_object* x_93; lean_object* x_94; uint8_t x_95; -x_93 = l_Std_HashSet_instInhabitedHashSet___closed__1; -x_94 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__8(x_43, x_65, x_66, x_93); -x_95 = !lean_is_exclusive(x_43); -if (x_95 == 0) -{ -lean_object* x_96; lean_object* x_97; lean_object* x_98; uint8_t x_99; -x_96 = lean_ctor_get(x_43, 1); -lean_dec(x_96); -x_97 = lean_ctor_get(x_43, 0); -lean_dec(x_97); -x_98 = lean_ctor_get(x_94, 0); -lean_inc(x_98); -lean_dec(x_94); -x_99 = lean_unbox(x_98); -lean_dec(x_98); -if (x_99 == 0) -{ -lean_object* x_100; lean_object* x_101; -lean_dec(x_56); -lean_dec(x_47); -x_100 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_100, 0, x_43); -if (lean_is_scalar(x_52)) { - x_101 = lean_alloc_ctor(0, 2, 0); -} else { - x_101 = x_52; -} -lean_ctor_set(x_101, 0, x_100); -lean_ctor_set(x_101, 1, x_55); -x_20 = x_101; -goto block_36; -} -else -{ -lean_object* x_102; -lean_free_object(x_43); -lean_dec(x_52); -x_102 = lean_box(0); -x_57 = x_102; -goto block_64; -} -} -else -{ -lean_object* x_103; uint8_t x_104; -lean_dec(x_43); -x_103 = lean_ctor_get(x_94, 0); -lean_inc(x_103); -lean_dec(x_94); -x_104 = lean_unbox(x_103); -lean_dec(x_103); -if (x_104 == 0) -{ -lean_object* x_105; lean_object* x_106; lean_object* x_107; -lean_dec(x_56); -lean_dec(x_47); -x_105 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_105, 0, x_45); -lean_ctor_set(x_105, 1, x_46); -x_106 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_106, 0, x_105); -if (lean_is_scalar(x_52)) { - x_107 = lean_alloc_ctor(0, 2, 0); -} else { - x_107 = x_52; -} -lean_ctor_set(x_107, 0, x_106); -lean_ctor_set(x_107, 1, x_55); -x_20 = x_107; -goto block_36; -} -else -{ -lean_object* x_108; -lean_dec(x_52); -x_108 = lean_box(0); -x_57 = x_108; -goto block_64; -} -} -} -} -else -{ -lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; uint8_t x_158; -x_109 = lean_ctor_get(x_54, 0); -lean_inc(x_109); lean_dec(x_54); -x_110 = lean_ctor_get(x_44, 3); -lean_inc(x_110); -x_111 = lean_ctor_get(x_44, 4); -lean_inc(x_111); -lean_dec(x_44); -x_158 = l_Lean_Expr_hasFVar(x_110); -if (x_158 == 0) -{ -uint8_t x_159; -x_159 = l_Lean_Expr_hasMVar(x_110); -if (x_159 == 0) -{ -lean_object* x_160; -lean_dec(x_110); -x_160 = l_Lean_MetavarContext_findLocalDeclDependsOn___closed__1; -x_112 = x_160; -goto block_157; +x_88 = lean_box(0); +x_59 = x_88; +goto block_66; +} } else { -lean_object* x_161; lean_object* x_162; -x_161 = l_Std_HashSet_instInhabitedHashSet___closed__1; -lean_inc(x_109); -x_162 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__29(x_43, x_109, x_110, x_161); -x_112 = x_162; -goto block_157; +lean_object* x_89; uint8_t x_90; +lean_dec(x_43); +x_89 = lean_ctor_get(x_80, 0); +lean_inc(x_89); +lean_dec(x_80); +x_90 = lean_unbox(x_89); +lean_dec(x_89); +if (x_90 == 0) +{ +lean_object* x_91; lean_object* x_92; lean_object* x_93; +lean_dec(x_58); +lean_dec(x_47); +x_91 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_91, 0, x_45); +lean_ctor_set(x_91, 1, x_46); +x_92 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_92, 0, x_91); +if (lean_is_scalar(x_54)) { + x_93 = lean_alloc_ctor(0, 2, 0); +} else { + x_93 = x_54; } +lean_ctor_set(x_93, 0, x_92); +lean_ctor_set(x_93, 1, x_57); +x_20 = x_93; +goto block_36; +} +else +{ +lean_object* x_94; +lean_dec(x_54); +x_94 = lean_box(0); +x_59 = x_94; +goto block_66; +} +} +} +} +else +{ +lean_object* x_95; lean_object* x_96; uint8_t x_97; +x_95 = l_Std_HashSet_instInhabitedHashSet___closed__1; +x_96 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__8(x_43, x_67, x_68, x_95); +x_97 = !lean_is_exclusive(x_43); +if (x_97 == 0) +{ +lean_object* x_98; lean_object* x_99; lean_object* x_100; uint8_t x_101; +x_98 = lean_ctor_get(x_43, 1); +lean_dec(x_98); +x_99 = lean_ctor_get(x_43, 0); +lean_dec(x_99); +x_100 = lean_ctor_get(x_96, 0); +lean_inc(x_100); +lean_dec(x_96); +x_101 = lean_unbox(x_100); +lean_dec(x_100); +if (x_101 == 0) +{ +lean_object* x_102; lean_object* x_103; +lean_dec(x_58); +lean_dec(x_47); +x_102 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_102, 0, x_43); +if (lean_is_scalar(x_54)) { + x_103 = lean_alloc_ctor(0, 2, 0); +} else { + x_103 = x_54; +} +lean_ctor_set(x_103, 0, x_102); +lean_ctor_set(x_103, 1, x_57); +x_20 = x_103; +goto block_36; +} +else +{ +lean_object* x_104; +lean_free_object(x_43); +lean_dec(x_54); +x_104 = lean_box(0); +x_59 = x_104; +goto block_66; +} +} +else +{ +lean_object* x_105; uint8_t x_106; +lean_dec(x_43); +x_105 = lean_ctor_get(x_96, 0); +lean_inc(x_105); +lean_dec(x_96); +x_106 = lean_unbox(x_105); +lean_dec(x_105); +if (x_106 == 0) +{ +lean_object* x_107; lean_object* x_108; lean_object* x_109; +lean_dec(x_58); +lean_dec(x_47); +x_107 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_107, 0, x_45); +lean_ctor_set(x_107, 1, x_46); +x_108 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_108, 0, x_107); +if (lean_is_scalar(x_54)) { + x_109 = lean_alloc_ctor(0, 2, 0); +} else { + x_109 = x_54; +} +lean_ctor_set(x_109, 0, x_108); +lean_ctor_set(x_109, 1, x_57); +x_20 = x_109; +goto block_36; +} +else +{ +lean_object* x_110; +lean_dec(x_54); +x_110 = lean_box(0); +x_59 = x_110; +goto block_66; +} +} +} +} +else +{ +lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; uint8_t x_160; +x_111 = lean_ctor_get(x_56, 0); +lean_inc(x_111); +lean_dec(x_56); +x_112 = lean_ctor_get(x_44, 3); +lean_inc(x_112); +x_113 = lean_ctor_get(x_44, 4); +lean_inc(x_113); +lean_dec(x_44); +x_160 = l_Lean_Expr_hasFVar(x_112); +if (x_160 == 0) +{ +uint8_t x_161; +x_161 = l_Lean_Expr_hasMVar(x_112); +if (x_161 == 0) +{ +lean_object* x_162; +lean_dec(x_112); +x_162 = l_Lean_MetavarContext_findLocalDeclDependsOn___closed__1; +x_114 = x_162; +goto block_159; } else { lean_object* x_163; lean_object* x_164; x_163 = l_Std_HashSet_instInhabitedHashSet___closed__1; -lean_inc(x_109); -x_164 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__36(x_43, x_109, x_110, x_163); -x_112 = x_164; -goto block_157; +lean_inc(x_111); +x_164 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__29(x_43, x_111, x_112, x_163); +x_114 = x_164; +goto block_159; } -block_157: +} +else { -lean_object* x_113; uint8_t x_114; -x_113 = lean_ctor_get(x_112, 0); -lean_inc(x_113); -x_114 = lean_unbox(x_113); -lean_dec(x_113); -if (x_114 == 0) +lean_object* x_165; lean_object* x_166; +x_165 = l_Std_HashSet_instInhabitedHashSet___closed__1; +lean_inc(x_111); +x_166 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__36(x_43, x_111, x_112, x_165); +x_114 = x_166; +goto block_159; +} +block_159: { lean_object* x_115; uint8_t x_116; -x_115 = lean_ctor_get(x_112, 1); +x_115 = lean_ctor_get(x_114, 0); lean_inc(x_115); -lean_dec(x_112); -x_116 = l_Lean_Expr_hasFVar(x_111); +x_116 = lean_unbox(x_115); +lean_dec(x_115); if (x_116 == 0) { -uint8_t x_117; -x_117 = l_Lean_Expr_hasMVar(x_111); -if (x_117 == 0) -{ -uint8_t x_118; -lean_dec(x_115); -lean_dec(x_111); -lean_dec(x_109); -lean_dec(x_56); -lean_dec(x_47); -x_118 = !lean_is_exclusive(x_43); +lean_object* x_117; uint8_t x_118; +x_117 = lean_ctor_get(x_114, 1); +lean_inc(x_117); +lean_dec(x_114); +x_118 = l_Lean_Expr_hasFVar(x_113); if (x_118 == 0) { -lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; -x_119 = lean_ctor_get(x_43, 1); -lean_dec(x_119); -x_120 = lean_ctor_get(x_43, 0); -lean_dec(x_120); -x_121 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_121, 0, x_43); -if (lean_is_scalar(x_52)) { - x_122 = lean_alloc_ctor(0, 2, 0); -} else { - x_122 = x_52; -} -lean_ctor_set(x_122, 0, x_121); -lean_ctor_set(x_122, 1, x_55); -x_20 = x_122; -goto block_36; -} -else +uint8_t x_119; +x_119 = l_Lean_Expr_hasMVar(x_113); +if (x_119 == 0) { -lean_object* x_123; lean_object* x_124; lean_object* x_125; -lean_dec(x_43); -x_123 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_123, 0, x_45); -lean_ctor_set(x_123, 1, x_46); -x_124 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_124, 0, x_123); -if (lean_is_scalar(x_52)) { - x_125 = lean_alloc_ctor(0, 2, 0); -} else { - x_125 = x_52; -} -lean_ctor_set(x_125, 0, x_124); -lean_ctor_set(x_125, 1, x_55); -x_20 = x_125; -goto block_36; -} -} -else -{ -lean_object* x_126; uint8_t x_127; -x_126 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__15(x_43, x_109, x_111, x_115); -x_127 = !lean_is_exclusive(x_43); -if (x_127 == 0) -{ -lean_object* x_128; lean_object* x_129; lean_object* x_130; uint8_t x_131; -x_128 = lean_ctor_get(x_43, 1); -lean_dec(x_128); -x_129 = lean_ctor_get(x_43, 0); -lean_dec(x_129); -x_130 = lean_ctor_get(x_126, 0); -lean_inc(x_130); -lean_dec(x_126); -x_131 = lean_unbox(x_130); -lean_dec(x_130); -if (x_131 == 0) -{ -lean_object* x_132; lean_object* x_133; -lean_dec(x_56); -lean_dec(x_47); -x_132 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_132, 0, x_43); -if (lean_is_scalar(x_52)) { - x_133 = lean_alloc_ctor(0, 2, 0); -} else { - x_133 = x_52; -} -lean_ctor_set(x_133, 0, x_132); -lean_ctor_set(x_133, 1, x_55); -x_20 = x_133; -goto block_36; -} -else -{ -lean_object* x_134; -lean_free_object(x_43); -lean_dec(x_52); -x_134 = lean_box(0); -x_57 = x_134; -goto block_64; -} -} -else -{ -lean_object* x_135; uint8_t x_136; -lean_dec(x_43); -x_135 = lean_ctor_get(x_126, 0); -lean_inc(x_135); -lean_dec(x_126); -x_136 = lean_unbox(x_135); -lean_dec(x_135); -if (x_136 == 0) -{ -lean_object* x_137; lean_object* x_138; lean_object* x_139; -lean_dec(x_56); -lean_dec(x_47); -x_137 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_137, 0, x_45); -lean_ctor_set(x_137, 1, x_46); -x_138 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_138, 0, x_137); -if (lean_is_scalar(x_52)) { - x_139 = lean_alloc_ctor(0, 2, 0); -} else { - x_139 = x_52; -} -lean_ctor_set(x_139, 0, x_138); -lean_ctor_set(x_139, 1, x_55); -x_20 = x_139; -goto block_36; -} -else -{ -lean_object* x_140; -lean_dec(x_52); -x_140 = lean_box(0); -x_57 = x_140; -goto block_64; -} -} -} -} -else -{ -lean_object* x_141; uint8_t x_142; -x_141 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__22(x_43, x_109, x_111, x_115); -x_142 = !lean_is_exclusive(x_43); -if (x_142 == 0) -{ -lean_object* x_143; lean_object* x_144; lean_object* x_145; uint8_t x_146; -x_143 = lean_ctor_get(x_43, 1); -lean_dec(x_143); -x_144 = lean_ctor_get(x_43, 0); -lean_dec(x_144); -x_145 = lean_ctor_get(x_141, 0); -lean_inc(x_145); -lean_dec(x_141); -x_146 = lean_unbox(x_145); -lean_dec(x_145); -if (x_146 == 0) -{ -lean_object* x_147; lean_object* x_148; -lean_dec(x_56); -lean_dec(x_47); -x_147 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_147, 0, x_43); -if (lean_is_scalar(x_52)) { - x_148 = lean_alloc_ctor(0, 2, 0); -} else { - x_148 = x_52; -} -lean_ctor_set(x_148, 0, x_147); -lean_ctor_set(x_148, 1, x_55); -x_20 = x_148; -goto block_36; -} -else -{ -lean_object* x_149; -lean_free_object(x_43); -lean_dec(x_52); -x_149 = lean_box(0); -x_57 = x_149; -goto block_64; -} -} -else -{ -lean_object* x_150; uint8_t x_151; -lean_dec(x_43); -x_150 = lean_ctor_get(x_141, 0); -lean_inc(x_150); -lean_dec(x_141); -x_151 = lean_unbox(x_150); -lean_dec(x_150); -if (x_151 == 0) -{ -lean_object* x_152; lean_object* x_153; lean_object* x_154; -lean_dec(x_56); -lean_dec(x_47); -x_152 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_152, 0, x_45); -lean_ctor_set(x_152, 1, x_46); -x_153 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_153, 0, x_152); -if (lean_is_scalar(x_52)) { - x_154 = lean_alloc_ctor(0, 2, 0); -} else { - x_154 = x_52; -} -lean_ctor_set(x_154, 0, x_153); -lean_ctor_set(x_154, 1, x_55); -x_20 = x_154; -goto block_36; -} -else -{ -lean_object* x_155; -lean_dec(x_52); -x_155 = lean_box(0); -x_57 = x_155; -goto block_64; -} -} -} -} -else -{ -lean_object* x_156; -lean_dec(x_112); +uint8_t x_120; +lean_dec(x_117); +lean_dec(x_113); lean_dec(x_111); -lean_dec(x_109); -lean_dec(x_52); -lean_dec(x_43); -x_156 = lean_box(0); -x_57 = x_156; -goto block_64; -} -} -} -block_64: +lean_dec(x_58); +lean_dec(x_47); +x_120 = !lean_is_exclusive(x_43); +if (x_120 == 0) { -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_dec(x_57); -x_58 = lean_box(0); -lean_inc(x_47); -x_59 = l_Std_RBNode_insert___at_Lean_NameSet_insert___spec__1(x_46, x_47, x_58); -x_60 = l_Std_RBNode_insert___at_Lean_NameSet_insert___spec__1(x_45, x_47, x_58); -x_61 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_61, 0, x_60); -lean_ctor_set(x_61, 1, x_59); -x_62 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_62, 0, x_61); -if (lean_is_scalar(x_56)) { - x_63 = lean_alloc_ctor(0, 2, 0); +lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; +x_121 = lean_ctor_get(x_43, 1); +lean_dec(x_121); +x_122 = lean_ctor_get(x_43, 0); +lean_dec(x_122); +x_123 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_123, 0, x_43); +if (lean_is_scalar(x_54)) { + x_124 = lean_alloc_ctor(0, 2, 0); } else { - x_63 = x_56; + x_124 = x_54; } +lean_ctor_set(x_124, 0, x_123); +lean_ctor_set(x_124, 1, x_57); +x_20 = x_124; +goto block_36; +} +else +{ +lean_object* x_125; lean_object* x_126; lean_object* x_127; +lean_dec(x_43); +x_125 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_125, 0, x_45); +lean_ctor_set(x_125, 1, x_46); +x_126 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_126, 0, x_125); +if (lean_is_scalar(x_54)) { + x_127 = lean_alloc_ctor(0, 2, 0); +} else { + x_127 = x_54; +} +lean_ctor_set(x_127, 0, x_126); +lean_ctor_set(x_127, 1, x_57); +x_20 = x_127; +goto block_36; +} +} +else +{ +lean_object* x_128; uint8_t x_129; +x_128 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__15(x_43, x_111, x_113, x_117); +x_129 = !lean_is_exclusive(x_43); +if (x_129 == 0) +{ +lean_object* x_130; lean_object* x_131; lean_object* x_132; uint8_t x_133; +x_130 = lean_ctor_get(x_43, 1); +lean_dec(x_130); +x_131 = lean_ctor_get(x_43, 0); +lean_dec(x_131); +x_132 = lean_ctor_get(x_128, 0); +lean_inc(x_132); +lean_dec(x_128); +x_133 = lean_unbox(x_132); +lean_dec(x_132); +if (x_133 == 0) +{ +lean_object* x_134; lean_object* x_135; +lean_dec(x_58); +lean_dec(x_47); +x_134 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_134, 0, x_43); +if (lean_is_scalar(x_54)) { + x_135 = lean_alloc_ctor(0, 2, 0); +} else { + x_135 = x_54; +} +lean_ctor_set(x_135, 0, x_134); +lean_ctor_set(x_135, 1, x_57); +x_20 = x_135; +goto block_36; +} +else +{ +lean_object* x_136; +lean_free_object(x_43); +lean_dec(x_54); +x_136 = lean_box(0); +x_59 = x_136; +goto block_66; +} +} +else +{ +lean_object* x_137; uint8_t x_138; +lean_dec(x_43); +x_137 = lean_ctor_get(x_128, 0); +lean_inc(x_137); +lean_dec(x_128); +x_138 = lean_unbox(x_137); +lean_dec(x_137); +if (x_138 == 0) +{ +lean_object* x_139; lean_object* x_140; lean_object* x_141; +lean_dec(x_58); +lean_dec(x_47); +x_139 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_139, 0, x_45); +lean_ctor_set(x_139, 1, x_46); +x_140 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_140, 0, x_139); +if (lean_is_scalar(x_54)) { + x_141 = lean_alloc_ctor(0, 2, 0); +} else { + x_141 = x_54; +} +lean_ctor_set(x_141, 0, x_140); +lean_ctor_set(x_141, 1, x_57); +x_20 = x_141; +goto block_36; +} +else +{ +lean_object* x_142; +lean_dec(x_54); +x_142 = lean_box(0); +x_59 = x_142; +goto block_66; +} +} +} +} +else +{ +lean_object* x_143; uint8_t x_144; +x_143 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__22(x_43, x_111, x_113, x_117); +x_144 = !lean_is_exclusive(x_43); +if (x_144 == 0) +{ +lean_object* x_145; lean_object* x_146; lean_object* x_147; uint8_t x_148; +x_145 = lean_ctor_get(x_43, 1); +lean_dec(x_145); +x_146 = lean_ctor_get(x_43, 0); +lean_dec(x_146); +x_147 = lean_ctor_get(x_143, 0); +lean_inc(x_147); +lean_dec(x_143); +x_148 = lean_unbox(x_147); +lean_dec(x_147); +if (x_148 == 0) +{ +lean_object* x_149; lean_object* x_150; +lean_dec(x_58); +lean_dec(x_47); +x_149 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_149, 0, x_43); +if (lean_is_scalar(x_54)) { + x_150 = lean_alloc_ctor(0, 2, 0); +} else { + x_150 = x_54; +} +lean_ctor_set(x_150, 0, x_149); +lean_ctor_set(x_150, 1, x_57); +x_20 = x_150; +goto block_36; +} +else +{ +lean_object* x_151; +lean_free_object(x_43); +lean_dec(x_54); +x_151 = lean_box(0); +x_59 = x_151; +goto block_66; +} +} +else +{ +lean_object* x_152; uint8_t x_153; +lean_dec(x_43); +x_152 = lean_ctor_get(x_143, 0); +lean_inc(x_152); +lean_dec(x_143); +x_153 = lean_unbox(x_152); +lean_dec(x_152); +if (x_153 == 0) +{ +lean_object* x_154; lean_object* x_155; lean_object* x_156; +lean_dec(x_58); +lean_dec(x_47); +x_154 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_154, 0, x_45); +lean_ctor_set(x_154, 1, x_46); +x_155 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_155, 0, x_154); +if (lean_is_scalar(x_54)) { + x_156 = lean_alloc_ctor(0, 2, 0); +} else { + x_156 = x_54; +} +lean_ctor_set(x_156, 0, x_155); +lean_ctor_set(x_156, 1, x_57); +x_20 = x_156; +goto block_36; +} +else +{ +lean_object* x_157; +lean_dec(x_54); +x_157 = lean_box(0); +x_59 = x_157; +goto block_66; +} +} +} +} +else +{ +lean_object* x_158; +lean_dec(x_114); +lean_dec(x_113); +lean_dec(x_111); +lean_dec(x_54); +lean_dec(x_43); +x_158 = lean_box(0); +x_59 = x_158; +goto block_66; +} +} +} +block_66: +{ +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_dec(x_59); +x_60 = lean_box(0); +lean_inc(x_47); +x_61 = l_Std_RBNode_insert___at_Lean_NameSet_insert___spec__1(x_46, x_47, x_60); +x_62 = l_Std_RBNode_insert___at_Lean_NameSet_insert___spec__1(x_45, x_47, x_60); +x_63 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_63, 0, x_62); -lean_ctor_set(x_63, 1, x_55); -x_20 = x_63; +lean_ctor_set(x_63, 1, x_61); +x_64 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_64, 0, x_63); +if (lean_is_scalar(x_58)) { + x_65 = lean_alloc_ctor(0, 2, 0); +} else { + x_65 = x_58; +} +lean_ctor_set(x_65, 0, x_64); +lean_ctor_set(x_65, 1, x_57); +x_20 = x_65; goto block_36; } } else { -uint8_t x_165; +uint8_t x_167; lean_dec(x_47); lean_dec(x_44); -x_165 = !lean_is_exclusive(x_43); -if (x_165 == 0) +x_167 = !lean_is_exclusive(x_43); +if (x_167 == 0) { -lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; -x_166 = lean_ctor_get(x_43, 1); -lean_dec(x_166); -x_167 = lean_ctor_get(x_43, 0); -lean_dec(x_167); -x_168 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_168, 0, x_43); -x_169 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_169, 0, x_168); -lean_ctor_set(x_169, 1, x_11); -x_20 = x_169; -goto block_36; -} -else -{ -lean_object* x_170; lean_object* x_171; lean_object* x_172; -lean_dec(x_43); -x_170 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_170, 0, x_45); -lean_ctor_set(x_170, 1, x_46); -x_171 = lean_alloc_ctor(1, 1, 0); +lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; +x_168 = lean_ctor_get(x_43, 1); +lean_dec(x_168); +x_169 = lean_ctor_get(x_43, 0); +lean_dec(x_169); +x_170 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_170, 0, x_43); +x_171 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_171, 0, x_170); +lean_ctor_set(x_171, 1, x_11); +x_20 = x_171; +goto block_36; +} +else +{ +lean_object* x_172; lean_object* x_173; lean_object* x_174; +lean_dec(x_43); x_172 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_172, 0, x_171); -lean_ctor_set(x_172, 1, x_11); -x_20 = x_172; +lean_ctor_set(x_172, 0, x_45); +lean_ctor_set(x_172, 1, x_46); +x_173 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_173, 0, x_172); +x_174 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_174, 0, x_173); +lean_ctor_set(x_174, 1, x_11); +x_20 = x_174; goto block_36; } } } else { -uint8_t x_173; +uint8_t x_175; lean_dec(x_47); lean_dec(x_44); -x_173 = !lean_is_exclusive(x_43); -if (x_173 == 0) +x_175 = !lean_is_exclusive(x_43); +if (x_175 == 0) { -lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; -x_174 = lean_ctor_get(x_43, 1); -lean_dec(x_174); -x_175 = lean_ctor_get(x_43, 0); -lean_dec(x_175); -x_176 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_176, 0, x_43); -x_177 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_177, 0, x_176); -lean_ctor_set(x_177, 1, x_11); -x_20 = x_177; +lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; +x_176 = lean_ctor_get(x_43, 1); +lean_dec(x_176); +x_177 = lean_ctor_get(x_43, 0); +lean_dec(x_177); +x_178 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_178, 0, x_43); +x_179 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_179, 0, x_178); +lean_ctor_set(x_179, 1, x_11); +x_20 = x_179; goto block_36; } else { -lean_object* x_178; lean_object* x_179; lean_object* x_180; +lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_dec(x_43); -x_178 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_178, 0, x_45); -lean_ctor_set(x_178, 1, x_46); -x_179 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_179, 0, x_178); x_180 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_180, 0, x_179); -lean_ctor_set(x_180, 1, x_11); -x_20 = x_180; +lean_ctor_set(x_180, 0, x_45); +lean_ctor_set(x_180, 1, x_46); +x_181 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_181, 0, x_180); +x_182 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_182, 0, x_181); +lean_ctor_set(x_182, 1, x_11); +x_20 = x_182; +goto block_36; +} +} +} +else +{ +uint8_t x_183; +lean_dec(x_47); +lean_dec(x_44); +x_183 = !lean_is_exclusive(x_43); +if (x_183 == 0) +{ +lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; +x_184 = lean_ctor_get(x_43, 1); +lean_dec(x_184); +x_185 = lean_ctor_get(x_43, 0); +lean_dec(x_185); +x_186 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_186, 0, x_43); +x_187 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_187, 0, x_186); +lean_ctor_set(x_187, 1, x_11); +x_20 = x_187; +goto block_36; +} +else +{ +lean_object* x_188; lean_object* x_189; lean_object* x_190; +lean_dec(x_43); +x_188 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_188, 0, x_45); +lean_ctor_set(x_188, 1, x_46); +x_189 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_189, 0, x_188); +x_190 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_190, 0, x_189); +lean_ctor_set(x_190, 1, x_11); +x_20 = x_190; goto block_36; } } @@ -15041,649 +15172,692 @@ uint8_t x_49; x_49 = l_Lean_LocalDecl_isAuxDecl(x_44); if (x_49 == 0) { -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_50 = lean_st_ref_get(x_10, x_11); -x_51 = lean_ctor_get(x_50, 1); -lean_inc(x_51); -if (lean_is_exclusive(x_50)) { - lean_ctor_release(x_50, 0); - lean_ctor_release(x_50, 1); - x_52 = x_50; +uint8_t x_50; uint8_t x_51; +x_50 = l_Lean_LocalDecl_binderInfo(x_44); +x_51 = l_Lean_BinderInfo_isInstImplicit(x_50); +if (x_51 == 0) +{ +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; +x_52 = lean_st_ref_get(x_10, x_11); +x_53 = lean_ctor_get(x_52, 1); +lean_inc(x_53); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_54 = x_52; } else { - lean_dec_ref(x_50); - x_52 = lean_box(0); + lean_dec_ref(x_52); + x_54 = lean_box(0); } -x_53 = lean_st_ref_get(x_8, x_51); -x_54 = lean_ctor_get(x_53, 0); -lean_inc(x_54); -x_55 = lean_ctor_get(x_53, 1); -lean_inc(x_55); -if (lean_is_exclusive(x_53)) { - lean_ctor_release(x_53, 0); - lean_ctor_release(x_53, 1); - x_56 = x_53; +x_55 = lean_st_ref_get(x_8, x_53); +x_56 = lean_ctor_get(x_55, 0); +lean_inc(x_56); +x_57 = lean_ctor_get(x_55, 1); +lean_inc(x_57); +if (lean_is_exclusive(x_55)) { + lean_ctor_release(x_55, 0); + lean_ctor_release(x_55, 1); + x_58 = x_55; } else { - lean_dec_ref(x_53); - x_56 = lean_box(0); + lean_dec_ref(x_55); + x_58 = lean_box(0); } if (lean_obj_tag(x_44) == 0) { -lean_object* x_65; lean_object* x_66; uint8_t x_67; -x_65 = lean_ctor_get(x_54, 0); -lean_inc(x_65); -lean_dec(x_54); -x_66 = lean_ctor_get(x_44, 3); -lean_inc(x_66); -lean_dec(x_44); -x_67 = l_Lean_Expr_hasFVar(x_66); -if (x_67 == 0) -{ -uint8_t x_68; -x_68 = l_Lean_Expr_hasMVar(x_66); -if (x_68 == 0) -{ -uint8_t x_69; -lean_dec(x_66); -lean_dec(x_65); +lean_object* x_67; lean_object* x_68; uint8_t x_69; +x_67 = lean_ctor_get(x_56, 0); +lean_inc(x_67); lean_dec(x_56); -lean_dec(x_47); -x_69 = !lean_is_exclusive(x_43); +x_68 = lean_ctor_get(x_44, 3); +lean_inc(x_68); +lean_dec(x_44); +x_69 = l_Lean_Expr_hasFVar(x_68); if (x_69 == 0) { -lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; -x_70 = lean_ctor_get(x_43, 1); -lean_dec(x_70); -x_71 = lean_ctor_get(x_43, 0); -lean_dec(x_71); -x_72 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_72, 0, x_43); -if (lean_is_scalar(x_52)) { - x_73 = lean_alloc_ctor(0, 2, 0); -} else { - x_73 = x_52; -} -lean_ctor_set(x_73, 0, x_72); -lean_ctor_set(x_73, 1, x_55); -x_20 = x_73; -goto block_36; -} -else +uint8_t x_70; +x_70 = l_Lean_Expr_hasMVar(x_68); +if (x_70 == 0) { -lean_object* x_74; lean_object* x_75; lean_object* x_76; -lean_dec(x_43); -x_74 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_74, 0, x_45); -lean_ctor_set(x_74, 1, x_46); -x_75 = lean_alloc_ctor(1, 1, 0); +uint8_t x_71; +lean_dec(x_68); +lean_dec(x_67); +lean_dec(x_58); +lean_dec(x_47); +x_71 = !lean_is_exclusive(x_43); +if (x_71 == 0) +{ +lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_72 = lean_ctor_get(x_43, 1); +lean_dec(x_72); +x_73 = lean_ctor_get(x_43, 0); +lean_dec(x_73); +x_74 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_74, 0, x_43); +if (lean_is_scalar(x_54)) { + x_75 = lean_alloc_ctor(0, 2, 0); +} else { + x_75 = x_54; +} lean_ctor_set(x_75, 0, x_74); -if (lean_is_scalar(x_52)) { - x_76 = lean_alloc_ctor(0, 2, 0); -} else { - x_76 = x_52; +lean_ctor_set(x_75, 1, x_57); +x_20 = x_75; +goto block_36; } -lean_ctor_set(x_76, 0, x_75); -lean_ctor_set(x_76, 1, x_55); -x_20 = x_76; +else +{ +lean_object* x_76; lean_object* x_77; lean_object* x_78; +lean_dec(x_43); +x_76 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_76, 0, x_45); +lean_ctor_set(x_76, 1, x_46); +x_77 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_77, 0, x_76); +if (lean_is_scalar(x_54)) { + x_78 = lean_alloc_ctor(0, 2, 0); +} else { + x_78 = x_54; +} +lean_ctor_set(x_78, 0, x_77); +lean_ctor_set(x_78, 1, x_57); +x_20 = x_78; goto block_36; } } else { -lean_object* x_77; lean_object* x_78; uint8_t x_79; -x_77 = l_Std_HashSet_instInhabitedHashSet___closed__1; -x_78 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__1(x_43, x_65, x_66, x_77); -x_79 = !lean_is_exclusive(x_43); -if (x_79 == 0) +lean_object* x_79; lean_object* x_80; uint8_t x_81; +x_79 = l_Std_HashSet_instInhabitedHashSet___closed__1; +x_80 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__1(x_43, x_67, x_68, x_79); +x_81 = !lean_is_exclusive(x_43); +if (x_81 == 0) { -lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; -x_80 = lean_ctor_get(x_43, 1); -lean_dec(x_80); -x_81 = lean_ctor_get(x_43, 0); -lean_dec(x_81); -x_82 = lean_ctor_get(x_78, 0); -lean_inc(x_82); -lean_dec(x_78); -x_83 = lean_unbox(x_82); +lean_object* x_82; lean_object* x_83; lean_object* x_84; uint8_t x_85; +x_82 = lean_ctor_get(x_43, 1); lean_dec(x_82); -if (x_83 == 0) +x_83 = lean_ctor_get(x_43, 0); +lean_dec(x_83); +x_84 = lean_ctor_get(x_80, 0); +lean_inc(x_84); +lean_dec(x_80); +x_85 = lean_unbox(x_84); +lean_dec(x_84); +if (x_85 == 0) { -lean_object* x_84; lean_object* x_85; -lean_dec(x_56); +lean_object* x_86; lean_object* x_87; +lean_dec(x_58); lean_dec(x_47); -x_84 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_84, 0, x_43); -if (lean_is_scalar(x_52)) { - x_85 = lean_alloc_ctor(0, 2, 0); +x_86 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_86, 0, x_43); +if (lean_is_scalar(x_54)) { + x_87 = lean_alloc_ctor(0, 2, 0); } else { - x_85 = x_52; + x_87 = x_54; } -lean_ctor_set(x_85, 0, x_84); -lean_ctor_set(x_85, 1, x_55); -x_20 = x_85; +lean_ctor_set(x_87, 0, x_86); +lean_ctor_set(x_87, 1, x_57); +x_20 = x_87; goto block_36; } else { -lean_object* x_86; +lean_object* x_88; lean_free_object(x_43); -lean_dec(x_52); -x_86 = lean_box(0); -x_57 = x_86; -goto block_64; -} -} -else -{ -lean_object* x_87; uint8_t x_88; -lean_dec(x_43); -x_87 = lean_ctor_get(x_78, 0); -lean_inc(x_87); -lean_dec(x_78); -x_88 = lean_unbox(x_87); -lean_dec(x_87); -if (x_88 == 0) -{ -lean_object* x_89; lean_object* x_90; lean_object* x_91; -lean_dec(x_56); -lean_dec(x_47); -x_89 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_89, 0, x_45); -lean_ctor_set(x_89, 1, x_46); -x_90 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_90, 0, x_89); -if (lean_is_scalar(x_52)) { - x_91 = lean_alloc_ctor(0, 2, 0); -} else { - x_91 = x_52; -} -lean_ctor_set(x_91, 0, x_90); -lean_ctor_set(x_91, 1, x_55); -x_20 = x_91; -goto block_36; -} -else -{ -lean_object* x_92; -lean_dec(x_52); -x_92 = lean_box(0); -x_57 = x_92; -goto block_64; -} -} -} -} -else -{ -lean_object* x_93; lean_object* x_94; uint8_t x_95; -x_93 = l_Std_HashSet_instInhabitedHashSet___closed__1; -x_94 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__8(x_43, x_65, x_66, x_93); -x_95 = !lean_is_exclusive(x_43); -if (x_95 == 0) -{ -lean_object* x_96; lean_object* x_97; lean_object* x_98; uint8_t x_99; -x_96 = lean_ctor_get(x_43, 1); -lean_dec(x_96); -x_97 = lean_ctor_get(x_43, 0); -lean_dec(x_97); -x_98 = lean_ctor_get(x_94, 0); -lean_inc(x_98); -lean_dec(x_94); -x_99 = lean_unbox(x_98); -lean_dec(x_98); -if (x_99 == 0) -{ -lean_object* x_100; lean_object* x_101; -lean_dec(x_56); -lean_dec(x_47); -x_100 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_100, 0, x_43); -if (lean_is_scalar(x_52)) { - x_101 = lean_alloc_ctor(0, 2, 0); -} else { - x_101 = x_52; -} -lean_ctor_set(x_101, 0, x_100); -lean_ctor_set(x_101, 1, x_55); -x_20 = x_101; -goto block_36; -} -else -{ -lean_object* x_102; -lean_free_object(x_43); -lean_dec(x_52); -x_102 = lean_box(0); -x_57 = x_102; -goto block_64; -} -} -else -{ -lean_object* x_103; uint8_t x_104; -lean_dec(x_43); -x_103 = lean_ctor_get(x_94, 0); -lean_inc(x_103); -lean_dec(x_94); -x_104 = lean_unbox(x_103); -lean_dec(x_103); -if (x_104 == 0) -{ -lean_object* x_105; lean_object* x_106; lean_object* x_107; -lean_dec(x_56); -lean_dec(x_47); -x_105 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_105, 0, x_45); -lean_ctor_set(x_105, 1, x_46); -x_106 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_106, 0, x_105); -if (lean_is_scalar(x_52)) { - x_107 = lean_alloc_ctor(0, 2, 0); -} else { - x_107 = x_52; -} -lean_ctor_set(x_107, 0, x_106); -lean_ctor_set(x_107, 1, x_55); -x_20 = x_107; -goto block_36; -} -else -{ -lean_object* x_108; -lean_dec(x_52); -x_108 = lean_box(0); -x_57 = x_108; -goto block_64; -} -} -} -} -else -{ -lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; uint8_t x_158; -x_109 = lean_ctor_get(x_54, 0); -lean_inc(x_109); lean_dec(x_54); -x_110 = lean_ctor_get(x_44, 3); -lean_inc(x_110); -x_111 = lean_ctor_get(x_44, 4); -lean_inc(x_111); -lean_dec(x_44); -x_158 = l_Lean_Expr_hasFVar(x_110); -if (x_158 == 0) -{ -uint8_t x_159; -x_159 = l_Lean_Expr_hasMVar(x_110); -if (x_159 == 0) -{ -lean_object* x_160; -lean_dec(x_110); -x_160 = l_Lean_MetavarContext_findLocalDeclDependsOn___closed__1; -x_112 = x_160; -goto block_157; +x_88 = lean_box(0); +x_59 = x_88; +goto block_66; +} } else { -lean_object* x_161; lean_object* x_162; -x_161 = l_Std_HashSet_instInhabitedHashSet___closed__1; -lean_inc(x_109); -x_162 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__29(x_43, x_109, x_110, x_161); -x_112 = x_162; -goto block_157; +lean_object* x_89; uint8_t x_90; +lean_dec(x_43); +x_89 = lean_ctor_get(x_80, 0); +lean_inc(x_89); +lean_dec(x_80); +x_90 = lean_unbox(x_89); +lean_dec(x_89); +if (x_90 == 0) +{ +lean_object* x_91; lean_object* x_92; lean_object* x_93; +lean_dec(x_58); +lean_dec(x_47); +x_91 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_91, 0, x_45); +lean_ctor_set(x_91, 1, x_46); +x_92 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_92, 0, x_91); +if (lean_is_scalar(x_54)) { + x_93 = lean_alloc_ctor(0, 2, 0); +} else { + x_93 = x_54; } +lean_ctor_set(x_93, 0, x_92); +lean_ctor_set(x_93, 1, x_57); +x_20 = x_93; +goto block_36; +} +else +{ +lean_object* x_94; +lean_dec(x_54); +x_94 = lean_box(0); +x_59 = x_94; +goto block_66; +} +} +} +} +else +{ +lean_object* x_95; lean_object* x_96; uint8_t x_97; +x_95 = l_Std_HashSet_instInhabitedHashSet___closed__1; +x_96 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__8(x_43, x_67, x_68, x_95); +x_97 = !lean_is_exclusive(x_43); +if (x_97 == 0) +{ +lean_object* x_98; lean_object* x_99; lean_object* x_100; uint8_t x_101; +x_98 = lean_ctor_get(x_43, 1); +lean_dec(x_98); +x_99 = lean_ctor_get(x_43, 0); +lean_dec(x_99); +x_100 = lean_ctor_get(x_96, 0); +lean_inc(x_100); +lean_dec(x_96); +x_101 = lean_unbox(x_100); +lean_dec(x_100); +if (x_101 == 0) +{ +lean_object* x_102; lean_object* x_103; +lean_dec(x_58); +lean_dec(x_47); +x_102 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_102, 0, x_43); +if (lean_is_scalar(x_54)) { + x_103 = lean_alloc_ctor(0, 2, 0); +} else { + x_103 = x_54; +} +lean_ctor_set(x_103, 0, x_102); +lean_ctor_set(x_103, 1, x_57); +x_20 = x_103; +goto block_36; +} +else +{ +lean_object* x_104; +lean_free_object(x_43); +lean_dec(x_54); +x_104 = lean_box(0); +x_59 = x_104; +goto block_66; +} +} +else +{ +lean_object* x_105; uint8_t x_106; +lean_dec(x_43); +x_105 = lean_ctor_get(x_96, 0); +lean_inc(x_105); +lean_dec(x_96); +x_106 = lean_unbox(x_105); +lean_dec(x_105); +if (x_106 == 0) +{ +lean_object* x_107; lean_object* x_108; lean_object* x_109; +lean_dec(x_58); +lean_dec(x_47); +x_107 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_107, 0, x_45); +lean_ctor_set(x_107, 1, x_46); +x_108 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_108, 0, x_107); +if (lean_is_scalar(x_54)) { + x_109 = lean_alloc_ctor(0, 2, 0); +} else { + x_109 = x_54; +} +lean_ctor_set(x_109, 0, x_108); +lean_ctor_set(x_109, 1, x_57); +x_20 = x_109; +goto block_36; +} +else +{ +lean_object* x_110; +lean_dec(x_54); +x_110 = lean_box(0); +x_59 = x_110; +goto block_66; +} +} +} +} +else +{ +lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; uint8_t x_160; +x_111 = lean_ctor_get(x_56, 0); +lean_inc(x_111); +lean_dec(x_56); +x_112 = lean_ctor_get(x_44, 3); +lean_inc(x_112); +x_113 = lean_ctor_get(x_44, 4); +lean_inc(x_113); +lean_dec(x_44); +x_160 = l_Lean_Expr_hasFVar(x_112); +if (x_160 == 0) +{ +uint8_t x_161; +x_161 = l_Lean_Expr_hasMVar(x_112); +if (x_161 == 0) +{ +lean_object* x_162; +lean_dec(x_112); +x_162 = l_Lean_MetavarContext_findLocalDeclDependsOn___closed__1; +x_114 = x_162; +goto block_159; } else { lean_object* x_163; lean_object* x_164; x_163 = l_Std_HashSet_instInhabitedHashSet___closed__1; -lean_inc(x_109); -x_164 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__36(x_43, x_109, x_110, x_163); -x_112 = x_164; -goto block_157; +lean_inc(x_111); +x_164 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__29(x_43, x_111, x_112, x_163); +x_114 = x_164; +goto block_159; } -block_157: +} +else { -lean_object* x_113; uint8_t x_114; -x_113 = lean_ctor_get(x_112, 0); -lean_inc(x_113); -x_114 = lean_unbox(x_113); -lean_dec(x_113); -if (x_114 == 0) +lean_object* x_165; lean_object* x_166; +x_165 = l_Std_HashSet_instInhabitedHashSet___closed__1; +lean_inc(x_111); +x_166 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__36(x_43, x_111, x_112, x_165); +x_114 = x_166; +goto block_159; +} +block_159: { lean_object* x_115; uint8_t x_116; -x_115 = lean_ctor_get(x_112, 1); +x_115 = lean_ctor_get(x_114, 0); lean_inc(x_115); -lean_dec(x_112); -x_116 = l_Lean_Expr_hasFVar(x_111); +x_116 = lean_unbox(x_115); +lean_dec(x_115); if (x_116 == 0) { -uint8_t x_117; -x_117 = l_Lean_Expr_hasMVar(x_111); -if (x_117 == 0) -{ -uint8_t x_118; -lean_dec(x_115); -lean_dec(x_111); -lean_dec(x_109); -lean_dec(x_56); -lean_dec(x_47); -x_118 = !lean_is_exclusive(x_43); +lean_object* x_117; uint8_t x_118; +x_117 = lean_ctor_get(x_114, 1); +lean_inc(x_117); +lean_dec(x_114); +x_118 = l_Lean_Expr_hasFVar(x_113); if (x_118 == 0) { -lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; -x_119 = lean_ctor_get(x_43, 1); -lean_dec(x_119); -x_120 = lean_ctor_get(x_43, 0); -lean_dec(x_120); -x_121 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_121, 0, x_43); -if (lean_is_scalar(x_52)) { - x_122 = lean_alloc_ctor(0, 2, 0); -} else { - x_122 = x_52; -} -lean_ctor_set(x_122, 0, x_121); -lean_ctor_set(x_122, 1, x_55); -x_20 = x_122; -goto block_36; -} -else +uint8_t x_119; +x_119 = l_Lean_Expr_hasMVar(x_113); +if (x_119 == 0) { -lean_object* x_123; lean_object* x_124; lean_object* x_125; -lean_dec(x_43); -x_123 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_123, 0, x_45); -lean_ctor_set(x_123, 1, x_46); -x_124 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_124, 0, x_123); -if (lean_is_scalar(x_52)) { - x_125 = lean_alloc_ctor(0, 2, 0); -} else { - x_125 = x_52; -} -lean_ctor_set(x_125, 0, x_124); -lean_ctor_set(x_125, 1, x_55); -x_20 = x_125; -goto block_36; -} -} -else -{ -lean_object* x_126; uint8_t x_127; -x_126 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__15(x_43, x_109, x_111, x_115); -x_127 = !lean_is_exclusive(x_43); -if (x_127 == 0) -{ -lean_object* x_128; lean_object* x_129; lean_object* x_130; uint8_t x_131; -x_128 = lean_ctor_get(x_43, 1); -lean_dec(x_128); -x_129 = lean_ctor_get(x_43, 0); -lean_dec(x_129); -x_130 = lean_ctor_get(x_126, 0); -lean_inc(x_130); -lean_dec(x_126); -x_131 = lean_unbox(x_130); -lean_dec(x_130); -if (x_131 == 0) -{ -lean_object* x_132; lean_object* x_133; -lean_dec(x_56); -lean_dec(x_47); -x_132 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_132, 0, x_43); -if (lean_is_scalar(x_52)) { - x_133 = lean_alloc_ctor(0, 2, 0); -} else { - x_133 = x_52; -} -lean_ctor_set(x_133, 0, x_132); -lean_ctor_set(x_133, 1, x_55); -x_20 = x_133; -goto block_36; -} -else -{ -lean_object* x_134; -lean_free_object(x_43); -lean_dec(x_52); -x_134 = lean_box(0); -x_57 = x_134; -goto block_64; -} -} -else -{ -lean_object* x_135; uint8_t x_136; -lean_dec(x_43); -x_135 = lean_ctor_get(x_126, 0); -lean_inc(x_135); -lean_dec(x_126); -x_136 = lean_unbox(x_135); -lean_dec(x_135); -if (x_136 == 0) -{ -lean_object* x_137; lean_object* x_138; lean_object* x_139; -lean_dec(x_56); -lean_dec(x_47); -x_137 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_137, 0, x_45); -lean_ctor_set(x_137, 1, x_46); -x_138 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_138, 0, x_137); -if (lean_is_scalar(x_52)) { - x_139 = lean_alloc_ctor(0, 2, 0); -} else { - x_139 = x_52; -} -lean_ctor_set(x_139, 0, x_138); -lean_ctor_set(x_139, 1, x_55); -x_20 = x_139; -goto block_36; -} -else -{ -lean_object* x_140; -lean_dec(x_52); -x_140 = lean_box(0); -x_57 = x_140; -goto block_64; -} -} -} -} -else -{ -lean_object* x_141; uint8_t x_142; -x_141 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__22(x_43, x_109, x_111, x_115); -x_142 = !lean_is_exclusive(x_43); -if (x_142 == 0) -{ -lean_object* x_143; lean_object* x_144; lean_object* x_145; uint8_t x_146; -x_143 = lean_ctor_get(x_43, 1); -lean_dec(x_143); -x_144 = lean_ctor_get(x_43, 0); -lean_dec(x_144); -x_145 = lean_ctor_get(x_141, 0); -lean_inc(x_145); -lean_dec(x_141); -x_146 = lean_unbox(x_145); -lean_dec(x_145); -if (x_146 == 0) -{ -lean_object* x_147; lean_object* x_148; -lean_dec(x_56); -lean_dec(x_47); -x_147 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_147, 0, x_43); -if (lean_is_scalar(x_52)) { - x_148 = lean_alloc_ctor(0, 2, 0); -} else { - x_148 = x_52; -} -lean_ctor_set(x_148, 0, x_147); -lean_ctor_set(x_148, 1, x_55); -x_20 = x_148; -goto block_36; -} -else -{ -lean_object* x_149; -lean_free_object(x_43); -lean_dec(x_52); -x_149 = lean_box(0); -x_57 = x_149; -goto block_64; -} -} -else -{ -lean_object* x_150; uint8_t x_151; -lean_dec(x_43); -x_150 = lean_ctor_get(x_141, 0); -lean_inc(x_150); -lean_dec(x_141); -x_151 = lean_unbox(x_150); -lean_dec(x_150); -if (x_151 == 0) -{ -lean_object* x_152; lean_object* x_153; lean_object* x_154; -lean_dec(x_56); -lean_dec(x_47); -x_152 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_152, 0, x_45); -lean_ctor_set(x_152, 1, x_46); -x_153 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_153, 0, x_152); -if (lean_is_scalar(x_52)) { - x_154 = lean_alloc_ctor(0, 2, 0); -} else { - x_154 = x_52; -} -lean_ctor_set(x_154, 0, x_153); -lean_ctor_set(x_154, 1, x_55); -x_20 = x_154; -goto block_36; -} -else -{ -lean_object* x_155; -lean_dec(x_52); -x_155 = lean_box(0); -x_57 = x_155; -goto block_64; -} -} -} -} -else -{ -lean_object* x_156; -lean_dec(x_112); +uint8_t x_120; +lean_dec(x_117); +lean_dec(x_113); lean_dec(x_111); -lean_dec(x_109); -lean_dec(x_52); -lean_dec(x_43); -x_156 = lean_box(0); -x_57 = x_156; -goto block_64; -} -} -} -block_64: +lean_dec(x_58); +lean_dec(x_47); +x_120 = !lean_is_exclusive(x_43); +if (x_120 == 0) { -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_dec(x_57); -x_58 = lean_box(0); -lean_inc(x_47); -x_59 = l_Std_RBNode_insert___at_Lean_NameSet_insert___spec__1(x_46, x_47, x_58); -x_60 = l_Std_RBNode_insert___at_Lean_NameSet_insert___spec__1(x_45, x_47, x_58); -x_61 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_61, 0, x_60); -lean_ctor_set(x_61, 1, x_59); -x_62 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_62, 0, x_61); -if (lean_is_scalar(x_56)) { - x_63 = lean_alloc_ctor(0, 2, 0); +lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; +x_121 = lean_ctor_get(x_43, 1); +lean_dec(x_121); +x_122 = lean_ctor_get(x_43, 0); +lean_dec(x_122); +x_123 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_123, 0, x_43); +if (lean_is_scalar(x_54)) { + x_124 = lean_alloc_ctor(0, 2, 0); } else { - x_63 = x_56; + x_124 = x_54; } +lean_ctor_set(x_124, 0, x_123); +lean_ctor_set(x_124, 1, x_57); +x_20 = x_124; +goto block_36; +} +else +{ +lean_object* x_125; lean_object* x_126; lean_object* x_127; +lean_dec(x_43); +x_125 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_125, 0, x_45); +lean_ctor_set(x_125, 1, x_46); +x_126 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_126, 0, x_125); +if (lean_is_scalar(x_54)) { + x_127 = lean_alloc_ctor(0, 2, 0); +} else { + x_127 = x_54; +} +lean_ctor_set(x_127, 0, x_126); +lean_ctor_set(x_127, 1, x_57); +x_20 = x_127; +goto block_36; +} +} +else +{ +lean_object* x_128; uint8_t x_129; +x_128 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__15(x_43, x_111, x_113, x_117); +x_129 = !lean_is_exclusive(x_43); +if (x_129 == 0) +{ +lean_object* x_130; lean_object* x_131; lean_object* x_132; uint8_t x_133; +x_130 = lean_ctor_get(x_43, 1); +lean_dec(x_130); +x_131 = lean_ctor_get(x_43, 0); +lean_dec(x_131); +x_132 = lean_ctor_get(x_128, 0); +lean_inc(x_132); +lean_dec(x_128); +x_133 = lean_unbox(x_132); +lean_dec(x_132); +if (x_133 == 0) +{ +lean_object* x_134; lean_object* x_135; +lean_dec(x_58); +lean_dec(x_47); +x_134 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_134, 0, x_43); +if (lean_is_scalar(x_54)) { + x_135 = lean_alloc_ctor(0, 2, 0); +} else { + x_135 = x_54; +} +lean_ctor_set(x_135, 0, x_134); +lean_ctor_set(x_135, 1, x_57); +x_20 = x_135; +goto block_36; +} +else +{ +lean_object* x_136; +lean_free_object(x_43); +lean_dec(x_54); +x_136 = lean_box(0); +x_59 = x_136; +goto block_66; +} +} +else +{ +lean_object* x_137; uint8_t x_138; +lean_dec(x_43); +x_137 = lean_ctor_get(x_128, 0); +lean_inc(x_137); +lean_dec(x_128); +x_138 = lean_unbox(x_137); +lean_dec(x_137); +if (x_138 == 0) +{ +lean_object* x_139; lean_object* x_140; lean_object* x_141; +lean_dec(x_58); +lean_dec(x_47); +x_139 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_139, 0, x_45); +lean_ctor_set(x_139, 1, x_46); +x_140 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_140, 0, x_139); +if (lean_is_scalar(x_54)) { + x_141 = lean_alloc_ctor(0, 2, 0); +} else { + x_141 = x_54; +} +lean_ctor_set(x_141, 0, x_140); +lean_ctor_set(x_141, 1, x_57); +x_20 = x_141; +goto block_36; +} +else +{ +lean_object* x_142; +lean_dec(x_54); +x_142 = lean_box(0); +x_59 = x_142; +goto block_66; +} +} +} +} +else +{ +lean_object* x_143; uint8_t x_144; +x_143 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__22(x_43, x_111, x_113, x_117); +x_144 = !lean_is_exclusive(x_43); +if (x_144 == 0) +{ +lean_object* x_145; lean_object* x_146; lean_object* x_147; uint8_t x_148; +x_145 = lean_ctor_get(x_43, 1); +lean_dec(x_145); +x_146 = lean_ctor_get(x_43, 0); +lean_dec(x_146); +x_147 = lean_ctor_get(x_143, 0); +lean_inc(x_147); +lean_dec(x_143); +x_148 = lean_unbox(x_147); +lean_dec(x_147); +if (x_148 == 0) +{ +lean_object* x_149; lean_object* x_150; +lean_dec(x_58); +lean_dec(x_47); +x_149 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_149, 0, x_43); +if (lean_is_scalar(x_54)) { + x_150 = lean_alloc_ctor(0, 2, 0); +} else { + x_150 = x_54; +} +lean_ctor_set(x_150, 0, x_149); +lean_ctor_set(x_150, 1, x_57); +x_20 = x_150; +goto block_36; +} +else +{ +lean_object* x_151; +lean_free_object(x_43); +lean_dec(x_54); +x_151 = lean_box(0); +x_59 = x_151; +goto block_66; +} +} +else +{ +lean_object* x_152; uint8_t x_153; +lean_dec(x_43); +x_152 = lean_ctor_get(x_143, 0); +lean_inc(x_152); +lean_dec(x_143); +x_153 = lean_unbox(x_152); +lean_dec(x_152); +if (x_153 == 0) +{ +lean_object* x_154; lean_object* x_155; lean_object* x_156; +lean_dec(x_58); +lean_dec(x_47); +x_154 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_154, 0, x_45); +lean_ctor_set(x_154, 1, x_46); +x_155 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_155, 0, x_154); +if (lean_is_scalar(x_54)) { + x_156 = lean_alloc_ctor(0, 2, 0); +} else { + x_156 = x_54; +} +lean_ctor_set(x_156, 0, x_155); +lean_ctor_set(x_156, 1, x_57); +x_20 = x_156; +goto block_36; +} +else +{ +lean_object* x_157; +lean_dec(x_54); +x_157 = lean_box(0); +x_59 = x_157; +goto block_66; +} +} +} +} +else +{ +lean_object* x_158; +lean_dec(x_114); +lean_dec(x_113); +lean_dec(x_111); +lean_dec(x_54); +lean_dec(x_43); +x_158 = lean_box(0); +x_59 = x_158; +goto block_66; +} +} +} +block_66: +{ +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_dec(x_59); +x_60 = lean_box(0); +lean_inc(x_47); +x_61 = l_Std_RBNode_insert___at_Lean_NameSet_insert___spec__1(x_46, x_47, x_60); +x_62 = l_Std_RBNode_insert___at_Lean_NameSet_insert___spec__1(x_45, x_47, x_60); +x_63 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_63, 0, x_62); -lean_ctor_set(x_63, 1, x_55); -x_20 = x_63; +lean_ctor_set(x_63, 1, x_61); +x_64 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_64, 0, x_63); +if (lean_is_scalar(x_58)) { + x_65 = lean_alloc_ctor(0, 2, 0); +} else { + x_65 = x_58; +} +lean_ctor_set(x_65, 0, x_64); +lean_ctor_set(x_65, 1, x_57); +x_20 = x_65; goto block_36; } } else { -uint8_t x_165; +uint8_t x_167; lean_dec(x_47); lean_dec(x_44); -x_165 = !lean_is_exclusive(x_43); -if (x_165 == 0) +x_167 = !lean_is_exclusive(x_43); +if (x_167 == 0) { -lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; -x_166 = lean_ctor_get(x_43, 1); -lean_dec(x_166); -x_167 = lean_ctor_get(x_43, 0); -lean_dec(x_167); -x_168 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_168, 0, x_43); -x_169 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_169, 0, x_168); -lean_ctor_set(x_169, 1, x_11); -x_20 = x_169; -goto block_36; -} -else -{ -lean_object* x_170; lean_object* x_171; lean_object* x_172; -lean_dec(x_43); -x_170 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_170, 0, x_45); -lean_ctor_set(x_170, 1, x_46); -x_171 = lean_alloc_ctor(1, 1, 0); +lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; +x_168 = lean_ctor_get(x_43, 1); +lean_dec(x_168); +x_169 = lean_ctor_get(x_43, 0); +lean_dec(x_169); +x_170 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_170, 0, x_43); +x_171 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_171, 0, x_170); +lean_ctor_set(x_171, 1, x_11); +x_20 = x_171; +goto block_36; +} +else +{ +lean_object* x_172; lean_object* x_173; lean_object* x_174; +lean_dec(x_43); x_172 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_172, 0, x_171); -lean_ctor_set(x_172, 1, x_11); -x_20 = x_172; +lean_ctor_set(x_172, 0, x_45); +lean_ctor_set(x_172, 1, x_46); +x_173 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_173, 0, x_172); +x_174 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_174, 0, x_173); +lean_ctor_set(x_174, 1, x_11); +x_20 = x_174; goto block_36; } } } else { -uint8_t x_173; +uint8_t x_175; lean_dec(x_47); lean_dec(x_44); -x_173 = !lean_is_exclusive(x_43); -if (x_173 == 0) +x_175 = !lean_is_exclusive(x_43); +if (x_175 == 0) { -lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; -x_174 = lean_ctor_get(x_43, 1); -lean_dec(x_174); -x_175 = lean_ctor_get(x_43, 0); -lean_dec(x_175); -x_176 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_176, 0, x_43); -x_177 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_177, 0, x_176); -lean_ctor_set(x_177, 1, x_11); -x_20 = x_177; +lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; +x_176 = lean_ctor_get(x_43, 1); +lean_dec(x_176); +x_177 = lean_ctor_get(x_43, 0); +lean_dec(x_177); +x_178 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_178, 0, x_43); +x_179 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_179, 0, x_178); +lean_ctor_set(x_179, 1, x_11); +x_20 = x_179; goto block_36; } else { -lean_object* x_178; lean_object* x_179; lean_object* x_180; +lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_dec(x_43); -x_178 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_178, 0, x_45); -lean_ctor_set(x_178, 1, x_46); -x_179 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_179, 0, x_178); x_180 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_180, 0, x_179); -lean_ctor_set(x_180, 1, x_11); -x_20 = x_180; +lean_ctor_set(x_180, 0, x_45); +lean_ctor_set(x_180, 1, x_46); +x_181 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_181, 0, x_180); +x_182 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_182, 0, x_181); +lean_ctor_set(x_182, 1, x_11); +x_20 = x_182; +goto block_36; +} +} +} +else +{ +uint8_t x_183; +lean_dec(x_47); +lean_dec(x_44); +x_183 = !lean_is_exclusive(x_43); +if (x_183 == 0) +{ +lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; +x_184 = lean_ctor_get(x_43, 1); +lean_dec(x_184); +x_185 = lean_ctor_get(x_43, 0); +lean_dec(x_185); +x_186 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_186, 0, x_43); +x_187 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_187, 0, x_186); +lean_ctor_set(x_187, 1, x_11); +x_20 = x_187; +goto block_36; +} +else +{ +lean_object* x_188; lean_object* x_189; lean_object* x_190; +lean_dec(x_43); +x_188 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_188, 0, x_45); +lean_ctor_set(x_188, 1, x_46); +x_189 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_189, 0, x_188); +x_190 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_190, 0, x_189); +lean_ctor_set(x_190, 1, x_11); +x_20 = x_190; goto block_36; } } @@ -16073,649 +16247,692 @@ uint8_t x_49; x_49 = l_Lean_LocalDecl_isAuxDecl(x_44); if (x_49 == 0) { -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_50 = lean_st_ref_get(x_10, x_11); -x_51 = lean_ctor_get(x_50, 1); -lean_inc(x_51); -if (lean_is_exclusive(x_50)) { - lean_ctor_release(x_50, 0); - lean_ctor_release(x_50, 1); - x_52 = x_50; +uint8_t x_50; uint8_t x_51; +x_50 = l_Lean_LocalDecl_binderInfo(x_44); +x_51 = l_Lean_BinderInfo_isInstImplicit(x_50); +if (x_51 == 0) +{ +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; +x_52 = lean_st_ref_get(x_10, x_11); +x_53 = lean_ctor_get(x_52, 1); +lean_inc(x_53); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_54 = x_52; } else { - lean_dec_ref(x_50); - x_52 = lean_box(0); + lean_dec_ref(x_52); + x_54 = lean_box(0); } -x_53 = lean_st_ref_get(x_8, x_51); -x_54 = lean_ctor_get(x_53, 0); -lean_inc(x_54); -x_55 = lean_ctor_get(x_53, 1); -lean_inc(x_55); -if (lean_is_exclusive(x_53)) { - lean_ctor_release(x_53, 0); - lean_ctor_release(x_53, 1); - x_56 = x_53; +x_55 = lean_st_ref_get(x_8, x_53); +x_56 = lean_ctor_get(x_55, 0); +lean_inc(x_56); +x_57 = lean_ctor_get(x_55, 1); +lean_inc(x_57); +if (lean_is_exclusive(x_55)) { + lean_ctor_release(x_55, 0); + lean_ctor_release(x_55, 1); + x_58 = x_55; } else { - lean_dec_ref(x_53); - x_56 = lean_box(0); + lean_dec_ref(x_55); + x_58 = lean_box(0); } if (lean_obj_tag(x_44) == 0) { -lean_object* x_65; lean_object* x_66; uint8_t x_67; -x_65 = lean_ctor_get(x_54, 0); -lean_inc(x_65); -lean_dec(x_54); -x_66 = lean_ctor_get(x_44, 3); -lean_inc(x_66); -lean_dec(x_44); -x_67 = l_Lean_Expr_hasFVar(x_66); -if (x_67 == 0) -{ -uint8_t x_68; -x_68 = l_Lean_Expr_hasMVar(x_66); -if (x_68 == 0) -{ -uint8_t x_69; -lean_dec(x_66); -lean_dec(x_65); +lean_object* x_67; lean_object* x_68; uint8_t x_69; +x_67 = lean_ctor_get(x_56, 0); +lean_inc(x_67); lean_dec(x_56); -lean_dec(x_47); -x_69 = !lean_is_exclusive(x_43); +x_68 = lean_ctor_get(x_44, 3); +lean_inc(x_68); +lean_dec(x_44); +x_69 = l_Lean_Expr_hasFVar(x_68); if (x_69 == 0) { -lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; -x_70 = lean_ctor_get(x_43, 1); -lean_dec(x_70); -x_71 = lean_ctor_get(x_43, 0); -lean_dec(x_71); -x_72 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_72, 0, x_43); -if (lean_is_scalar(x_52)) { - x_73 = lean_alloc_ctor(0, 2, 0); -} else { - x_73 = x_52; -} -lean_ctor_set(x_73, 0, x_72); -lean_ctor_set(x_73, 1, x_55); -x_20 = x_73; -goto block_36; -} -else +uint8_t x_70; +x_70 = l_Lean_Expr_hasMVar(x_68); +if (x_70 == 0) { -lean_object* x_74; lean_object* x_75; lean_object* x_76; -lean_dec(x_43); -x_74 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_74, 0, x_45); -lean_ctor_set(x_74, 1, x_46); -x_75 = lean_alloc_ctor(1, 1, 0); +uint8_t x_71; +lean_dec(x_68); +lean_dec(x_67); +lean_dec(x_58); +lean_dec(x_47); +x_71 = !lean_is_exclusive(x_43); +if (x_71 == 0) +{ +lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_72 = lean_ctor_get(x_43, 1); +lean_dec(x_72); +x_73 = lean_ctor_get(x_43, 0); +lean_dec(x_73); +x_74 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_74, 0, x_43); +if (lean_is_scalar(x_54)) { + x_75 = lean_alloc_ctor(0, 2, 0); +} else { + x_75 = x_54; +} lean_ctor_set(x_75, 0, x_74); -if (lean_is_scalar(x_52)) { - x_76 = lean_alloc_ctor(0, 2, 0); -} else { - x_76 = x_52; +lean_ctor_set(x_75, 1, x_57); +x_20 = x_75; +goto block_36; } -lean_ctor_set(x_76, 0, x_75); -lean_ctor_set(x_76, 1, x_55); -x_20 = x_76; +else +{ +lean_object* x_76; lean_object* x_77; lean_object* x_78; +lean_dec(x_43); +x_76 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_76, 0, x_45); +lean_ctor_set(x_76, 1, x_46); +x_77 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_77, 0, x_76); +if (lean_is_scalar(x_54)) { + x_78 = lean_alloc_ctor(0, 2, 0); +} else { + x_78 = x_54; +} +lean_ctor_set(x_78, 0, x_77); +lean_ctor_set(x_78, 1, x_57); +x_20 = x_78; goto block_36; } } else { -lean_object* x_77; lean_object* x_78; uint8_t x_79; -x_77 = l_Std_HashSet_instInhabitedHashSet___closed__1; -x_78 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__1(x_43, x_65, x_66, x_77); -x_79 = !lean_is_exclusive(x_43); -if (x_79 == 0) +lean_object* x_79; lean_object* x_80; uint8_t x_81; +x_79 = l_Std_HashSet_instInhabitedHashSet___closed__1; +x_80 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__1(x_43, x_67, x_68, x_79); +x_81 = !lean_is_exclusive(x_43); +if (x_81 == 0) { -lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; -x_80 = lean_ctor_get(x_43, 1); -lean_dec(x_80); -x_81 = lean_ctor_get(x_43, 0); -lean_dec(x_81); -x_82 = lean_ctor_get(x_78, 0); -lean_inc(x_82); -lean_dec(x_78); -x_83 = lean_unbox(x_82); +lean_object* x_82; lean_object* x_83; lean_object* x_84; uint8_t x_85; +x_82 = lean_ctor_get(x_43, 1); lean_dec(x_82); -if (x_83 == 0) +x_83 = lean_ctor_get(x_43, 0); +lean_dec(x_83); +x_84 = lean_ctor_get(x_80, 0); +lean_inc(x_84); +lean_dec(x_80); +x_85 = lean_unbox(x_84); +lean_dec(x_84); +if (x_85 == 0) { -lean_object* x_84; lean_object* x_85; -lean_dec(x_56); +lean_object* x_86; lean_object* x_87; +lean_dec(x_58); lean_dec(x_47); -x_84 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_84, 0, x_43); -if (lean_is_scalar(x_52)) { - x_85 = lean_alloc_ctor(0, 2, 0); +x_86 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_86, 0, x_43); +if (lean_is_scalar(x_54)) { + x_87 = lean_alloc_ctor(0, 2, 0); } else { - x_85 = x_52; + x_87 = x_54; } -lean_ctor_set(x_85, 0, x_84); -lean_ctor_set(x_85, 1, x_55); -x_20 = x_85; +lean_ctor_set(x_87, 0, x_86); +lean_ctor_set(x_87, 1, x_57); +x_20 = x_87; goto block_36; } else { -lean_object* x_86; +lean_object* x_88; lean_free_object(x_43); -lean_dec(x_52); -x_86 = lean_box(0); -x_57 = x_86; -goto block_64; -} -} -else -{ -lean_object* x_87; uint8_t x_88; -lean_dec(x_43); -x_87 = lean_ctor_get(x_78, 0); -lean_inc(x_87); -lean_dec(x_78); -x_88 = lean_unbox(x_87); -lean_dec(x_87); -if (x_88 == 0) -{ -lean_object* x_89; lean_object* x_90; lean_object* x_91; -lean_dec(x_56); -lean_dec(x_47); -x_89 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_89, 0, x_45); -lean_ctor_set(x_89, 1, x_46); -x_90 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_90, 0, x_89); -if (lean_is_scalar(x_52)) { - x_91 = lean_alloc_ctor(0, 2, 0); -} else { - x_91 = x_52; -} -lean_ctor_set(x_91, 0, x_90); -lean_ctor_set(x_91, 1, x_55); -x_20 = x_91; -goto block_36; -} -else -{ -lean_object* x_92; -lean_dec(x_52); -x_92 = lean_box(0); -x_57 = x_92; -goto block_64; -} -} -} -} -else -{ -lean_object* x_93; lean_object* x_94; uint8_t x_95; -x_93 = l_Std_HashSet_instInhabitedHashSet___closed__1; -x_94 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__8(x_43, x_65, x_66, x_93); -x_95 = !lean_is_exclusive(x_43); -if (x_95 == 0) -{ -lean_object* x_96; lean_object* x_97; lean_object* x_98; uint8_t x_99; -x_96 = lean_ctor_get(x_43, 1); -lean_dec(x_96); -x_97 = lean_ctor_get(x_43, 0); -lean_dec(x_97); -x_98 = lean_ctor_get(x_94, 0); -lean_inc(x_98); -lean_dec(x_94); -x_99 = lean_unbox(x_98); -lean_dec(x_98); -if (x_99 == 0) -{ -lean_object* x_100; lean_object* x_101; -lean_dec(x_56); -lean_dec(x_47); -x_100 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_100, 0, x_43); -if (lean_is_scalar(x_52)) { - x_101 = lean_alloc_ctor(0, 2, 0); -} else { - x_101 = x_52; -} -lean_ctor_set(x_101, 0, x_100); -lean_ctor_set(x_101, 1, x_55); -x_20 = x_101; -goto block_36; -} -else -{ -lean_object* x_102; -lean_free_object(x_43); -lean_dec(x_52); -x_102 = lean_box(0); -x_57 = x_102; -goto block_64; -} -} -else -{ -lean_object* x_103; uint8_t x_104; -lean_dec(x_43); -x_103 = lean_ctor_get(x_94, 0); -lean_inc(x_103); -lean_dec(x_94); -x_104 = lean_unbox(x_103); -lean_dec(x_103); -if (x_104 == 0) -{ -lean_object* x_105; lean_object* x_106; lean_object* x_107; -lean_dec(x_56); -lean_dec(x_47); -x_105 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_105, 0, x_45); -lean_ctor_set(x_105, 1, x_46); -x_106 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_106, 0, x_105); -if (lean_is_scalar(x_52)) { - x_107 = lean_alloc_ctor(0, 2, 0); -} else { - x_107 = x_52; -} -lean_ctor_set(x_107, 0, x_106); -lean_ctor_set(x_107, 1, x_55); -x_20 = x_107; -goto block_36; -} -else -{ -lean_object* x_108; -lean_dec(x_52); -x_108 = lean_box(0); -x_57 = x_108; -goto block_64; -} -} -} -} -else -{ -lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; uint8_t x_158; -x_109 = lean_ctor_get(x_54, 0); -lean_inc(x_109); lean_dec(x_54); -x_110 = lean_ctor_get(x_44, 3); -lean_inc(x_110); -x_111 = lean_ctor_get(x_44, 4); -lean_inc(x_111); -lean_dec(x_44); -x_158 = l_Lean_Expr_hasFVar(x_110); -if (x_158 == 0) -{ -uint8_t x_159; -x_159 = l_Lean_Expr_hasMVar(x_110); -if (x_159 == 0) -{ -lean_object* x_160; -lean_dec(x_110); -x_160 = l_Lean_MetavarContext_findLocalDeclDependsOn___closed__1; -x_112 = x_160; -goto block_157; +x_88 = lean_box(0); +x_59 = x_88; +goto block_66; +} } else { -lean_object* x_161; lean_object* x_162; -x_161 = l_Std_HashSet_instInhabitedHashSet___closed__1; -lean_inc(x_109); -x_162 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__29(x_43, x_109, x_110, x_161); -x_112 = x_162; -goto block_157; +lean_object* x_89; uint8_t x_90; +lean_dec(x_43); +x_89 = lean_ctor_get(x_80, 0); +lean_inc(x_89); +lean_dec(x_80); +x_90 = lean_unbox(x_89); +lean_dec(x_89); +if (x_90 == 0) +{ +lean_object* x_91; lean_object* x_92; lean_object* x_93; +lean_dec(x_58); +lean_dec(x_47); +x_91 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_91, 0, x_45); +lean_ctor_set(x_91, 1, x_46); +x_92 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_92, 0, x_91); +if (lean_is_scalar(x_54)) { + x_93 = lean_alloc_ctor(0, 2, 0); +} else { + x_93 = x_54; } +lean_ctor_set(x_93, 0, x_92); +lean_ctor_set(x_93, 1, x_57); +x_20 = x_93; +goto block_36; +} +else +{ +lean_object* x_94; +lean_dec(x_54); +x_94 = lean_box(0); +x_59 = x_94; +goto block_66; +} +} +} +} +else +{ +lean_object* x_95; lean_object* x_96; uint8_t x_97; +x_95 = l_Std_HashSet_instInhabitedHashSet___closed__1; +x_96 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__8(x_43, x_67, x_68, x_95); +x_97 = !lean_is_exclusive(x_43); +if (x_97 == 0) +{ +lean_object* x_98; lean_object* x_99; lean_object* x_100; uint8_t x_101; +x_98 = lean_ctor_get(x_43, 1); +lean_dec(x_98); +x_99 = lean_ctor_get(x_43, 0); +lean_dec(x_99); +x_100 = lean_ctor_get(x_96, 0); +lean_inc(x_100); +lean_dec(x_96); +x_101 = lean_unbox(x_100); +lean_dec(x_100); +if (x_101 == 0) +{ +lean_object* x_102; lean_object* x_103; +lean_dec(x_58); +lean_dec(x_47); +x_102 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_102, 0, x_43); +if (lean_is_scalar(x_54)) { + x_103 = lean_alloc_ctor(0, 2, 0); +} else { + x_103 = x_54; +} +lean_ctor_set(x_103, 0, x_102); +lean_ctor_set(x_103, 1, x_57); +x_20 = x_103; +goto block_36; +} +else +{ +lean_object* x_104; +lean_free_object(x_43); +lean_dec(x_54); +x_104 = lean_box(0); +x_59 = x_104; +goto block_66; +} +} +else +{ +lean_object* x_105; uint8_t x_106; +lean_dec(x_43); +x_105 = lean_ctor_get(x_96, 0); +lean_inc(x_105); +lean_dec(x_96); +x_106 = lean_unbox(x_105); +lean_dec(x_105); +if (x_106 == 0) +{ +lean_object* x_107; lean_object* x_108; lean_object* x_109; +lean_dec(x_58); +lean_dec(x_47); +x_107 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_107, 0, x_45); +lean_ctor_set(x_107, 1, x_46); +x_108 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_108, 0, x_107); +if (lean_is_scalar(x_54)) { + x_109 = lean_alloc_ctor(0, 2, 0); +} else { + x_109 = x_54; +} +lean_ctor_set(x_109, 0, x_108); +lean_ctor_set(x_109, 1, x_57); +x_20 = x_109; +goto block_36; +} +else +{ +lean_object* x_110; +lean_dec(x_54); +x_110 = lean_box(0); +x_59 = x_110; +goto block_66; +} +} +} +} +else +{ +lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; uint8_t x_160; +x_111 = lean_ctor_get(x_56, 0); +lean_inc(x_111); +lean_dec(x_56); +x_112 = lean_ctor_get(x_44, 3); +lean_inc(x_112); +x_113 = lean_ctor_get(x_44, 4); +lean_inc(x_113); +lean_dec(x_44); +x_160 = l_Lean_Expr_hasFVar(x_112); +if (x_160 == 0) +{ +uint8_t x_161; +x_161 = l_Lean_Expr_hasMVar(x_112); +if (x_161 == 0) +{ +lean_object* x_162; +lean_dec(x_112); +x_162 = l_Lean_MetavarContext_findLocalDeclDependsOn___closed__1; +x_114 = x_162; +goto block_159; } else { lean_object* x_163; lean_object* x_164; x_163 = l_Std_HashSet_instInhabitedHashSet___closed__1; -lean_inc(x_109); -x_164 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__36(x_43, x_109, x_110, x_163); -x_112 = x_164; -goto block_157; +lean_inc(x_111); +x_164 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__29(x_43, x_111, x_112, x_163); +x_114 = x_164; +goto block_159; } -block_157: +} +else { -lean_object* x_113; uint8_t x_114; -x_113 = lean_ctor_get(x_112, 0); -lean_inc(x_113); -x_114 = lean_unbox(x_113); -lean_dec(x_113); -if (x_114 == 0) +lean_object* x_165; lean_object* x_166; +x_165 = l_Std_HashSet_instInhabitedHashSet___closed__1; +lean_inc(x_111); +x_166 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__36(x_43, x_111, x_112, x_165); +x_114 = x_166; +goto block_159; +} +block_159: { lean_object* x_115; uint8_t x_116; -x_115 = lean_ctor_get(x_112, 1); +x_115 = lean_ctor_get(x_114, 0); lean_inc(x_115); -lean_dec(x_112); -x_116 = l_Lean_Expr_hasFVar(x_111); +x_116 = lean_unbox(x_115); +lean_dec(x_115); if (x_116 == 0) { -uint8_t x_117; -x_117 = l_Lean_Expr_hasMVar(x_111); -if (x_117 == 0) -{ -uint8_t x_118; -lean_dec(x_115); -lean_dec(x_111); -lean_dec(x_109); -lean_dec(x_56); -lean_dec(x_47); -x_118 = !lean_is_exclusive(x_43); +lean_object* x_117; uint8_t x_118; +x_117 = lean_ctor_get(x_114, 1); +lean_inc(x_117); +lean_dec(x_114); +x_118 = l_Lean_Expr_hasFVar(x_113); if (x_118 == 0) { -lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; -x_119 = lean_ctor_get(x_43, 1); -lean_dec(x_119); -x_120 = lean_ctor_get(x_43, 0); -lean_dec(x_120); -x_121 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_121, 0, x_43); -if (lean_is_scalar(x_52)) { - x_122 = lean_alloc_ctor(0, 2, 0); -} else { - x_122 = x_52; -} -lean_ctor_set(x_122, 0, x_121); -lean_ctor_set(x_122, 1, x_55); -x_20 = x_122; -goto block_36; -} -else +uint8_t x_119; +x_119 = l_Lean_Expr_hasMVar(x_113); +if (x_119 == 0) { -lean_object* x_123; lean_object* x_124; lean_object* x_125; -lean_dec(x_43); -x_123 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_123, 0, x_45); -lean_ctor_set(x_123, 1, x_46); -x_124 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_124, 0, x_123); -if (lean_is_scalar(x_52)) { - x_125 = lean_alloc_ctor(0, 2, 0); -} else { - x_125 = x_52; -} -lean_ctor_set(x_125, 0, x_124); -lean_ctor_set(x_125, 1, x_55); -x_20 = x_125; -goto block_36; -} -} -else -{ -lean_object* x_126; uint8_t x_127; -x_126 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__15(x_43, x_109, x_111, x_115); -x_127 = !lean_is_exclusive(x_43); -if (x_127 == 0) -{ -lean_object* x_128; lean_object* x_129; lean_object* x_130; uint8_t x_131; -x_128 = lean_ctor_get(x_43, 1); -lean_dec(x_128); -x_129 = lean_ctor_get(x_43, 0); -lean_dec(x_129); -x_130 = lean_ctor_get(x_126, 0); -lean_inc(x_130); -lean_dec(x_126); -x_131 = lean_unbox(x_130); -lean_dec(x_130); -if (x_131 == 0) -{ -lean_object* x_132; lean_object* x_133; -lean_dec(x_56); -lean_dec(x_47); -x_132 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_132, 0, x_43); -if (lean_is_scalar(x_52)) { - x_133 = lean_alloc_ctor(0, 2, 0); -} else { - x_133 = x_52; -} -lean_ctor_set(x_133, 0, x_132); -lean_ctor_set(x_133, 1, x_55); -x_20 = x_133; -goto block_36; -} -else -{ -lean_object* x_134; -lean_free_object(x_43); -lean_dec(x_52); -x_134 = lean_box(0); -x_57 = x_134; -goto block_64; -} -} -else -{ -lean_object* x_135; uint8_t x_136; -lean_dec(x_43); -x_135 = lean_ctor_get(x_126, 0); -lean_inc(x_135); -lean_dec(x_126); -x_136 = lean_unbox(x_135); -lean_dec(x_135); -if (x_136 == 0) -{ -lean_object* x_137; lean_object* x_138; lean_object* x_139; -lean_dec(x_56); -lean_dec(x_47); -x_137 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_137, 0, x_45); -lean_ctor_set(x_137, 1, x_46); -x_138 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_138, 0, x_137); -if (lean_is_scalar(x_52)) { - x_139 = lean_alloc_ctor(0, 2, 0); -} else { - x_139 = x_52; -} -lean_ctor_set(x_139, 0, x_138); -lean_ctor_set(x_139, 1, x_55); -x_20 = x_139; -goto block_36; -} -else -{ -lean_object* x_140; -lean_dec(x_52); -x_140 = lean_box(0); -x_57 = x_140; -goto block_64; -} -} -} -} -else -{ -lean_object* x_141; uint8_t x_142; -x_141 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__22(x_43, x_109, x_111, x_115); -x_142 = !lean_is_exclusive(x_43); -if (x_142 == 0) -{ -lean_object* x_143; lean_object* x_144; lean_object* x_145; uint8_t x_146; -x_143 = lean_ctor_get(x_43, 1); -lean_dec(x_143); -x_144 = lean_ctor_get(x_43, 0); -lean_dec(x_144); -x_145 = lean_ctor_get(x_141, 0); -lean_inc(x_145); -lean_dec(x_141); -x_146 = lean_unbox(x_145); -lean_dec(x_145); -if (x_146 == 0) -{ -lean_object* x_147; lean_object* x_148; -lean_dec(x_56); -lean_dec(x_47); -x_147 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_147, 0, x_43); -if (lean_is_scalar(x_52)) { - x_148 = lean_alloc_ctor(0, 2, 0); -} else { - x_148 = x_52; -} -lean_ctor_set(x_148, 0, x_147); -lean_ctor_set(x_148, 1, x_55); -x_20 = x_148; -goto block_36; -} -else -{ -lean_object* x_149; -lean_free_object(x_43); -lean_dec(x_52); -x_149 = lean_box(0); -x_57 = x_149; -goto block_64; -} -} -else -{ -lean_object* x_150; uint8_t x_151; -lean_dec(x_43); -x_150 = lean_ctor_get(x_141, 0); -lean_inc(x_150); -lean_dec(x_141); -x_151 = lean_unbox(x_150); -lean_dec(x_150); -if (x_151 == 0) -{ -lean_object* x_152; lean_object* x_153; lean_object* x_154; -lean_dec(x_56); -lean_dec(x_47); -x_152 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_152, 0, x_45); -lean_ctor_set(x_152, 1, x_46); -x_153 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_153, 0, x_152); -if (lean_is_scalar(x_52)) { - x_154 = lean_alloc_ctor(0, 2, 0); -} else { - x_154 = x_52; -} -lean_ctor_set(x_154, 0, x_153); -lean_ctor_set(x_154, 1, x_55); -x_20 = x_154; -goto block_36; -} -else -{ -lean_object* x_155; -lean_dec(x_52); -x_155 = lean_box(0); -x_57 = x_155; -goto block_64; -} -} -} -} -else -{ -lean_object* x_156; -lean_dec(x_112); +uint8_t x_120; +lean_dec(x_117); +lean_dec(x_113); lean_dec(x_111); -lean_dec(x_109); -lean_dec(x_52); -lean_dec(x_43); -x_156 = lean_box(0); -x_57 = x_156; -goto block_64; -} -} -} -block_64: +lean_dec(x_58); +lean_dec(x_47); +x_120 = !lean_is_exclusive(x_43); +if (x_120 == 0) { -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_dec(x_57); -x_58 = lean_box(0); -lean_inc(x_47); -x_59 = l_Std_RBNode_insert___at_Lean_NameSet_insert___spec__1(x_46, x_47, x_58); -x_60 = l_Std_RBNode_insert___at_Lean_NameSet_insert___spec__1(x_45, x_47, x_58); -x_61 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_61, 0, x_60); -lean_ctor_set(x_61, 1, x_59); -x_62 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_62, 0, x_61); -if (lean_is_scalar(x_56)) { - x_63 = lean_alloc_ctor(0, 2, 0); +lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; +x_121 = lean_ctor_get(x_43, 1); +lean_dec(x_121); +x_122 = lean_ctor_get(x_43, 0); +lean_dec(x_122); +x_123 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_123, 0, x_43); +if (lean_is_scalar(x_54)) { + x_124 = lean_alloc_ctor(0, 2, 0); } else { - x_63 = x_56; + x_124 = x_54; } +lean_ctor_set(x_124, 0, x_123); +lean_ctor_set(x_124, 1, x_57); +x_20 = x_124; +goto block_36; +} +else +{ +lean_object* x_125; lean_object* x_126; lean_object* x_127; +lean_dec(x_43); +x_125 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_125, 0, x_45); +lean_ctor_set(x_125, 1, x_46); +x_126 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_126, 0, x_125); +if (lean_is_scalar(x_54)) { + x_127 = lean_alloc_ctor(0, 2, 0); +} else { + x_127 = x_54; +} +lean_ctor_set(x_127, 0, x_126); +lean_ctor_set(x_127, 1, x_57); +x_20 = x_127; +goto block_36; +} +} +else +{ +lean_object* x_128; uint8_t x_129; +x_128 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__15(x_43, x_111, x_113, x_117); +x_129 = !lean_is_exclusive(x_43); +if (x_129 == 0) +{ +lean_object* x_130; lean_object* x_131; lean_object* x_132; uint8_t x_133; +x_130 = lean_ctor_get(x_43, 1); +lean_dec(x_130); +x_131 = lean_ctor_get(x_43, 0); +lean_dec(x_131); +x_132 = lean_ctor_get(x_128, 0); +lean_inc(x_132); +lean_dec(x_128); +x_133 = lean_unbox(x_132); +lean_dec(x_132); +if (x_133 == 0) +{ +lean_object* x_134; lean_object* x_135; +lean_dec(x_58); +lean_dec(x_47); +x_134 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_134, 0, x_43); +if (lean_is_scalar(x_54)) { + x_135 = lean_alloc_ctor(0, 2, 0); +} else { + x_135 = x_54; +} +lean_ctor_set(x_135, 0, x_134); +lean_ctor_set(x_135, 1, x_57); +x_20 = x_135; +goto block_36; +} +else +{ +lean_object* x_136; +lean_free_object(x_43); +lean_dec(x_54); +x_136 = lean_box(0); +x_59 = x_136; +goto block_66; +} +} +else +{ +lean_object* x_137; uint8_t x_138; +lean_dec(x_43); +x_137 = lean_ctor_get(x_128, 0); +lean_inc(x_137); +lean_dec(x_128); +x_138 = lean_unbox(x_137); +lean_dec(x_137); +if (x_138 == 0) +{ +lean_object* x_139; lean_object* x_140; lean_object* x_141; +lean_dec(x_58); +lean_dec(x_47); +x_139 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_139, 0, x_45); +lean_ctor_set(x_139, 1, x_46); +x_140 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_140, 0, x_139); +if (lean_is_scalar(x_54)) { + x_141 = lean_alloc_ctor(0, 2, 0); +} else { + x_141 = x_54; +} +lean_ctor_set(x_141, 0, x_140); +lean_ctor_set(x_141, 1, x_57); +x_20 = x_141; +goto block_36; +} +else +{ +lean_object* x_142; +lean_dec(x_54); +x_142 = lean_box(0); +x_59 = x_142; +goto block_66; +} +} +} +} +else +{ +lean_object* x_143; uint8_t x_144; +x_143 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__22(x_43, x_111, x_113, x_117); +x_144 = !lean_is_exclusive(x_43); +if (x_144 == 0) +{ +lean_object* x_145; lean_object* x_146; lean_object* x_147; uint8_t x_148; +x_145 = lean_ctor_get(x_43, 1); +lean_dec(x_145); +x_146 = lean_ctor_get(x_43, 0); +lean_dec(x_146); +x_147 = lean_ctor_get(x_143, 0); +lean_inc(x_147); +lean_dec(x_143); +x_148 = lean_unbox(x_147); +lean_dec(x_147); +if (x_148 == 0) +{ +lean_object* x_149; lean_object* x_150; +lean_dec(x_58); +lean_dec(x_47); +x_149 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_149, 0, x_43); +if (lean_is_scalar(x_54)) { + x_150 = lean_alloc_ctor(0, 2, 0); +} else { + x_150 = x_54; +} +lean_ctor_set(x_150, 0, x_149); +lean_ctor_set(x_150, 1, x_57); +x_20 = x_150; +goto block_36; +} +else +{ +lean_object* x_151; +lean_free_object(x_43); +lean_dec(x_54); +x_151 = lean_box(0); +x_59 = x_151; +goto block_66; +} +} +else +{ +lean_object* x_152; uint8_t x_153; +lean_dec(x_43); +x_152 = lean_ctor_get(x_143, 0); +lean_inc(x_152); +lean_dec(x_143); +x_153 = lean_unbox(x_152); +lean_dec(x_152); +if (x_153 == 0) +{ +lean_object* x_154; lean_object* x_155; lean_object* x_156; +lean_dec(x_58); +lean_dec(x_47); +x_154 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_154, 0, x_45); +lean_ctor_set(x_154, 1, x_46); +x_155 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_155, 0, x_154); +if (lean_is_scalar(x_54)) { + x_156 = lean_alloc_ctor(0, 2, 0); +} else { + x_156 = x_54; +} +lean_ctor_set(x_156, 0, x_155); +lean_ctor_set(x_156, 1, x_57); +x_20 = x_156; +goto block_36; +} +else +{ +lean_object* x_157; +lean_dec(x_54); +x_157 = lean_box(0); +x_59 = x_157; +goto block_66; +} +} +} +} +else +{ +lean_object* x_158; +lean_dec(x_114); +lean_dec(x_113); +lean_dec(x_111); +lean_dec(x_54); +lean_dec(x_43); +x_158 = lean_box(0); +x_59 = x_158; +goto block_66; +} +} +} +block_66: +{ +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_dec(x_59); +x_60 = lean_box(0); +lean_inc(x_47); +x_61 = l_Std_RBNode_insert___at_Lean_NameSet_insert___spec__1(x_46, x_47, x_60); +x_62 = l_Std_RBNode_insert___at_Lean_NameSet_insert___spec__1(x_45, x_47, x_60); +x_63 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_63, 0, x_62); -lean_ctor_set(x_63, 1, x_55); -x_20 = x_63; +lean_ctor_set(x_63, 1, x_61); +x_64 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_64, 0, x_63); +if (lean_is_scalar(x_58)) { + x_65 = lean_alloc_ctor(0, 2, 0); +} else { + x_65 = x_58; +} +lean_ctor_set(x_65, 0, x_64); +lean_ctor_set(x_65, 1, x_57); +x_20 = x_65; goto block_36; } } else { -uint8_t x_165; +uint8_t x_167; lean_dec(x_47); lean_dec(x_44); -x_165 = !lean_is_exclusive(x_43); -if (x_165 == 0) +x_167 = !lean_is_exclusive(x_43); +if (x_167 == 0) { -lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; -x_166 = lean_ctor_get(x_43, 1); -lean_dec(x_166); -x_167 = lean_ctor_get(x_43, 0); -lean_dec(x_167); -x_168 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_168, 0, x_43); -x_169 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_169, 0, x_168); -lean_ctor_set(x_169, 1, x_11); -x_20 = x_169; -goto block_36; -} -else -{ -lean_object* x_170; lean_object* x_171; lean_object* x_172; -lean_dec(x_43); -x_170 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_170, 0, x_45); -lean_ctor_set(x_170, 1, x_46); -x_171 = lean_alloc_ctor(1, 1, 0); +lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; +x_168 = lean_ctor_get(x_43, 1); +lean_dec(x_168); +x_169 = lean_ctor_get(x_43, 0); +lean_dec(x_169); +x_170 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_170, 0, x_43); +x_171 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_171, 0, x_170); +lean_ctor_set(x_171, 1, x_11); +x_20 = x_171; +goto block_36; +} +else +{ +lean_object* x_172; lean_object* x_173; lean_object* x_174; +lean_dec(x_43); x_172 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_172, 0, x_171); -lean_ctor_set(x_172, 1, x_11); -x_20 = x_172; +lean_ctor_set(x_172, 0, x_45); +lean_ctor_set(x_172, 1, x_46); +x_173 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_173, 0, x_172); +x_174 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_174, 0, x_173); +lean_ctor_set(x_174, 1, x_11); +x_20 = x_174; goto block_36; } } } else { -uint8_t x_173; +uint8_t x_175; lean_dec(x_47); lean_dec(x_44); -x_173 = !lean_is_exclusive(x_43); -if (x_173 == 0) +x_175 = !lean_is_exclusive(x_43); +if (x_175 == 0) { -lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; -x_174 = lean_ctor_get(x_43, 1); -lean_dec(x_174); -x_175 = lean_ctor_get(x_43, 0); -lean_dec(x_175); -x_176 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_176, 0, x_43); -x_177 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_177, 0, x_176); -lean_ctor_set(x_177, 1, x_11); -x_20 = x_177; +lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; +x_176 = lean_ctor_get(x_43, 1); +lean_dec(x_176); +x_177 = lean_ctor_get(x_43, 0); +lean_dec(x_177); +x_178 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_178, 0, x_43); +x_179 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_179, 0, x_178); +lean_ctor_set(x_179, 1, x_11); +x_20 = x_179; goto block_36; } else { -lean_object* x_178; lean_object* x_179; lean_object* x_180; +lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_dec(x_43); -x_178 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_178, 0, x_45); -lean_ctor_set(x_178, 1, x_46); -x_179 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_179, 0, x_178); x_180 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_180, 0, x_179); -lean_ctor_set(x_180, 1, x_11); -x_20 = x_180; +lean_ctor_set(x_180, 0, x_45); +lean_ctor_set(x_180, 1, x_46); +x_181 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_181, 0, x_180); +x_182 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_182, 0, x_181); +lean_ctor_set(x_182, 1, x_11); +x_20 = x_182; +goto block_36; +} +} +} +else +{ +uint8_t x_183; +lean_dec(x_47); +lean_dec(x_44); +x_183 = !lean_is_exclusive(x_43); +if (x_183 == 0) +{ +lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; +x_184 = lean_ctor_get(x_43, 1); +lean_dec(x_184); +x_185 = lean_ctor_get(x_43, 0); +lean_dec(x_185); +x_186 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_186, 0, x_43); +x_187 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_187, 0, x_186); +lean_ctor_set(x_187, 1, x_11); +x_20 = x_187; +goto block_36; +} +else +{ +lean_object* x_188; lean_object* x_189; lean_object* x_190; +lean_dec(x_43); +x_188 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_188, 0, x_45); +lean_ctor_set(x_188, 1, x_46); +x_189 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_189, 0, x_188); +x_190 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_190, 0, x_189); +lean_ctor_set(x_190, 1, x_11); +x_20 = x_190; goto block_36; } } @@ -16995,649 +17212,692 @@ uint8_t x_49; x_49 = l_Lean_LocalDecl_isAuxDecl(x_44); if (x_49 == 0) { -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_50 = lean_st_ref_get(x_10, x_11); -x_51 = lean_ctor_get(x_50, 1); -lean_inc(x_51); -if (lean_is_exclusive(x_50)) { - lean_ctor_release(x_50, 0); - lean_ctor_release(x_50, 1); - x_52 = x_50; +uint8_t x_50; uint8_t x_51; +x_50 = l_Lean_LocalDecl_binderInfo(x_44); +x_51 = l_Lean_BinderInfo_isInstImplicit(x_50); +if (x_51 == 0) +{ +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; +x_52 = lean_st_ref_get(x_10, x_11); +x_53 = lean_ctor_get(x_52, 1); +lean_inc(x_53); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_54 = x_52; } else { - lean_dec_ref(x_50); - x_52 = lean_box(0); + lean_dec_ref(x_52); + x_54 = lean_box(0); } -x_53 = lean_st_ref_get(x_8, x_51); -x_54 = lean_ctor_get(x_53, 0); -lean_inc(x_54); -x_55 = lean_ctor_get(x_53, 1); -lean_inc(x_55); -if (lean_is_exclusive(x_53)) { - lean_ctor_release(x_53, 0); - lean_ctor_release(x_53, 1); - x_56 = x_53; +x_55 = lean_st_ref_get(x_8, x_53); +x_56 = lean_ctor_get(x_55, 0); +lean_inc(x_56); +x_57 = lean_ctor_get(x_55, 1); +lean_inc(x_57); +if (lean_is_exclusive(x_55)) { + lean_ctor_release(x_55, 0); + lean_ctor_release(x_55, 1); + x_58 = x_55; } else { - lean_dec_ref(x_53); - x_56 = lean_box(0); + lean_dec_ref(x_55); + x_58 = lean_box(0); } if (lean_obj_tag(x_44) == 0) { -lean_object* x_65; lean_object* x_66; uint8_t x_67; -x_65 = lean_ctor_get(x_54, 0); -lean_inc(x_65); -lean_dec(x_54); -x_66 = lean_ctor_get(x_44, 3); -lean_inc(x_66); -lean_dec(x_44); -x_67 = l_Lean_Expr_hasFVar(x_66); -if (x_67 == 0) -{ -uint8_t x_68; -x_68 = l_Lean_Expr_hasMVar(x_66); -if (x_68 == 0) -{ -uint8_t x_69; -lean_dec(x_66); -lean_dec(x_65); +lean_object* x_67; lean_object* x_68; uint8_t x_69; +x_67 = lean_ctor_get(x_56, 0); +lean_inc(x_67); lean_dec(x_56); -lean_dec(x_47); -x_69 = !lean_is_exclusive(x_43); +x_68 = lean_ctor_get(x_44, 3); +lean_inc(x_68); +lean_dec(x_44); +x_69 = l_Lean_Expr_hasFVar(x_68); if (x_69 == 0) { -lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; -x_70 = lean_ctor_get(x_43, 1); -lean_dec(x_70); -x_71 = lean_ctor_get(x_43, 0); -lean_dec(x_71); -x_72 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_72, 0, x_43); -if (lean_is_scalar(x_52)) { - x_73 = lean_alloc_ctor(0, 2, 0); -} else { - x_73 = x_52; -} -lean_ctor_set(x_73, 0, x_72); -lean_ctor_set(x_73, 1, x_55); -x_20 = x_73; -goto block_36; -} -else +uint8_t x_70; +x_70 = l_Lean_Expr_hasMVar(x_68); +if (x_70 == 0) { -lean_object* x_74; lean_object* x_75; lean_object* x_76; -lean_dec(x_43); -x_74 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_74, 0, x_45); -lean_ctor_set(x_74, 1, x_46); -x_75 = lean_alloc_ctor(1, 1, 0); +uint8_t x_71; +lean_dec(x_68); +lean_dec(x_67); +lean_dec(x_58); +lean_dec(x_47); +x_71 = !lean_is_exclusive(x_43); +if (x_71 == 0) +{ +lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_72 = lean_ctor_get(x_43, 1); +lean_dec(x_72); +x_73 = lean_ctor_get(x_43, 0); +lean_dec(x_73); +x_74 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_74, 0, x_43); +if (lean_is_scalar(x_54)) { + x_75 = lean_alloc_ctor(0, 2, 0); +} else { + x_75 = x_54; +} lean_ctor_set(x_75, 0, x_74); -if (lean_is_scalar(x_52)) { - x_76 = lean_alloc_ctor(0, 2, 0); -} else { - x_76 = x_52; +lean_ctor_set(x_75, 1, x_57); +x_20 = x_75; +goto block_36; } -lean_ctor_set(x_76, 0, x_75); -lean_ctor_set(x_76, 1, x_55); -x_20 = x_76; +else +{ +lean_object* x_76; lean_object* x_77; lean_object* x_78; +lean_dec(x_43); +x_76 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_76, 0, x_45); +lean_ctor_set(x_76, 1, x_46); +x_77 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_77, 0, x_76); +if (lean_is_scalar(x_54)) { + x_78 = lean_alloc_ctor(0, 2, 0); +} else { + x_78 = x_54; +} +lean_ctor_set(x_78, 0, x_77); +lean_ctor_set(x_78, 1, x_57); +x_20 = x_78; goto block_36; } } else { -lean_object* x_77; lean_object* x_78; uint8_t x_79; -x_77 = l_Std_HashSet_instInhabitedHashSet___closed__1; -x_78 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__1(x_43, x_65, x_66, x_77); -x_79 = !lean_is_exclusive(x_43); -if (x_79 == 0) +lean_object* x_79; lean_object* x_80; uint8_t x_81; +x_79 = l_Std_HashSet_instInhabitedHashSet___closed__1; +x_80 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__1(x_43, x_67, x_68, x_79); +x_81 = !lean_is_exclusive(x_43); +if (x_81 == 0) { -lean_object* x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; -x_80 = lean_ctor_get(x_43, 1); -lean_dec(x_80); -x_81 = lean_ctor_get(x_43, 0); -lean_dec(x_81); -x_82 = lean_ctor_get(x_78, 0); -lean_inc(x_82); -lean_dec(x_78); -x_83 = lean_unbox(x_82); +lean_object* x_82; lean_object* x_83; lean_object* x_84; uint8_t x_85; +x_82 = lean_ctor_get(x_43, 1); lean_dec(x_82); -if (x_83 == 0) +x_83 = lean_ctor_get(x_43, 0); +lean_dec(x_83); +x_84 = lean_ctor_get(x_80, 0); +lean_inc(x_84); +lean_dec(x_80); +x_85 = lean_unbox(x_84); +lean_dec(x_84); +if (x_85 == 0) { -lean_object* x_84; lean_object* x_85; -lean_dec(x_56); +lean_object* x_86; lean_object* x_87; +lean_dec(x_58); lean_dec(x_47); -x_84 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_84, 0, x_43); -if (lean_is_scalar(x_52)) { - x_85 = lean_alloc_ctor(0, 2, 0); +x_86 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_86, 0, x_43); +if (lean_is_scalar(x_54)) { + x_87 = lean_alloc_ctor(0, 2, 0); } else { - x_85 = x_52; + x_87 = x_54; } -lean_ctor_set(x_85, 0, x_84); -lean_ctor_set(x_85, 1, x_55); -x_20 = x_85; +lean_ctor_set(x_87, 0, x_86); +lean_ctor_set(x_87, 1, x_57); +x_20 = x_87; goto block_36; } else { -lean_object* x_86; +lean_object* x_88; lean_free_object(x_43); -lean_dec(x_52); -x_86 = lean_box(0); -x_57 = x_86; -goto block_64; -} -} -else -{ -lean_object* x_87; uint8_t x_88; -lean_dec(x_43); -x_87 = lean_ctor_get(x_78, 0); -lean_inc(x_87); -lean_dec(x_78); -x_88 = lean_unbox(x_87); -lean_dec(x_87); -if (x_88 == 0) -{ -lean_object* x_89; lean_object* x_90; lean_object* x_91; -lean_dec(x_56); -lean_dec(x_47); -x_89 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_89, 0, x_45); -lean_ctor_set(x_89, 1, x_46); -x_90 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_90, 0, x_89); -if (lean_is_scalar(x_52)) { - x_91 = lean_alloc_ctor(0, 2, 0); -} else { - x_91 = x_52; -} -lean_ctor_set(x_91, 0, x_90); -lean_ctor_set(x_91, 1, x_55); -x_20 = x_91; -goto block_36; -} -else -{ -lean_object* x_92; -lean_dec(x_52); -x_92 = lean_box(0); -x_57 = x_92; -goto block_64; -} -} -} -} -else -{ -lean_object* x_93; lean_object* x_94; uint8_t x_95; -x_93 = l_Std_HashSet_instInhabitedHashSet___closed__1; -x_94 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__8(x_43, x_65, x_66, x_93); -x_95 = !lean_is_exclusive(x_43); -if (x_95 == 0) -{ -lean_object* x_96; lean_object* x_97; lean_object* x_98; uint8_t x_99; -x_96 = lean_ctor_get(x_43, 1); -lean_dec(x_96); -x_97 = lean_ctor_get(x_43, 0); -lean_dec(x_97); -x_98 = lean_ctor_get(x_94, 0); -lean_inc(x_98); -lean_dec(x_94); -x_99 = lean_unbox(x_98); -lean_dec(x_98); -if (x_99 == 0) -{ -lean_object* x_100; lean_object* x_101; -lean_dec(x_56); -lean_dec(x_47); -x_100 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_100, 0, x_43); -if (lean_is_scalar(x_52)) { - x_101 = lean_alloc_ctor(0, 2, 0); -} else { - x_101 = x_52; -} -lean_ctor_set(x_101, 0, x_100); -lean_ctor_set(x_101, 1, x_55); -x_20 = x_101; -goto block_36; -} -else -{ -lean_object* x_102; -lean_free_object(x_43); -lean_dec(x_52); -x_102 = lean_box(0); -x_57 = x_102; -goto block_64; -} -} -else -{ -lean_object* x_103; uint8_t x_104; -lean_dec(x_43); -x_103 = lean_ctor_get(x_94, 0); -lean_inc(x_103); -lean_dec(x_94); -x_104 = lean_unbox(x_103); -lean_dec(x_103); -if (x_104 == 0) -{ -lean_object* x_105; lean_object* x_106; lean_object* x_107; -lean_dec(x_56); -lean_dec(x_47); -x_105 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_105, 0, x_45); -lean_ctor_set(x_105, 1, x_46); -x_106 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_106, 0, x_105); -if (lean_is_scalar(x_52)) { - x_107 = lean_alloc_ctor(0, 2, 0); -} else { - x_107 = x_52; -} -lean_ctor_set(x_107, 0, x_106); -lean_ctor_set(x_107, 1, x_55); -x_20 = x_107; -goto block_36; -} -else -{ -lean_object* x_108; -lean_dec(x_52); -x_108 = lean_box(0); -x_57 = x_108; -goto block_64; -} -} -} -} -else -{ -lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; uint8_t x_158; -x_109 = lean_ctor_get(x_54, 0); -lean_inc(x_109); lean_dec(x_54); -x_110 = lean_ctor_get(x_44, 3); -lean_inc(x_110); -x_111 = lean_ctor_get(x_44, 4); -lean_inc(x_111); -lean_dec(x_44); -x_158 = l_Lean_Expr_hasFVar(x_110); -if (x_158 == 0) -{ -uint8_t x_159; -x_159 = l_Lean_Expr_hasMVar(x_110); -if (x_159 == 0) -{ -lean_object* x_160; -lean_dec(x_110); -x_160 = l_Lean_MetavarContext_findLocalDeclDependsOn___closed__1; -x_112 = x_160; -goto block_157; +x_88 = lean_box(0); +x_59 = x_88; +goto block_66; +} } else { -lean_object* x_161; lean_object* x_162; -x_161 = l_Std_HashSet_instInhabitedHashSet___closed__1; -lean_inc(x_109); -x_162 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__29(x_43, x_109, x_110, x_161); -x_112 = x_162; -goto block_157; +lean_object* x_89; uint8_t x_90; +lean_dec(x_43); +x_89 = lean_ctor_get(x_80, 0); +lean_inc(x_89); +lean_dec(x_80); +x_90 = lean_unbox(x_89); +lean_dec(x_89); +if (x_90 == 0) +{ +lean_object* x_91; lean_object* x_92; lean_object* x_93; +lean_dec(x_58); +lean_dec(x_47); +x_91 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_91, 0, x_45); +lean_ctor_set(x_91, 1, x_46); +x_92 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_92, 0, x_91); +if (lean_is_scalar(x_54)) { + x_93 = lean_alloc_ctor(0, 2, 0); +} else { + x_93 = x_54; } +lean_ctor_set(x_93, 0, x_92); +lean_ctor_set(x_93, 1, x_57); +x_20 = x_93; +goto block_36; +} +else +{ +lean_object* x_94; +lean_dec(x_54); +x_94 = lean_box(0); +x_59 = x_94; +goto block_66; +} +} +} +} +else +{ +lean_object* x_95; lean_object* x_96; uint8_t x_97; +x_95 = l_Std_HashSet_instInhabitedHashSet___closed__1; +x_96 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__8(x_43, x_67, x_68, x_95); +x_97 = !lean_is_exclusive(x_43); +if (x_97 == 0) +{ +lean_object* x_98; lean_object* x_99; lean_object* x_100; uint8_t x_101; +x_98 = lean_ctor_get(x_43, 1); +lean_dec(x_98); +x_99 = lean_ctor_get(x_43, 0); +lean_dec(x_99); +x_100 = lean_ctor_get(x_96, 0); +lean_inc(x_100); +lean_dec(x_96); +x_101 = lean_unbox(x_100); +lean_dec(x_100); +if (x_101 == 0) +{ +lean_object* x_102; lean_object* x_103; +lean_dec(x_58); +lean_dec(x_47); +x_102 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_102, 0, x_43); +if (lean_is_scalar(x_54)) { + x_103 = lean_alloc_ctor(0, 2, 0); +} else { + x_103 = x_54; +} +lean_ctor_set(x_103, 0, x_102); +lean_ctor_set(x_103, 1, x_57); +x_20 = x_103; +goto block_36; +} +else +{ +lean_object* x_104; +lean_free_object(x_43); +lean_dec(x_54); +x_104 = lean_box(0); +x_59 = x_104; +goto block_66; +} +} +else +{ +lean_object* x_105; uint8_t x_106; +lean_dec(x_43); +x_105 = lean_ctor_get(x_96, 0); +lean_inc(x_105); +lean_dec(x_96); +x_106 = lean_unbox(x_105); +lean_dec(x_105); +if (x_106 == 0) +{ +lean_object* x_107; lean_object* x_108; lean_object* x_109; +lean_dec(x_58); +lean_dec(x_47); +x_107 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_107, 0, x_45); +lean_ctor_set(x_107, 1, x_46); +x_108 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_108, 0, x_107); +if (lean_is_scalar(x_54)) { + x_109 = lean_alloc_ctor(0, 2, 0); +} else { + x_109 = x_54; +} +lean_ctor_set(x_109, 0, x_108); +lean_ctor_set(x_109, 1, x_57); +x_20 = x_109; +goto block_36; +} +else +{ +lean_object* x_110; +lean_dec(x_54); +x_110 = lean_box(0); +x_59 = x_110; +goto block_66; +} +} +} +} +else +{ +lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; uint8_t x_160; +x_111 = lean_ctor_get(x_56, 0); +lean_inc(x_111); +lean_dec(x_56); +x_112 = lean_ctor_get(x_44, 3); +lean_inc(x_112); +x_113 = lean_ctor_get(x_44, 4); +lean_inc(x_113); +lean_dec(x_44); +x_160 = l_Lean_Expr_hasFVar(x_112); +if (x_160 == 0) +{ +uint8_t x_161; +x_161 = l_Lean_Expr_hasMVar(x_112); +if (x_161 == 0) +{ +lean_object* x_162; +lean_dec(x_112); +x_162 = l_Lean_MetavarContext_findLocalDeclDependsOn___closed__1; +x_114 = x_162; +goto block_159; } else { lean_object* x_163; lean_object* x_164; x_163 = l_Std_HashSet_instInhabitedHashSet___closed__1; -lean_inc(x_109); -x_164 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__36(x_43, x_109, x_110, x_163); -x_112 = x_164; -goto block_157; +lean_inc(x_111); +x_164 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__29(x_43, x_111, x_112, x_163); +x_114 = x_164; +goto block_159; } -block_157: +} +else { -lean_object* x_113; uint8_t x_114; -x_113 = lean_ctor_get(x_112, 0); -lean_inc(x_113); -x_114 = lean_unbox(x_113); -lean_dec(x_113); -if (x_114 == 0) +lean_object* x_165; lean_object* x_166; +x_165 = l_Std_HashSet_instInhabitedHashSet___closed__1; +lean_inc(x_111); +x_166 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__36(x_43, x_111, x_112, x_165); +x_114 = x_166; +goto block_159; +} +block_159: { lean_object* x_115; uint8_t x_116; -x_115 = lean_ctor_get(x_112, 1); +x_115 = lean_ctor_get(x_114, 0); lean_inc(x_115); -lean_dec(x_112); -x_116 = l_Lean_Expr_hasFVar(x_111); +x_116 = lean_unbox(x_115); +lean_dec(x_115); if (x_116 == 0) { -uint8_t x_117; -x_117 = l_Lean_Expr_hasMVar(x_111); -if (x_117 == 0) -{ -uint8_t x_118; -lean_dec(x_115); -lean_dec(x_111); -lean_dec(x_109); -lean_dec(x_56); -lean_dec(x_47); -x_118 = !lean_is_exclusive(x_43); +lean_object* x_117; uint8_t x_118; +x_117 = lean_ctor_get(x_114, 1); +lean_inc(x_117); +lean_dec(x_114); +x_118 = l_Lean_Expr_hasFVar(x_113); if (x_118 == 0) { -lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; -x_119 = lean_ctor_get(x_43, 1); -lean_dec(x_119); -x_120 = lean_ctor_get(x_43, 0); -lean_dec(x_120); -x_121 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_121, 0, x_43); -if (lean_is_scalar(x_52)) { - x_122 = lean_alloc_ctor(0, 2, 0); -} else { - x_122 = x_52; -} -lean_ctor_set(x_122, 0, x_121); -lean_ctor_set(x_122, 1, x_55); -x_20 = x_122; -goto block_36; -} -else +uint8_t x_119; +x_119 = l_Lean_Expr_hasMVar(x_113); +if (x_119 == 0) { -lean_object* x_123; lean_object* x_124; lean_object* x_125; -lean_dec(x_43); -x_123 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_123, 0, x_45); -lean_ctor_set(x_123, 1, x_46); -x_124 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_124, 0, x_123); -if (lean_is_scalar(x_52)) { - x_125 = lean_alloc_ctor(0, 2, 0); -} else { - x_125 = x_52; -} -lean_ctor_set(x_125, 0, x_124); -lean_ctor_set(x_125, 1, x_55); -x_20 = x_125; -goto block_36; -} -} -else -{ -lean_object* x_126; uint8_t x_127; -x_126 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__15(x_43, x_109, x_111, x_115); -x_127 = !lean_is_exclusive(x_43); -if (x_127 == 0) -{ -lean_object* x_128; lean_object* x_129; lean_object* x_130; uint8_t x_131; -x_128 = lean_ctor_get(x_43, 1); -lean_dec(x_128); -x_129 = lean_ctor_get(x_43, 0); -lean_dec(x_129); -x_130 = lean_ctor_get(x_126, 0); -lean_inc(x_130); -lean_dec(x_126); -x_131 = lean_unbox(x_130); -lean_dec(x_130); -if (x_131 == 0) -{ -lean_object* x_132; lean_object* x_133; -lean_dec(x_56); -lean_dec(x_47); -x_132 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_132, 0, x_43); -if (lean_is_scalar(x_52)) { - x_133 = lean_alloc_ctor(0, 2, 0); -} else { - x_133 = x_52; -} -lean_ctor_set(x_133, 0, x_132); -lean_ctor_set(x_133, 1, x_55); -x_20 = x_133; -goto block_36; -} -else -{ -lean_object* x_134; -lean_free_object(x_43); -lean_dec(x_52); -x_134 = lean_box(0); -x_57 = x_134; -goto block_64; -} -} -else -{ -lean_object* x_135; uint8_t x_136; -lean_dec(x_43); -x_135 = lean_ctor_get(x_126, 0); -lean_inc(x_135); -lean_dec(x_126); -x_136 = lean_unbox(x_135); -lean_dec(x_135); -if (x_136 == 0) -{ -lean_object* x_137; lean_object* x_138; lean_object* x_139; -lean_dec(x_56); -lean_dec(x_47); -x_137 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_137, 0, x_45); -lean_ctor_set(x_137, 1, x_46); -x_138 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_138, 0, x_137); -if (lean_is_scalar(x_52)) { - x_139 = lean_alloc_ctor(0, 2, 0); -} else { - x_139 = x_52; -} -lean_ctor_set(x_139, 0, x_138); -lean_ctor_set(x_139, 1, x_55); -x_20 = x_139; -goto block_36; -} -else -{ -lean_object* x_140; -lean_dec(x_52); -x_140 = lean_box(0); -x_57 = x_140; -goto block_64; -} -} -} -} -else -{ -lean_object* x_141; uint8_t x_142; -x_141 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__22(x_43, x_109, x_111, x_115); -x_142 = !lean_is_exclusive(x_43); -if (x_142 == 0) -{ -lean_object* x_143; lean_object* x_144; lean_object* x_145; uint8_t x_146; -x_143 = lean_ctor_get(x_43, 1); -lean_dec(x_143); -x_144 = lean_ctor_get(x_43, 0); -lean_dec(x_144); -x_145 = lean_ctor_get(x_141, 0); -lean_inc(x_145); -lean_dec(x_141); -x_146 = lean_unbox(x_145); -lean_dec(x_145); -if (x_146 == 0) -{ -lean_object* x_147; lean_object* x_148; -lean_dec(x_56); -lean_dec(x_47); -x_147 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_147, 0, x_43); -if (lean_is_scalar(x_52)) { - x_148 = lean_alloc_ctor(0, 2, 0); -} else { - x_148 = x_52; -} -lean_ctor_set(x_148, 0, x_147); -lean_ctor_set(x_148, 1, x_55); -x_20 = x_148; -goto block_36; -} -else -{ -lean_object* x_149; -lean_free_object(x_43); -lean_dec(x_52); -x_149 = lean_box(0); -x_57 = x_149; -goto block_64; -} -} -else -{ -lean_object* x_150; uint8_t x_151; -lean_dec(x_43); -x_150 = lean_ctor_get(x_141, 0); -lean_inc(x_150); -lean_dec(x_141); -x_151 = lean_unbox(x_150); -lean_dec(x_150); -if (x_151 == 0) -{ -lean_object* x_152; lean_object* x_153; lean_object* x_154; -lean_dec(x_56); -lean_dec(x_47); -x_152 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_152, 0, x_45); -lean_ctor_set(x_152, 1, x_46); -x_153 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_153, 0, x_152); -if (lean_is_scalar(x_52)) { - x_154 = lean_alloc_ctor(0, 2, 0); -} else { - x_154 = x_52; -} -lean_ctor_set(x_154, 0, x_153); -lean_ctor_set(x_154, 1, x_55); -x_20 = x_154; -goto block_36; -} -else -{ -lean_object* x_155; -lean_dec(x_52); -x_155 = lean_box(0); -x_57 = x_155; -goto block_64; -} -} -} -} -else -{ -lean_object* x_156; -lean_dec(x_112); +uint8_t x_120; +lean_dec(x_117); +lean_dec(x_113); lean_dec(x_111); -lean_dec(x_109); -lean_dec(x_52); -lean_dec(x_43); -x_156 = lean_box(0); -x_57 = x_156; -goto block_64; -} -} -} -block_64: +lean_dec(x_58); +lean_dec(x_47); +x_120 = !lean_is_exclusive(x_43); +if (x_120 == 0) { -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_dec(x_57); -x_58 = lean_box(0); -lean_inc(x_47); -x_59 = l_Std_RBNode_insert___at_Lean_NameSet_insert___spec__1(x_46, x_47, x_58); -x_60 = l_Std_RBNode_insert___at_Lean_NameSet_insert___spec__1(x_45, x_47, x_58); -x_61 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_61, 0, x_60); -lean_ctor_set(x_61, 1, x_59); -x_62 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_62, 0, x_61); -if (lean_is_scalar(x_56)) { - x_63 = lean_alloc_ctor(0, 2, 0); +lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; +x_121 = lean_ctor_get(x_43, 1); +lean_dec(x_121); +x_122 = lean_ctor_get(x_43, 0); +lean_dec(x_122); +x_123 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_123, 0, x_43); +if (lean_is_scalar(x_54)) { + x_124 = lean_alloc_ctor(0, 2, 0); } else { - x_63 = x_56; + x_124 = x_54; } +lean_ctor_set(x_124, 0, x_123); +lean_ctor_set(x_124, 1, x_57); +x_20 = x_124; +goto block_36; +} +else +{ +lean_object* x_125; lean_object* x_126; lean_object* x_127; +lean_dec(x_43); +x_125 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_125, 0, x_45); +lean_ctor_set(x_125, 1, x_46); +x_126 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_126, 0, x_125); +if (lean_is_scalar(x_54)) { + x_127 = lean_alloc_ctor(0, 2, 0); +} else { + x_127 = x_54; +} +lean_ctor_set(x_127, 0, x_126); +lean_ctor_set(x_127, 1, x_57); +x_20 = x_127; +goto block_36; +} +} +else +{ +lean_object* x_128; uint8_t x_129; +x_128 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__15(x_43, x_111, x_113, x_117); +x_129 = !lean_is_exclusive(x_43); +if (x_129 == 0) +{ +lean_object* x_130; lean_object* x_131; lean_object* x_132; uint8_t x_133; +x_130 = lean_ctor_get(x_43, 1); +lean_dec(x_130); +x_131 = lean_ctor_get(x_43, 0); +lean_dec(x_131); +x_132 = lean_ctor_get(x_128, 0); +lean_inc(x_132); +lean_dec(x_128); +x_133 = lean_unbox(x_132); +lean_dec(x_132); +if (x_133 == 0) +{ +lean_object* x_134; lean_object* x_135; +lean_dec(x_58); +lean_dec(x_47); +x_134 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_134, 0, x_43); +if (lean_is_scalar(x_54)) { + x_135 = lean_alloc_ctor(0, 2, 0); +} else { + x_135 = x_54; +} +lean_ctor_set(x_135, 0, x_134); +lean_ctor_set(x_135, 1, x_57); +x_20 = x_135; +goto block_36; +} +else +{ +lean_object* x_136; +lean_free_object(x_43); +lean_dec(x_54); +x_136 = lean_box(0); +x_59 = x_136; +goto block_66; +} +} +else +{ +lean_object* x_137; uint8_t x_138; +lean_dec(x_43); +x_137 = lean_ctor_get(x_128, 0); +lean_inc(x_137); +lean_dec(x_128); +x_138 = lean_unbox(x_137); +lean_dec(x_137); +if (x_138 == 0) +{ +lean_object* x_139; lean_object* x_140; lean_object* x_141; +lean_dec(x_58); +lean_dec(x_47); +x_139 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_139, 0, x_45); +lean_ctor_set(x_139, 1, x_46); +x_140 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_140, 0, x_139); +if (lean_is_scalar(x_54)) { + x_141 = lean_alloc_ctor(0, 2, 0); +} else { + x_141 = x_54; +} +lean_ctor_set(x_141, 0, x_140); +lean_ctor_set(x_141, 1, x_57); +x_20 = x_141; +goto block_36; +} +else +{ +lean_object* x_142; +lean_dec(x_54); +x_142 = lean_box(0); +x_59 = x_142; +goto block_66; +} +} +} +} +else +{ +lean_object* x_143; uint8_t x_144; +x_143 = l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_collectForwardDeps___spec__22(x_43, x_111, x_113, x_117); +x_144 = !lean_is_exclusive(x_43); +if (x_144 == 0) +{ +lean_object* x_145; lean_object* x_146; lean_object* x_147; uint8_t x_148; +x_145 = lean_ctor_get(x_43, 1); +lean_dec(x_145); +x_146 = lean_ctor_get(x_43, 0); +lean_dec(x_146); +x_147 = lean_ctor_get(x_143, 0); +lean_inc(x_147); +lean_dec(x_143); +x_148 = lean_unbox(x_147); +lean_dec(x_147); +if (x_148 == 0) +{ +lean_object* x_149; lean_object* x_150; +lean_dec(x_58); +lean_dec(x_47); +x_149 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_149, 0, x_43); +if (lean_is_scalar(x_54)) { + x_150 = lean_alloc_ctor(0, 2, 0); +} else { + x_150 = x_54; +} +lean_ctor_set(x_150, 0, x_149); +lean_ctor_set(x_150, 1, x_57); +x_20 = x_150; +goto block_36; +} +else +{ +lean_object* x_151; +lean_free_object(x_43); +lean_dec(x_54); +x_151 = lean_box(0); +x_59 = x_151; +goto block_66; +} +} +else +{ +lean_object* x_152; uint8_t x_153; +lean_dec(x_43); +x_152 = lean_ctor_get(x_143, 0); +lean_inc(x_152); +lean_dec(x_143); +x_153 = lean_unbox(x_152); +lean_dec(x_152); +if (x_153 == 0) +{ +lean_object* x_154; lean_object* x_155; lean_object* x_156; +lean_dec(x_58); +lean_dec(x_47); +x_154 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_154, 0, x_45); +lean_ctor_set(x_154, 1, x_46); +x_155 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_155, 0, x_154); +if (lean_is_scalar(x_54)) { + x_156 = lean_alloc_ctor(0, 2, 0); +} else { + x_156 = x_54; +} +lean_ctor_set(x_156, 0, x_155); +lean_ctor_set(x_156, 1, x_57); +x_20 = x_156; +goto block_36; +} +else +{ +lean_object* x_157; +lean_dec(x_54); +x_157 = lean_box(0); +x_59 = x_157; +goto block_66; +} +} +} +} +else +{ +lean_object* x_158; +lean_dec(x_114); +lean_dec(x_113); +lean_dec(x_111); +lean_dec(x_54); +lean_dec(x_43); +x_158 = lean_box(0); +x_59 = x_158; +goto block_66; +} +} +} +block_66: +{ +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_dec(x_59); +x_60 = lean_box(0); +lean_inc(x_47); +x_61 = l_Std_RBNode_insert___at_Lean_NameSet_insert___spec__1(x_46, x_47, x_60); +x_62 = l_Std_RBNode_insert___at_Lean_NameSet_insert___spec__1(x_45, x_47, x_60); +x_63 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_63, 0, x_62); -lean_ctor_set(x_63, 1, x_55); -x_20 = x_63; +lean_ctor_set(x_63, 1, x_61); +x_64 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_64, 0, x_63); +if (lean_is_scalar(x_58)) { + x_65 = lean_alloc_ctor(0, 2, 0); +} else { + x_65 = x_58; +} +lean_ctor_set(x_65, 0, x_64); +lean_ctor_set(x_65, 1, x_57); +x_20 = x_65; goto block_36; } } else { -uint8_t x_165; +uint8_t x_167; lean_dec(x_47); lean_dec(x_44); -x_165 = !lean_is_exclusive(x_43); -if (x_165 == 0) +x_167 = !lean_is_exclusive(x_43); +if (x_167 == 0) { -lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; -x_166 = lean_ctor_get(x_43, 1); -lean_dec(x_166); -x_167 = lean_ctor_get(x_43, 0); -lean_dec(x_167); -x_168 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_168, 0, x_43); -x_169 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_169, 0, x_168); -lean_ctor_set(x_169, 1, x_11); -x_20 = x_169; -goto block_36; -} -else -{ -lean_object* x_170; lean_object* x_171; lean_object* x_172; -lean_dec(x_43); -x_170 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_170, 0, x_45); -lean_ctor_set(x_170, 1, x_46); -x_171 = lean_alloc_ctor(1, 1, 0); +lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; +x_168 = lean_ctor_get(x_43, 1); +lean_dec(x_168); +x_169 = lean_ctor_get(x_43, 0); +lean_dec(x_169); +x_170 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_170, 0, x_43); +x_171 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_171, 0, x_170); +lean_ctor_set(x_171, 1, x_11); +x_20 = x_171; +goto block_36; +} +else +{ +lean_object* x_172; lean_object* x_173; lean_object* x_174; +lean_dec(x_43); x_172 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_172, 0, x_171); -lean_ctor_set(x_172, 1, x_11); -x_20 = x_172; +lean_ctor_set(x_172, 0, x_45); +lean_ctor_set(x_172, 1, x_46); +x_173 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_173, 0, x_172); +x_174 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_174, 0, x_173); +lean_ctor_set(x_174, 1, x_11); +x_20 = x_174; goto block_36; } } } else { -uint8_t x_173; +uint8_t x_175; lean_dec(x_47); lean_dec(x_44); -x_173 = !lean_is_exclusive(x_43); -if (x_173 == 0) +x_175 = !lean_is_exclusive(x_43); +if (x_175 == 0) { -lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; -x_174 = lean_ctor_get(x_43, 1); -lean_dec(x_174); -x_175 = lean_ctor_get(x_43, 0); -lean_dec(x_175); -x_176 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_176, 0, x_43); -x_177 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_177, 0, x_176); -lean_ctor_set(x_177, 1, x_11); -x_20 = x_177; +lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; +x_176 = lean_ctor_get(x_43, 1); +lean_dec(x_176); +x_177 = lean_ctor_get(x_43, 0); +lean_dec(x_177); +x_178 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_178, 0, x_43); +x_179 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_179, 0, x_178); +lean_ctor_set(x_179, 1, x_11); +x_20 = x_179; goto block_36; } else { -lean_object* x_178; lean_object* x_179; lean_object* x_180; +lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_dec(x_43); -x_178 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_178, 0, x_45); -lean_ctor_set(x_178, 1, x_46); -x_179 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_179, 0, x_178); x_180 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_180, 0, x_179); -lean_ctor_set(x_180, 1, x_11); -x_20 = x_180; +lean_ctor_set(x_180, 0, x_45); +lean_ctor_set(x_180, 1, x_46); +x_181 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_181, 0, x_180); +x_182 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_182, 0, x_181); +lean_ctor_set(x_182, 1, x_11); +x_20 = x_182; +goto block_36; +} +} +} +else +{ +uint8_t x_183; +lean_dec(x_47); +lean_dec(x_44); +x_183 = !lean_is_exclusive(x_43); +if (x_183 == 0) +{ +lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; +x_184 = lean_ctor_get(x_43, 1); +lean_dec(x_184); +x_185 = lean_ctor_get(x_43, 0); +lean_dec(x_185); +x_186 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_186, 0, x_43); +x_187 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_187, 0, x_186); +lean_ctor_set(x_187, 1, x_11); +x_20 = x_187; +goto block_36; +} +else +{ +lean_object* x_188; lean_object* x_189; lean_object* x_190; +lean_dec(x_43); +x_188 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_188, 0, x_45); +lean_ctor_set(x_188, 1, x_46); +x_189 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_189, 0, x_188); +x_190 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_190, 0, x_189); +lean_ctor_set(x_190, 1, x_11); +x_20 = x_190; goto block_36; } } @@ -21613,7 +21873,7 @@ lean_dec(x_35); x_38 = lean_ctor_get(x_37, 0); lean_inc(x_38); lean_dec(x_37); -x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__3; +x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__3; x_40 = lean_name_mk_string(x_38, x_39); lean_inc(x_40); x_41 = l_Lean_Meta_getElimInfo(x_40, x_8, x_9, x_10, x_11, x_36); @@ -24199,7 +24459,7 @@ x_15 = l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_elabTargets___spec__1(x_13, return x_15; } } -static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_4683____closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_4686____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -24209,11 +24469,11 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_4683_(lean_object* x_1) { +lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_4686_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_4683____closed__1; +x_2 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_4686____closed__1; x_3 = l_Lean_registerTraceClass(x_2, x_1); return x_3; } @@ -25183,9 +25443,9 @@ l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_elabTaggedTerm___lamb lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_elabTaggedTerm___lambda__1___closed__2); l_Lean_Elab_Tactic_elabTargets___boxed__const__1 = _init_l_Lean_Elab_Tactic_elabTargets___boxed__const__1(); lean_mark_persistent(l_Lean_Elab_Tactic_elabTargets___boxed__const__1); -l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_4683____closed__1 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_4683____closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_4683____closed__1); -res = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_4683_(lean_io_mk_world()); +l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_4686____closed__1 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_4686____closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_4686____closed__1); +res = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_4686_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Elab_Tactic_evalCases___lambda__3___boxed__const__1 = _init_l_Lean_Elab_Tactic_evalCases___lambda__3___boxed__const__1(); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Match.c b/stage0/stdlib/Lean/Elab/Tactic/Match.c index 625bc41305..75f3f17297 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Match.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Match.c @@ -40,11 +40,11 @@ size_t l_USize_sub(size_t, size_t); extern lean_object* l_Array_empty___closed__1; lean_object* lean_st_ref_get(lean_object*, lean_object*); lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*); +extern lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297____closed__1; lean_object* l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTerm_match__1(lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_evalEraseAuxDiscrs___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Std_Data_PersistentArray_0__Std_PersistentArray_foldlFromMAux___at_Lean_Elab_Tactic_evalEraseAuxDiscrs___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Tactic_evalIntro___spec__1___rarg(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7290____closed__1; lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(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*); @@ -105,9 +105,9 @@ lean_object* l_Lean_Elab_Tactic_AuxMatchTermState_nextIdx___default; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); size_t l_USize_land(size_t, size_t); lean_object* l_Lean_LocalDecl_fvarId(lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; extern lean_object* l_Lean_nullKind___closed__2; lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_evalEraseAuxDiscrs___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_evalEraseAuxDiscrs___spec__7(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_Parser_Tactic_refine___closed__1; lean_object* l_Lean_Elab_Tactic_evalMatch_match__1___rarg(lean_object*, lean_object*); @@ -934,7 +934,7 @@ x_27 = l_myMacro____x40_Init_Notation___hyg_13954____closed__10; x_28 = l_Lean_Syntax_setKind(x_26, x_27); x_29 = lean_unsigned_to_nat(3u); x_30 = l_Lean_Syntax_getArg(x_28, x_29); -x_31 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; +x_31 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; lean_inc(x_30); x_32 = l_Lean_Syntax_isOfKind(x_30, x_31); if (x_32 == 0) @@ -1381,7 +1381,7 @@ lean_dec(x_185); x_224 = lean_ctor_get(x_6, 0); lean_inc(x_224); lean_dec(x_6); -x_225 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7290____closed__1; +x_225 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_7297____closed__1; x_226 = l_Lean_Name_appendIndexAfter(x_225, x_224); x_227 = l_Lean_Name_append(x_1, x_226); x_228 = l_Lean_mkIdentFrom(x_30, x_227); diff --git a/stage0/stdlib/Lean/Elab/Term.c b/stage0/stdlib/Lean/Elab/Term.c index ed9b019159..74c27d0df3 100644 --- a/stage0/stdlib/Lean/Elab/Term.c +++ b/stage0/stdlib/Lean/Elab/Term.c @@ -78,6 +78,7 @@ lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_isExplicitApp___boxed( lean_object* l_Lean_Level_collectMVars(lean_object*, lean_object*); lean_object* lean_erase_macro_scopes(lean_object*); lean_object* l_ReaderT_read___at_Lean_Elab_Term_instMonadLogTermElabM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12724____closed__1; extern lean_object* l_myMacro____x40_Init_Coe___hyg_166____closed__1; lean_object* l_Lean_stringToMessageData(lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Term_throwMVarError___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -109,7 +110,6 @@ lean_object* l_Lean_Elab_Term_elabNumLit___lambda__1___boxed(lean_object*, lean_ lean_object* l_Lean_Elab_Term_saveState___boxed(lean_object*); extern lean_object* l_Lean_withIncRecDepth___rarg___lambda__2___closed__2; lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___spec__11___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_initFn____x40_Lean_Elab_Term___hyg_12727____closed__1; lean_object* l_Lean_Elab_Term_autoLift; lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___closed__3; lean_object* l_Std_mkHashSet___at___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___spec__1(lean_object*); @@ -464,7 +464,6 @@ lean_object* l_List_foldlM___at___private_Lean_Elab_Term_0__Lean_Elab_Term_mkCon lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_applyAttributesCore___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_Term_synthesizeInstMVarCore___lambda__1___closed__3; lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux_match__2___rarg(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; lean_object* l_Lean_throwKernelException___at_Lean_Elab_Term_evalExpr___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_MetavarContext_isExprAssigned(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*); @@ -534,6 +533,7 @@ lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_3491____closed_ lean_object* l_Lean_Elab_withMacroExpansionInfo___at_Lean_Elab_Term_withMacroExpansion___spec__1(lean_object*); uint8_t l_instDecidableNot___rarg(uint8_t); lean_object* l_Lean_Elab_Term_levelMVarToParam(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; lean_object* l_Lean_Expr_setPPUniverses(lean_object*, uint8_t); lean_object* l_Lean_Elab_Term_instInhabitedTermElabM___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_toString(lean_object*, lean_object*); @@ -876,7 +876,6 @@ lean_object* l_Lean_Elab_Term_throwTypeMismatchError_match__1___rarg(lean_object lean_object* l_Std_PersistentArray_forIn___at_Lean_Elab_Term_addAutoBoundImplicits___spec__2(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_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr_mkMessage(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_elabTermAux___lambda__3(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_resolveId_x3f___lambda__1___closed__2; lean_object* l_Lean_InternalExceptionId_getName(lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_getDelayedRoot(lean_object*, lean_object*); @@ -920,6 +919,7 @@ lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_instMetaEvalTermElabM 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*); lean_object* l_Lean_Elab_Term_resolveName___closed__4; lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryCoe_match__2(lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr_mkMessage___lambda__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_instMonadLogTermElabM___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_elabSetOption___rarg___lambda__1___closed__2; @@ -943,7 +943,6 @@ lean_object* l_Lean_Elab_Term_Context_sectionVars___default; lean_object* l_Lean_Elab_Term_tryPostponeIfHasMVars___closed__2; lean_object* l_Lean_Elab_Term_resolveId_x3f_match__1(lean_object*); lean_object* l_Lean_Elab_elabSetOption_setOption___at_Lean_Elab_Term_elabSetOption___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; size_t l_USize_mod(size_t, size_t); lean_object* l_Lean_Elab_Term_instMonadQuotationTermElabM___closed__14; lean_object* l_Lean_Elab_Term_getDeclName_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1113,7 +1112,6 @@ lean_object* l_Lean_Elab_Term_registerMVarErrorCustomInfo(lean_object*, lean_obj lean_object* l_Lean_Elab_Term_isTypeApp_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_isLetRecAuxMVar___boxed(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_resolveName_x27___spec__6___closed__2; -extern lean_object* l_myMacro____x40_Init_Notation___hyg_22312____closed__2; lean_object* l_Lean_commitWhenSome_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_tryPureCoe_x3f___spec__2___at___private_Lean_Elab_Term_0__Lean_Elab_Term_tryPureCoe_x3f___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*); extern lean_object* l___private_Lean_Meta_LevelDefEq_0__Lean_Meta_processPostponedStep___closed__1; lean_object* l_Lean_Elab_Term_elabEnsureTypeOf(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1229,7 +1227,6 @@ uint8_t l_Lean_Syntax_isNone(lean_object*); lean_object* l_Std_PersistentHashMap_findAux___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__4(lean_object*, size_t, lean_object*); lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryCoeSort___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_inferType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__1; lean_object* l___private_Lean_Elab_InfoTree_0__Lean_Elab_getResetInfoTrees___at_Lean_Elab_Term_withMacroExpansion___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_resolveGlobalConst___at_Lean_Elab_Term_elabDoubleQuotedName___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* l_Lean_Elab_Term_LVal_getRef_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -1250,6 +1247,7 @@ lean_object* l_Lean_Syntax_isNameLit_x3f(lean_object*); lean_object* l_Lean_Elab_OpenDecl_elabOpenDecl___at_Lean_Elab_Term_elabOpen___spec__3___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_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*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__2; lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr_mkMessage___lambda__4___closed__2; lean_object* l_Lean_Elab_throwIllFormedSyntax___at_Lean_Elab_Term_elabStrLit___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_instMonadLogTermElabM___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1284,11 +1282,13 @@ lean_object* l_Lean_Elab_Term_getLetRecsToLift___boxed(lean_object*); extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Exception___hyg_3____closed__1; lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___lambda__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_MonadEnv_0__Lean_mkAuxNameAux(lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__1; lean_object* l_Lean_Syntax_getTailPos_x3f(lean_object*, uint8_t); lean_object* l_Lean_Elab_Term_withSavedContext(lean_object*); lean_object* l_Std_PersistentArray_forIn___at___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___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_Term_throwTypeMismatchError___rarg(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_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_myMacro____x40_Init_Notation___hyg_22344____closed__2; lean_object* l_Lean_Elab_Term_withoutAutoBoundImplicit___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_withoutErrToSorry___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1348,7 +1348,7 @@ lean_object* l_Lean_Elab_Term_applyResult___rarg(lean_object*, lean_object*, lea lean_object* l_IO_println___at_Lean_instEval___spec__1(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*); -lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12727_(lean_object*); +lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12724_(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*); lean_object* l_Lean_Meta_whnfD(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_instMonadQuotationTermElabM___closed__2; @@ -23624,7 +23624,7 @@ x_3 = l_Lean_Syntax_isOfKind(x_1, x_2); if (x_3 == 0) { lean_object* x_4; uint8_t x_5; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; lean_inc(x_1); x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); if (x_5 == 0) @@ -23680,7 +23680,7 @@ uint8_t l___private_Lean_Elab_Term_0__Lean_Elab_Term_isTacticBlock(lean_object* _start: { lean_object* x_2; uint8_t x_3; -x_2 = l_myMacro____x40_Init_Notation___hyg_22312____closed__2; +x_2 = l_myMacro____x40_Init_Notation___hyg_22344____closed__2; lean_inc(x_1); x_3 = l_Lean_Syntax_isOfKind(x_1, x_2); if (x_3 == 0) @@ -23715,7 +23715,7 @@ uint8_t l___private_Lean_Elab_Term_0__Lean_Elab_Term_isNoImplicitLambda(lean_obj _start: { lean_object* x_2; uint8_t x_3; -x_2 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__2; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__2; x_3 = l_Lean_Syntax_isOfKind(x_1, x_2); return x_3; } @@ -23734,7 +23734,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__1; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -35021,7 +35021,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Term_termElabAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; x_4 = l___regBuiltin_Lean_Elab_Term_elabSyntheticHole___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -35172,7 +35172,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Term_termElabAttribute; -x_3 = l_myMacro____x40_Init_Notation___hyg_22312____closed__2; +x_3 = l_myMacro____x40_Init_Notation___hyg_22344____closed__2; x_4 = l___regBuiltin_Lean_Elab_Term_elabByTactic___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -35244,7 +35244,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Term_termElabAttribute; -x_3 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__2; x_4 = l___regBuiltin_Lean_Elab_Term_elabNoImplicitLambda___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -38152,7 +38152,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_getFVarLocalDecl_x21___closed__2; x_2 = l_List_mapM___at_Lean_Elab_Term_resolveName_x27___spec__6___closed__2; -x_3 = lean_unsigned_to_nat(1435u); +x_3 = lean_unsigned_to_nat(1436u); x_4 = lean_unsigned_to_nat(31u); x_5 = l_Lean_Name_getString_x21___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -45240,7 +45240,7 @@ x_17 = lean_string_dec_eq(x_15, x_16); if (x_17 == 0) { lean_object* x_18; uint8_t x_19; -x_18 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_18 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; x_19 = lean_string_dec_eq(x_15, x_18); lean_dec(x_15); if (x_19 == 0) @@ -54333,7 +54333,7 @@ lean_dec(x_3); return x_11; } } -static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12727____closed__1() { +static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12724____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -54343,7 +54343,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12727_(lean_object* x_1) { +lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12724_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -54355,7 +54355,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_12727____closed__1; +x_5 = l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12724____closed__1; x_6 = l_Lean_registerTraceClass(x_5, x_4); if (lean_obj_tag(x_6) == 0) { @@ -55069,9 +55069,9 @@ 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_12727____closed__1 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12727____closed__1(); -lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12727____closed__1); -res = l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12727_(lean_io_mk_world()); +l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12724____closed__1 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12724____closed__1(); +lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12724____closed__1); +res = l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12724_(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/Meta/LevelDefEq.c b/stage0/stdlib/Lean/Meta/LevelDefEq.c index 023184a6ae..c0d1569b90 100644 --- a/stage0/stdlib/Lean/Meta/LevelDefEq.c +++ b/stage0/stdlib/Lean/Meta/LevelDefEq.c @@ -200,7 +200,7 @@ lean_object* l_Lean_Meta_getResetPostponed___boxed(lean_object*, lean_object*, l lean_object* l___private_Lean_Meta_LevelDefEq_0__Lean_Meta_processPostponedStep___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentArray_forInAux___at___private_Lean_Meta_LevelDefEq_0__Lean_Meta_processPostponedStep___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_level_eq(lean_object*, lean_object*); -lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_LevelDefEq___hyg_2290_(lean_object*); +lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_LevelDefEq___hyg_2285_(lean_object*); lean_object* l_Lean_Meta_isReadOnlyLevelMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_setPostponed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_processPostponed(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -27866,7 +27866,7 @@ return x_60; } } } -lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_LevelDefEq___hyg_2290_(lean_object* x_1) { +lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_LevelDefEq___hyg_2285_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -28036,7 +28036,7 @@ l_Lean_Meta_isExprDefEq___closed__1 = _init_l_Lean_Meta_isExprDefEq___closed__1( lean_mark_persistent(l_Lean_Meta_isExprDefEq___closed__1); l_Lean_Meta_isExprDefEq___closed__2 = _init_l_Lean_Meta_isExprDefEq___closed__2(); lean_mark_persistent(l_Lean_Meta_isExprDefEq___closed__2); -res = l_Lean_Meta_initFn____x40_Lean_Meta_LevelDefEq___hyg_2290_(lean_io_mk_world()); +res = l_Lean_Meta_initFn____x40_Lean_Meta_LevelDefEq___hyg_2285_(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/Meta/RecursorInfo.c b/stage0/stdlib/Lean/Meta/RecursorInfo.c index e41a4c7b70..7455912926 100644 --- a/stage0/stdlib/Lean/Meta/RecursorInfo.c +++ b/stage0/stdlib/Lean/Meta/RecursorInfo.c @@ -119,7 +119,6 @@ lean_object* l___private_Lean_Meta_RecursorInfo_0__Lean_Meta_getMotiveLevel___cl lean_object* l___private_Lean_Meta_RecursorInfo_0__Lean_Meta_mkRecursorInfoAux_match__1___rarg(lean_object*, lean_object*); lean_object* l_List_toStringAux___at_Lean_Meta_RecursorInfo_instToStringRecursorInfo___spec__2___closed__1; extern lean_object* l_Lean_registerTagAttribute___closed__5; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; lean_object* l_List_replicate___rarg(lean_object*, lean_object*); lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_RecursorInfo___hyg_2248____closed__4; lean_object* l_Lean_registerParametricAttribute___at_Lean_Meta_initFn____x40_Lean_Meta_RecursorInfo___hyg_2248____spec__1___lambda__1___boxed(lean_object*); @@ -141,6 +140,7 @@ lean_object* l___private_Lean_Meta_RecursorInfo_0__Lean_Meta_getMajorPosDepElim_ lean_object* l_Lean_Meta_getMajorPos_x3f(lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l___private_Lean_Meta_RecursorInfo_0__Lean_Meta_checkMotive___closed__3; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; lean_object* l___private_Lean_Meta_RecursorInfo_0__Lean_Meta_getMajorPosDepElim___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_instToStringRecursorUnivLevelPos___closed__1; lean_object* l_Lean_throwError___at___private_Lean_Meta_RecursorInfo_0__Lean_Meta_mkRecursorInfoAux___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -319,7 +319,6 @@ lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_RecursorInfo_0__Lea lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_RecursorInfo_0__Lean_Meta_getIndicesPos___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*, lean_object*); lean_object* l_Lean_Meta_RecursorInfo_instToStringRecursorInfo___closed__16; lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Meta_RecursorInfo_0__Lean_Meta_mkRecursorInfoAux___spec__2___closed__2; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__3; extern lean_object* l_prec_x28___x29___closed__7; lean_object* l_Array_anyMUnsafe_any___at_Lean_Meta_initFn____x40_Lean_Meta_RecursorInfo___hyg_2248____spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_getConstInfoRec___rarg___lambda__1___closed__2; @@ -341,6 +340,7 @@ lean_object* l_List_lengthAux___rarg(lean_object*, lean_object*); lean_object* l___private_Lean_Meta_RecursorInfo_0__Lean_Meta_mkRecursorInfoAux_match__3___rarg(lean_object*, lean_object*); lean_object* l_Lean_mkLevelParam(lean_object*); lean_object* l_List_forIn_loop___at___private_Lean_Meta_RecursorInfo_0__Lean_Meta_getUnivLevelPos___spec__1___closed__1; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__3; extern lean_object* l___private_Init_Data_Format_Basic_0__Std_Format_pushNewline___closed__1; uint8_t lean_level_eq(lean_object*, lean_object*); lean_object* l_Lean_Meta_Attribute_Recursor_getMajorPos___closed__7; @@ -1006,7 +1006,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_term_x5b___x5d___closed__5; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; x_3 = lean_string_append(x_1, x_2); return x_3; } @@ -1077,7 +1077,7 @@ x_18 = lean_unbox(x_14); if (x_18 == 0) { lean_object* x_19; lean_object* x_20; -x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; x_20 = lean_string_append(x_19, x_17); lean_dec(x_17); return x_20; @@ -1332,7 +1332,7 @@ x_40 = l_List_toString___at_Lean_Meta_RecursorInfo_instToStringRecursorInfo___sp if (x_23 == 0) { lean_object* x_91; -x_91 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_91 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; x_41 = x_91; goto block_90; } @@ -1354,7 +1354,7 @@ x_45 = lean_string_append(x_43, x_44); if (x_24 == 0) { lean_object* x_88; -x_88 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_88 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; x_46 = x_88; goto block_87; } @@ -2261,7 +2261,7 @@ block_54: { lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_dec(x_18); -x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__3; +x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__3; x_20 = lean_name_mk_string(x_16, x_19); x_21 = l_Lean_getConstInfoRec___at___private_Lean_Meta_RecursorInfo_0__Lean_Meta_getMajorPosIfAuxRecursor_x3f___spec__1(x_20, x_3, x_4, x_5, x_6, x_11); if (lean_obj_tag(x_21) == 0) @@ -2478,7 +2478,7 @@ block_99: { lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_dec(x_75); -x_76 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__3; +x_76 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__3; x_77 = lean_name_mk_string(x_73, x_76); x_78 = l_Lean_getConstInfoRec___at___private_Lean_Meta_RecursorInfo_0__Lean_Meta_getMajorPosIfAuxRecursor_x3f___spec__1(x_77, x_3, x_4, x_5, x_6, x_67); if (lean_obj_tag(x_78) == 0) diff --git a/stage0/stdlib/Lean/Meta/SizeOf.c b/stage0/stdlib/Lean/Meta/SizeOf.c index 35c710083d..b8f256a8d7 100644 --- a/stage0/stdlib/Lean/Meta/SizeOf.c +++ b/stage0/stdlib/Lean/Meta/SizeOf.c @@ -77,15 +77,15 @@ lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkMinorP lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemma___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*); uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*); lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop___rarg___closed__3; -lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4433____closed__1; lean_object* lean_st_ref_get(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkCongr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4458____closed__3; lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemmaProof___spec__7___closed__1; lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemmaProof___spec__7___boxed(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_instInhabitedParserDescr___closed__1; lean_object* l_Lean_Meta_SizeOfSpecNested_throwUnexpected(lean_object*); -lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4455____closed__3; lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkMinorProof___closed__7; +lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4436____closed__1; lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemmaProof(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isApp(lean_object*); lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_isRecField_x3f_match__2___rarg(lean_object*, lean_object*, lean_object*); @@ -112,9 +112,9 @@ lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOf extern lean_object* l_Lean_Expr_getAppArgs___closed__1; lean_object* l_Lean_throwError___at_Lean_Meta_SizeOfSpecNested_throwFailed___spec__1(lean_object*); lean_object* l_Lean_Meta_SizeOfSpecNested_throwUnexpected___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4436____closed__3; lean_object* l_Lean_throwKernelException___at___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemma___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemma___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4433____closed__3; lean_object* l_Lean_Meta_SizeOfSpecNested_throwUnexpected___rarg___closed__1; lean_object* l_Lean_Expr_appArg_x21(lean_object*); lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMinors_loop___rarg___lambda__1___closed__2; @@ -213,7 +213,7 @@ lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SizeOf_0__Lean_M lean_object* l_Lean_throwError___at___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemmaProof___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_forallTelescopeReducing___at___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemmaProof___spec__5(lean_object*); lean_object* l_Lean_Meta_forallBoundedTelescope___at___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemmaProof___spec__8(lean_object*); -lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMinors_loop___rarg___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* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMinors_loop___rarg___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* l_Array_forInUnsafe_loop___at___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemmaProof___spec__7(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkMinorProof___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_natAdd_x3f(lean_object*); @@ -253,7 +253,7 @@ extern lean_object* l_Lean_KernelException_toMessageData___closed__15; lean_object* l_Lean_Meta_mkSizeOfSpecLemmaInstance___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwKernelException___at___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemmaProof___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMinors_loop___rarg___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*); +lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMinors_loop___rarg___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* l_Lean_Meta_mkSizeOfSpecLemmaName___boxed(lean_object*); lean_object* l_Lean_Meta_mkSizeOfFns_match__1___rarg(lean_object*, lean_object*); lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemmaProof___lambda__2___boxed__const__1; @@ -345,9 +345,9 @@ lean_object* l_Lean_Meta_SizeOfSpecNested_throwUnexpected___rarg___closed__2; lean_object* l_Lean_throwError___at___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemma___spec__4___boxed(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*); extern lean_object* l_Lean_instInhabitedName; -lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4455____closed__4; lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop___rarg___closed__4; extern lean_object* l_Lean_getConstInfoCtor___rarg___lambda__1___closed__2; +lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4458____closed__4; lean_object* l_Lean_Meta_SizeOfSpecNested_throwUnexpected___rarg___closed__4; lean_object* l_Lean_getConstInfo___at___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemmaProof___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_toArrayAux___rarg(lean_object*, lean_object*); @@ -364,23 +364,22 @@ lean_object* lean_mk_array(lean_object*, lean_object*); lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop___rarg___closed__1; lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_forallTelescopeReducing___at___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemmaProof___spec__5___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4455____closed__2; lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_isRecField_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Meta_SizeOfSpecNested_throwUnexpected___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4458____closed__2; lean_object* l_Lean_Meta_mkSizeOfFn___lambda__4___boxed(lean_object**); lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemmaProof_mkSizeOf___closed__1; lean_object* l_Lean_throwError___at_Lean_Meta_SizeOfSpecNested_throwUnexpected___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4433____closed__4; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__3; lean_object* l_Lean_Meta_mkSizeOfFns(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_isInductiveHypothesis(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemmaProof_mkSizeOf___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4436____closed__4; lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkLocalInstances(lean_object*); extern lean_object* l_Lean_getConstInfoRec___rarg___lambda__1___closed__2; lean_object* l_Lean_Meta_forallTelescopeReducing___at___private_Lean_Meta_SizeOf_0__Lean_Meta_mkLocalInstances_loop___spec__1(lean_object*); -lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4433_(lean_object*); -lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4455_(lean_object*); -lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4894_(lean_object*); +lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4436_(lean_object*); +lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4458_(lean_object*); +lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4897_(lean_object*); lean_object* l_Subarray_forInUnsafe_loop___at___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___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* l_Lean_isInductivePredicate___at_Lean_Meta_mkSizeOfInstances___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_isRecField_x3f_match__1(lean_object*); @@ -401,10 +400,11 @@ lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); lean_object* l_List_lengthAux___rarg(lean_object*, lean_object*); lean_object* l_List_map___at_Lean_mkConstWithLevelParams___spec__1(lean_object*); lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemmaProof_mkSizeOf___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__3; +lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4458____closed__1; lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorems___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*); extern lean_object* l_Lean_levelOne; lean_object* l_Lean_Meta_mkEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4455____closed__1; extern lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_mkAnswer___lambda__4___closed__2; lean_object* l_Lean_indentExpr(lean_object*); lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -427,9 +427,9 @@ lean_object* l_Lean_Meta_forallTelescopeReducing___at___private_Lean_Meta_SizeOf lean_object* l_Lean_getConstInfoRec___at_Lean_Meta_mkSizeOfFn___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_Range_forIn_loop___at_Lean_Meta_mkSizeOfFns___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*); extern lean_object* l_Array_findIdxM_x3f___rarg___closed__1; -lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4433____closed__2; lean_object* l_Lean_Meta_mkAdd(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkSizeOfSpecLemmaInstance___closed__2; +lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4436____closed__2; lean_object* l_Lean_Meta_mkNumeral(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getConstInfoCtor___at___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getConstInfoInduct___at_Lean_Meta_mkSizeOfFns___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -3890,25 +3890,74 @@ return x_75; } } } -lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMinors_loop___rarg___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___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMinors_loop___rarg___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) { _start: { -lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; -x_15 = lean_array_get_size(x_8); -lean_inc(x_15); -x_16 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_16, 0, x_15); -x_17 = lean_alloc_closure((void*)(l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMinors_loop___rarg___lambda__1___boxed), 15, 8); -lean_closure_set(x_17, 0, x_15); -lean_closure_set(x_17, 1, x_1); -lean_closure_set(x_17, 2, x_8); -lean_closure_set(x_17, 3, x_2); -lean_closure_set(x_17, 4, x_3); -lean_closure_set(x_17, 5, x_4); -lean_closure_set(x_17, 6, x_5); -lean_closure_set(x_17, 7, x_6); -x_18 = l_Lean_Meta_forallBoundedTelescope___at___private_Lean_Meta_FunInfo_0__Lean_Meta_getFunInfoAux___spec__2___rarg(x_7, x_16, x_17, x_10, x_11, x_12, x_13, x_14); -return x_18; +lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_14 = l_Lean_instInhabitedExpr; +x_15 = lean_array_get(x_14, x_1, x_2); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +x_16 = l_Lean_Meta_inferType(x_15, x_9, x_10, x_11, x_12, x_13); +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; lean_object* x_22; +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 = lean_array_get_size(x_7); +lean_inc(x_19); +x_20 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_20, 0, x_19); +x_21 = lean_alloc_closure((void*)(l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMinors_loop___rarg___lambda__1___boxed), 15, 8); +lean_closure_set(x_21, 0, x_19); +lean_closure_set(x_21, 1, x_3); +lean_closure_set(x_21, 2, x_7); +lean_closure_set(x_21, 3, x_2); +lean_closure_set(x_21, 4, x_4); +lean_closure_set(x_21, 5, x_5); +lean_closure_set(x_21, 6, x_1); +lean_closure_set(x_21, 7, x_6); +x_22 = l_Lean_Meta_forallBoundedTelescope___at___private_Lean_Meta_FunInfo_0__Lean_Meta_getFunInfoAux___spec__2___rarg(x_17, x_20, x_21, x_9, x_10, x_11, x_12, x_18); +return x_22; +} +else +{ +uint8_t x_23; +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +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_23 = !lean_is_exclusive(x_16); +if (x_23 == 0) +{ +return x_16; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_16, 0); +x_25 = lean_ctor_get(x_16, 1); +lean_inc(x_25); +lean_inc(x_24); +lean_dec(x_16); +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; +} +} } } lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMinors_loop___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, lean_object* x_9, lean_object* x_10, lean_object* x_11) { @@ -3946,68 +3995,19 @@ lean_inc(x_18); x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); lean_dec(x_17); -x_20 = lean_array_get(x_15, x_3, x_5); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_21 = l_Lean_Meta_inferType(x_20, x_7, x_8, x_9, x_10, x_19); -if (lean_obj_tag(x_21) == 0) -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_22 = lean_ctor_get(x_21, 0); -lean_inc(x_22); -x_23 = lean_ctor_get(x_21, 1); -lean_inc(x_23); -lean_dec(x_21); -x_24 = lean_alloc_closure((void*)(l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMinors_loop___rarg___lambda__2___boxed), 14, 7); -lean_closure_set(x_24, 0, x_1); -lean_closure_set(x_24, 1, x_5); -lean_closure_set(x_24, 2, x_6); -lean_closure_set(x_24, 3, x_2); -lean_closure_set(x_24, 4, x_3); -lean_closure_set(x_24, 5, x_4); -lean_closure_set(x_24, 6, x_22); -x_25 = l_Lean_Meta_forallTelescopeReducing___at_Lean_Meta_getParamNames___spec__2___rarg(x_18, x_24, x_7, x_8, x_9, x_10, x_23); -return x_25; -} -else -{ -uint8_t x_26; -lean_dec(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); -lean_dec(x_2); -lean_dec(x_1); -x_26 = !lean_is_exclusive(x_21); -if (x_26 == 0) -{ +x_20 = lean_alloc_closure((void*)(l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMinors_loop___rarg___lambda__2___boxed), 13, 6); +lean_closure_set(x_20, 0, x_3); +lean_closure_set(x_20, 1, x_5); +lean_closure_set(x_20, 2, x_1); +lean_closure_set(x_20, 3, x_6); +lean_closure_set(x_20, 4, x_2); +lean_closure_set(x_20, 5, x_4); +x_21 = l_Lean_Meta_forallTelescopeReducing___at_Lean_Meta_getParamNames___spec__2___rarg(x_18, x_20, x_7, x_8, x_9, x_10, x_19); return x_21; } else { -lean_object* x_27; lean_object* x_28; lean_object* x_29; -x_27 = lean_ctor_get(x_21, 0); -x_28 = lean_ctor_get(x_21, 1); -lean_inc(x_28); -lean_inc(x_27); -lean_dec(x_21); -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; +uint8_t x_22; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -4018,23 +4018,23 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_30 = !lean_is_exclusive(x_17); -if (x_30 == 0) +x_22 = !lean_is_exclusive(x_17); +if (x_22 == 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_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_17, 0); +x_24 = lean_ctor_get(x_17, 1); +lean_inc(x_24); +lean_inc(x_23); 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; +x_25 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set(x_25, 1, x_24); +return x_25; } } } @@ -4075,13 +4075,13 @@ lean_dec(x_1); return x_16; } } -lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMinors_loop___rarg___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) { +lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMinors_loop___rarg___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) { _start: { -lean_object* x_15; -x_15 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMinors_loop___rarg___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_9); -return x_15; +lean_object* x_14; +x_14 = l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMinors_loop___rarg___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); +lean_dec(x_8); +return x_14; } } static lean_object* _init_l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMinors___rarg___closed__1() { @@ -5230,7 +5230,7 @@ lean_dec(x_13); lean_inc(x_12); lean_inc(x_1); x_16 = l_Lean_Name_appendIndexAfter(x_1, x_12); -x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__3; +x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__3; x_18 = lean_name_mk_string(x_10, x_17); lean_inc(x_7); lean_inc(x_6); @@ -5325,7 +5325,7 @@ lean_inc(x_20); x_21 = lean_ctor_get(x_19, 1); lean_inc(x_21); lean_dec(x_19); -x_22 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__3; +x_22 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__3; lean_inc(x_1); x_23 = lean_name_mk_string(x_1, x_22); x_24 = lean_nat_add(x_5, x_16); @@ -5493,7 +5493,7 @@ lean_inc(x_8); x_9 = lean_ctor_get(x_7, 1); lean_inc(x_9); lean_dec(x_7); -x_10 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__3; +x_10 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__3; x_11 = lean_name_mk_string(x_1, x_10); x_12 = l_Lean_getConstInfoRec___at_Lean_Meta_mkSizeOfFn___spec__1(x_11, x_2, x_3, x_4, x_5, x_9); if (lean_obj_tag(x_12) == 0) @@ -11710,7 +11710,7 @@ lean_inc(x_39); x_40 = lean_ctor_get(x_39, 0); lean_inc(x_40); lean_dec(x_39); -x_41 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__3; +x_41 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__3; x_42 = lean_name_mk_string(x_40, x_41); lean_inc(x_42); x_43 = l_Lean_getConstInfoRec___at___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemmaProof___spec__1(x_42, x_4, x_5, x_6, x_7, x_8, x_32); @@ -14322,7 +14322,7 @@ lean_dec(x_1); return x_9; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4433____closed__1() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4436____closed__1() { _start: { lean_object* x_1; @@ -14330,17 +14330,17 @@ x_1 = lean_mk_string("genSizeOf"); return x_1; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4433____closed__2() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4436____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4433____closed__1; +x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4436____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4433____closed__3() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4436____closed__3() { _start: { lean_object* x_1; @@ -14348,13 +14348,13 @@ x_1 = lean_mk_string("generate `SizeOf` instance for inductive types and structu return x_1; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4433____closed__4() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4436____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_instInhabitedParserDescr___closed__1; -x_3 = l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4433____closed__3; +x_3 = l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4436____closed__3; x_4 = lean_box(x_1); x_5 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_5, 0, x_4); @@ -14363,17 +14363,17 @@ lean_ctor_set(x_5, 2, x_3); return x_5; } } -lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4433_(lean_object* x_1) { +lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4436_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4433____closed__2; -x_3 = l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4433____closed__4; +x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4436____closed__2; +x_3 = l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4436____closed__4; x_4 = l_Lean_Option_register___at_Std_Format_initFn____x40_Lean_Data_Format___hyg_53____spec__1(x_2, x_3, x_1); return x_4; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4455____closed__1() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4458____closed__1() { _start: { lean_object* x_1; @@ -14381,17 +14381,17 @@ x_1 = lean_mk_string("genSizeOfSpec"); return x_1; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4455____closed__2() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4458____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4455____closed__1; +x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4458____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4455____closed__3() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4458____closed__3() { _start: { lean_object* x_1; @@ -14399,13 +14399,13 @@ x_1 = lean_mk_string("generate `SizeOf` specificiation theorems for automaticall return x_1; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4455____closed__4() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4458____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_instInhabitedParserDescr___closed__1; -x_3 = l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4455____closed__3; +x_3 = l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4458____closed__3; x_4 = lean_box(x_1); x_5 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_5, 0, x_4); @@ -14414,12 +14414,12 @@ lean_ctor_set(x_5, 2, x_3); return x_5; } } -lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4455_(lean_object* x_1) { +lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4458_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4455____closed__2; -x_3 = l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4455____closed__4; +x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4458____closed__2; +x_3 = l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4458____closed__4; x_4 = l_Lean_Option_register___at_Std_Format_initFn____x40_Lean_Data_Format___hyg_53____spec__1(x_2, x_3, x_1); return x_4; } @@ -15954,7 +15954,7 @@ lean_dec(x_7); return x_13; } } -lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4894_(lean_object* x_1) { +lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4897_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -16086,28 +16086,28 @@ l_Lean_Meta_SizeOfSpecNested_main_loop___closed__1 = _init_l_Lean_Meta_SizeOfSpe lean_mark_persistent(l_Lean_Meta_SizeOfSpecNested_main_loop___closed__1); l_Lean_Meta_SizeOfSpecNested_main_loop___closed__2 = _init_l_Lean_Meta_SizeOfSpecNested_main_loop___closed__2(); lean_mark_persistent(l_Lean_Meta_SizeOfSpecNested_main_loop___closed__2); -l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4433____closed__1 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4433____closed__1(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4433____closed__1); -l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4433____closed__2 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4433____closed__2(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4433____closed__2); -l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4433____closed__3 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4433____closed__3(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4433____closed__3); -l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4433____closed__4 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4433____closed__4(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4433____closed__4); -res = l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4433_(lean_io_mk_world()); +l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4436____closed__1 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4436____closed__1(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4436____closed__1); +l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4436____closed__2 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4436____closed__2(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4436____closed__2); +l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4436____closed__3 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4436____closed__3(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4436____closed__3); +l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4436____closed__4 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4436____closed__4(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4436____closed__4); +res = l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4436_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_Meta_genSizeOf = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Meta_genSizeOf); lean_dec_ref(res); -l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4455____closed__1 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4455____closed__1(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4455____closed__1); -l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4455____closed__2 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4455____closed__2(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4455____closed__2); -l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4455____closed__3 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4455____closed__3(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4455____closed__3); -l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4455____closed__4 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4455____closed__4(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4455____closed__4); -res = l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4455_(lean_io_mk_world()); +l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4458____closed__1 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4458____closed__1(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4458____closed__1); +l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4458____closed__2 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4458____closed__2(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4458____closed__2); +l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4458____closed__3 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4458____closed__3(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4458____closed__3); +l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4458____closed__4 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4458____closed__4(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4458____closed__4); +res = l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4458_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_Meta_genSizeOfSpec = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Meta_genSizeOfSpec); @@ -16120,7 +16120,7 @@ l_List_forIn_loop___at_Lean_Meta_mkSizeOfInstances___spec__2___lambda__2___close lean_mark_persistent(l_List_forIn_loop___at_Lean_Meta_mkSizeOfInstances___spec__2___lambda__2___closed__1); l_List_forIn_loop___at_Lean_Meta_mkSizeOfInstances___spec__2___lambda__2___closed__2 = _init_l_List_forIn_loop___at_Lean_Meta_mkSizeOfInstances___spec__2___lambda__2___closed__2(); lean_mark_persistent(l_List_forIn_loop___at_Lean_Meta_mkSizeOfInstances___spec__2___lambda__2___closed__2); -res = l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4894_(lean_io_mk_world()); +res = l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4897_(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/Meta/Tactic/Intro.c b/stage0/stdlib/Lean/Meta/Tactic/Intro.c index f6f5cf24e9..5c16b7a3b2 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Intro.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Intro.c @@ -112,11 +112,11 @@ lean_object* l___private_Lean_Meta_Tactic_Intro_0__Lean_Meta_introNImp_loop___ra lean_object* l_Lean_Meta_introNCore___boxed(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_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__5; lean_object* l_ReaderT_instMonadReaderT___rarg(lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__7; lean_object* l___private_Lean_Meta_Tactic_Intro_0__Lean_Meta_introNImp_loop___rarg(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_Meta_Tactic_Intro_0__Lean_Meta_mkAuxNameImp_match__1(lean_object*); lean_object* l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__7; lean_object* l___private_Lean_Meta_Tactic_Intro_0__Lean_Meta_introNImp_loop___rarg___closed__7; lean_object* l_Lean_Meta_getMVarTag___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Tactic_Intro_0__Lean_Meta_introNImp_loop___rarg___closed__2; @@ -1209,7 +1209,7 @@ lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Intro___hyg_633_(lean_ob _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__7; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__7; x_3 = l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Intro___hyg_633____closed__2; x_4 = l_Lean_Option_register___at_Std_Format_initFn____x40_Lean_Data_Format___hyg_53____spec__1(x_2, x_3, x_1); return x_4; diff --git a/stage0/stdlib/Lean/Meta/Tactic/Simp/Main.c b/stage0/stdlib/Lean/Meta/Tactic/Simp/Main.c index 9c85600520..209294c994 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Simp/Main.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Simp/Main.c @@ -65,7 +65,6 @@ lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_Tactic_Simp_Main lean_object* l_Lean_Meta_Simp_DefaultMethods_post(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkConstWithFreshMVarLevels(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Simp_simp_tryCongrLemma_x3f___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*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__6; lean_object* l_Array_forInUnsafe_loop___at_Lean_Meta_Simp_simp_congrDefault___spec__1___closed__2; lean_object* l_Lean_Meta_Simp_simp___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_Meta_Simp_simp_simpLet___closed__5; @@ -209,7 +208,6 @@ lean_object* l_ST_Prim_Ref_get___boxed(lean_object*, lean_object*, lean_object*, lean_object* l_Lean_Meta_Simp_simp_tryCongrLemma_x3f_match__3(lean_object*); extern lean_object* l_instReprBool___closed__3; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__5; lean_object* l_instInhabited___rarg(lean_object*, lean_object*); lean_object* l_Lean_ConstantInfo_name(lean_object*); lean_object* l_Lean_Meta_Simp_simp_simpLet_match__1___rarg(lean_object*, lean_object*, lean_object*); @@ -382,6 +380,7 @@ lean_object* l_Lean_isProjectionFn___at___private_Lean_Meta_Tactic_Simp_Main_0__ lean_object* l_Lean_Meta_instantiateMVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_array(lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Meta_Simp_simp_congrDefault___spec__1___closed__5; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__5; lean_object* l_Lean_Meta_Simp_simp_tryCongrLemma_x3f___lambda__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* l_Lean_Meta_Simp_simp_tryCongrLemma_x3f___lambda__7___boxed(lean_object**); lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Meta_Simp_simp_simpForall___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -456,6 +455,7 @@ lean_object* l_Lean_Meta_withLetDecl___at___private_Lean_Meta_Tactic_Simp_Main_0 lean_object* l_Lean_Meta_withIncRecDepth___at___private_Lean_Meta_Tactic_Simp_Main_0__Lean_Meta_Simp_dsimp___spec__13___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*, lean_object*); lean_object* l_Lean_Meta_simp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l___private_Init_Data_Format_Basic_0__Std_Format_be___closed__1; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__6; lean_object* l_Lean_Meta_mkImpCongr(lean_object*, 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_Lean_Meta_getFVarLocalDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -19508,7 +19508,7 @@ x_12 = lean_ctor_get(x_10, 0); x_13 = lean_ctor_get(x_10, 1); x_14 = lean_ctor_get(x_12, 0); lean_inc(x_14); -x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__5; +x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__5; x_16 = l_Lean_Expr_isConstOf(x_14, x_15); lean_dec(x_14); if (x_16 == 0) @@ -19641,7 +19641,7 @@ lean_inc(x_41); lean_dec(x_10); x_43 = lean_ctor_get(x_41, 0); lean_inc(x_43); -x_44 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__5; +x_44 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__5; x_45 = l_Lean_Expr_isConstOf(x_43, x_44); lean_dec(x_43); if (x_45 == 0) @@ -19871,7 +19871,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_21870____closed__6; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__6; x_3 = l_Lean_mkConst(x_2, x_1); return x_3; } @@ -19920,7 +19920,7 @@ x_16 = lean_ctor_get(x_14, 0); x_17 = lean_ctor_get(x_14, 1); x_18 = lean_ctor_get(x_16, 0); lean_inc(x_18); -x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__5; +x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__5; x_20 = l_Lean_Expr_isConstOf(x_18, x_19); if (x_20 == 0) { @@ -20217,7 +20217,7 @@ lean_inc(x_78); lean_dec(x_14); x_80 = lean_ctor_get(x_78, 0); lean_inc(x_80); -x_81 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__5; +x_81 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__5; x_82 = l_Lean_Expr_isConstOf(x_80, x_81); if (x_82 == 0) { diff --git a/stage0/stdlib/Lean/Meta/Tactic/Simp/Rewrite.c b/stage0/stdlib/Lean/Meta/Tactic/Simp/Rewrite.c index 64827a84c5..aa0b483703 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Simp/Rewrite.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Simp/Rewrite.c @@ -99,7 +99,6 @@ lean_object* l_Lean_Meta_Simp_rewrite___closed__6; lean_object* l_Lean_Meta_Simp_rewrite___closed__8; 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_Meta_Simp_synthesizeArgs_match__1(lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__5; lean_object* l_Lean_Meta_Simp_rewrite___closed__4; uint8_t l_Std_PersistentHashMap_contains___at_Lean_Meta_SimpLemmas_isDeclToUnfold___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Meta_Simp_rewrite___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*); @@ -176,6 +175,7 @@ lean_object* l_Lean_Meta_instantiateMVars(lean_object*, lean_object*, lean_objec lean_object* l_Array_forInUnsafe_loop___at_Lean_Meta_Simp_rewrite___spec__3(lean_object*, lean_object*, 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*); lean_object* l_Lean_Meta_Simp_rewrite_tryLemma_x3f___lambda__3___closed__1; lean_object* l_Lean_Meta_Simp_tryRewriteCtorEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__5; lean_object* l_Lean_Meta_DiscrTree_getMatch___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_insertionSort_traverse___at_Lean_Meta_Simp_rewrite___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Simp_tryRewriteCtorEq_match__1___rarg(lean_object*, lean_object*, lean_object*); @@ -6797,7 +6797,7 @@ x_8 = l_Lean_Expr_hasMVar(x_1); if (x_8 == 0) { lean_object* x_9; uint8_t x_10; -x_9 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__5; +x_9 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__5; x_10 = l_Lean_Expr_isConstOf(x_1, x_9); if (x_10 == 0) { diff --git a/stage0/stdlib/Lean/Meta/Tactic/Simp/SimpLemmas.c b/stage0/stdlib/Lean/Meta/Tactic/Simp/SimpLemmas.c index cb2000f224..844d29c8d1 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Simp/SimpLemmas.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Simp/SimpLemmas.c @@ -175,7 +175,6 @@ lean_object* l_Lean_Meta_instToFormatSimpLemma___closed__1; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_instToMessageDataSimpLemma(lean_object*); extern lean_object* l_myMacro____x40_Init_Core___hyg_1737____closed__4; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21870____closed__5; lean_object* l_List_mapM___at___private_Lean_Meta_AppBuilder_0__Lean_Meta_mkFun___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_instMetaEvalMetaM___rarg___closed__1; uint8_t l_Std_PersistentHashMap_contains___at_Lean_Meta_SimpLemmas_isDeclToUnfold___spec__1(lean_object*, lean_object*); @@ -301,6 +300,7 @@ lean_object* l_Lean_ScopedEnvExtension_add___at_Lean_Meta_addSimpLemma___spec__1 extern lean_object* l_Lean_EnvExtensionInterfaceUnsafe_instInhabitedExt___closed__1; extern size_t l_Std_PersistentHashMap_insertAux___rarg___closed__2; lean_object* l_Lean_PersistentEnvExtension_getState___rarg(lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__5; lean_object* l_Lean_throwError___at___private_Lean_Meta_Tactic_Simp_SimpLemmas_0__Lean_Meta_mkSimpLemmaCore___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SimpLemmas_eraseCore(lean_object*); lean_object* l_Std_PersistentHashMap_eraseAux___at_Lean_Meta_SimpLemmas_eraseCore___spec__2(lean_object*, size_t, lean_object*); @@ -6122,7 +6122,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_21870____closed__5; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21902____closed__5; x_3 = l_Lean_mkConst(x_2, x_1); return x_3; } diff --git a/stage0/stdlib/Lean/MonadEnv.c b/stage0/stdlib/Lean/MonadEnv.c index c9b41990a5..802c58f0f0 100644 --- a/stage0/stdlib/Lean/MonadEnv.c +++ b/stage0/stdlib/Lean/MonadEnv.c @@ -195,7 +195,6 @@ lean_object* l_List_foldlM___at___private_Lean_MonadEnv_0__Lean_checkUnsupported lean_object* l___private_Lean_MonadEnv_0__Lean_mkAuxNameAux(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getConstInfoRec___rarg___lambda__1___closed__1; lean_object* l_Lean_ofExcept___at_Lean_evalConstCheck___spec__1(lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__3; lean_object* l_Lean_isInductivePredicate___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_matchConstStruct(lean_object*, lean_object*); lean_object* l_Lean_getConstInfoRec___rarg___lambda__1___closed__2; @@ -210,6 +209,7 @@ lean_object* l_List_foldlM___at___private_Lean_MonadEnv_0__Lean_checkUnsupported lean_object* l_Lean_matchConst___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_map___at_Lean_mkConstWithLevelParams___spec__1(lean_object*); lean_object* l_Lean_mkLevelParam(lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__3; lean_object* l___private_Lean_MonadEnv_0__Lean_supportedRecursors___closed__17; lean_object* l_Lean_addDecl_match__1___rarg(lean_object*, lean_object*, lean_object*); uint8_t lean_level_eq(lean_object*, lean_object*); @@ -2193,7 +2193,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_MonadEnv_0__Lean_supportedRecursors___closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__3; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -2221,7 +2221,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_MonadEnv_0__Lean_supportedRecursors___closed__5; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__3; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -2231,7 +2231,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_7361____closed__4; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__3; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -2281,7 +2281,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_9209____closed__4; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__3; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } diff --git a/stage0/stdlib/Lean/Parser/Command.c b/stage0/stdlib/Lean/Parser/Command.c index 6c9679538c..c16d573b64 100644 --- a/stage0/stdlib/Lean/Parser/Command.c +++ b/stage0/stdlib/Lean/Parser/Command.c @@ -842,7 +842,6 @@ lean_object* l_Lean_Parser_Command_extends___closed__5; lean_object* l_Lean_Parser_Command_deriving___closed__6; lean_object* l_Lean_Parser_Command_mutual___closed__6; lean_object* l_Lean_Parser_Command_private___closed__5; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__9; lean_object* l_Lean_Parser_Command_export_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_initialize___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_namedPrio_formatter___closed__2; @@ -972,7 +971,6 @@ lean_object* l_Lean_Parser_Command_axiom_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_mutual___elambda__1___closed__12; lean_object* l_Lean_Parser_Command_structure_formatter___closed__21; lean_object* l_Lean_Parser_Command_structSimpleBinder_parenthesizer___closed__5; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; lean_object* l_Lean_Parser_Command_inferMod_parenthesizer___closed__2; lean_object* l_Lean_Parser_Tactic_set__option___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_structInstBinder_formatter___closed__2; @@ -1108,12 +1106,14 @@ extern lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_897____ lean_object* l_Lean_Parser_Command_initialize___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_end___closed__5; lean_object* l_Lean_Parser_Command_namedPrio_formatter___closed__8; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; extern lean_object* l_Lean_Parser_Term_optType; lean_object* l_Lean_Parser_Command_openRenaming___elambda__1___closed__12; lean_object* l___regBuiltin_Lean_Parser_Command_section_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Command_openDecl_formatter___closed__6; lean_object* l_Lean_Parser_Command_declId___closed__2; lean_object* l_Lean_Parser_Command_declVal___elambda__1___closed__1; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__1; lean_object* l___regBuiltin_Lean_Parser_Command_mutual_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__15; lean_object* l_Lean_Parser_Command_reduce_formatter___closed__3; @@ -1203,6 +1203,7 @@ lean_object* l_Lean_Parser_Command_openHiding_formatter___closed__6; lean_object* l_Lean_Parser_Command_optionValue___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_optionValue_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_openSimple_formatter___closed__2; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__2; lean_object* l_Lean_Parser_Command_initialize___closed__3; lean_object* l_Lean_Parser_Command_mutual___closed__11; lean_object* l___regBuiltin_Lean_Parser_Term_quot_formatter(lean_object*); @@ -1248,6 +1249,7 @@ lean_object* l_Lean_Parser_Command_partial___elambda__1___closed__10; lean_object* l_Lean_Parser_Command_printAxioms___elambda__1___closed__10; lean_object* l___regBuiltin_Lean_Parser_Term_open_formatter(lean_object*); lean_object* l_Lean_Parser_Command_protected___elambda__1___closed__3; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__9; lean_object* l_Lean_Parser_Command_structFields___elambda__1___closed__2; extern lean_object* l_Lean_Parser_Term_whereDecls___closed__7; lean_object* l_Lean_Parser_Command_print___closed__3; @@ -1423,7 +1425,6 @@ lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__5; lean_object* l_Lean_Parser_Command_end_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_optDeclSig_formatter___closed__1; lean_object* l_Lean_Parser_Command_structImplicitBinder___closed__5; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__1; extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_938____closed__19; lean_object* l_Lean_Parser_Command_variable___elambda__1(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_parserAliasesRef; @@ -2312,7 +2313,6 @@ lean_object* l_Lean_Parser_Command_end___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_set__option___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_axiom___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_structExplicitBinder_formatter___closed__10; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__2; extern lean_object* l_Lean_Parser_Tactic_tacticSeq; lean_object* l_Lean_Parser_Command_openRenaming___closed__8; extern lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5484____closed__25; @@ -26429,7 +26429,7 @@ static lean_object* _init_l_Lean_Parser_Command_optionValue___elambda__1___close _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; x_2 = l_String_trim(x_1); return x_2; } @@ -26576,7 +26576,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1160____closed__3; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__1; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -26595,7 +26595,7 @@ static lean_object* _init_l_Lean_Parser_Command_set__option___elambda__1___close _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__1; x_2 = l_Lean_Parser_Command_set__option___elambda__1___closed__2; x_3 = 1; x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); @@ -26867,7 +26867,7 @@ static lean_object* _init_l_Lean_Parser_Command_optionValue_formatter___closed__ _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; x_2 = 0; x_3 = lean_box(x_2); x_4 = lean_alloc_closure((void*)(l_Lean_Parser_nonReservedSymbol_formatter___boxed), 7, 2); @@ -26914,7 +26914,7 @@ static lean_object* _init_l_Lean_Parser_Command_set__option_formatter___closed__ _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__1; x_2 = l_Lean_Parser_Command_set__option___elambda__1___closed__2; x_3 = 1; x_4 = lean_box(x_3); @@ -32788,7 +32788,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1160____closed__3; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__9; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__9; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -34563,7 +34563,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__1; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -34582,7 +34582,7 @@ static lean_object* _init_l_Lean_Parser_Term_set__option___elambda__1___closed__ _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__1; x_2 = l_Lean_Parser_Term_set__option___elambda__1___closed__2; x_3 = 1; x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); @@ -34817,7 +34817,7 @@ static lean_object* _init_l_Lean_Parser_Term_set__option_formatter___closed__1() _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__1; x_2 = l_Lean_Parser_Term_set__option___elambda__1___closed__2; x_3 = 1; x_4 = lean_box(x_3); @@ -35436,7 +35436,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_set__option___elambda__1___closed _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__2; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -35446,7 +35446,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_set__option___elambda__1___closed _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__1; x_2 = l_Lean_Parser_Tactic_set__option___elambda__1___closed__1; x_3 = 1; x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); @@ -35505,7 +35505,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_set__option___elambda__1___closed _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__2; x_2 = l_Lean_Parser_Tactic_set__option___elambda__1___closed__6; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -35598,7 +35598,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_set__option___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__2; x_2 = l_Lean_Parser_Tactic_set__option___closed__4; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -35669,7 +35669,7 @@ _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_2 = l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__6; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__2; x_4 = 1; x_5 = l_Lean_Parser_Tactic_set__option; x_6 = lean_unsigned_to_nat(1000u); @@ -35681,7 +35681,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_set__option_formatter___closed__1 _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__1; x_2 = l_Lean_Parser_Tactic_set__option___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -35744,7 +35744,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_set__option_formatter___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_myMacro____x40_Init_Notation___hyg_22119____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__2; x_2 = l_Lean_Parser_leadPrec; x_3 = l_Lean_Parser_Tactic_set__option_formatter___closed__5; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -35777,7 +35777,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__2; x_4 = l___regBuiltin_Lean_Parser_Tactic_set__option_formatter___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -35848,7 +35848,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_set__option_parenthesizer___close _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_22119____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__2; x_2 = l_Lean_Parser_leadPrec; x_3 = l_Lean_Parser_Tactic_set__option_parenthesizer___closed__5; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -35881,7 +35881,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__2; x_4 = l___regBuiltin_Lean_Parser_Tactic_set__option_parenthesizer___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; diff --git a/stage0/stdlib/Lean/Parser/Do.c b/stage0/stdlib/Lean/Parser/Do.c index d2ce9acc2e..20d1e13bf3 100644 --- a/stage0/stdlib/Lean/Parser/Do.c +++ b/stage0/stdlib/Lean/Parser/Do.c @@ -636,6 +636,7 @@ lean_object* l_Lean_Parser_Term_doFor_formatter___closed__7; lean_object* l_Lean_Parser_Term_doIdDecl___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doForDecl___elambda__1___closed__7; lean_object* l___regBuiltin_Lean_Parser_Term_doReturn_formatter(lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__1; lean_object* l___regBuiltin_Lean_Parser_Term_doTry_formatter(lean_object*); lean_object* l_Lean_Parser_Term_elseIf___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_doFor___closed__4; @@ -823,7 +824,6 @@ lean_object* l_Lean_Parser_Term_notFollowedByRedefinedTermToken___elambda__1___c lean_object* l_Lean_Parser_Term_letIdDeclNoBinders_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doCatch___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_doNested___closed__1; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__1; lean_object* l_Lean_Parser_Term_doContinue___closed__2; lean_object* l_Lean_Parser_Term_doSeqBracketed_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_parserAliasesRef; @@ -1350,6 +1350,7 @@ lean_object* l_Lean_Parser_Term_doContinue___closed__7; lean_object* l_Lean_Parser_Term_doCatchMatch; lean_object* l_Lean_Parser_Term_doIf_formatter___closed__8; lean_object* l_Lean_Parser_Term_doContinue_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__2; lean_object* l_Lean_Parser_Term_termTry_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_doFor_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doSeqItem___closed__2; @@ -1818,7 +1819,6 @@ lean_object* l_Lean_Parser_Term_doIf___elambda__1___closed__34; lean_object* l_Lean_Parser_Term_doCatch___closed__11; lean_object* l_Lean_Parser_Term_liftMethod_formatter___closed__1; lean_object* l_Lean_Parser_Term_initFn____x40_Lean_Parser_Do___hyg_193____closed__11; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__2; lean_object* l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_notFollowedByRedefinedTermToken___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_doUnless_parenthesizer___closed__1; @@ -4590,7 +4590,7 @@ static lean_object* _init_l_Lean_Parser_Term_notFollowedByRedefinedTermToken___e _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__2; x_2 = l_String_trim(x_1); return x_2; } @@ -4811,7 +4811,7 @@ static lean_object* _init_l_Lean_Parser_Term_notFollowedByRedefinedTermToken___e _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__1; x_2 = l_String_trim(x_1); return x_2; } diff --git a/stage0/stdlib/Lean/Parser/Term.c b/stage0/stdlib/Lean/Parser/Term.c index 13a54bb23d..921fd1678b 100644 --- a/stage0/stdlib/Lean/Parser/Term.c +++ b/stage0/stdlib/Lean/Parser/Term.c @@ -1055,7 +1055,6 @@ lean_object* l_Lean_Parser_Term_str_parenthesizer(lean_object*, lean_object*, le lean_object* l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__10; lean_object* l_Lean_Parser_Term_funSimpleBinder; lean_object* l___regBuiltin_Lean_Parser_Tactic_quotSeq_formatter___closed__1; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__3; lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented_parenthesizer___closed__1; lean_object* l___regBuiltin_Lean_Parser_Term_byTactic_formatter(lean_object*); lean_object* l_Lean_Parser_Term_unreachable___elambda__1___closed__7; @@ -1141,6 +1140,7 @@ lean_object* l_Lean_Parser_Term_whereDecls_formatter___closed__2; lean_object* l_Lean_Parser_Term_structInst_formatter___closed__8; lean_object* l___regBuiltin_Lean_Parser_Term_type_formatter(lean_object*); lean_object* l_Lean_Parser_Term_noindex___closed__2; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__1; lean_object* l_Lean_Parser_Term_matchDiscr___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_scientific_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_match___closed__3; @@ -1338,7 +1338,6 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_attr_quot(lean_object*); lean_object* l_Lean_Parser_Term_funImplicitBinder___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_hole___closed__4; lean_object* l_Lean_Parser_Term_structInstLVal___closed__3; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__2; lean_object* l_Lean_Parser_Term_fun___closed__6; lean_object* l_Lean_Parser_Tactic_quot___elambda__1___closed__6; lean_object* l_Lean_Parser_Tactic_quotSeq_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1523,7 +1522,6 @@ extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_377____clos lean_object* l_Lean_Parser_Term_attributes_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_suffices___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_arrow___closed__8; -lean_object* l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__12; lean_object* l_Lean_Parser_checkLhsPrecFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_ensureTypeOf___closed__8; lean_object* l_Lean_Parser_Term_dbgTrace___elambda__1___closed__11; @@ -1647,7 +1645,6 @@ lean_object* l_Lean_Parser_Term_parenSpecial_formatter___closed__1; lean_object* l_Lean_Parser_Term_let__fun___elambda__1___closed__16; lean_object* l_Lean_Parser_Term_trailing__parser_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_explicitBinder_formatter___closed__8; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__2; lean_object* l_Lean_Parser_Term_explicitBinder___closed__7; extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16699____closed__5; lean_object* l_Lean_Parser_Term_match___closed__5; @@ -1709,6 +1706,7 @@ lean_object* l_Lean_Parser_Term_letIdLhs___closed__3; lean_object* l_Lean_Parser_Term_binderTactic___elambda__1___closed__14; lean_object* l_Lean_Parser_Term_namedPattern___elambda__1___closed__4; lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_4020____closed__21; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__2; lean_object* l_Lean_Parser_Term_typeSpec; lean_object* l_Lean_Parser_Term_leading__parser___closed__5; lean_object* l_Lean_Parser_Tactic_quot_formatter___closed__3; @@ -1725,7 +1723,6 @@ lean_object* l_Lean_Parser_Term_show___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_structInst_parenthesizer___closed__9; lean_object* l_Lean_Parser_Term_macroDollarArg___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_type___closed__7; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__4; lean_object* l_Lean_Parser_Term_doubleQuotedName___closed__3; lean_object* l_Lean_Parser_Term_arrayRef; lean_object* l_Lean_Parser_Term_subst___elambda__1___closed__7; @@ -1886,7 +1883,6 @@ lean_object* l_Lean_Parser_Term_scoped___closed__7; lean_object* l_Lean_Parser_Term_implicitBinder_parenthesizer(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_attrKind___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_structInstField___elambda__1___closed__5; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__1; lean_object* l_Lean_Parser_Term_tupleTail_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_quot_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_funImplicitBinder_parenthesizer___closed__1; @@ -2030,7 +2026,6 @@ lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_4020____closed__ lean_object* l_Lean_Parser_Term_binderIdent___closed__1; lean_object* l_Lean_Parser_Term_letEqnsDecl_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_paren___elambda__1___closed__11; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__1; lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_4020____closed__2; extern lean_object* l_Lean_Parser_Tactic_letrec___closed__1; lean_object* l_Lean_Parser_Term_quotedName___elambda__1(lean_object*, lean_object*); @@ -2044,6 +2039,7 @@ lean_object* l___regBuiltin_Lean_Parser_Term_letrec_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_ensureTypeOf___closed__1; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__13; lean_object* l_Lean_Parser_Term_structInst_parenthesizer___closed__11; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__4; lean_object* l_Lean_Parser_Term_let__fun___closed__5; lean_object* l_Lean_Parser_Term_type___elambda__1___closed__12; lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__19; @@ -2096,6 +2092,7 @@ lean_object* l_Lean_Parser_Term_explicit___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_whereDecls_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_assert___elambda__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__2; lean_object* l_Lean_Parser_Term_local_formatter___closed__2; lean_object* l_Lean_Parser_Term_explicit_parenthesizer___closed__2; lean_object* l_Lean_Parser_Tactic_quot___elambda__1___closed__2; @@ -2127,6 +2124,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_num(lean_object*); lean_object* l_Lean_Parser_Term_app_formatter___closed__2; lean_object* l_Lean_Parser_Tactic_quot___closed__6; lean_object* l_Lean_Parser_Term_have_parenthesizer___closed__1; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__1; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__36; lean_object* l_Lean_Parser_Term_type_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_binderDefault___elambda__1___closed__3; @@ -2300,7 +2298,6 @@ lean_object* l_Lean_Parser_Term_basicFun___closed__6; lean_object* l_Lean_Parser_Term_fun___closed__4; lean_object* l_Lean_Parser_Term_typeSpec___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_typeAscription___elambda__1___closed__8; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__2; lean_object* l_Lean_Parser_Term_panic_formatter___closed__4; lean_object* l_Lean_Parser_Term_forInMacro_formatter___closed__3; lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__15; @@ -2316,7 +2313,6 @@ lean_object* l_Lean_Parser_Term_arrow___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_matchAltsWhereDecls___closed__7; lean_object* l_Lean_Parser_Term_explicit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_dbgTrace___elambda__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19351____closed__1; lean_object* l_Lean_Parser_Term_explicit___closed__7; lean_object* l_Lean_Parser_Term_completion___closed__1; lean_object* l_Lean_Parser_Term_namedPattern___closed__5; @@ -2385,6 +2381,7 @@ lean_object* l___regBuiltin_Lean_Parser_Term_sorry_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_subst___elambda__1___closed__10; lean_object* l_Lean_Parser_Term_matchDiscr___elambda__1___closed__11; lean_object* l_Lean_Parser_Term_ensureTypeOf___elambda__1___closed__12; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367____closed__1; lean_object* l_Lean_Parser_Term_hole___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_letPatDecl_formatter___closed__3; lean_object* l_Lean_Parser_Term_structInstArrayRef_formatter___closed__3; @@ -2530,6 +2527,7 @@ lean_object* l_Lean_Parser_Term_noindex; lean_object* l_Lean_Parser_Term_haveAssign___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_letEqnsDecl_formatter___closed__1; lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__2; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__3; lean_object* l_Lean_Parser_Term_funSimpleBinder_formatter___closed__2; lean_object* l_Lean_Parser_Term_whereDecls___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_matchAltsWhereDecls___elambda__1___closed__1; @@ -2576,7 +2574,6 @@ lean_object* l_Lean_Parser_Term_simpleBinder_formatter___closed__4; lean_object* l_Lean_Parser_Term_borrowed_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_unreachable_formatter___closed__2; lean_object* l_Lean_Parser_Term_ensureTypeOf; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19351____closed__2; lean_object* l_Lean_Parser_Term_panic___elambda__1___closed__7; lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed_formatter___closed__4; lean_object* l_Lean_Parser_Term_leading__parser_parenthesizer___closed__4; @@ -2620,6 +2617,7 @@ lean_object* l_Lean_Parser_Term_letIdLhs___closed__2; lean_object* l___regBuiltin_Lean_Parser_Term_noImplicitLambda_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_show___closed__3; lean_object* l_Lean_Parser_Term_completion; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__29; lean_object* l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__16; lean_object* l_Lean_Parser_Term_letrec___closed__9; @@ -2680,7 +2678,6 @@ lean_object* l_Lean_Parser_Term_str_formatter(lean_object*, lean_object*, lean_o lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__15; lean_object* l_Lean_Parser_Tactic_quot_formatter___closed__4; lean_object* l_Lean_Parser_Term_byTactic_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed_formatter___closed__7; lean_object* l_Lean_Parser_Term_macroDollarArg___closed__7; lean_object* l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__9; @@ -2824,7 +2821,6 @@ lean_object* l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_simpleBinderWithoutType_formatter___closed__1; lean_object* l___regBuiltin_Lean_Parser_Term_sort_formatter___closed__1; lean_object* l_Lean_Parser_Term_leading__parser_parenthesizer___closed__1; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__3; lean_object* l_Lean_Parser_Term_let__fun_formatter___closed__6; lean_object* l___regBuiltin_Lean_Parser_Term_ident_formatter(lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Term_num___closed__1; @@ -3009,6 +3005,7 @@ lean_object* l_Lean_Parser_Term_letrec_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_num; lean_object* l_Lean_Parser_Term_stateRefT_formatter___closed__4; lean_object* l_Lean_Parser_Term_optEllipsis___elambda__1___closed__11; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367____closed__2; lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed_formatter___closed__10; extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16699____closed__2; lean_object* l_Lean_Parser_Term_haveDecl_parenthesizer___closed__5; @@ -3077,6 +3074,7 @@ lean_object* l_Lean_Parser_Term_explicitUniv___closed__8; lean_object* l_Lean_Parser_Term_letPatDecl_formatter___closed__5; lean_object* l_Lean_Parser_Term_suffices_formatter___closed__2; lean_object* l___regBuiltin_Lean_Parser_Term_funBinder_quot_formatter(lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__1; lean_object* l_Lean_Parser_Term_prop___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_paren___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_syntheticHole_formatter___closed__2; @@ -3120,7 +3118,6 @@ lean_object* l_Lean_Parser_Term_letDecl___closed__8; lean_object* l_Lean_Parser_Tactic_quot___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_namedArgument_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_bracketedBinder_quot___closed__8; -extern lean_object* l_myMacro____x40_Init_Notation___hyg_22312____closed__2; lean_object* l_Lean_Parser_Level_quot___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_binderTactic_formatter___closed__2; lean_object* l_Lean_Parser_Term_explicitBinder___closed__2; @@ -3229,6 +3226,7 @@ lean_object* l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_whereDecls_formatter___closed__1; lean_object* l_Lean_Parser_Term_have___closed__4; lean_object* l_Lean_Parser_Term_byTactic___elambda__1___closed__3; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__2; lean_object* l_Lean_Parser_Term_borrowed___elambda__1___closed__13; lean_object* l___regBuiltin_Lean_Parser_Term_matchDiscr_quot_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_pipeProj_formatter___closed__4; @@ -3268,7 +3266,6 @@ lean_object* l_Lean_Parser_Term_syntheticHole_formatter___closed__1; lean_object* l_Lean_Parser_Term_stateRefT_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_optExprPrecedence___closed__2; lean_object* l_Lean_Parser_Term_letIdLhs___closed__4; -extern lean_object* l_myMacro____x40_Init_Notation___hyg_22312____closed__1; lean_object* l_Lean_Parser_Term_typeAscription_formatter___closed__4; lean_object* l___regBuiltin_Lean_Parser_Term_byTactic_formatter___closed__1; lean_object* l_Lean_Parser_Term_sufficesDecl___elambda__1___closed__8; @@ -3324,6 +3321,7 @@ lean_object* l_Lean_Parser_Term_depArrow_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_syntheticHole___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_trailing__parser___elambda__1___closed__11; lean_object* l_Lean_Parser_Term_bracketedBinder_quot___closed__4; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__2; lean_object* l_Lean_Parser_Term_whereDecls___elambda__1___closed__11; lean_object* l_Lean_Parser_Term_show_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_bracketedBinder_quot___closed__9; @@ -3495,6 +3493,7 @@ lean_object* l_Lean_Parser_Term_type_formatter___closed__3; lean_object* l_Lean_Parser_Term_binderDefault___elambda__1___closed__2; lean_object* l_String_trim(lean_object*); lean_object* l_Lean_Parser_Term_ellipsis_formatter___closed__2; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__2; lean_object* l_Lean_Parser_Term_namedArgument_formatter___closed__5; lean_object* l_Lean_Parser_Term_ensureTypeOf_formatter___closed__2; lean_object* l_Lean_Parser_Term_optExprPrecedence; @@ -3504,7 +3503,6 @@ lean_object* l_Lean_Parser_Term_trailing__parser___closed__5; lean_object* l_Lean_Parser_Term_haveDecl_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_byTactic___elambda__1___closed__10; lean_object* l___regBuiltin_Lean_Parser_Term_structInst_parenthesizer___closed__1; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__4; lean_object* l_Lean_Parser_Term_subst_formatter___closed__3; lean_object* l___regBuiltinParser_Lean_Parser_Term_byTactic(lean_object*); lean_object* l_Lean_Parser_darrow___elambda__1(lean_object*, lean_object*); @@ -3575,6 +3573,7 @@ lean_object* l_Lean_Parser_Term_structInst_formatter(lean_object*, lean_object*, lean_object* l_Lean_Parser_Term_optIdent_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_let_parenthesizer___closed__3; lean_object* l_Lean_Parser_Tactic_quot___closed__5; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__3; lean_object* l___regBuiltin_Lean_Parser_Term_match_formatter___closed__1; lean_object* l_Lean_Parser_Term_basicFun___closed__8; lean_object* l_Lean_Parser_Term_suffices_parenthesizer___closed__4; @@ -3599,6 +3598,7 @@ lean_object* l_Lean_Parser_Term_funSimpleBinder_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_tupleTail_formatter___closed__2; lean_object* l_Lean_Parser_Term_trailing__parser___closed__3; lean_object* l_Lean_Parser_Term_letRecDecl___closed__5; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__1; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_assert_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_parenthesizerAliasesRef; @@ -3606,6 +3606,7 @@ lean_object* l_Lean_Parser_Term_matchDiscr; lean_object* l_Lean_Parser_Term_cdot___closed__7; lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed___elambda__1___closed__13; lean_object* l_Lean_Parser_Term_prop_formatter___closed__2; +extern lean_object* l_myMacro____x40_Init_Notation___hyg_22344____closed__2; lean_object* l_Lean_Parser_Term_assert___closed__7; lean_object* l_Lean_Parser_Term_macroDollarArg_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_emptyC___elambda__1___closed__10; @@ -3616,7 +3617,6 @@ lean_object* l_Lean_Parser_Term_cdot_formatter(lean_object*, lean_object*, lean_ lean_object* l_Lean_Parser_Term_argument___closed__6; lean_object* l_Lean_Parser_Term_stateRefT___closed__5; lean_object* l_Lean_Parser_Term_letRecDecls___closed__4; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__3; lean_object* l_Lean_Parser_Term_let__delayed___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_unreachable_formatter___closed__1; lean_object* l_Lean_Parser_Term_matchAlt_formatter___closed__2; @@ -3645,7 +3645,6 @@ lean_object* l_Lean_Parser_Level_quot___closed__6; lean_object* l_Lean_Parser_Term_match___elambda__1___closed__10; lean_object* l___regBuiltin_Lean_Parser_Term_trailing__parser_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_stateRefT___elambda__1___closed__4; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__3; lean_object* l_Lean_Parser_Term_binrel___closed__11; lean_object* l___regBuiltin_Lean_Parser_Term_num_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_let__fun_parenthesizer___closed__4; @@ -3691,6 +3690,7 @@ lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed___closed__6; lean_object* l_Lean_Parser_Term_macroDollarArg___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_structInstArrayRef___closed__6; lean_object* l_Lean_Parser_Term_letIdDecl___closed__4; +extern lean_object* l_myMacro____x40_Init_Notation___hyg_22344____closed__1; lean_object* l___regBuiltin_Lean_Parser_Term_hole_formatter(lean_object*); lean_object* l_Lean_Parser_Term_binderTactic___closed__6; lean_object* l___regBuiltinParser_Lean_Parser_Term_dbgTrace(lean_object*); @@ -3956,10 +3956,10 @@ lean_object* l___regBuiltin_Lean_Parser_Term_forInMacro_formatter___closed__1; lean_object* l_Lean_Parser_Term_leading__parser___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_paren___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_attr_quot___closed__1; -lean_object* l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__11; lean_object* l_Lean_Parser_Term_letIdLhs; lean_object* l_Lean_Parser_Term_letRecDecl___closed__1; lean_object* l_Lean_Parser_Term_explicitBinder_formatter___closed__3; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__3; lean_object* l_Lean_Parser_Term_suffices_formatter___closed__3; lean_object* l_Lean_Parser_Term_funBinder_quot___elambda__1___closed__11; lean_object* l_Lean_Parser_Term_simpleBinderWithoutType___closed__3; @@ -4040,7 +4040,6 @@ lean_object* l_Lean_Parser_Term_borrowed___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_letRecDecl___closed__2; lean_object* l_Lean_Parser_Term_noindex_formatter___closed__4; lean_object* l___regBuiltinParser_Lean_Parser_Term_borrowed(lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__1; lean_object* l_Lean_Parser_Term_depArrow___elambda__1___closed__11; lean_object* l_Lean_Parser_Term_ensureExpectedType___elambda__1___closed__6; lean_object* l_Lean_Parser_Tactic_quot___elambda__1___closed__11; @@ -4149,6 +4148,7 @@ lean_object* l_Lean_Parser_Term_namedPattern___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed___elambda__1___closed__16; lean_object* l_Lean_Parser_Term_attr_quot_formatter___closed__2; lean_object* l_Lean_Parser_Term_namedArgument___closed__9; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__3; lean_object* l_Lean_Parser_Term_suffices___closed__6; lean_object* l_Lean_Parser_Term_fun_formatter___closed__4; lean_object* l_Lean_PrettyPrinter_Formatter_withoutPosition_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -4180,6 +4180,7 @@ lean_object* l_Lean_Parser_Term_trailing__parser_formatter___closed__5; lean_object* l_Lean_Parser_Term_ensureExpectedType___closed__6; lean_object* l_Lean_Parser_Term_funBinder_quot___elambda__1___closed__9; lean_object* l___regBuiltin_Lean_Parser_Term_letrec_parenthesizer___closed__1; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__4; lean_object* l_Lean_Parser_Term_funSimpleBinder___closed__4; lean_object* l_Lean_Parser_Term_emptyC___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_binderDefault___closed__5; @@ -4340,7 +4341,6 @@ lean_object* l_Lean_Parser_Term_ident___closed__2; lean_object* l_Lean_Parser_Term_binderTactic___closed__5; lean_object* l___regBuiltin_Lean_Parser_Term_bracketedBinder_quot_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_bracketedBinder_quot_formatter___closed__2; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__2; lean_object* l_Lean_Parser_Term_paren_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__11; lean_object* l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -5761,7 +5761,7 @@ static lean_object* _init_l_Lean_Parser_Term_byTactic___elambda__1___closed__1() _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_22312____closed__2; +x_1 = l_myMacro____x40_Init_Notation___hyg_22344____closed__2; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -5771,7 +5771,7 @@ static lean_object* _init_l_Lean_Parser_Term_byTactic___elambda__1___closed__2() _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_22312____closed__1; +x_1 = l_myMacro____x40_Init_Notation___hyg_22344____closed__1; x_2 = l_Lean_Parser_Term_byTactic___elambda__1___closed__1; x_3 = 1; x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); @@ -5843,7 +5843,7 @@ static lean_object* _init_l_Lean_Parser_Term_byTactic___elambda__1___closed__9() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_22312____closed__2; +x_1 = l_myMacro____x40_Init_Notation___hyg_22344____closed__2; x_2 = l_Lean_Parser_Term_byTactic___elambda__1___closed__7; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -5923,7 +5923,7 @@ static lean_object* _init_l_Lean_Parser_Term_byTactic___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_22312____closed__2; +x_1 = l_myMacro____x40_Init_Notation___hyg_22344____closed__2; x_2 = l_Lean_Parser_Term_byTactic___closed__2; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -5994,7 +5994,7 @@ _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_2 = l_term___u2218_____closed__6; -x_3 = l_myMacro____x40_Init_Notation___hyg_22312____closed__2; +x_3 = l_myMacro____x40_Init_Notation___hyg_22344____closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_byTactic; x_6 = lean_unsigned_to_nat(1000u); @@ -6298,7 +6298,7 @@ static lean_object* _init_l_Lean_Parser_Term_byTactic_formatter___closed__1() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_myMacro____x40_Init_Notation___hyg_22312____closed__1; +x_1 = l_myMacro____x40_Init_Notation___hyg_22344____closed__1; x_2 = l_Lean_Parser_Term_byTactic___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -6343,7 +6343,7 @@ static lean_object* _init_l_Lean_Parser_Term_byTactic_formatter___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_22312____closed__2; +x_1 = l_myMacro____x40_Init_Notation___hyg_22344____closed__2; x_2 = l_Lean_Parser_leadPrec; x_3 = l_Lean_Parser_Term_byTactic_formatter___closed__4; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -6376,7 +6376,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_myMacro____x40_Init_Notation___hyg_22312____closed__2; +x_3 = l_myMacro____x40_Init_Notation___hyg_22344____closed__2; x_4 = l___regBuiltin_Lean_Parser_Term_byTactic_formatter___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -6661,7 +6661,7 @@ static lean_object* _init_l_Lean_Parser_Term_byTactic_parenthesizer___closed__4( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_myMacro____x40_Init_Notation___hyg_22312____closed__2; +x_1 = l_myMacro____x40_Init_Notation___hyg_22344____closed__2; x_2 = l_Lean_Parser_leadPrec; x_3 = l_Lean_Parser_Term_byTactic_parenthesizer___closed__3; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -6694,7 +6694,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_myMacro____x40_Init_Notation___hyg_22312____closed__2; +x_3 = l_myMacro____x40_Init_Notation___hyg_22344____closed__2; x_4 = l___regBuiltin_Lean_Parser_Term_byTactic_parenthesizer___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -9031,7 +9031,7 @@ static lean_object* _init_l_Lean_Parser_Term_syntheticHole___elambda__1___closed _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -9041,7 +9041,7 @@ static lean_object* _init_l_Lean_Parser_Term_syntheticHole___elambda__1___closed _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__4; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__4; x_2 = l_Lean_Parser_Term_syntheticHole___elambda__1___closed__1; x_3 = 1; x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); @@ -9076,7 +9076,7 @@ static lean_object* _init_l_Lean_Parser_Term_syntheticHole___elambda__1___closed _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; x_2 = l_Lean_Parser_Term_syntheticHole___elambda__1___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -9149,7 +9149,7 @@ static lean_object* _init_l_Lean_Parser_Term_syntheticHole___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; x_2 = l_Lean_Parser_Term_syntheticHole___closed__2; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -9220,7 +9220,7 @@ _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_2 = l_term___u2218_____closed__6; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; x_4 = 1; x_5 = l_Lean_Parser_Term_syntheticHole; x_6 = lean_unsigned_to_nat(1000u); @@ -9232,7 +9232,7 @@ static lean_object* _init_l_Lean_Parser_Term_syntheticHole_formatter___closed__1 _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__4; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__4; x_2 = l_Lean_Parser_Term_syntheticHole___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -9271,7 +9271,7 @@ static lean_object* _init_l_Lean_Parser_Term_syntheticHole_formatter___closed__4 _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_18957____closed__5; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_syntheticHole_formatter___closed__3; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -9304,7 +9304,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; x_4 = l___regBuiltin_Lean_Parser_Term_syntheticHole_formatter___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -9351,7 +9351,7 @@ static lean_object* _init_l_Lean_Parser_Term_syntheticHole_parenthesizer___close _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_18957____closed__5; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_syntheticHole_parenthesizer___closed__3; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -9384,7 +9384,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; x_4 = l___regBuiltin_Lean_Parser_Term_syntheticHole_parenthesizer___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -12726,7 +12726,7 @@ static lean_object* _init_l_Lean_Parser_Term_fromTerm___elambda__1___closed__1() _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__4; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__4; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -12736,7 +12736,7 @@ static lean_object* _init_l_Lean_Parser_Term_fromTerm___elambda__1___closed__2() _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__3; x_2 = l_Lean_Parser_Term_fromTerm___elambda__1___closed__1; x_3 = 1; x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); @@ -12796,7 +12796,7 @@ static lean_object* _init_l_Lean_Parser_Term_fromTerm___elambda__1___closed__8() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__4; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__4; x_2 = l_Lean_Parser_Term_fromTerm___elambda__1___closed__7; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -12866,7 +12866,7 @@ static lean_object* _init_l_Lean_Parser_Term_fromTerm___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__4; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__4; x_2 = l_Lean_Parser_Term_fromTerm___closed__2; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -12936,7 +12936,7 @@ static lean_object* _init_l_Lean_Parser_Term_haveAssign___elambda__1___closed__1 _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__3; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -12946,7 +12946,7 @@ static lean_object* _init_l_Lean_Parser_Term_haveAssign___elambda__1___closed__2 _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__2; x_2 = l_Lean_Parser_Term_haveAssign___elambda__1___closed__1; x_3 = 1; x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); @@ -12998,7 +12998,7 @@ static lean_object* _init_l_Lean_Parser_Term_haveAssign___elambda__1___closed__7 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__3; x_2 = l_Lean_Parser_Term_haveAssign___elambda__1___closed__6; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -13068,7 +13068,7 @@ static lean_object* _init_l_Lean_Parser_Term_haveAssign___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__3; x_2 = l_Lean_Parser_Term_haveAssign___closed__2; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -13138,7 +13138,7 @@ static lean_object* _init_l_Lean_Parser_Term_haveDecl___elambda__1___closed__1() _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__1; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -13209,7 +13209,7 @@ static lean_object* _init_l_Lean_Parser_Term_haveDecl___elambda__1___closed__7() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__1; x_2 = l_Lean_Parser_Term_haveDecl___elambda__1___closed__6; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -13308,7 +13308,7 @@ static lean_object* _init_l_Lean_Parser_Term_haveDecl___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__1; x_2 = l_Lean_Parser_Term_haveDecl___closed__4; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -13709,7 +13709,7 @@ static lean_object* _init_l_Lean_Parser_Term_have___elambda__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__3; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -13719,7 +13719,7 @@ static lean_object* _init_l_Lean_Parser_Term_have___elambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__2; x_2 = l_Lean_Parser_Term_have___elambda__1___closed__1; x_3 = 1; x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); @@ -13772,7 +13772,7 @@ static lean_object* _init_l_Lean_Parser_Term_have___elambda__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__3; x_2 = l_Lean_Parser_Term_have___elambda__1___closed__6; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -13854,7 +13854,7 @@ static lean_object* _init_l_Lean_Parser_Term_have___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__3; x_2 = l_Lean_Parser_Term_have___closed__3; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -13934,7 +13934,7 @@ _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_2 = l_term___u2218_____closed__6; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__3; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__3; x_4 = 1; x_5 = l_Lean_Parser_Term_have; x_6 = lean_unsigned_to_nat(1000u); @@ -13977,7 +13977,7 @@ static lean_object* _init_l_Lean_Parser_Term_haveAssign_formatter___closed__1() _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19153____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__2; x_2 = l_Lean_Parser_Term_haveAssign___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -14014,7 +14014,7 @@ static lean_object* _init_l_Lean_Parser_Term_haveAssign_formatter___closed__4() _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_19153____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__3; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_haveAssign_formatter___closed__3; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -14038,7 +14038,7 @@ static lean_object* _init_l_Lean_Parser_Term_fromTerm_formatter___closed__1() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__3; x_2 = l_Lean_Parser_Term_fromTerm___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -14075,7 +14075,7 @@ static lean_object* _init_l_Lean_Parser_Term_fromTerm_formatter___closed__4() { _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_19722____closed__4; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__4; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_fromTerm_formatter___closed__3; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -14186,7 +14186,7 @@ static lean_object* _init_l_Lean_Parser_Term_haveDecl_formatter___closed__9() { _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_19153____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__1; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_haveDecl_formatter___closed__8; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -14226,7 +14226,7 @@ static lean_object* _init_l_Lean_Parser_Term_have_formatter___closed__1() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__2; x_2 = l_Lean_Parser_Term_have___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -14303,7 +14303,7 @@ static lean_object* _init_l_Lean_Parser_Term_have_formatter___closed__8() { _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_18957____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__3; x_2 = l_Lean_Parser_leadPrec; x_3 = l_Lean_Parser_Term_have_formatter___closed__7; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -14336,7 +14336,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__3; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__3; x_4 = l___regBuiltin_Lean_Parser_Term_have_formatter___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -14390,7 +14390,7 @@ static lean_object* _init_l_Lean_Parser_Term_haveAssign_parenthesizer___closed__ _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_19153____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__3; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_typeAscription_parenthesizer___closed__2; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -14427,7 +14427,7 @@ static lean_object* _init_l_Lean_Parser_Term_fromTerm_parenthesizer___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_myMacro____x40_Init_Notation___hyg_19722____closed__4; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__4; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_typeAscription_parenthesizer___closed__2; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -14536,7 +14536,7 @@ static lean_object* _init_l_Lean_Parser_Term_haveDecl_parenthesizer___closed__9( _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_19153____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19169____closed__1; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_haveDecl_parenthesizer___closed__8; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -14638,7 +14638,7 @@ static lean_object* _init_l_Lean_Parser_Term_have_parenthesizer___closed__7() { _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_18957____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__3; x_2 = l_Lean_Parser_leadPrec; x_3 = l_Lean_Parser_Term_have_parenthesizer___closed__6; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -14671,7 +14671,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__3; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__3; x_4 = l___regBuiltin_Lean_Parser_Term_have_parenthesizer___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -15212,7 +15212,7 @@ static lean_object* _init_l_Lean_Parser_Term_suffices___elambda__1___closed__1() _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19351____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367____closed__2; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -15222,7 +15222,7 @@ static lean_object* _init_l_Lean_Parser_Term_suffices___elambda__1___closed__2() _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19351____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367____closed__1; x_2 = l_Lean_Parser_Term_suffices___elambda__1___closed__1; x_3 = 1; x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); @@ -15266,7 +15266,7 @@ static lean_object* _init_l_Lean_Parser_Term_suffices___elambda__1___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_19351____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367____closed__2; x_2 = l_Lean_Parser_Term_suffices___elambda__1___closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -15348,7 +15348,7 @@ static lean_object* _init_l_Lean_Parser_Term_suffices___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19351____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367____closed__2; x_2 = l_Lean_Parser_Term_suffices___closed__3; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -15428,7 +15428,7 @@ _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_2 = l_term___u2218_____closed__6; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19351____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367____closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_suffices; x_6 = lean_unsigned_to_nat(1000u); @@ -15503,7 +15503,7 @@ static lean_object* _init_l_Lean_Parser_Term_suffices_formatter___closed__1() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19351____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367____closed__1; x_2 = l_Lean_Parser_Term_suffices___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -15570,7 +15570,7 @@ static lean_object* _init_l_Lean_Parser_Term_suffices_formatter___closed__7() { _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_19351____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367____closed__2; x_2 = l_Lean_Parser_leadPrec; x_3 = l_Lean_Parser_Term_suffices_formatter___closed__6; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -15603,7 +15603,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19351____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367____closed__2; x_4 = l___regBuiltin_Lean_Parser_Term_suffices_formatter___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -15729,7 +15729,7 @@ static lean_object* _init_l_Lean_Parser_Term_suffices_parenthesizer___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_myMacro____x40_Init_Notation___hyg_19351____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367____closed__2; x_2 = l_Lean_Parser_leadPrec; x_3 = l_Lean_Parser_Term_suffices_parenthesizer___closed__5; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -15762,7 +15762,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19351____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19367____closed__2; x_4 = l___regBuiltin_Lean_Parser_Term_suffices_parenthesizer___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -15772,7 +15772,7 @@ static lean_object* _init_l_Lean_Parser_Term_show___elambda__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__2; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -15782,7 +15782,7 @@ static lean_object* _init_l_Lean_Parser_Term_show___elambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__1; x_2 = l_Lean_Parser_Term_show___elambda__1___closed__1; x_3 = 1; x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); @@ -15834,7 +15834,7 @@ static lean_object* _init_l_Lean_Parser_Term_show___elambda__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__2; x_2 = l_Lean_Parser_Term_show___elambda__1___closed__6; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -15902,7 +15902,7 @@ static lean_object* _init_l_Lean_Parser_Term_show___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__2; x_2 = l_Lean_Parser_Term_show___closed__2; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -15973,7 +15973,7 @@ _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_2 = l_term___u2218_____closed__6; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_show; x_6 = lean_unsigned_to_nat(1000u); @@ -15985,7 +15985,7 @@ static lean_object* _init_l_Lean_Parser_Term_show_formatter___closed__1() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__1; x_2 = l_Lean_Parser_Term_show___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -16022,7 +16022,7 @@ static lean_object* _init_l_Lean_Parser_Term_show_formatter___closed__4() { _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_19722____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__2; x_2 = l_Lean_Parser_leadPrec; x_3 = l_Lean_Parser_Term_show_formatter___closed__3; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -16055,7 +16055,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__2; x_4 = l___regBuiltin_Lean_Parser_Term_show_formatter___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -16090,7 +16090,7 @@ static lean_object* _init_l_Lean_Parser_Term_show_parenthesizer___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_19722____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__2; x_2 = l_Lean_Parser_leadPrec; x_3 = l_Lean_Parser_Term_show_parenthesizer___closed__2; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -16123,7 +16123,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19722____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19738____closed__2; x_4 = l___regBuiltin_Lean_Parser_Term_show_parenthesizer___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -29547,7 +29547,7 @@ static lean_object* _init_l_Lean_Parser_Term_letDecl___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__3; x_2 = l_String_trim(x_1); return x_2; } @@ -29577,7 +29577,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_letDecl___closed__3; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__3; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__3; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_notFollowedByFn___boxed), 4, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -30517,7 +30517,7 @@ static lean_object* _init_l_Lean_Parser_Term_letDecl_formatter___closed__1() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__3; x_2 = 0; x_3 = lean_box(x_2); x_4 = lean_alloc_closure((void*)(l_Lean_Parser_nonReservedSymbol_formatter___boxed), 7, 2); @@ -33597,7 +33597,7 @@ static lean_object* _init_l_Lean_Parser_Term_letRecDecls___elambda__1___closed__ _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__1; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -33633,7 +33633,7 @@ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Term_letRecDecls___elambda__1___closed__3; x_2 = lean_ctor_get(x_1, 1); lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__1; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__1; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_4, 0, x_3); lean_closure_set(x_4, 1, x_2); @@ -33684,7 +33684,7 @@ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Term_letRecDecls___elambda__1___closed__3; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__1; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__1; x_4 = l_Lean_Parser_nodeInfo(x_3, x_2); return x_4; } @@ -34396,7 +34396,7 @@ static lean_object* _init_l_Lean_Parser_Term_letrec___elambda__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__2; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -34452,7 +34452,7 @@ static lean_object* _init_l_Lean_Parser_Term_letrec___elambda__1___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_19927____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__2; x_2 = l_Lean_Parser_Term_letrec___elambda__1___closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -34555,7 +34555,7 @@ static lean_object* _init_l_Lean_Parser_Term_letrec___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_19927____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__2; x_2 = l_Lean_Parser_Term_letrec___closed__5; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -34635,7 +34635,7 @@ _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_2 = l_term___u2218_____closed__6; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_letrec; x_6 = lean_unsigned_to_nat(1000u); @@ -35228,7 +35228,7 @@ static lean_object* _init_l_Lean_Parser_Term_letRecDecls_formatter___closed__4() _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_19927____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__1; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_letRecDecls_formatter___closed__3; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -35344,7 +35344,7 @@ static lean_object* _init_l_Lean_Parser_Term_letrec_formatter___closed__9() { _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_19927____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__2; x_2 = l_Lean_Parser_leadPrec; x_3 = l_Lean_Parser_Term_letrec_formatter___closed__8; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -35377,7 +35377,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__2; x_4 = l___regBuiltin_Lean_Parser_Term_letrec_formatter___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -35903,7 +35903,7 @@ static lean_object* _init_l_Lean_Parser_Term_letRecDecls_parenthesizer___closed_ _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_19927____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__1; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_letRecDecls_parenthesizer___closed__3; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -35992,7 +35992,7 @@ static lean_object* _init_l_Lean_Parser_Term_letrec_parenthesizer___closed__7() _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_19927____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__2; x_2 = l_Lean_Parser_leadPrec; x_3 = l_Lean_Parser_Term_letrec_parenthesizer___closed__6; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -36025,7 +36025,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19927____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19943____closed__2; x_4 = l___regBuiltin_Lean_Parser_Term_letrec_parenthesizer___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -39479,43 +39479,25 @@ return x_5; static lean_object* _init_l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__1() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("noImplicitLambda"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2; -x_2 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__3() { -_start: -{ lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__2; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__4() { +static lean_object* _init_l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__1; -x_2 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__1; +x_2 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__1; x_3 = 1; x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__5() { +static lean_object* _init_l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__3() { _start: { lean_object* x_1; @@ -39523,33 +39505,57 @@ x_1 = lean_mk_string("noImplicitLambda% "); return x_1; } } +static lean_object* _init_l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__3; +x_2 = l_String_trim(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__4; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_symbolFn___boxed), 3, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} static lean_object* _init_l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; x_1 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__5; -x_2 = l_String_trim(x_1); +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_tokenWithAntiquotFn), 3, 1); +lean_closure_set(x_2, 0, x_1); return x_2; } } static lean_object* _init_l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__7() { _start: { -lean_object* x_1; lean_object* x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__6; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_symbolFn___boxed), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; +x_2 = l_Lean_Parser_Term_explicit___elambda__1___closed__6; +x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__8() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__7; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_tokenWithAntiquotFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__2; +x_2 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__7; +x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__9() { @@ -39557,7 +39563,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__8; -x_2 = l_Lean_Parser_Term_explicit___elambda__1___closed__6; +x_2 = l_Lean_Parser_Level_paren___elambda__1___closed__12; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -39568,32 +39574,8 @@ static lean_object* _init_l_Lean_Parser_Term_noImplicitLambda___elambda__1___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__2; -x_2 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__9; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__10; -x_2 = l_Lean_Parser_Level_paren___elambda__1___closed__12; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__10; -x_2 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__11; +x_2 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__9; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -39604,10 +39586,10 @@ lean_object* l_Lean_Parser_Term_noImplicitLambda___elambda__1(lean_object* x_1, _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_7; -x_3 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__4; +x_3 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__2; x_4 = lean_ctor_get(x_3, 1); lean_inc(x_4); -x_5 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__12; +x_5 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__10; x_6 = 1; x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); return x_7; @@ -39617,7 +39599,7 @@ static lean_object* _init_l_Lean_Parser_Term_noImplicitLambda___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__6; +x_1 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__4; x_2 = l_Lean_Parser_symbolInfo(x_1); return x_2; } @@ -39638,7 +39620,7 @@ static lean_object* _init_l_Lean_Parser_Term_noImplicitLambda___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__2; x_2 = l_Lean_Parser_Term_noImplicitLambda___closed__2; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -39668,7 +39650,7 @@ static lean_object* _init_l_Lean_Parser_Term_noImplicitLambda___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__4; +x_1 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__2; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); x_3 = l_Lean_Parser_Term_noImplicitLambda___closed__5; @@ -39709,7 +39691,7 @@ _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_2 = l_term___u2218_____closed__6; -x_3 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_noImplicitLambda; x_6 = lean_unsigned_to_nat(1000u); @@ -39721,8 +39703,8 @@ static lean_object* _init_l_Lean_Parser_Term_noImplicitLambda_formatter___closed _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__1; -x_2 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__1; +x_2 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); @@ -39736,7 +39718,7 @@ static lean_object* _init_l_Lean_Parser_Term_noImplicitLambda_formatter___closed _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__5; +x_1 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__3; x_2 = lean_alloc_closure((void*)(l_Lean_Parser_symbol_formatter), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -39758,7 +39740,7 @@ static lean_object* _init_l_Lean_Parser_Term_noImplicitLambda_formatter___closed _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__2; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_noImplicitLambda_formatter___closed__3; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -39791,7 +39773,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__2; x_4 = l___regBuiltin_Lean_Parser_Term_noImplicitLambda_formatter___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -39801,7 +39783,7 @@ static lean_object* _init_l_Lean_Parser_Term_noImplicitLambda_parenthesizer___cl _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__3; +x_1 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__1; x_2 = 1; x_3 = lean_box(x_2); x_4 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed), 7, 2); @@ -39814,7 +39796,7 @@ static lean_object* _init_l_Lean_Parser_Term_noImplicitLambda_parenthesizer___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__2; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_explicit_parenthesizer___closed__3; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -39847,7 +39829,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18672____closed__2; x_4 = l___regBuiltin_Lean_Parser_Term_noImplicitLambda_parenthesizer___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -58979,10 +58961,6 @@ l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__9 = _init_l_Lean_Pars lean_mark_persistent(l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__9); l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__10 = _init_l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__10(); lean_mark_persistent(l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__10); -l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__11 = _init_l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__11(); -lean_mark_persistent(l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__11); -l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__12 = _init_l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__12(); -lean_mark_persistent(l_Lean_Parser_Term_noImplicitLambda___elambda__1___closed__12); l_Lean_Parser_Term_noImplicitLambda___closed__1 = _init_l_Lean_Parser_Term_noImplicitLambda___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_noImplicitLambda___closed__1); l_Lean_Parser_Term_noImplicitLambda___closed__2 = _init_l_Lean_Parser_Term_noImplicitLambda___closed__2(); diff --git a/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Builtins.c b/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Builtins.c index 09373e52b7..2b811cda28 100644 --- a/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Builtins.c +++ b/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Builtins.c @@ -276,7 +276,6 @@ lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabOfScientific(lea lean_object* l_Array_anyMUnsafe_any___at_Lean_PrettyPrinter_Delaborator_hasIdent___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabMData_match__3(lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_PrettyPrinter_Delaborator_delabAppMatch___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; lean_object* l_Lean_PrettyPrinter_Delaborator_delabDo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabOfScientific___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabSort_match__1___rarg(lean_object*, lean_object*, lean_object*); @@ -313,6 +312,7 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_11334____closed__6; uint8_t l_Array_anyMUnsafe_any___at_Lean_PrettyPrinter_Delaborator_hasIdent___spec__1(lean_object*, lean_object*, size_t, size_t); extern lean_object* l_Array_forInUnsafe_loop___at___private_Init_NotationExtra_0__Lean_mkHintBody___spec__1___closed__2; lean_object* l_Lean_PrettyPrinter_Delaborator_delabStructureInstance___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; lean_object* l_Lean_PrettyPrinter_Delaborator_delabDIte_delabBranch_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabProj_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabLit___closed__1; @@ -525,11 +525,11 @@ lean_object* l_Lean_getPPCoercions___boxed(lean_object*); extern lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__4; extern lean_object* l_myMacro____x40_Init_Notation___hyg_14874____closed__9; lean_object* l_Array_mapMUnsafe_map___at_Lean_PrettyPrinter_Delaborator_delabDo___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; extern lean_object* l_Lean_nullKind___closed__2; lean_object* l_Array_foldrMUnsafe_fold___at_Lean_PrettyPrinter_Delaborator_delabForall___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_PrettyPrinter_Delaborator_delabFVar_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppMatch___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; uint8_t l_Lean_Syntax_isNodeOf(lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_PrettyPrinter_Delaborator_delabStructureInstance___spec__2(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_LocalDecl_type(lean_object*); @@ -1394,7 +1394,7 @@ x_12 = l_Array_empty___closed__1; x_13 = lean_array_push(x_12, x_11); x_14 = lean_mk_syntax_ident(x_7); x_15 = lean_array_push(x_13, x_14); -x_16 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18957____closed__5; +x_16 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18973____closed__5; x_17 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_17, 0, x_16); lean_ctor_set(x_17, 1, x_15); @@ -18223,7 +18223,7 @@ if (x_25 == 0) { lean_object* x_26; uint8_t x_27; lean_dec(x_2); -x_26 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_26 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; x_27 = lean_string_dec_eq(x_11, x_26); if (x_27 == 0) { @@ -18274,7 +18274,7 @@ if (x_38 == 0) { lean_object* x_39; uint8_t x_40; lean_dec(x_2); -x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; x_40 = lean_string_dec_eq(x_11, x_39); if (x_40 == 0) { @@ -18357,7 +18357,7 @@ if (x_58 == 0) { lean_object* x_59; uint8_t x_60; lean_dec(x_2); -x_59 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_59 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; x_60 = lean_string_dec_eq(x_11, x_59); if (x_60 == 0) { @@ -18460,7 +18460,7 @@ if (x_83 == 0) { lean_object* x_84; uint8_t x_85; lean_dec(x_2); -x_84 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_84 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; x_85 = lean_string_dec_eq(x_73, x_84); if (x_85 == 0) { @@ -18882,7 +18882,7 @@ x_41 = lean_string_dec_eq(x_31, x_40); if (x_41 == 0) { lean_object* x_42; uint8_t x_43; -x_42 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22119____closed__8; +x_42 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_22151____closed__8; x_43 = lean_string_dec_eq(x_31, x_42); lean_dec(x_31); if (x_43 == 0) diff --git a/stage0/stdlib/Lean/Server/Snapshots.c b/stage0/stdlib/Lean/Server/Snapshots.c index 17f3e02bda..ab1c304721 100644 --- a/stage0/stdlib/Lean/Server/Snapshots.c +++ b/stage0/stdlib/Lean/Server/Snapshots.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Server.Snapshots -// Imports: Init Init.System.IO Lean.Elab.Import Lean.Elab.Command +// Imports: Init Init.System.IO Lean.Elab.Frontend #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -21,24 +21,30 @@ lean_object* l_Lean_Parser_parseHeader(lean_object*, lean_object*); uint8_t l_Lean_Elab_isAbortExceptionId(lean_object*); extern lean_object* l_Array_empty___closed__1; extern lean_object* l_Lean_Elab_Command_withLogging___closed__2; +lean_object* l_Std_PersistentArray_append___rarg(lean_object*, lean_object*); lean_object* lean_st_ref_get(lean_object*, lean_object*); +extern lean_object* l_Std_PersistentArray_empty___closed__1; lean_object* l_Lean_Server_Snapshots_parseAhead_go___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_instInhabitedNat; lean_object* l_Lean_Parser_mkInputContext(lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); lean_object* l_Lean_Server_Snapshots_parseAhead_go(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Server_Snapshots_compileNextCmd___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Server_Snapshots_compileCmdsAfter(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Server_Snapshots_0__Lean_Server_Snapshots_ioErrorFromEmpty(uint8_t); extern lean_object* l_Lean_Elab_parseImports___closed__1; lean_object* l_Lean_Server_Snapshots_reparseHeader_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_Server_Snapshots_compileCmdsAfter_match__2(lean_object*); lean_object* l_Lean_Server_Snapshots_compileCmdsAfter_match__1___rarg(lean_object*, lean_object*); +extern lean_object* l_Lean_Elab_Frontend_showPartialSyntaxErrors; lean_object* l_Lean_Server_Snapshots_parseAhead(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Server_Snapshots_compileCmdsAfter_match__2___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Command_instInhabitedState___closed__1; lean_object* l_Lean_Server_Snapshots_reparseHeader_match__1(lean_object*); lean_object* l_Lean_Server_Snapshots_reparseHeader(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Server_Snapshots_Snapshot_env___boxed(lean_object*); +lean_object* l_Lean_Server_Snapshots_compileNextCmd___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Option_get___at_Lean_ppExpr___spec__1(lean_object*, lean_object*); lean_object* lean_st_mk_ref(lean_object*, lean_object*); lean_object* l_Lean_Elab_logException___at_Lean_Elab_Command_withLogging___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_instInhabitedModuleParserState___closed__1; @@ -63,6 +69,7 @@ lean_object* l_Lean_Server_Snapshots_Snapshot_msgLog(lean_object*); lean_object* l_Lean_Server_Snapshots_compileCmdsAfter_match__1(lean_object*); uint8_t l_Lean_Parser_isEOI(lean_object*); lean_object* l_Lean_Server_Snapshots_instInhabitedSnapshot___closed__1; +uint8_t l_Std_PersistentArray_anyM___at_Lean_MessageLog_hasErrors___spec__1(lean_object*); lean_object* l_Lean_Server_Snapshots_Snapshot_env(lean_object*); lean_object* l_Lean_Elab_log___at_Lean_Elab_Command_withLogging___spec__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Server_Snapshots_compileNextCmd(lean_object*, lean_object*, lean_object*); @@ -500,6 +507,23 @@ return x_7; } } } +lean_object* l_Lean_Server_Snapshots_compileNextCmd___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) { +_start: +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_7 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_7, 0, x_1); +lean_ctor_set(x_7, 1, x_2); +lean_ctor_set(x_7, 2, x_3); +lean_ctor_set(x_7, 3, x_4); +x_8 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_8, 0, x_7); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_8); +lean_ctor_set(x_9, 1, x_6); +return x_9; +} +} lean_object* l_Lean_Server_Snapshots_compileNextCmd(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -545,6 +569,7 @@ lean_inc(x_17); x_18 = lean_ctor_get(x_15, 3); lean_inc(x_18); lean_dec(x_15); +lean_inc(x_16); lean_inc(x_7); x_19 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_19, 0, x_7); @@ -553,7 +578,7 @@ lean_ctor_set(x_19, 2, x_17); lean_ctor_set(x_19, 3, x_18); x_20 = lean_ctor_get(x_2, 2); lean_inc(x_20); -x_21 = l_Lean_Server_Snapshots_Snapshot_msgLog(x_2); +x_21 = l_Std_PersistentArray_empty___closed__1; x_22 = l_Lean_Parser_parseCommand_parse(x_5, x_19, x_20, x_21); x_23 = lean_ctor_get(x_22, 1); lean_inc(x_23); @@ -571,23 +596,23 @@ lean_inc(x_24); x_29 = l_Lean_Parser_isEOI(x_24); if (lean_obj_tag(x_28) == 0) { -lean_object* x_81; lean_object* x_82; lean_object* x_83; -x_81 = l_instInhabitedNat; -x_82 = l_Option_get_x21___rarg___closed__4; -x_83 = lean_panic_fn(x_81, x_82); -x_30 = x_83; -goto block_80; +lean_object* x_101; lean_object* x_102; lean_object* x_103; +x_101 = l_instInhabitedNat; +x_102 = l_Option_get_x21___rarg___closed__4; +x_103 = lean_panic_fn(x_101, x_102); +x_30 = x_103; +goto block_100; } else { -lean_object* x_84; -x_84 = lean_ctor_get(x_28, 0); -lean_inc(x_84); +lean_object* x_104; +x_104 = lean_ctor_get(x_28, 0); +lean_inc(x_104); lean_dec(x_28); -x_30 = x_84; -goto block_80; +x_30 = x_104; +goto block_100; } -block_80: +block_100: { if (x_29 == 0) { @@ -596,183 +621,229 @@ lean_inc(x_24); x_31 = l_Lean_Parser_isExitCommand(x_24); 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_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_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_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; +x_32 = l_Lean_Server_Snapshots_Snapshot_msgLog(x_2); +x_33 = l_Std_PersistentArray_append___rarg(x_32, x_26); +lean_inc(x_33); if (lean_is_scalar(x_14)) { - x_32 = lean_alloc_ctor(0, 8, 0); + x_34 = lean_alloc_ctor(0, 8, 0); } else { - x_32 = x_14; + x_34 = x_14; } -lean_ctor_set(x_32, 0, x_7); -lean_ctor_set(x_32, 1, x_26); -lean_ctor_set(x_32, 2, x_8); -lean_ctor_set(x_32, 3, x_9); -lean_ctor_set(x_32, 4, x_10); -lean_ctor_set(x_32, 5, x_11); -lean_ctor_set(x_32, 6, x_12); -lean_ctor_set(x_32, 7, x_13); -x_33 = l_IO_mkRef___at_Lean_Server_Snapshots_compileNextCmd___spec__1(x_32, x_3); -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_48 = l_Lean_FileMap_ofString(x_1); -x_49 = l_Lean_Server_Snapshots_Snapshot_endPos(x_2); +lean_ctor_set(x_34, 0, x_7); +lean_ctor_set(x_34, 1, x_33); +lean_ctor_set(x_34, 2, x_8); +lean_ctor_set(x_34, 3, x_9); +lean_ctor_set(x_34, 4, x_10); +lean_ctor_set(x_34, 5, x_11); +lean_ctor_set(x_34, 6, x_12); +lean_ctor_set(x_34, 7, x_13); +x_35 = l_IO_mkRef___at_Lean_Server_Snapshots_compileNextCmd___spec__1(x_34, x_3); +x_36 = lean_ctor_get(x_35, 0); +lean_inc(x_36); +x_37 = lean_ctor_get(x_35, 1); +lean_inc(x_37); +lean_dec(x_35); +x_64 = l_Lean_FileMap_ofString(x_1); +x_65 = l_Lean_Server_Snapshots_Snapshot_endPos(x_2); lean_dec(x_2); -x_50 = lean_box(0); -x_51 = lean_unsigned_to_nat(0u); -x_52 = l_Lean_firstFrontendMacroScope; -x_53 = lean_box(0); -x_54 = lean_alloc_ctor(0, 7, 0); -lean_ctor_set(x_54, 0, x_4); -lean_ctor_set(x_54, 1, x_48); -lean_ctor_set(x_54, 2, x_51); -lean_ctor_set(x_54, 3, x_49); -lean_ctor_set(x_54, 4, x_50); -lean_ctor_set(x_54, 5, x_52); -lean_ctor_set(x_54, 6, x_53); -lean_inc(x_34); +x_66 = lean_box(0); +x_67 = lean_unsigned_to_nat(0u); +x_68 = l_Lean_firstFrontendMacroScope; +x_69 = lean_box(0); +x_70 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_70, 0, x_4); +lean_ctor_set(x_70, 1, x_64); +lean_ctor_set(x_70, 2, x_67); +lean_ctor_set(x_70, 3, x_65); +lean_ctor_set(x_70, 4, x_66); +lean_ctor_set(x_70, 5, x_68); +lean_ctor_set(x_70, 6, x_69); +lean_inc(x_36); lean_inc(x_24); -x_55 = l_Lean_Elab_Command_elabCommand(x_24, x_54, x_34, x_35); -if (lean_obj_tag(x_55) == 0) +x_71 = l_Lean_Elab_Command_elabCommand(x_24, x_70, x_36, x_37); +if (lean_obj_tag(x_71) == 0) { -lean_object* x_56; -lean_dec(x_54); -x_56 = lean_ctor_get(x_55, 1); -lean_inc(x_56); -lean_dec(x_55); -x_36 = x_56; -goto block_47; +lean_object* x_72; +lean_dec(x_70); +x_72 = lean_ctor_get(x_71, 1); +lean_inc(x_72); +lean_dec(x_71); +x_38 = x_72; +goto block_63; } else { -lean_object* x_57; -x_57 = lean_ctor_get(x_55, 0); -lean_inc(x_57); -if (lean_obj_tag(x_57) == 0) +lean_object* x_73; +x_73 = lean_ctor_get(x_71, 0); +lean_inc(x_73); +if (lean_obj_tag(x_73) == 0) { -lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_58 = lean_ctor_get(x_55, 1); -lean_inc(x_58); -lean_dec(x_55); -x_59 = l_Lean_Elab_logException___at_Lean_Elab_Command_withLogging___spec__1(x_57, x_54, x_34, x_58); -lean_dec(x_54); -x_60 = lean_ctor_get(x_59, 1); -lean_inc(x_60); -lean_dec(x_59); -x_36 = x_60; -goto block_47; -} -else -{ -lean_object* x_61; lean_object* x_62; uint8_t x_63; -x_61 = lean_ctor_get(x_55, 1); -lean_inc(x_61); -lean_dec(x_55); -x_62 = lean_ctor_get(x_57, 0); -lean_inc(x_62); -lean_dec(x_57); -x_63 = l_Lean_Elab_isAbortExceptionId(x_62); -if (x_63 == 0) -{ -lean_object* x_64; -x_64 = l_Lean_InternalExceptionId_getName(x_62, x_61); -lean_dec(x_62); -if (lean_obj_tag(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; uint8_t x_72; lean_object* x_73; lean_object* x_74; -x_65 = lean_ctor_get(x_64, 0); -lean_inc(x_65); -x_66 = lean_ctor_get(x_64, 1); -lean_inc(x_66); -lean_dec(x_64); -x_67 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_67, 0, x_65); -x_68 = l_Lean_Elab_Command_withLogging___closed__2; -x_69 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_69, 0, x_68); -lean_ctor_set(x_69, 1, x_67); -x_70 = l_Lean_KernelException_toMessageData___closed__15; -x_71 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_71, 0, x_69); -lean_ctor_set(x_71, 1, x_70); -x_72 = 2; -x_73 = l_Lean_Elab_log___at_Lean_Elab_Command_withLogging___spec__3(x_71, x_72, x_54, x_34, x_66); -lean_dec(x_54); -x_74 = lean_ctor_get(x_73, 1); +lean_object* x_74; lean_object* x_75; lean_object* x_76; +x_74 = lean_ctor_get(x_71, 1); lean_inc(x_74); +lean_dec(x_71); +x_75 = l_Lean_Elab_logException___at_Lean_Elab_Command_withLogging___spec__1(x_73, x_70, x_36, x_74); +lean_dec(x_70); +x_76 = lean_ctor_get(x_75, 1); +lean_inc(x_76); +lean_dec(x_75); +x_38 = x_76; +goto block_63; +} +else +{ +lean_object* x_77; lean_object* x_78; uint8_t x_79; +x_77 = lean_ctor_get(x_71, 1); +lean_inc(x_77); +lean_dec(x_71); +x_78 = lean_ctor_get(x_73, 0); +lean_inc(x_78); lean_dec(x_73); -x_36 = x_74; -goto block_47; +x_79 = l_Lean_Elab_isAbortExceptionId(x_78); +if (x_79 == 0) +{ +lean_object* x_80; +x_80 = l_Lean_InternalExceptionId_getName(x_78, x_77); +lean_dec(x_78); +if (lean_obj_tag(x_80) == 0) +{ +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; uint8_t x_88; lean_object* x_89; lean_object* x_90; +x_81 = lean_ctor_get(x_80, 0); +lean_inc(x_81); +x_82 = lean_ctor_get(x_80, 1); +lean_inc(x_82); +lean_dec(x_80); +x_83 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_83, 0, x_81); +x_84 = l_Lean_Elab_Command_withLogging___closed__2; +x_85 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_85, 0, x_84); +lean_ctor_set(x_85, 1, x_83); +x_86 = l_Lean_KernelException_toMessageData___closed__15; +x_87 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_87, 0, x_85); +lean_ctor_set(x_87, 1, x_86); +x_88 = 2; +x_89 = l_Lean_Elab_log___at_Lean_Elab_Command_withLogging___spec__3(x_87, x_88, x_70, x_36, x_82); +lean_dec(x_70); +x_90 = lean_ctor_get(x_89, 1); +lean_inc(x_90); +lean_dec(x_89); +x_38 = x_90; +goto block_63; } else { -lean_object* x_75; -lean_dec(x_54); -x_75 = lean_ctor_get(x_64, 1); -lean_inc(x_75); -lean_dec(x_64); -x_36 = x_75; -goto block_47; +lean_object* x_91; +lean_dec(x_70); +x_91 = lean_ctor_get(x_80, 1); +lean_inc(x_91); +lean_dec(x_80); +x_38 = x_91; +goto block_63; } } else { -lean_dec(x_62); -lean_dec(x_54); -x_36 = x_61; -goto block_47; +lean_dec(x_78); +lean_dec(x_70); +x_38 = x_77; +goto block_63; } } } -block_47: +block_63: { -lean_object* x_37; uint8_t x_38; -x_37 = lean_st_ref_get(x_34, x_36); -lean_dec(x_34); -x_38 = !lean_is_exclusive(x_37); -if (x_38 == 0) +lean_object* x_39; lean_object* x_40; lean_object* x_41; uint8_t x_42; +x_39 = lean_st_ref_get(x_36, x_38); +lean_dec(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); +x_42 = l_Std_PersistentArray_anyM___at_Lean_MessageLog_hasErrors___spec__1(x_26); +lean_dec(x_26); +if (x_42 == 0) { -lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_39 = lean_ctor_get(x_37, 0); -x_40 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_40, 0, x_30); -lean_ctor_set(x_40, 1, x_24); -lean_ctor_set(x_40, 2, x_25); -lean_ctor_set(x_40, 3, x_39); -x_41 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_41, 0, x_40); -lean_ctor_set(x_37, 0, x_41); -return x_37; +lean_object* x_43; lean_object* x_44; +lean_dec(x_33); +lean_dec(x_16); +x_43 = lean_box(0); +x_44 = l_Lean_Server_Snapshots_compileNextCmd___lambda__1(x_30, x_24, x_25, x_40, x_43, x_41); +return x_44; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; -x_42 = lean_ctor_get(x_37, 0); -x_43 = lean_ctor_get(x_37, 1); -lean_inc(x_43); -lean_inc(x_42); -lean_dec(x_37); -x_44 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_44, 0, x_30); -lean_ctor_set(x_44, 1, x_24); -lean_ctor_set(x_44, 2, x_25); -lean_ctor_set(x_44, 3, x_42); -x_45 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_45, 0, x_44); -x_46 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_46, 0, x_45); -lean_ctor_set(x_46, 1, x_43); -return x_46; +lean_object* x_45; uint8_t x_46; +x_45 = l_Lean_Elab_Frontend_showPartialSyntaxErrors; +x_46 = l_Lean_Option_get___at_Lean_ppExpr___spec__1(x_16, x_45); +lean_dec(x_16); +if (x_46 == 0) +{ +uint8_t x_47; +x_47 = !lean_is_exclusive(x_40); +if (x_47 == 0) +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_40, 1); +lean_dec(x_48); +lean_ctor_set(x_40, 1, x_33); +x_49 = lean_box(0); +x_50 = l_Lean_Server_Snapshots_compileNextCmd___lambda__1(x_30, x_24, x_25, x_40, x_49, x_41); +return x_50; +} +else +{ +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_51 = lean_ctor_get(x_40, 0); +x_52 = lean_ctor_get(x_40, 2); +x_53 = lean_ctor_get(x_40, 3); +x_54 = lean_ctor_get(x_40, 4); +x_55 = lean_ctor_get(x_40, 5); +x_56 = lean_ctor_get(x_40, 6); +x_57 = lean_ctor_get(x_40, 7); +lean_inc(x_57); +lean_inc(x_56); +lean_inc(x_55); +lean_inc(x_54); +lean_inc(x_53); +lean_inc(x_52); +lean_inc(x_51); +lean_dec(x_40); +x_58 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_58, 0, x_51); +lean_ctor_set(x_58, 1, x_33); +lean_ctor_set(x_58, 2, x_52); +lean_ctor_set(x_58, 3, x_53); +lean_ctor_set(x_58, 4, x_54); +lean_ctor_set(x_58, 5, x_55); +lean_ctor_set(x_58, 6, x_56); +lean_ctor_set(x_58, 7, x_57); +x_59 = lean_box(0); +x_60 = l_Lean_Server_Snapshots_compileNextCmd___lambda__1(x_30, x_24, x_25, x_58, x_59, x_41); +return x_60; +} +} +else +{ +lean_object* x_61; lean_object* x_62; +lean_dec(x_33); +x_61 = lean_box(0); +x_62 = l_Lean_Server_Snapshots_compileNextCmd___lambda__1(x_30, x_24, x_25, x_40, x_61, x_41); +return x_62; +} } } } else { -lean_object* x_76; lean_object* x_77; +lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_dec(x_30); lean_dec(x_25); lean_dec(x_24); +lean_dec(x_16); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); @@ -781,22 +852,26 @@ lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_2); lean_dec(x_1); -x_76 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_76, 0, x_26); -x_77 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_77, 0, x_76); -lean_ctor_set(x_77, 1, x_3); -return x_77; +x_92 = l_Lean_Server_Snapshots_Snapshot_msgLog(x_2); +lean_dec(x_2); +x_93 = l_Std_PersistentArray_append___rarg(x_92, x_26); +lean_dec(x_26); +x_94 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_94, 0, x_93); +x_95 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_95, 0, x_94); +lean_ctor_set(x_95, 1, x_3); +return x_95; } } else { -lean_object* x_78; lean_object* x_79; +lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_dec(x_30); lean_dec(x_25); lean_dec(x_24); +lean_dec(x_16); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); @@ -805,18 +880,30 @@ lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_2); lean_dec(x_1); -x_78 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_78, 0, x_26); -x_79 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_79, 0, x_78); -lean_ctor_set(x_79, 1, x_3); -return x_79; +x_96 = l_Lean_Server_Snapshots_Snapshot_msgLog(x_2); +lean_dec(x_2); +x_97 = l_Std_PersistentArray_append___rarg(x_96, x_26); +lean_dec(x_26); +x_98 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_98, 0, x_97); +x_99 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_99, 0, x_98); +lean_ctor_set(x_99, 1, x_3); +return x_99; } } } } +lean_object* l_Lean_Server_Snapshots_compileNextCmd___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) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_Server_Snapshots_compileNextCmd___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +return x_7; +} +} lean_object* l_Lean_Server_Snapshots_compileCmdsAfter_match__1___rarg(lean_object* x_1, lean_object* x_2) { _start: { @@ -1003,8 +1090,7 @@ return x_35; } lean_object* initialize_Init(lean_object*); lean_object* initialize_Init_System_IO(lean_object*); -lean_object* initialize_Lean_Elab_Import(lean_object*); -lean_object* initialize_Lean_Elab_Command(lean_object*); +lean_object* initialize_Lean_Elab_Frontend(lean_object*); static bool _G_initialized = false; lean_object* initialize_Lean_Server_Snapshots(lean_object* w) { lean_object * res; @@ -1016,10 +1102,7 @@ lean_dec_ref(res); res = initialize_Init_System_IO(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Lean_Elab_Import(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Lean_Elab_Command(lean_io_mk_world()); +res = initialize_Lean_Elab_Frontend(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Server_Snapshots_instInhabitedSnapshot___closed__1 = _init_l_Lean_Server_Snapshots_instInhabitedSnapshot___closed__1();