From bea7aaa3dcfeb5c6ec5b4fd751fb2d852cc6c8fe Mon Sep 17 00:00:00 2001 From: Leonardo de Moura Date: Thu, 29 Oct 2020 20:36:50 -0700 Subject: [PATCH] chore: update stage0 --- stage0/src/Init.lean | 1 + stage0/src/Init/Tactics.lean | 11 + stage0/src/Lean/Data/Json/Basic.lean | 2 +- stage0/src/Lean/Data/Position.lean | 2 +- stage0/src/Lean/Elab/Syntax.lean | 42 +- stage0/src/Lean/Elab/Tactic/ElabTerm.lean | 3 - stage0/src/Lean/Parser/Syntax.lean | 5 +- stage0/src/Lean/Parser/Tactic.lean | 3 +- stage0/src/Std/Data/DList.lean | 8 +- stage0/src/Std/Data/PersistentHashMap.lean | 8 +- stage0/stdlib/CMakeLists.txt | 2 +- stage0/stdlib/Init.c | 6 +- stage0/stdlib/Init/Tactics.c | 1042 +++ stage0/stdlib/Lean/Data/FormatMacro.c | 82 +- stage0/stdlib/Lean/Elab/Binders.c | 73 +- stage0/stdlib/Lean/Elab/BuiltinNotation.c | 98 +- stage0/stdlib/Lean/Elab/Do.c | 4 +- stage0/stdlib/Lean/Elab/Import.c | 4 +- stage0/stdlib/Lean/Elab/Quotation.c | 26 +- stage0/stdlib/Lean/Elab/Syntax.c | 5844 +++++++++-------- stage0/stdlib/Lean/Elab/Tactic/Basic.c | 74 +- stage0/stdlib/Lean/Elab/Tactic/Binders.c | 20 +- stage0/stdlib/Lean/Elab/Tactic/ElabTerm.c | 235 +- stage0/stdlib/Lean/Elab/Tactic/Generalize.c | 4 +- stage0/stdlib/Lean/Elab/Tactic/Induction.c | 6 +- stage0/stdlib/Lean/Elab/Tactic/Injection.c | 4 +- stage0/stdlib/Lean/Elab/Tactic/Location.c | 38 +- stage0/stdlib/Lean/Elab/Tactic/Match.c | 4 +- stage0/stdlib/Lean/Elab/Tactic/Rewrite.c | 6 +- stage0/stdlib/Lean/Exception.c | 16 +- stage0/stdlib/Lean/Message.c | 80 +- stage0/stdlib/Lean/Meta/AppBuilder.c | 18 +- stage0/stdlib/Lean/Meta/Tactic/Cases.c | 4 +- stage0/stdlib/Lean/Meta/Tactic/Induction.c | 4 +- stage0/stdlib/Lean/Meta/Tactic/Intro.c | 20 +- stage0/stdlib/Lean/Meta/Tactic/Subst.c | 4 +- stage0/stdlib/Lean/Meta/Tactic/Util.c | 32 +- stage0/stdlib/Lean/Parser/Syntax.c | 573 +- stage0/stdlib/Lean/Parser/Tactic.c | 689 +- stage0/stdlib/Lean/Parser/Term.c | 238 +- .../stdlib/Lean/PrettyPrinter/Parenthesizer.c | 78 +- stage0/stdlib/Lean/Server/ServerBin.c | 16 +- stage0/stdlib/Lean/Util/Trace.c | 8 +- 43 files changed, 5087 insertions(+), 4350 deletions(-) create mode 100644 stage0/src/Init/Tactics.lean create mode 100644 stage0/stdlib/Init/Tactics.c diff --git a/stage0/src/Init.lean b/stage0/src/Init.lean index 8d425ad15e..f60bed246f 100644 --- a/stage0/src/Init.lean +++ b/stage0/src/Init.lean @@ -13,3 +13,4 @@ import Init.System import Init.Util import Init.Fix import Init.LeanInit +import Init.Tactics diff --git a/stage0/src/Init/Tactics.lean b/stage0/src/Init/Tactics.lean new file mode 100644 index 0000000000..9b8e3c52b4 --- /dev/null +++ b/stage0/src/Init/Tactics.lean @@ -0,0 +1,11 @@ +/- +Copyright (c) 2020 Microsoft Corporation. All rights reserved. +Released under Apache 2.0 license as described in the file LICENSE. +Authors: Leonardo de Moura +-/ +prelude +import Init.LeanInit + +macro "rfl" : tactic => `(exact rfl) +macro "decide!" : tactic => `(exact decide!) +macro "admit" : tactic => `(exact sorry) diff --git a/stage0/src/Lean/Data/Json/Basic.lean b/stage0/src/Lean/Data/Json/Basic.lean index db4ffc6304..86c1b4457c 100644 --- a/stage0/src/Lean/Data/Json/Basic.lean +++ b/stage0/src/Lean/Data/Json/Basic.lean @@ -16,7 +16,7 @@ protected def JsonNumber.decEq : (a b : JsonNumber) → Decidable (a = b) match decEq m1 m2 with | isTrue hm => match decEq e1 e2 with - | isTrue he => isTrue $ by rw [hm, he]; exact rfl + | isTrue he => isTrue $ by rw [hm, he]; rfl | isFalse he => isFalse (fun h => JsonNumber.noConfusion h (fun hm he2 => he he2)) | isFalse hm => isFalse (fun h => JsonNumber.noConfusion h (fun hm2 he => hm hm2)) diff --git a/stage0/src/Lean/Data/Position.lean b/stage0/src/Lean/Data/Position.lean index 0a047e3bb5..0dd50d0419 100644 --- a/stage0/src/Lean/Data/Position.lean +++ b/stage0/src/Lean/Data/Position.lean @@ -16,7 +16,7 @@ instance : DecidableEq Position := fun ⟨l₁, c₁⟩ ⟨l₂, c₂⟩ => if h₁ : l₁ = l₂ then if h₂ : c₁ = c₂ then - isTrue $ by subst h₁; subst h₂; exact rfl + isTrue $ by subst h₁; subst h₂; rfl else isFalse fun contra => Position.noConfusion contra (fun e₁ e₂ => absurd e₂ h₂) else diff --git a/stage0/src/Lean/Elab/Syntax.lean b/stage0/src/Lean/Elab/Syntax.lean index c99ec553bc..2a8f93e681 100644 --- a/stage0/src/Lean/Elab/Syntax.lean +++ b/stage0/src/Lean/Elab/Syntax.lean @@ -451,11 +451,18 @@ def expandMacroHeadIntoPattern (stx : Syntax) : MacroM Syntax := else expandMacroArgIntoPattern stx +def expandOptPrio (stx : Syntax) : Nat := + if stx.isNone then + 0 + else + stx[1].isNatLit?.getD 0 + @[builtinMacro Lean.Parser.Command.macro] def expandMacro : Macro := fun stx => do let prec := stx[1].getArgs - let head := stx[2] - let args := stx[3].getArgs - let cat := stx[5] + let prio := expandOptPrio stx[2] + let head := stx[3] + let args := stx[4].getArgs + let cat := stx[6] let kind ← Macro.mkFreshKind (cat.getId).eraseMacroScopes -- build parser let stxPart ← expandMacroHeadIntoSyntaxItem head @@ -465,15 +472,15 @@ def expandMacroHeadIntoPattern (stx : Syntax) : MacroM Syntax := let patHead ← expandMacroHeadIntoPattern head let patArgs ← args.mapM expandMacroArgIntoPattern let pat := Syntax.node kind (#[patHead] ++ patArgs) - if stx.getArgs.size == 8 then + if stx.getArgs.size == 9 then -- `stx` is of the form `macro $head $args* : $cat => term` - let rhs := stx[7] - `(syntax $prec* [$(mkIdentFrom stx kind):ident] $stxParts* : $cat + let rhs := stx[8] + `(syntax $prec* [$(mkIdentFrom stx kind):ident, $(quote prio):numLit] $stxParts* : $cat macro_rules | `($pat) => $rhs) else -- `stx` is of the form `macro $head $args* : $cat => `( $body )` - let rhsBody := stx[8] - `(syntax $prec* [$(mkIdentFrom stx kind):ident] $stxParts* : $cat + let rhsBody := stx[9] + `(syntax $prec* [$(mkIdentFrom stx kind):ident, $(quote prio):numLit] $stxParts* : $cat macro_rules | `($pat) => `($rhsBody)) builtin_initialize @@ -492,11 +499,12 @@ parser! "elab " >> optPrecedence >> elabHead >> many elabArg >> elabTail @[builtinMacro Lean.Parser.Command.elab] def expandElab : Macro := fun stx => do let ref := stx let prec := stx[1].getArgs - let head := stx[2] - let args := stx[3].getArgs - let cat := stx[5] - let expectedTypeSpec := stx[6] - let rhs := stx[8] + let prio := expandOptPrio stx[2] + let head := stx[3] + let args := stx[4].getArgs + let cat := stx[6] + let expectedTypeSpec := stx[7] + let rhs := stx[9] let catName := cat.getId let kind ← Macro.mkFreshKind catName.eraseMacroScopes -- build parser @@ -511,7 +519,7 @@ parser! "elab " >> optPrecedence >> elabHead >> many elabArg >> elabTail if expectedTypeSpec.hasArgs then if catName == `term then let expId := expectedTypeSpec[1] - `(syntax $prec* [$kindId:ident] $stxParts* : $cat + `(syntax $prec* [$kindId:ident, $(quote prio):numLit] $stxParts* : $cat @[termElab $kindId:ident] def elabFn : Lean.Elab.Term.TermElab := fun stx expectedType? => match_syntax stx with | `($pat) => Lean.Elab.Command.withExpectedType expectedType? fun $expId => $rhs @@ -519,19 +527,19 @@ parser! "elab " >> optPrecedence >> elabHead >> many elabArg >> elabTail else Macro.throwError expectedTypeSpec s!"syntax category '{catName}' does not support expected type specification" else if catName == `term then - `(syntax $prec* [$kindId:ident] $stxParts* : $cat + `(syntax $prec* [$kindId:ident, $(quote prio):numLit] $stxParts* : $cat @[termElab $kindId:ident] def elabFn : Lean.Elab.Term.TermElab := fun stx _ => match_syntax stx with | `($pat) => $rhs | _ => throwUnsupportedSyntax) else if catName == `command then - `(syntax $prec* [$kindId:ident] $stxParts* : $cat + `(syntax $prec* [$kindId:ident, $(quote prio):numLit] $stxParts* : $cat @[commandElab $kindId:ident] def elabFn : Lean.Elab.Command.CommandElab := fun stx => match_syntax stx with | `($pat) => $rhs | _ => throwUnsupportedSyntax) else if catName == `tactic then - `(syntax $prec* [$kindId:ident] $stxParts* : $cat + `(syntax $prec* [$kindId:ident, $(quote prio):numLit] $stxParts* : $cat @[tactic $kindId:ident] def elabFn : Lean.Elab.Tactic.Tactic := fun stx => match_syntax stx with | `(tactic|$pat) => $rhs diff --git a/stage0/src/Lean/Elab/Tactic/ElabTerm.lean b/stage0/src/Lean/Elab/Tactic/ElabTerm.lean index cb84c808cd..c5300a3188 100644 --- a/stage0/src/Lean/Elab/Tactic/ElabTerm.lean +++ b/stage0/src/Lean/Elab/Tactic/ElabTerm.lean @@ -36,9 +36,6 @@ def elabTermEnsuringType (stx : Syntax) (expectedType? : Option Expr) (mayPostpo setGoals gs | _ => throwUnsupportedSyntax -@[builtinMacro Lean.Parser.Tactic.admit] def expandAdmit : Macro := fun _ => - `(tactic| exact sorry) - def elabTermWithHoles (stx : Syntax) (expectedType? : Option Expr) (tagSuffix : Name) (allowNaturalHoles := false) : TacticM (Expr × List MVarId) := do let val ← elabTermEnsuringType stx expectedType? let newMVarIds ← getMVarsNoDelayed val diff --git a/stage0/src/Lean/Parser/Syntax.lean b/stage0/src/Lean/Parser/Syntax.lean index 42e265492d..af65be8400 100644 --- a/stage0/src/Lean/Parser/Syntax.lean +++ b/stage0/src/Lean/Parser/Syntax.lean @@ -85,13 +85,14 @@ def macroTailTactic : Parser := «try» (" : " >> identEq "tactic") >> darrow def macroTailCommand : Parser := «try» (" : " >> identEq "command") >> darrow >> ("`(" >> toggleInsideQuot (many1Unbox commandParser) >> ")" <|> termParser) def macroTailDefault : Parser := «try» (" : " >> ident) >> darrow >> (("`(" >> toggleInsideQuot (categoryParserOfStack 2) >> ")") <|> termParser) def macroTail := macroTailTactic <|> macroTailCommand <|> macroTailDefault -@[builtinCommandParser] def «macro» := parser! suppressInsideQuot ("macro " >> optPrecedence >> macroHead >> many macroArg >> macroTail) +def optPrio := optional ("[" >> numLit >> "]") +@[builtinCommandParser] def «macro» := parser! suppressInsideQuot ("macro " >> optPrecedence >> optPrio >> macroHead >> many macroArg >> macroTail) @[builtinCommandParser] def «elab_rules» := parser! suppressInsideQuot ("elab_rules" >> optKind >> optional (" : " >> ident) >> Term.matchAlts) def elabHead := macroHead def elabArg := macroArg def elabTail := «try» (" : " >> ident >> optional (" <= " >> ident)) >> darrow >> termParser -@[builtinCommandParser] def «elab» := parser! suppressInsideQuot ("elab " >> optPrecedence >> elabHead >> many elabArg >> elabTail) +@[builtinCommandParser] def «elab» := parser! suppressInsideQuot ("elab " >> optPrecedence >> optPrio >> elabHead >> many elabArg >> elabTail) end Command diff --git a/stage0/src/Lean/Parser/Tactic.lean b/stage0/src/Lean/Parser/Tactic.lean index 4d4a59c51b..925a47af0a 100644 --- a/stage0/src/Lean/Parser/Tactic.lean +++ b/stage0/src/Lean/Parser/Tactic.lean @@ -40,7 +40,6 @@ def ident' : Parser := ident <|> underscore @[builtinTacticParser] def «focus» := parser! nonReservedSymbol "focus " >> tacticSeq @[builtinTacticParser] def «skip» := parser! nonReservedSymbol "skip" @[builtinTacticParser] def «done» := parser! nonReservedSymbol "done" -@[builtinTacticParser] def «admit» := parser! nonReservedSymbol "admit" @[builtinTacticParser] def «traceState» := parser! nonReservedSymbol "traceState" @[builtinTacticParser] def «failIfSuccess» := parser! nonReservedSymbol "failIfSuccess " >> tacticSeq @[builtinTacticParser] def «generalize» := parser! nonReservedSymbol "generalize " >> optional («try» (ident >> " : ")) >> termParser 51 >> " = " >> ident @@ -73,7 +72,7 @@ def matchAlts : Parser := group $ withPosition $ (optional "| ") >> sepBy1 match @[builtinTacticParser] def «match» := parser! nonReservedSymbol "match " >> sepBy1 Term.matchDiscr ", " >> Term.optType >> " with " >> matchAlts @[builtinTacticParser] def «introMatch» := parser! nonReservedSymbol "intro " >> matchAlts -def withIds : Parser := optional (" with " >> many1 ident') +def withIds : Parser := optional (" with " >> many1 (checkColGt >> ident')) @[builtinTacticParser] def «injection» := parser! nonReservedSymbol "injection " >> termParser >> withIds @[builtinTacticParser] def paren := parser! "(" >> seq1 >> ")" @[builtinTacticParser] def nestedTactic := tacticSeqBracketed diff --git a/stage0/src/Std/Data/DList.lean b/stage0/src/Std/Data/DList.lean index 8fe2f230aa..1105f698f5 100644 --- a/stage0/src/Std/Data/DList.lean +++ b/stage0/src/Std/Data/DList.lean @@ -20,7 +20,7 @@ variables {α : Type u} open List def ofList (l : List α) : DList α := - ⟨Append.append l, fun t => by rw appendNil; exact rfl⟩ + ⟨Append.append l, fun t => by rw appendNil; rfl⟩ def empty : DList α := ⟨id, fun t => rfl⟩ @@ -43,7 +43,7 @@ def cons : α → DList α → DList α intro t show a :: f t = a :: f [] ++ t rw [consAppend, h] - exact rfl + rfl } def append : DList α → DList α → DList α @@ -53,7 +53,7 @@ def append : DList α → DList α → DList α intro t show f (g t) = (f (g [])) ++ t rw [h₁ (g t), h₂ t, ← appendAssoc (f []) (g []) t, ← h₁ (g [])] - exact rfl + rfl } def push : DList α → α → DList α @@ -63,7 +63,7 @@ def push : DList α → α → DList α intro t show f (a :: t) = f (a :: nil) ++ t rw [h [a], h (a::t), appendAssoc (f []) [a] t] - exact rfl + rfl } instance : Append (DList α) := ⟨DList.append⟩ diff --git a/stage0/src/Std/Data/PersistentHashMap.lean b/stage0/src/Std/Data/PersistentHashMap.lean index 43ee3f5db5..c013a97f9e 100644 --- a/stage0/src/Std/Data/PersistentHashMap.lean +++ b/stage0/src/Std/Data/PersistentHashMap.lean @@ -67,11 +67,11 @@ abbrev EntriesNode (α β) := { n : Node α β // IsEntriesNode n } private theorem setSizeEq {ks : Array α} {vs : Array β} (h : ks.size = vs.size) (i : Fin ks.size) (j : Fin vs.size) (k : α) (v : β) : (ks.set i k).size = (vs.set j v).size := by rw [Array.szFSetEq, Array.szFSetEq vs, h] - exact rfl + rfl private theorem pushSizeEq {ks : Array α} {vs : Array β} (h : ks.size = vs.size) (k : α) (v : β) : (ks.push k).size = (vs.push v).size := by rw [Array.szPushEq, Array.szPushEq, h] - exact rfl + rfl partial def insertAtCollisionNodeAux [BEq α] : CollisionNode α β → Nat → α → β → CollisionNode α β | n@⟨Node.collision keys vals heq, _⟩, i, k, v => @@ -213,7 +213,7 @@ def isUnaryNode : Node α β → Option (α × β) | Node.entries entries => isUnaryEntries entries 0 none | Node.collision keys vals heq => if h : 1 = keys.size then - have 0 < keys.size by rw [←h]; exact decide! + have 0 < keys.size by rw [←h]; decide! some (keys.get ⟨0, this⟩, vals.get ⟨0, by rw [←heq]; assumption⟩) else none @@ -224,7 +224,7 @@ partial def eraseAux [BEq α] : Node α β → USize → α → Node α β × Bo | some idx => let ⟨keys', keq⟩ := keys.eraseIdx' idx let ⟨vals', veq⟩ := vals.eraseIdx' (Eq.ndrec idx heq) - have keys.size - 1 = vals.size - 1 by rw [heq]; exact rfl + have keys.size - 1 = vals.size - 1 by rw [heq]; rfl (Node.collision keys' vals' (keq.trans (this.trans veq.symm)), true) | none => (n, false) | n@(Node.entries entries), h, k => diff --git a/stage0/stdlib/CMakeLists.txt b/stage0/stdlib/CMakeLists.txt index 3b7fb2b2a8..fac01d42cc 100644 --- a/stage0/stdlib/CMakeLists.txt +++ b/stage0/stdlib/CMakeLists.txt @@ -1 +1 @@ -add_library (stage0 OBJECT ./Init.c ./Init/Coe.c ./Init/Control.c ./Init/Control/Alternative.c ./Init/Control/Applicative.c ./Init/Control/Conditional.c ./Init/Control/EState.c ./Init/Control/Except.c ./Init/Control/Functor.c ./Init/Control/Id.c ./Init/Control/Monad.c ./Init/Control/MonadControl.c ./Init/Control/MonadFunctor.c ./Init/Control/MonadLift.c ./Init/Control/Option.c ./Init/Control/Reader.c ./Init/Control/State.c ./Init/Control/StateRef.c ./Init/Core.c ./Init/Data.c ./Init/Data/Array.c ./Init/Data/Array/Basic.c ./Init/Data/Array/BinSearch.c ./Init/Data/Array/Macros.c ./Init/Data/Array/QSort.c ./Init/Data/Array/Subarray.c ./Init/Data/Basic.c ./Init/Data/ByteArray.c ./Init/Data/ByteArray/Basic.c ./Init/Data/Char.c ./Init/Data/Char/Basic.c ./Init/Data/Fin.c ./Init/Data/Fin/Basic.c ./Init/Data/Float.c ./Init/Data/FloatArray.c ./Init/Data/FloatArray/Basic.c ./Init/Data/Hashable.c ./Init/Data/Int.c ./Init/Data/Int/Basic.c ./Init/Data/List.c ./Init/Data/List/Basic.c ./Init/Data/List/BasicAux.c ./Init/Data/List/Control.c ./Init/Data/Nat.c ./Init/Data/Nat/Basic.c ./Init/Data/Nat/Bitwise.c ./Init/Data/Nat/Control.c ./Init/Data/Nat/Div.c ./Init/Data/Option.c ./Init/Data/Option/Basic.c ./Init/Data/Option/BasicAux.c ./Init/Data/Option/Instances.c ./Init/Data/Random.c ./Init/Data/Range.c ./Init/Data/Repr.c ./Init/Data/String.c ./Init/Data/String/Basic.c ./Init/Data/String/Extra.c ./Init/Data/ToString.c ./Init/Data/ToString/Basic.c ./Init/Data/ToString/Macro.c ./Init/Data/UInt.c ./Init/Fix.c ./Init/LeanInit.c ./Init/System.c ./Init/System/FilePath.c ./Init/System/IO.c ./Init/System/IOError.c ./Init/System/Platform.c ./Init/System/ST.c ./Init/Util.c ./Init/WF.c ./Lean.c ./Lean/Attributes.c ./Lean/AuxRecursor.c ./Lean/Class.c ./Lean/Compiler.c ./Lean/Compiler/BorrowedAnnotation.c ./Lean/Compiler/ClosedTermCache.c ./Lean/Compiler/ConstFolding.c ./Lean/Compiler/ExportAttr.c ./Lean/Compiler/ExternAttr.c ./Lean/Compiler/IR.c ./Lean/Compiler/IR/Basic.c ./Lean/Compiler/IR/Borrow.c ./Lean/Compiler/IR/Boxing.c ./Lean/Compiler/IR/Checker.c ./Lean/Compiler/IR/CompilerM.c ./Lean/Compiler/IR/CtorLayout.c ./Lean/Compiler/IR/ElimDeadBranches.c ./Lean/Compiler/IR/ElimDeadVars.c ./Lean/Compiler/IR/EmitC.c ./Lean/Compiler/IR/EmitUtil.c ./Lean/Compiler/IR/ExpandResetReuse.c ./Lean/Compiler/IR/Format.c ./Lean/Compiler/IR/FreeVars.c ./Lean/Compiler/IR/LiveVars.c ./Lean/Compiler/IR/NormIds.c ./Lean/Compiler/IR/PushProj.c ./Lean/Compiler/IR/RC.c ./Lean/Compiler/IR/ResetReuse.c ./Lean/Compiler/IR/SimpCase.c ./Lean/Compiler/IR/UnboxResult.c ./Lean/Compiler/ImplementedByAttr.c ./Lean/Compiler/InitAttr.c ./Lean/Compiler/InlineAttrs.c ./Lean/Compiler/NameMangling.c ./Lean/Compiler/NeverExtractAttr.c ./Lean/Compiler/Specialize.c ./Lean/Compiler/Util.c ./Lean/CoreM.c ./Lean/Data/Format.c ./Lean/Data/FormatMacro.c ./Lean/Data/Json.c ./Lean/Data/Json/Basic.c ./Lean/Data/Json/FromToJson.c ./Lean/Data/Json/Parser.c ./Lean/Data/Json/Printer.c ./Lean/Data/Json/Stream.c ./Lean/Data/JsonRpc.c ./Lean/Data/KVMap.c ./Lean/Data/LBool.c ./Lean/Data/LOption.c ./Lean/Data/Lsp.c ./Lean/Data/Lsp/Basic.c ./Lean/Data/Lsp/Capabilities.c ./Lean/Data/Lsp/Communication.c ./Lean/Data/Lsp/Diagnostics.c ./Lean/Data/Lsp/Hover.c ./Lean/Data/Lsp/InitShutdown.c ./Lean/Data/Lsp/TextSync.c ./Lean/Data/Lsp/Utf16.c ./Lean/Data/Lsp/Workspace.c ./Lean/Data/Name.c ./Lean/Data/Occurrences.c ./Lean/Data/OpenDecl.c ./Lean/Data/Options.c ./Lean/Data/Position.c ./Lean/Data/SMap.c ./Lean/Data/Trie.c ./Lean/Declaration.c ./Lean/Delaborator.c ./Lean/Elab.c ./Lean/Elab/App.c ./Lean/Elab/Attributes.c ./Lean/Elab/Binders.c ./Lean/Elab/BuiltinNotation.c ./Lean/Elab/CollectFVars.c ./Lean/Elab/Command.c ./Lean/Elab/DeclModifiers.c ./Lean/Elab/DeclUtil.c ./Lean/Elab/Declaration.c ./Lean/Elab/DefView.c ./Lean/Elab/Do.c ./Lean/Elab/Exception.c ./Lean/Elab/Frontend.c ./Lean/Elab/Import.c ./Lean/Elab/Inductive.c ./Lean/Elab/LetRec.c ./Lean/Elab/Level.c ./Lean/Elab/Log.c ./Lean/Elab/Match.c ./Lean/Elab/MutualDef.c ./Lean/Elab/PreDefinition.c ./Lean/Elab/PreDefinition/Basic.c ./Lean/Elab/PreDefinition/Main.c ./Lean/Elab/PreDefinition/MkInhabitant.c ./Lean/Elab/PreDefinition/Structural.c ./Lean/Elab/PreDefinition/WF.c ./Lean/Elab/Print.c ./Lean/Elab/Quotation.c ./Lean/Elab/StrategyAttrs.c ./Lean/Elab/StructInst.c ./Lean/Elab/Structure.c ./Lean/Elab/Syntax.c ./Lean/Elab/SyntheticMVars.c ./Lean/Elab/Tactic.c ./Lean/Elab/Tactic/Basic.c ./Lean/Elab/Tactic/Binders.c ./Lean/Elab/Tactic/ElabTerm.c ./Lean/Elab/Tactic/Generalize.c ./Lean/Elab/Tactic/Induction.c ./Lean/Elab/Tactic/Injection.c ./Lean/Elab/Tactic/Location.c ./Lean/Elab/Tactic/Match.c ./Lean/Elab/Tactic/Rewrite.c ./Lean/Elab/Term.c ./Lean/Elab/Util.c ./Lean/Environment.c ./Lean/Eval.c ./Lean/Exception.c ./Lean/Expr.c ./Lean/HeadIndex.c ./Lean/Hygiene.c ./Lean/InternalExceptionId.c ./Lean/KeyedDeclsAttribute.c ./Lean/Level.c ./Lean/LocalContext.c ./Lean/Message.c ./Lean/Meta.c ./Lean/Meta/AbstractMVars.c ./Lean/Meta/AbstractNestedProofs.c ./Lean/Meta/AppBuilder.c ./Lean/Meta/Basic.c ./Lean/Meta/Check.c ./Lean/Meta/Closure.c ./Lean/Meta/CollectMVars.c ./Lean/Meta/DiscrTree.c ./Lean/Meta/DiscrTreeTypes.c ./Lean/Meta/ExprDefEq.c ./Lean/Meta/ForEachExpr.c ./Lean/Meta/FunInfo.c ./Lean/Meta/GeneralizeTelescope.c ./Lean/Meta/InferType.c ./Lean/Meta/Instances.c ./Lean/Meta/KAbstract.c ./Lean/Meta/LevelDefEq.c ./Lean/Meta/Match.c ./Lean/Meta/Match/CaseArraySizes.c ./Lean/Meta/Match/CaseValues.c ./Lean/Meta/Match/MVarRenaming.c ./Lean/Meta/Match/Match.c ./Lean/Meta/Match/MatchPatternAttr.c ./Lean/Meta/MatchUtil.c ./Lean/Meta/Offset.c ./Lean/Meta/RecursorInfo.c ./Lean/Meta/Reduce.c ./Lean/Meta/ReduceEval.c ./Lean/Meta/SynthInstance.c ./Lean/Meta/Tactic.c ./Lean/Meta/Tactic/Apply.c ./Lean/Meta/Tactic/Assert.c ./Lean/Meta/Tactic/Assumption.c ./Lean/Meta/Tactic/Cases.c ./Lean/Meta/Tactic/Clear.c ./Lean/Meta/Tactic/FVarSubst.c ./Lean/Meta/Tactic/Generalize.c ./Lean/Meta/Tactic/Induction.c ./Lean/Meta/Tactic/Injection.c ./Lean/Meta/Tactic/Intro.c ./Lean/Meta/Tactic/Replace.c ./Lean/Meta/Tactic/Revert.c ./Lean/Meta/Tactic/Rewrite.c ./Lean/Meta/Tactic/Subst.c ./Lean/Meta/Tactic/Util.c ./Lean/Meta/TransparencyMode.c ./Lean/Meta/WHNF.c ./Lean/MetavarContext.c ./Lean/Modifiers.c ./Lean/MonadEnv.c ./Lean/Parser.c ./Lean/Parser/Basic.c ./Lean/Parser/Command.c ./Lean/Parser/Do.c ./Lean/Parser/Extension.c ./Lean/Parser/Extra.c ./Lean/Parser/Level.c ./Lean/Parser/Module.c ./Lean/Parser/StrInterpolation.c ./Lean/Parser/Syntax.c ./Lean/Parser/Tactic.c ./Lean/Parser/Term.c ./Lean/Parser/Transform.c ./Lean/ParserCompiler.c ./Lean/ParserCompiler/Attribute.c ./Lean/PrettyPrinter.c ./Lean/PrettyPrinter/Backtrack.c ./Lean/PrettyPrinter/Formatter.c ./Lean/PrettyPrinter/Meta.c ./Lean/PrettyPrinter/Parenthesizer.c ./Lean/ProjFns.c ./Lean/ReducibilityAttrs.c ./Lean/ResolveName.c ./Lean/Runtime.c ./Lean/Server.c ./Lean/Server/ServerBin.c ./Lean/Server/Snapshots.c ./Lean/Structure.c ./Lean/Syntax.c ./Lean/ToExpr.c ./Lean/Util.c ./Lean/Util/CollectFVars.c ./Lean/Util/CollectLevelParams.c ./Lean/Util/CollectMVars.c ./Lean/Util/Constructions.c ./Lean/Util/FindExpr.c ./Lean/Util/FindMVar.c ./Lean/Util/FoldConsts.c ./Lean/Util/ForEachExpr.c ./Lean/Util/MonadCache.c ./Lean/Util/PPExt.c ./Lean/Util/PPGoal.c ./Lean/Util/Path.c ./Lean/Util/Profile.c ./Lean/Util/RecDepth.c ./Lean/Util/Recognizers.c ./Lean/Util/ReplaceExpr.c ./Lean/Util/ReplaceLevel.c ./Lean/Util/SCC.c ./Lean/Util/Sorry.c ./Lean/Util/Trace.c ./Std.c ./Std/Data.c ./Std/Data/AssocList.c ./Std/Data/BinomialHeap.c ./Std/Data/DList.c ./Std/Data/HashMap.c ./Std/Data/HashSet.c ./Std/Data/PersistentArray.c ./Std/Data/PersistentHashMap.c ./Std/Data/PersistentHashSet.c ./Std/Data/Queue.c ./Std/Data/RBMap.c ./Std/Data/RBTree.c ./Std/Data/Stack.c ./Std/ShareCommon.c ) +add_library (stage0 OBJECT ./Init.c ./Init/Coe.c ./Init/Control.c ./Init/Control/Alternative.c ./Init/Control/Applicative.c ./Init/Control/Conditional.c ./Init/Control/EState.c ./Init/Control/Except.c ./Init/Control/Functor.c ./Init/Control/Id.c ./Init/Control/Monad.c ./Init/Control/MonadControl.c ./Init/Control/MonadFunctor.c ./Init/Control/MonadLift.c ./Init/Control/Option.c ./Init/Control/Reader.c ./Init/Control/State.c ./Init/Control/StateRef.c ./Init/Core.c ./Init/Data.c ./Init/Data/Array.c ./Init/Data/Array/Basic.c ./Init/Data/Array/BinSearch.c ./Init/Data/Array/Macros.c ./Init/Data/Array/QSort.c ./Init/Data/Array/Subarray.c ./Init/Data/Basic.c ./Init/Data/ByteArray.c ./Init/Data/ByteArray/Basic.c ./Init/Data/Char.c ./Init/Data/Char/Basic.c ./Init/Data/Fin.c ./Init/Data/Fin/Basic.c ./Init/Data/Float.c ./Init/Data/FloatArray.c ./Init/Data/FloatArray/Basic.c ./Init/Data/Hashable.c ./Init/Data/Int.c ./Init/Data/Int/Basic.c ./Init/Data/List.c ./Init/Data/List/Basic.c ./Init/Data/List/BasicAux.c ./Init/Data/List/Control.c ./Init/Data/Nat.c ./Init/Data/Nat/Basic.c ./Init/Data/Nat/Bitwise.c ./Init/Data/Nat/Control.c ./Init/Data/Nat/Div.c ./Init/Data/Option.c ./Init/Data/Option/Basic.c ./Init/Data/Option/BasicAux.c ./Init/Data/Option/Instances.c ./Init/Data/Random.c ./Init/Data/Range.c ./Init/Data/Repr.c ./Init/Data/String.c ./Init/Data/String/Basic.c ./Init/Data/String/Extra.c ./Init/Data/ToString.c ./Init/Data/ToString/Basic.c ./Init/Data/ToString/Macro.c ./Init/Data/UInt.c ./Init/Fix.c ./Init/LeanInit.c ./Init/System.c ./Init/System/FilePath.c ./Init/System/IO.c ./Init/System/IOError.c ./Init/System/Platform.c ./Init/System/ST.c ./Init/Tactics.c ./Init/Util.c ./Init/WF.c ./Lean.c ./Lean/Attributes.c ./Lean/AuxRecursor.c ./Lean/Class.c ./Lean/Compiler.c ./Lean/Compiler/BorrowedAnnotation.c ./Lean/Compiler/ClosedTermCache.c ./Lean/Compiler/ConstFolding.c ./Lean/Compiler/ExportAttr.c ./Lean/Compiler/ExternAttr.c ./Lean/Compiler/IR.c ./Lean/Compiler/IR/Basic.c ./Lean/Compiler/IR/Borrow.c ./Lean/Compiler/IR/Boxing.c ./Lean/Compiler/IR/Checker.c ./Lean/Compiler/IR/CompilerM.c ./Lean/Compiler/IR/CtorLayout.c ./Lean/Compiler/IR/ElimDeadBranches.c ./Lean/Compiler/IR/ElimDeadVars.c ./Lean/Compiler/IR/EmitC.c ./Lean/Compiler/IR/EmitUtil.c ./Lean/Compiler/IR/ExpandResetReuse.c ./Lean/Compiler/IR/Format.c ./Lean/Compiler/IR/FreeVars.c ./Lean/Compiler/IR/LiveVars.c ./Lean/Compiler/IR/NormIds.c ./Lean/Compiler/IR/PushProj.c ./Lean/Compiler/IR/RC.c ./Lean/Compiler/IR/ResetReuse.c ./Lean/Compiler/IR/SimpCase.c ./Lean/Compiler/IR/UnboxResult.c ./Lean/Compiler/ImplementedByAttr.c ./Lean/Compiler/InitAttr.c ./Lean/Compiler/InlineAttrs.c ./Lean/Compiler/NameMangling.c ./Lean/Compiler/NeverExtractAttr.c ./Lean/Compiler/Specialize.c ./Lean/Compiler/Util.c ./Lean/CoreM.c ./Lean/Data/Format.c ./Lean/Data/FormatMacro.c ./Lean/Data/Json.c ./Lean/Data/Json/Basic.c ./Lean/Data/Json/FromToJson.c ./Lean/Data/Json/Parser.c ./Lean/Data/Json/Printer.c ./Lean/Data/Json/Stream.c ./Lean/Data/JsonRpc.c ./Lean/Data/KVMap.c ./Lean/Data/LBool.c ./Lean/Data/LOption.c ./Lean/Data/Lsp.c ./Lean/Data/Lsp/Basic.c ./Lean/Data/Lsp/Capabilities.c ./Lean/Data/Lsp/Communication.c ./Lean/Data/Lsp/Diagnostics.c ./Lean/Data/Lsp/Hover.c ./Lean/Data/Lsp/InitShutdown.c ./Lean/Data/Lsp/TextSync.c ./Lean/Data/Lsp/Utf16.c ./Lean/Data/Lsp/Workspace.c ./Lean/Data/Name.c ./Lean/Data/Occurrences.c ./Lean/Data/OpenDecl.c ./Lean/Data/Options.c ./Lean/Data/Position.c ./Lean/Data/SMap.c ./Lean/Data/Trie.c ./Lean/Declaration.c ./Lean/Delaborator.c ./Lean/Elab.c ./Lean/Elab/App.c ./Lean/Elab/Attributes.c ./Lean/Elab/Binders.c ./Lean/Elab/BuiltinNotation.c ./Lean/Elab/CollectFVars.c ./Lean/Elab/Command.c ./Lean/Elab/DeclModifiers.c ./Lean/Elab/DeclUtil.c ./Lean/Elab/Declaration.c ./Lean/Elab/DefView.c ./Lean/Elab/Do.c ./Lean/Elab/Exception.c ./Lean/Elab/Frontend.c ./Lean/Elab/Import.c ./Lean/Elab/Inductive.c ./Lean/Elab/LetRec.c ./Lean/Elab/Level.c ./Lean/Elab/Log.c ./Lean/Elab/Match.c ./Lean/Elab/MutualDef.c ./Lean/Elab/PreDefinition.c ./Lean/Elab/PreDefinition/Basic.c ./Lean/Elab/PreDefinition/Main.c ./Lean/Elab/PreDefinition/MkInhabitant.c ./Lean/Elab/PreDefinition/Structural.c ./Lean/Elab/PreDefinition/WF.c ./Lean/Elab/Print.c ./Lean/Elab/Quotation.c ./Lean/Elab/StrategyAttrs.c ./Lean/Elab/StructInst.c ./Lean/Elab/Structure.c ./Lean/Elab/Syntax.c ./Lean/Elab/SyntheticMVars.c ./Lean/Elab/Tactic.c ./Lean/Elab/Tactic/Basic.c ./Lean/Elab/Tactic/Binders.c ./Lean/Elab/Tactic/ElabTerm.c ./Lean/Elab/Tactic/Generalize.c ./Lean/Elab/Tactic/Induction.c ./Lean/Elab/Tactic/Injection.c ./Lean/Elab/Tactic/Location.c ./Lean/Elab/Tactic/Match.c ./Lean/Elab/Tactic/Rewrite.c ./Lean/Elab/Term.c ./Lean/Elab/Util.c ./Lean/Environment.c ./Lean/Eval.c ./Lean/Exception.c ./Lean/Expr.c ./Lean/HeadIndex.c ./Lean/Hygiene.c ./Lean/InternalExceptionId.c ./Lean/KeyedDeclsAttribute.c ./Lean/Level.c ./Lean/LocalContext.c ./Lean/Message.c ./Lean/Meta.c ./Lean/Meta/AbstractMVars.c ./Lean/Meta/AbstractNestedProofs.c ./Lean/Meta/AppBuilder.c ./Lean/Meta/Basic.c ./Lean/Meta/Check.c ./Lean/Meta/Closure.c ./Lean/Meta/CollectMVars.c ./Lean/Meta/DiscrTree.c ./Lean/Meta/DiscrTreeTypes.c ./Lean/Meta/ExprDefEq.c ./Lean/Meta/ForEachExpr.c ./Lean/Meta/FunInfo.c ./Lean/Meta/GeneralizeTelescope.c ./Lean/Meta/InferType.c ./Lean/Meta/Instances.c ./Lean/Meta/KAbstract.c ./Lean/Meta/LevelDefEq.c ./Lean/Meta/Match.c ./Lean/Meta/Match/CaseArraySizes.c ./Lean/Meta/Match/CaseValues.c ./Lean/Meta/Match/MVarRenaming.c ./Lean/Meta/Match/Match.c ./Lean/Meta/Match/MatchPatternAttr.c ./Lean/Meta/MatchUtil.c ./Lean/Meta/Offset.c ./Lean/Meta/RecursorInfo.c ./Lean/Meta/Reduce.c ./Lean/Meta/ReduceEval.c ./Lean/Meta/SynthInstance.c ./Lean/Meta/Tactic.c ./Lean/Meta/Tactic/Apply.c ./Lean/Meta/Tactic/Assert.c ./Lean/Meta/Tactic/Assumption.c ./Lean/Meta/Tactic/Cases.c ./Lean/Meta/Tactic/Clear.c ./Lean/Meta/Tactic/FVarSubst.c ./Lean/Meta/Tactic/Generalize.c ./Lean/Meta/Tactic/Induction.c ./Lean/Meta/Tactic/Injection.c ./Lean/Meta/Tactic/Intro.c ./Lean/Meta/Tactic/Replace.c ./Lean/Meta/Tactic/Revert.c ./Lean/Meta/Tactic/Rewrite.c ./Lean/Meta/Tactic/Subst.c ./Lean/Meta/Tactic/Util.c ./Lean/Meta/TransparencyMode.c ./Lean/Meta/WHNF.c ./Lean/MetavarContext.c ./Lean/Modifiers.c ./Lean/MonadEnv.c ./Lean/Parser.c ./Lean/Parser/Basic.c ./Lean/Parser/Command.c ./Lean/Parser/Do.c ./Lean/Parser/Extension.c ./Lean/Parser/Extra.c ./Lean/Parser/Level.c ./Lean/Parser/Module.c ./Lean/Parser/StrInterpolation.c ./Lean/Parser/Syntax.c ./Lean/Parser/Tactic.c ./Lean/Parser/Term.c ./Lean/Parser/Transform.c ./Lean/ParserCompiler.c ./Lean/ParserCompiler/Attribute.c ./Lean/PrettyPrinter.c ./Lean/PrettyPrinter/Backtrack.c ./Lean/PrettyPrinter/Formatter.c ./Lean/PrettyPrinter/Meta.c ./Lean/PrettyPrinter/Parenthesizer.c ./Lean/ProjFns.c ./Lean/ReducibilityAttrs.c ./Lean/ResolveName.c ./Lean/Runtime.c ./Lean/Server.c ./Lean/Server/ServerBin.c ./Lean/Server/Snapshots.c ./Lean/Structure.c ./Lean/Syntax.c ./Lean/ToExpr.c ./Lean/Util.c ./Lean/Util/CollectFVars.c ./Lean/Util/CollectLevelParams.c ./Lean/Util/CollectMVars.c ./Lean/Util/Constructions.c ./Lean/Util/FindExpr.c ./Lean/Util/FindMVar.c ./Lean/Util/FoldConsts.c ./Lean/Util/ForEachExpr.c ./Lean/Util/MonadCache.c ./Lean/Util/PPExt.c ./Lean/Util/PPGoal.c ./Lean/Util/Path.c ./Lean/Util/Profile.c ./Lean/Util/RecDepth.c ./Lean/Util/Recognizers.c ./Lean/Util/ReplaceExpr.c ./Lean/Util/ReplaceLevel.c ./Lean/Util/SCC.c ./Lean/Util/Sorry.c ./Lean/Util/Trace.c ./Std.c ./Std/Data.c ./Std/Data/AssocList.c ./Std/Data/BinomialHeap.c ./Std/Data/DList.c ./Std/Data/HashMap.c ./Std/Data/HashSet.c ./Std/Data/PersistentArray.c ./Std/Data/PersistentHashMap.c ./Std/Data/PersistentHashSet.c ./Std/Data/Queue.c ./Std/Data/RBMap.c ./Std/Data/RBTree.c ./Std/Data/Stack.c ./Std/ShareCommon.c ) diff --git a/stage0/stdlib/Init.c b/stage0/stdlib/Init.c index de20eb75e0..68ea108912 100644 --- a/stage0/stdlib/Init.c +++ b/stage0/stdlib/Init.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Init -// Imports: Init.Core Init.Control Init.Data.Basic Init.WF Init.Data Init.System Init.Util Init.Fix Init.LeanInit +// Imports: Init.Core Init.Control Init.Data.Basic Init.WF Init.Data Init.System Init.Util Init.Fix Init.LeanInit Init.Tactics #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -22,6 +22,7 @@ lean_object* initialize_Init_System(lean_object*); lean_object* initialize_Init_Util(lean_object*); lean_object* initialize_Init_Fix(lean_object*); lean_object* initialize_Init_LeanInit(lean_object*); +lean_object* initialize_Init_Tactics(lean_object*); static bool _G_initialized = false; lean_object* initialize_Init(lean_object* w) { lean_object * res; @@ -54,6 +55,9 @@ lean_dec_ref(res); res = initialize_Init_LeanInit(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Init_Tactics(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)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/Tactics.c b/stage0/stdlib/Init/Tactics.c new file mode 100644 index 0000000000..69aa9a4cbf --- /dev/null +++ b/stage0/stdlib/Init/Tactics.c @@ -0,0 +1,1042 @@ +// Lean compiler output +// Module: Init.Tactics +// Imports: Init.LeanInit +#include +#if defined(__clang__) +#pragma clang diagnostic ignored "-Wunused-parameter" +#pragma clang diagnostic ignored "-Wunused-label" +#elif defined(__GNUC__) && !defined(__CLANG__) +#pragma GCC diagnostic ignored "-Wunused-parameter" +#pragma GCC diagnostic ignored "-Wunused-label" +#pragma GCC diagnostic ignored "-Wunused-but-set-variable" +#endif +#ifdef __cplusplus +extern "C" { +#endif +lean_object* l_myMacro____x40_Init_Tactics___hyg_338____closed__7; +lean_object* l___kind_tactic____x40_Init_Tactics___hyg_309____closed__3; +lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__7; +lean_object* l___kind_tactic____x40_Init_Tactics___hyg_2____closed__7; +lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__9; +lean_object* l_myMacro____x40_Init_Tactics___hyg_186____closed__2; +lean_object* l_myMacro____x40_Init_Tactics___hyg_338____closed__11; +lean_object* l_myMacro____x40_Init_Tactics___hyg_186____boxed(lean_object*, lean_object*, lean_object*); +extern lean_object* l_Array_empty___closed__1; +lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__1; +extern lean_object* l___private_Init_LeanInit_0__Lean_eraseMacroScopesAux___closed__5; +lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__8; +lean_object* lean_array_push(lean_object*, lean_object*); +lean_object* lean_array_get_size(lean_object*); +lean_object* l_myMacro____x40_Init_Tactics___hyg_338____closed__10; +lean_object* lean_string_utf8_byte_size(lean_object*); +extern lean_object* l_Lean_mkAppStx___closed__4; +lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__2; +lean_object* l___kind_tactic____x40_Init_Tactics___hyg_2____closed__10; +lean_object* l_myMacro____x40_Init_Tactics___hyg_338____closed__6; +lean_object* l_myMacro____x40_Init_Tactics___hyg_186____closed__3; +lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__6; +lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__13; +lean_object* l_myMacro____x40_Init_Tactics___hyg_186_(lean_object*, lean_object*, lean_object*); +lean_object* l_myMacro____x40_Init_Tactics___hyg_338_(lean_object*, lean_object*, lean_object*); +lean_object* l_myMacro____x40_Init_Tactics___hyg_31_(lean_object*, lean_object*, lean_object*); +uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__12; +lean_object* l___kind_tactic____x40_Init_Tactics___hyg_2____closed__12; +lean_object* l_myMacro____x40_Init_Tactics___hyg_186____closed__5; +lean_object* l_myMacro____x40_Init_Tactics___hyg_186____closed__4; +lean_object* l_myMacro____x40_Init_Tactics___hyg_186____closed__1; +lean_object* l_myMacro____x40_Init_Tactics___hyg_338____closed__3; +lean_object* l___kind_tactic____x40_Init_Tactics___hyg_2____closed__11; +lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__11; +lean_object* l___kind_tactic____x40_Init_Tactics___hyg_157____closed__2; +lean_object* lean_name_mk_string(lean_object*, lean_object*); +lean_object* l_myMacro____x40_Init_Tactics___hyg_186____closed__8; +lean_object* l___kind_tactic____x40_Init_Tactics___hyg_157____closed__4; +lean_object* l___kind_tactic____x40_Init_Tactics___hyg_157____closed__1; +lean_object* l_myMacro____x40_Init_Tactics___hyg_186____closed__9; +extern lean_object* l_Lean_mkAppStx___closed__6; +lean_object* l_myMacro____x40_Init_Tactics___hyg_338____closed__8; +lean_object* l___kind_tactic____x40_Init_Tactics___hyg_2____closed__8; +lean_object* l_myMacro____x40_Init_Tactics___hyg_338____closed__4; +lean_object* l___kind_tactic____x40_Init_Tactics___hyg_2____closed__4; +lean_object* l___kind_tactic____x40_Init_Tactics___hyg_309_; +lean_object* l___kind_tactic____x40_Init_Tactics___hyg_2_; +lean_object* l___kind_tactic____x40_Init_Tactics___hyg_157_; +lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); +lean_object* l_myMacro____x40_Init_Tactics___hyg_186____closed__10; +extern lean_object* l_Lean_nullKind___closed__2; +lean_object* l___kind_tactic____x40_Init_Tactics___hyg_157____closed__3; +lean_object* l___kind_tactic____x40_Init_Tactics___hyg_2____closed__9; +lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__4; +lean_object* l_myMacro____x40_Init_Tactics___hyg_338____closed__5; +lean_object* l___kind_tactic____x40_Init_Tactics___hyg_2____closed__13; +lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__10; +lean_object* l_myMacro____x40_Init_Tactics___hyg_338____closed__1; +lean_object* l_myMacro____x40_Init_Tactics___hyg_186____closed__6; +lean_object* l_Lean_Syntax_getArgs(lean_object*); +lean_object* l___kind_tactic____x40_Init_Tactics___hyg_2____closed__1; +extern lean_object* l_Lean_Init_LeanInit___instance__8___closed__1; +lean_object* l_myMacro____x40_Init_Tactics___hyg_338____closed__2; +lean_object* l_myMacro____x40_Init_Tactics___hyg_338____boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___kind_tactic____x40_Init_Tactics___hyg_2____closed__2; +lean_object* l_myMacro____x40_Init_Tactics___hyg_338____closed__9; +extern lean_object* l_Lean_Name_hasMacroScopes___closed__1; +lean_object* l___kind_tactic____x40_Init_Tactics___hyg_309____closed__2; +lean_object* l___kind_tactic____x40_Init_Tactics___hyg_2____closed__6; +uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); +lean_object* l___kind_tactic____x40_Init_Tactics___hyg_309____closed__1; +lean_object* l_myMacro____x40_Init_Tactics___hyg_186____closed__11; +lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__3; +lean_object* l___kind_tactic____x40_Init_Tactics___hyg_309____closed__4; +lean_object* l___kind_tactic____x40_Init_Tactics___hyg_2____closed__5; +lean_object* l___kind_tactic____x40_Init_Tactics___hyg_2____closed__3; +lean_object* l___kind_tactic____x40_Init_Tactics___hyg_2____closed__14; +lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__5; +lean_object* lean_name_mk_numeral(lean_object*, lean_object*); +lean_object* l_myMacro____x40_Init_Tactics___hyg_186____closed__7; +static lean_object* _init_l___kind_tactic____x40_Init_Tactics___hyg_2____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("_kind"); +return x_1; +} +} +static lean_object* _init_l___kind_tactic____x40_Init_Tactics___hyg_2____closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___kind_tactic____x40_Init_Tactics___hyg_2____closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___kind_tactic____x40_Init_Tactics___hyg_2____closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("tactic"); +return x_1; +} +} +static lean_object* _init_l___kind_tactic____x40_Init_Tactics___hyg_2____closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___kind_tactic____x40_Init_Tactics___hyg_2____closed__2; +x_2 = l___kind_tactic____x40_Init_Tactics___hyg_2____closed__3; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___kind_tactic____x40_Init_Tactics___hyg_2____closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___kind_tactic____x40_Init_Tactics___hyg_2____closed__4; +x_2 = l___private_Init_LeanInit_0__Lean_eraseMacroScopesAux___closed__5; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___kind_tactic____x40_Init_Tactics___hyg_2____closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Init"); +return x_1; +} +} +static lean_object* _init_l___kind_tactic____x40_Init_Tactics___hyg_2____closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___kind_tactic____x40_Init_Tactics___hyg_2____closed__5; +x_2 = l___kind_tactic____x40_Init_Tactics___hyg_2____closed__6; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___kind_tactic____x40_Init_Tactics___hyg_2____closed__8() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Tactics"); +return x_1; +} +} +static lean_object* _init_l___kind_tactic____x40_Init_Tactics___hyg_2____closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___kind_tactic____x40_Init_Tactics___hyg_2____closed__7; +x_2 = l___kind_tactic____x40_Init_Tactics___hyg_2____closed__8; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___kind_tactic____x40_Init_Tactics___hyg_2____closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___kind_tactic____x40_Init_Tactics___hyg_2____closed__9; +x_2 = l_Lean_Name_hasMacroScopes___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___kind_tactic____x40_Init_Tactics___hyg_2____closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___kind_tactic____x40_Init_Tactics___hyg_2____closed__10; +x_2 = lean_unsigned_to_nat(2u); +x_3 = lean_name_mk_numeral(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___kind_tactic____x40_Init_Tactics___hyg_2____closed__12() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("rfl"); +return x_1; +} +} +static lean_object* _init_l___kind_tactic____x40_Init_Tactics___hyg_2____closed__13() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l___kind_tactic____x40_Init_Tactics___hyg_2____closed__12; +x_2 = 0; +x_3 = lean_alloc_ctor(12, 1, 1); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); +return x_3; +} +} +static lean_object* _init_l___kind_tactic____x40_Init_Tactics___hyg_2____closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___kind_tactic____x40_Init_Tactics___hyg_2____closed__11; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l___kind_tactic____x40_Init_Tactics___hyg_2____closed__13; +x_4 = lean_alloc_ctor(9, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l___kind_tactic____x40_Init_Tactics___hyg_2_() { +_start: +{ +lean_object* x_1; +x_1 = l___kind_tactic____x40_Init_Tactics___hyg_2____closed__14; +return x_1; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_31____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Tactic"); +return x_1; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_31____closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_mkAppStx___closed__4; +x_2 = l_myMacro____x40_Init_Tactics___hyg_31____closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_31____closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("seq1"); +return x_1; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_31____closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; +x_2 = l_myMacro____x40_Init_Tactics___hyg_31____closed__3; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_31____closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("exact"); +return x_1; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_31____closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; +x_2 = l_myMacro____x40_Init_Tactics___hyg_31____closed__5; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_31____closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Init_LeanInit___instance__8___closed__1; +x_2 = l_myMacro____x40_Init_Tactics___hyg_31____closed__5; +x_3 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_31____closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_empty___closed__1; +x_2 = l_myMacro____x40_Init_Tactics___hyg_31____closed__7; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_31____closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___kind_tactic____x40_Init_Tactics___hyg_2____closed__12; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_31____closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___kind_tactic____x40_Init_Tactics___hyg_2____closed__12; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_myMacro____x40_Init_Tactics___hyg_31____closed__9; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_31____closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___kind_tactic____x40_Init_Tactics___hyg_2____closed__12; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_31____closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_myMacro____x40_Init_Tactics___hyg_31____closed__11; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_31____closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_myMacro____x40_Init_Tactics___hyg_31____closed__12; +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_myMacro____x40_Init_Tactics___hyg_31_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = l___kind_tactic____x40_Init_Tactics___hyg_2____closed__11; +lean_inc(x_1); +x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; +lean_dec(x_2); +lean_dec(x_1); +x_6 = lean_box(1); +x_7 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_7, 0, x_6); +lean_ctor_set(x_7, 1, x_3); +return x_7; +} +else +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; +x_8 = l_Lean_Syntax_getArgs(x_1); +lean_dec(x_1); +x_9 = lean_array_get_size(x_8); +lean_dec(x_8); +x_10 = lean_unsigned_to_nat(1u); +x_11 = lean_nat_dec_eq(x_9, x_10); +lean_dec(x_9); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; +lean_dec(x_2); +x_12 = lean_box(1); +x_13 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_13, 1, x_3); +return x_13; +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_14 = lean_ctor_get(x_2, 2); +lean_inc(x_14); +x_15 = lean_ctor_get(x_2, 1); +lean_inc(x_15); +lean_dec(x_2); +x_16 = l_myMacro____x40_Init_Tactics___hyg_31____closed__11; +x_17 = l_Lean_addMacroScope(x_15, x_16, x_14); +x_18 = l_Lean_Init_LeanInit___instance__8___closed__1; +x_19 = l_myMacro____x40_Init_Tactics___hyg_31____closed__10; +x_20 = l_myMacro____x40_Init_Tactics___hyg_31____closed__13; +x_21 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_21, 0, x_18); +lean_ctor_set(x_21, 1, x_19); +lean_ctor_set(x_21, 2, x_17); +lean_ctor_set(x_21, 3, x_20); +x_22 = l_myMacro____x40_Init_Tactics___hyg_31____closed__8; +x_23 = lean_array_push(x_22, x_21); +x_24 = l_myMacro____x40_Init_Tactics___hyg_31____closed__6; +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 = l_Array_empty___closed__1; +x_27 = lean_array_push(x_26, x_25); +x_28 = l_Lean_nullKind___closed__2; +x_29 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_29, 0, x_28); +lean_ctor_set(x_29, 1, x_27); +x_30 = lean_array_push(x_26, x_29); +x_31 = l_myMacro____x40_Init_Tactics___hyg_31____closed__4; +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 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_33, 0, x_32); +lean_ctor_set(x_33, 1, x_3); +return x_33; +} +} +} +} +static lean_object* _init_l___kind_tactic____x40_Init_Tactics___hyg_157____closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___kind_tactic____x40_Init_Tactics___hyg_2____closed__10; +x_2 = lean_unsigned_to_nat(157u); +x_3 = lean_name_mk_numeral(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___kind_tactic____x40_Init_Tactics___hyg_157____closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("decide!"); +return x_1; +} +} +static lean_object* _init_l___kind_tactic____x40_Init_Tactics___hyg_157____closed__3() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l___kind_tactic____x40_Init_Tactics___hyg_157____closed__2; +x_2 = 0; +x_3 = lean_alloc_ctor(12, 1, 1); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); +return x_3; +} +} +static lean_object* _init_l___kind_tactic____x40_Init_Tactics___hyg_157____closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___kind_tactic____x40_Init_Tactics___hyg_157____closed__1; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l___kind_tactic____x40_Init_Tactics___hyg_157____closed__3; +x_4 = lean_alloc_ctor(9, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l___kind_tactic____x40_Init_Tactics___hyg_157_() { +_start: +{ +lean_object* x_1; +x_1 = l___kind_tactic____x40_Init_Tactics___hyg_157____closed__4; +return x_1; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_186____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("decide"); +return x_1; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_186____closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_mkAppStx___closed__6; +x_2 = l_myMacro____x40_Init_Tactics___hyg_186____closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_186____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Init_LeanInit___instance__8___closed__1; +x_2 = l___kind_tactic____x40_Init_Tactics___hyg_157____closed__2; +x_3 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_186____closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_empty___closed__1; +x_2 = l_myMacro____x40_Init_Tactics___hyg_186____closed__3; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_186____closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_myMacro____x40_Init_Tactics___hyg_186____closed__2; +x_2 = l_myMacro____x40_Init_Tactics___hyg_186____closed__4; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_186____closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__8; +x_2 = l_myMacro____x40_Init_Tactics___hyg_186____closed__5; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_186____closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__6; +x_2 = l_myMacro____x40_Init_Tactics___hyg_186____closed__6; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_186____closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_empty___closed__1; +x_2 = l_myMacro____x40_Init_Tactics___hyg_186____closed__7; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_186____closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_nullKind___closed__2; +x_2 = l_myMacro____x40_Init_Tactics___hyg_186____closed__8; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_186____closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_empty___closed__1; +x_2 = l_myMacro____x40_Init_Tactics___hyg_186____closed__9; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_186____closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__4; +x_2 = l_myMacro____x40_Init_Tactics___hyg_186____closed__10; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_myMacro____x40_Init_Tactics___hyg_186_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = l___kind_tactic____x40_Init_Tactics___hyg_157____closed__1; +lean_inc(x_1); +x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; +lean_dec(x_1); +x_6 = lean_box(1); +x_7 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_7, 0, x_6); +lean_ctor_set(x_7, 1, x_3); +return x_7; +} +else +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; +x_8 = l_Lean_Syntax_getArgs(x_1); +lean_dec(x_1); +x_9 = lean_array_get_size(x_8); +lean_dec(x_8); +x_10 = lean_unsigned_to_nat(1u); +x_11 = lean_nat_dec_eq(x_9, x_10); +lean_dec(x_9); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_box(1); +x_13 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_13, 1, x_3); +return x_13; +} +else +{ +lean_object* x_14; lean_object* x_15; +x_14 = l_myMacro____x40_Init_Tactics___hyg_186____closed__11; +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_3); +return x_15; +} +} +} +} +lean_object* l_myMacro____x40_Init_Tactics___hyg_186____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_myMacro____x40_Init_Tactics___hyg_186_(x_1, x_2, x_3); +lean_dec(x_2); +return x_4; +} +} +static lean_object* _init_l___kind_tactic____x40_Init_Tactics___hyg_309____closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___kind_tactic____x40_Init_Tactics___hyg_2____closed__10; +x_2 = lean_unsigned_to_nat(309u); +x_3 = lean_name_mk_numeral(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___kind_tactic____x40_Init_Tactics___hyg_309____closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("admit"); +return x_1; +} +} +static lean_object* _init_l___kind_tactic____x40_Init_Tactics___hyg_309____closed__3() { +_start: +{ +lean_object* x_1; uint8_t x_2; lean_object* x_3; +x_1 = l___kind_tactic____x40_Init_Tactics___hyg_309____closed__2; +x_2 = 0; +x_3 = lean_alloc_ctor(12, 1, 1); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); +return x_3; +} +} +static lean_object* _init_l___kind_tactic____x40_Init_Tactics___hyg_309____closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___kind_tactic____x40_Init_Tactics___hyg_309____closed__1; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l___kind_tactic____x40_Init_Tactics___hyg_309____closed__3; +x_4 = lean_alloc_ctor(9, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l___kind_tactic____x40_Init_Tactics___hyg_309_() { +_start: +{ +lean_object* x_1; +x_1 = l___kind_tactic____x40_Init_Tactics___hyg_309____closed__4; +return x_1; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_338____closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("sorry"); +return x_1; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_338____closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_mkAppStx___closed__6; +x_2 = l_myMacro____x40_Init_Tactics___hyg_338____closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_338____closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Init_LeanInit___instance__8___closed__1; +x_2 = l_myMacro____x40_Init_Tactics___hyg_338____closed__1; +x_3 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_338____closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_empty___closed__1; +x_2 = l_myMacro____x40_Init_Tactics___hyg_338____closed__3; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_338____closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_myMacro____x40_Init_Tactics___hyg_338____closed__2; +x_2 = l_myMacro____x40_Init_Tactics___hyg_338____closed__4; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_338____closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__8; +x_2 = l_myMacro____x40_Init_Tactics___hyg_338____closed__5; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_338____closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__6; +x_2 = l_myMacro____x40_Init_Tactics___hyg_338____closed__6; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_338____closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_empty___closed__1; +x_2 = l_myMacro____x40_Init_Tactics___hyg_338____closed__7; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_338____closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_nullKind___closed__2; +x_2 = l_myMacro____x40_Init_Tactics___hyg_338____closed__8; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_338____closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_empty___closed__1; +x_2 = l_myMacro____x40_Init_Tactics___hyg_338____closed__9; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_myMacro____x40_Init_Tactics___hyg_338____closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__4; +x_2 = l_myMacro____x40_Init_Tactics___hyg_338____closed__10; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_myMacro____x40_Init_Tactics___hyg_338_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = l___kind_tactic____x40_Init_Tactics___hyg_309____closed__1; +lean_inc(x_1); +x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; +lean_dec(x_1); +x_6 = lean_box(1); +x_7 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_7, 0, x_6); +lean_ctor_set(x_7, 1, x_3); +return x_7; +} +else +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; +x_8 = l_Lean_Syntax_getArgs(x_1); +lean_dec(x_1); +x_9 = lean_array_get_size(x_8); +lean_dec(x_8); +x_10 = lean_unsigned_to_nat(1u); +x_11 = lean_nat_dec_eq(x_9, x_10); +lean_dec(x_9); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_box(1); +x_13 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_13, 1, x_3); +return x_13; +} +else +{ +lean_object* x_14; lean_object* x_15; +x_14 = l_myMacro____x40_Init_Tactics___hyg_338____closed__11; +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_3); +return x_15; +} +} +} +} +lean_object* l_myMacro____x40_Init_Tactics___hyg_338____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_myMacro____x40_Init_Tactics___hyg_338_(x_1, x_2, x_3); +lean_dec(x_2); +return x_4; +} +} +lean_object* initialize_Init_LeanInit(lean_object*); +static bool _G_initialized = false; +lean_object* initialize_Init_Tactics(lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Init_LeanInit(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l___kind_tactic____x40_Init_Tactics___hyg_2____closed__1 = _init_l___kind_tactic____x40_Init_Tactics___hyg_2____closed__1(); +lean_mark_persistent(l___kind_tactic____x40_Init_Tactics___hyg_2____closed__1); +l___kind_tactic____x40_Init_Tactics___hyg_2____closed__2 = _init_l___kind_tactic____x40_Init_Tactics___hyg_2____closed__2(); +lean_mark_persistent(l___kind_tactic____x40_Init_Tactics___hyg_2____closed__2); +l___kind_tactic____x40_Init_Tactics___hyg_2____closed__3 = _init_l___kind_tactic____x40_Init_Tactics___hyg_2____closed__3(); +lean_mark_persistent(l___kind_tactic____x40_Init_Tactics___hyg_2____closed__3); +l___kind_tactic____x40_Init_Tactics___hyg_2____closed__4 = _init_l___kind_tactic____x40_Init_Tactics___hyg_2____closed__4(); +lean_mark_persistent(l___kind_tactic____x40_Init_Tactics___hyg_2____closed__4); +l___kind_tactic____x40_Init_Tactics___hyg_2____closed__5 = _init_l___kind_tactic____x40_Init_Tactics___hyg_2____closed__5(); +lean_mark_persistent(l___kind_tactic____x40_Init_Tactics___hyg_2____closed__5); +l___kind_tactic____x40_Init_Tactics___hyg_2____closed__6 = _init_l___kind_tactic____x40_Init_Tactics___hyg_2____closed__6(); +lean_mark_persistent(l___kind_tactic____x40_Init_Tactics___hyg_2____closed__6); +l___kind_tactic____x40_Init_Tactics___hyg_2____closed__7 = _init_l___kind_tactic____x40_Init_Tactics___hyg_2____closed__7(); +lean_mark_persistent(l___kind_tactic____x40_Init_Tactics___hyg_2____closed__7); +l___kind_tactic____x40_Init_Tactics___hyg_2____closed__8 = _init_l___kind_tactic____x40_Init_Tactics___hyg_2____closed__8(); +lean_mark_persistent(l___kind_tactic____x40_Init_Tactics___hyg_2____closed__8); +l___kind_tactic____x40_Init_Tactics___hyg_2____closed__9 = _init_l___kind_tactic____x40_Init_Tactics___hyg_2____closed__9(); +lean_mark_persistent(l___kind_tactic____x40_Init_Tactics___hyg_2____closed__9); +l___kind_tactic____x40_Init_Tactics___hyg_2____closed__10 = _init_l___kind_tactic____x40_Init_Tactics___hyg_2____closed__10(); +lean_mark_persistent(l___kind_tactic____x40_Init_Tactics___hyg_2____closed__10); +l___kind_tactic____x40_Init_Tactics___hyg_2____closed__11 = _init_l___kind_tactic____x40_Init_Tactics___hyg_2____closed__11(); +lean_mark_persistent(l___kind_tactic____x40_Init_Tactics___hyg_2____closed__11); +l___kind_tactic____x40_Init_Tactics___hyg_2____closed__12 = _init_l___kind_tactic____x40_Init_Tactics___hyg_2____closed__12(); +lean_mark_persistent(l___kind_tactic____x40_Init_Tactics___hyg_2____closed__12); +l___kind_tactic____x40_Init_Tactics___hyg_2____closed__13 = _init_l___kind_tactic____x40_Init_Tactics___hyg_2____closed__13(); +lean_mark_persistent(l___kind_tactic____x40_Init_Tactics___hyg_2____closed__13); +l___kind_tactic____x40_Init_Tactics___hyg_2____closed__14 = _init_l___kind_tactic____x40_Init_Tactics___hyg_2____closed__14(); +lean_mark_persistent(l___kind_tactic____x40_Init_Tactics___hyg_2____closed__14); +l___kind_tactic____x40_Init_Tactics___hyg_2_ = _init_l___kind_tactic____x40_Init_Tactics___hyg_2_(); +lean_mark_persistent(l___kind_tactic____x40_Init_Tactics___hyg_2_); +l_myMacro____x40_Init_Tactics___hyg_31____closed__1 = _init_l_myMacro____x40_Init_Tactics___hyg_31____closed__1(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_31____closed__1); +l_myMacro____x40_Init_Tactics___hyg_31____closed__2 = _init_l_myMacro____x40_Init_Tactics___hyg_31____closed__2(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_31____closed__2); +l_myMacro____x40_Init_Tactics___hyg_31____closed__3 = _init_l_myMacro____x40_Init_Tactics___hyg_31____closed__3(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_31____closed__3); +l_myMacro____x40_Init_Tactics___hyg_31____closed__4 = _init_l_myMacro____x40_Init_Tactics___hyg_31____closed__4(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_31____closed__4); +l_myMacro____x40_Init_Tactics___hyg_31____closed__5 = _init_l_myMacro____x40_Init_Tactics___hyg_31____closed__5(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_31____closed__5); +l_myMacro____x40_Init_Tactics___hyg_31____closed__6 = _init_l_myMacro____x40_Init_Tactics___hyg_31____closed__6(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_31____closed__6); +l_myMacro____x40_Init_Tactics___hyg_31____closed__7 = _init_l_myMacro____x40_Init_Tactics___hyg_31____closed__7(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_31____closed__7); +l_myMacro____x40_Init_Tactics___hyg_31____closed__8 = _init_l_myMacro____x40_Init_Tactics___hyg_31____closed__8(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_31____closed__8); +l_myMacro____x40_Init_Tactics___hyg_31____closed__9 = _init_l_myMacro____x40_Init_Tactics___hyg_31____closed__9(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_31____closed__9); +l_myMacro____x40_Init_Tactics___hyg_31____closed__10 = _init_l_myMacro____x40_Init_Tactics___hyg_31____closed__10(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_31____closed__10); +l_myMacro____x40_Init_Tactics___hyg_31____closed__11 = _init_l_myMacro____x40_Init_Tactics___hyg_31____closed__11(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_31____closed__11); +l_myMacro____x40_Init_Tactics___hyg_31____closed__12 = _init_l_myMacro____x40_Init_Tactics___hyg_31____closed__12(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_31____closed__12); +l_myMacro____x40_Init_Tactics___hyg_31____closed__13 = _init_l_myMacro____x40_Init_Tactics___hyg_31____closed__13(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_31____closed__13); +l___kind_tactic____x40_Init_Tactics___hyg_157____closed__1 = _init_l___kind_tactic____x40_Init_Tactics___hyg_157____closed__1(); +lean_mark_persistent(l___kind_tactic____x40_Init_Tactics___hyg_157____closed__1); +l___kind_tactic____x40_Init_Tactics___hyg_157____closed__2 = _init_l___kind_tactic____x40_Init_Tactics___hyg_157____closed__2(); +lean_mark_persistent(l___kind_tactic____x40_Init_Tactics___hyg_157____closed__2); +l___kind_tactic____x40_Init_Tactics___hyg_157____closed__3 = _init_l___kind_tactic____x40_Init_Tactics___hyg_157____closed__3(); +lean_mark_persistent(l___kind_tactic____x40_Init_Tactics___hyg_157____closed__3); +l___kind_tactic____x40_Init_Tactics___hyg_157____closed__4 = _init_l___kind_tactic____x40_Init_Tactics___hyg_157____closed__4(); +lean_mark_persistent(l___kind_tactic____x40_Init_Tactics___hyg_157____closed__4); +l___kind_tactic____x40_Init_Tactics___hyg_157_ = _init_l___kind_tactic____x40_Init_Tactics___hyg_157_(); +lean_mark_persistent(l___kind_tactic____x40_Init_Tactics___hyg_157_); +l_myMacro____x40_Init_Tactics___hyg_186____closed__1 = _init_l_myMacro____x40_Init_Tactics___hyg_186____closed__1(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_186____closed__1); +l_myMacro____x40_Init_Tactics___hyg_186____closed__2 = _init_l_myMacro____x40_Init_Tactics___hyg_186____closed__2(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_186____closed__2); +l_myMacro____x40_Init_Tactics___hyg_186____closed__3 = _init_l_myMacro____x40_Init_Tactics___hyg_186____closed__3(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_186____closed__3); +l_myMacro____x40_Init_Tactics___hyg_186____closed__4 = _init_l_myMacro____x40_Init_Tactics___hyg_186____closed__4(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_186____closed__4); +l_myMacro____x40_Init_Tactics___hyg_186____closed__5 = _init_l_myMacro____x40_Init_Tactics___hyg_186____closed__5(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_186____closed__5); +l_myMacro____x40_Init_Tactics___hyg_186____closed__6 = _init_l_myMacro____x40_Init_Tactics___hyg_186____closed__6(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_186____closed__6); +l_myMacro____x40_Init_Tactics___hyg_186____closed__7 = _init_l_myMacro____x40_Init_Tactics___hyg_186____closed__7(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_186____closed__7); +l_myMacro____x40_Init_Tactics___hyg_186____closed__8 = _init_l_myMacro____x40_Init_Tactics___hyg_186____closed__8(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_186____closed__8); +l_myMacro____x40_Init_Tactics___hyg_186____closed__9 = _init_l_myMacro____x40_Init_Tactics___hyg_186____closed__9(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_186____closed__9); +l_myMacro____x40_Init_Tactics___hyg_186____closed__10 = _init_l_myMacro____x40_Init_Tactics___hyg_186____closed__10(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_186____closed__10); +l_myMacro____x40_Init_Tactics___hyg_186____closed__11 = _init_l_myMacro____x40_Init_Tactics___hyg_186____closed__11(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_186____closed__11); +l___kind_tactic____x40_Init_Tactics___hyg_309____closed__1 = _init_l___kind_tactic____x40_Init_Tactics___hyg_309____closed__1(); +lean_mark_persistent(l___kind_tactic____x40_Init_Tactics___hyg_309____closed__1); +l___kind_tactic____x40_Init_Tactics___hyg_309____closed__2 = _init_l___kind_tactic____x40_Init_Tactics___hyg_309____closed__2(); +lean_mark_persistent(l___kind_tactic____x40_Init_Tactics___hyg_309____closed__2); +l___kind_tactic____x40_Init_Tactics___hyg_309____closed__3 = _init_l___kind_tactic____x40_Init_Tactics___hyg_309____closed__3(); +lean_mark_persistent(l___kind_tactic____x40_Init_Tactics___hyg_309____closed__3); +l___kind_tactic____x40_Init_Tactics___hyg_309____closed__4 = _init_l___kind_tactic____x40_Init_Tactics___hyg_309____closed__4(); +lean_mark_persistent(l___kind_tactic____x40_Init_Tactics___hyg_309____closed__4); +l___kind_tactic____x40_Init_Tactics___hyg_309_ = _init_l___kind_tactic____x40_Init_Tactics___hyg_309_(); +lean_mark_persistent(l___kind_tactic____x40_Init_Tactics___hyg_309_); +l_myMacro____x40_Init_Tactics___hyg_338____closed__1 = _init_l_myMacro____x40_Init_Tactics___hyg_338____closed__1(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_338____closed__1); +l_myMacro____x40_Init_Tactics___hyg_338____closed__2 = _init_l_myMacro____x40_Init_Tactics___hyg_338____closed__2(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_338____closed__2); +l_myMacro____x40_Init_Tactics___hyg_338____closed__3 = _init_l_myMacro____x40_Init_Tactics___hyg_338____closed__3(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_338____closed__3); +l_myMacro____x40_Init_Tactics___hyg_338____closed__4 = _init_l_myMacro____x40_Init_Tactics___hyg_338____closed__4(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_338____closed__4); +l_myMacro____x40_Init_Tactics___hyg_338____closed__5 = _init_l_myMacro____x40_Init_Tactics___hyg_338____closed__5(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_338____closed__5); +l_myMacro____x40_Init_Tactics___hyg_338____closed__6 = _init_l_myMacro____x40_Init_Tactics___hyg_338____closed__6(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_338____closed__6); +l_myMacro____x40_Init_Tactics___hyg_338____closed__7 = _init_l_myMacro____x40_Init_Tactics___hyg_338____closed__7(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_338____closed__7); +l_myMacro____x40_Init_Tactics___hyg_338____closed__8 = _init_l_myMacro____x40_Init_Tactics___hyg_338____closed__8(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_338____closed__8); +l_myMacro____x40_Init_Tactics___hyg_338____closed__9 = _init_l_myMacro____x40_Init_Tactics___hyg_338____closed__9(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_338____closed__9); +l_myMacro____x40_Init_Tactics___hyg_338____closed__10 = _init_l_myMacro____x40_Init_Tactics___hyg_338____closed__10(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_338____closed__10); +l_myMacro____x40_Init_Tactics___hyg_338____closed__11 = _init_l_myMacro____x40_Init_Tactics___hyg_338____closed__11(); +lean_mark_persistent(l_myMacro____x40_Init_Tactics___hyg_338____closed__11); +return lean_io_result_mk_ok(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Lean/Data/FormatMacro.c b/stage0/stdlib/Lean/Data/FormatMacro.c index e5ecfaf2b8..83ffb31909 100644 --- a/stage0/stdlib/Lean/Data/FormatMacro.c +++ b/stage0/stdlib/Lean/Data/FormatMacro.c @@ -15,6 +15,7 @@ extern "C" { #endif lean_object* l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_38____closed__8; lean_object* l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_38____closed__4; +lean_object* l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__12; lean_object* l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_38_(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_expandInterpolatedStrChunks(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_38____closed__1; @@ -22,6 +23,7 @@ lean_object* l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_38____closed__5; lean_object* l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_38____closed__2; extern lean_object* l_Array_empty___closed__1; lean_object* l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_38____closed__3; +extern lean_object* l___private_Init_LeanInit_0__Lean_eraseMacroScopesAux___closed__5; lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); extern lean_object* l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__6; @@ -29,7 +31,6 @@ lean_object* lean_string_utf8_byte_size(lean_object*); lean_object* l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_38____closed__6; extern lean_object* l_Lean_mkAppStx___closed__8; lean_object* l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__7; -extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__5; lean_object* l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3_; lean_object* l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__10; extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__22; @@ -51,6 +52,8 @@ lean_object* l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_38____lambda__1__ lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_38____lambda__1___closed__2; extern lean_object* l_Lean_Init_LeanInit___instance__8___closed__1; +lean_object* l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__13; +extern lean_object* l___kind_tactic____x40_Init_Tactics___hyg_2____closed__2; extern lean_object* l_Lean_Name_hasMacroScopes___closed__1; lean_object* l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__9; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); @@ -61,6 +64,7 @@ lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__8; lean_object* l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__8; lean_object* l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__4; +extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__3; lean_object* l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_38____lambda__1(lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__1; extern lean_object* l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__8; @@ -73,8 +77,8 @@ static lean_object* _init_l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__5; -x_2 = l_Lean_mkAppStx___closed__1; +x_1 = l___kind_tactic____x40_Init_Tactics___hyg_2____closed__2; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -84,7 +88,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__1; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__8; +x_2 = l___private_Init_LeanInit_0__Lean_eraseMacroScopesAux___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -92,17 +96,19 @@ return x_3; static lean_object* _init_l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__3() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("FormatMacro"); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__2; +x_2 = l_Lean_mkAppStx___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; } } static lean_object* _init_l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__2; -x_2 = l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__3; +x_1 = l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__3; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__8; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -110,24 +116,42 @@ return x_3; static lean_object* _init_l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__5() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__4; -x_2 = l_Lean_Name_hasMacroScopes___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string("FormatMacro"); +return x_1; } } static lean_object* _init_l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__5; +x_1 = l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__4; +x_2 = l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__5; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__6; +x_2 = l_Lean_Name_hasMacroScopes___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__7; x_2 = lean_unsigned_to_nat(3u); x_3 = lean_name_mk_numeral(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__7() { +static lean_object* _init_l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__9() { _start: { lean_object* x_1; @@ -135,17 +159,17 @@ x_1 = lean_mk_string("f!"); return x_1; } } -static lean_object* _init_l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__8() { +static lean_object* _init_l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__7; +x_1 = l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__9; x_2 = lean_alloc_ctor(11, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__9() { +static lean_object* _init_l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__11() { _start: { lean_object* x_1; lean_object* x_2; @@ -155,25 +179,25 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__10() { +static lean_object* _init_l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__8; -x_2 = l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__9; +x_1 = l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__10; +x_2 = l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__11; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__11() { +static lean_object* _init_l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__6; +x_1 = l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__8; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__10; +x_3 = l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__12; x_4 = lean_alloc_ctor(9, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -185,7 +209,7 @@ static lean_object* _init_l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_ _start: { lean_object* x_1; -x_1 = l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__11; +x_1 = l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__13; return x_1; } } @@ -388,7 +412,7 @@ lean_object* l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_38_(lean_object* _start: { lean_object* x_4; uint8_t x_5; -x_4 = l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__6; +x_4 = l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__8; lean_inc(x_1); x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); if (x_5 == 0) @@ -602,6 +626,10 @@ l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__10 = _init_l_ lean_mark_persistent(l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__10); l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__11 = _init_l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__11(); lean_mark_persistent(l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__11); +l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__12 = _init_l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__12(); +lean_mark_persistent(l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__12); +l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__13 = _init_l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__13(); +lean_mark_persistent(l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__13); l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3_ = _init_l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3_(); lean_mark_persistent(l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3_); l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_38____lambda__1___closed__1 = _init_l_Lean_myMacro____x40_Lean_Data_FormatMacro___hyg_38____lambda__1___closed__1(); diff --git a/stage0/stdlib/Lean/Elab/Binders.c b/stage0/stdlib/Lean/Elab/Binders.c index c0f8b258b1..23eabc758d 100644 --- a/stage0/stdlib/Lean/Elab/Binders.c +++ b/stage0/stdlib/Lean/Elab/Binders.c @@ -80,7 +80,6 @@ extern lean_object* l_Lean_identKind___closed__2; extern lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__24; lean_object* l_Lean_Elab_Term_expandFunBinders___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Array_empty___closed__1; -extern lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; lean_object* l_Lean_Elab_Term_declareTacticSyntax___closed__1; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier___closed__12; lean_object* l_Lean_Elab_Term_elabLetDeclAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -105,7 +104,6 @@ lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_elabBinderViews___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_quoteAutoTactic___closed__18; -lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__14; lean_object* l_Lean_Elab_Term_elabFun_match__1(lean_object*); lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__6; lean_object* l_Lean_addDecl___at_Lean_Elab_Term_declareTacticSyntax___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -132,6 +130,7 @@ lean_object* l_Lean_Meta_getLocalInstances___at_Lean_Elab_Term_elabBinders___spe lean_object* l_Lean_Meta_withLetDecl___at_Lean_Elab_Term_elabLetDeclAux___spec__2(lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__2; lean_object* l_Lean_Elab_Term_getMainModule___rarg(lean_object*, lean_object*); uint8_t l_USize_decLt(size_t, size_t); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_elabBinderViews(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -164,7 +163,6 @@ lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec lean_object* l_Lean_Meta_restoreSynthInstanceCache(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_FunBinders_elabFunBindersAux(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_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__13; lean_object* l_Lean_throwError___at_Lean_Meta_getMVarDecl___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getBinderIds(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_FunBinders_propagateExpectedType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -320,6 +318,7 @@ lean_object* l___regBuiltin_Lean_Elab_Term_elabLetBangDecl___closed__1; extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__2; lean_object* l_Lean_mkAtomFrom(lean_object*, lean_object*); extern lean_object* l_Lean_mkAppStx___closed__3; +extern lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__4; lean_object* lean_local_ctx_mk_local_decl(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier___closed__3; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -17395,7 +17394,7 @@ static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expand _start: { lean_object* x_1; -x_1 = lean_mk_string("seq1"); +x_1 = lean_mk_string("intro"); return x_1; } } @@ -17403,7 +17402,7 @@ static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expand _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -17412,44 +17411,26 @@ return x_3; static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__8() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("intro"); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; -x_2 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__8; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__10() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Init_LeanInit___instance__8___closed__1; -x_2 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__8; +x_2 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__6; x_3 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__11() { +static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__10; +x_2 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__8; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__12() { +static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__10() { _start: { lean_object* x_1; @@ -17457,7 +17438,7 @@ x_1 = lean_mk_string("match "); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__13() { +static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__11() { _start: { lean_object* x_1; @@ -17465,11 +17446,11 @@ x_1 = lean_mk_string(" with "); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__14() { +static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -17626,9 +17607,9 @@ 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 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__11; +x_77 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__9; x_78 = lean_array_push(x_77, x_76); -x_79 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__9; +x_79 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__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); @@ -17640,7 +17621,7 @@ x_85 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_85, 0, x_75); lean_ctor_set(x_85, 1, x_84); x_86 = lean_array_push(x_73, x_85); -x_87 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__7; +x_87 = l_myMacro____x40_Init_Tactics___hyg_31____closed__4; x_88 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_88, 0, x_87); lean_ctor_set(x_88, 1, x_86); @@ -17661,9 +17642,9 @@ x_93 = l_Lean_nullKind___closed__2; x_94 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_94, 0, x_93); lean_ctor_set(x_94, 1, x_92); -x_95 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__11; +x_95 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__9; x_96 = lean_array_push(x_95, x_94); -x_97 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__9; +x_97 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__7; x_98 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_98, 0, x_97); lean_ctor_set(x_98, 1, x_96); @@ -17675,7 +17656,7 @@ x_103 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_103, 0, x_93); lean_ctor_set(x_103, 1, x_102); x_104 = lean_array_push(x_91, x_103); -x_105 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__7; +x_105 = l_myMacro____x40_Init_Tactics___hyg_31____closed__4; x_106 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_106, 0, x_105); lean_ctor_set(x_106, 1, x_104); @@ -17816,9 +17797,9 @@ x_158 = l_Lean_nullKind___closed__2; x_159 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_159, 0, x_158); lean_ctor_set(x_159, 1, x_157); -x_160 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__11; +x_160 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__9; x_161 = lean_array_push(x_160, x_159); -x_162 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__9; +x_162 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__7; x_163 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_163, 0, x_162); lean_ctor_set(x_163, 1, x_161); @@ -17830,7 +17811,7 @@ x_168 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_168, 0, x_158); lean_ctor_set(x_168, 1, x_167); x_169 = lean_array_push(x_156, x_168); -x_170 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__7; +x_170 = l_myMacro____x40_Init_Tactics___hyg_31____closed__4; x_171 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_171, 0, x_170); lean_ctor_set(x_171, 1, x_169); @@ -17850,13 +17831,13 @@ else { 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_dec(x_6); -x_177 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__12; +x_177 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__10; x_178 = l_Lean_mkAtomFrom(x_1, x_177); x_179 = l_Lean_nullKind; x_180 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_180, 0, x_179); lean_ctor_set(x_180, 1, x_5); -x_181 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__13; +x_181 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__11; x_182 = l_Lean_mkAtomFrom(x_1, x_181); x_183 = l_Lean_Elab_Term_mkExplicitBinder___closed__7; x_184 = lean_array_push(x_183, x_178); @@ -17880,7 +17861,7 @@ return x_192; else { lean_object* x_193; lean_object* x_194; lean_object* x_195; -x_193 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__14; +x_193 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__12; x_194 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_194, 0, x_193); lean_ctor_set(x_194, 1, x_189); @@ -20006,13 +19987,13 @@ else { 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_dec(x_5); -x_107 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__12; +x_107 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__10; x_108 = l_Lean_mkAtomFrom(x_1, x_107); x_109 = l_Lean_nullKind; x_110 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_110, 0, x_109); lean_ctor_set(x_110, 1, x_4); -x_111 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__13; +x_111 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__11; x_112 = l_Lean_mkAtomFrom(x_1, x_111); x_113 = l_Lean_Elab_Term_mkExplicitBinder___closed__7; x_114 = lean_array_push(x_113, x_108); @@ -21303,10 +21284,6 @@ l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___cl lean_mark_persistent(l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__11); l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__12 = _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__12(); lean_mark_persistent(l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__12); -l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__13 = _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__13(); -lean_mark_persistent(l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__13); -l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__14 = _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__14(); -lean_mark_persistent(l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__14); l___regBuiltin_Lean_Elab_Term_elabFun___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_elabFun___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabFun___closed__1); res = l___regBuiltin_Lean_Elab_Term_elabFun(lean_io_mk_world()); diff --git a/stage0/stdlib/Lean/Elab/BuiltinNotation.c b/stage0/stdlib/Lean/Elab/BuiltinNotation.c index 942b299614..167ccd5dff 100644 --- a/stage0/stdlib/Lean/Elab/BuiltinNotation.c +++ b/stage0/stdlib/Lean/Elab/BuiltinNotation.c @@ -86,6 +86,7 @@ extern lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ lean_object* l_Lean_Elab_Term_elabSubst_match__1___rarg(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_expandMul(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_expandAssert___closed__1; +extern lean_object* l_myMacro____x40_Init_Tactics___hyg_186____closed__2; lean_object* l_Array_append___rarg(lean_object*, lean_object*); extern lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__13; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__31; @@ -119,7 +120,6 @@ lean_object* l_Lean_Elab_Term_expandPow___closed__1; extern lean_object* l_Lean_Expr_isSyntheticSorry_match__1___rarg___closed__1; lean_object* l_Lean_Elab_Term_elabAnonymousCtor___closed__11; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_mkNativeReflAuxDecl(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_expandSorry___closed__3; lean_object* l_Lean_Elab_Term_expandModN___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandPow___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandOrM___boxed(lean_object*, lean_object*, lean_object*); @@ -288,7 +288,6 @@ lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabTParser lean_object* l___regBuiltin_Lean_Elab_Term_expandHave(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_expandAnd___closed__1; lean_object* l___regBuiltin_Lean_Elab_Term_elabPanic(lean_object*); -extern lean_object* l_Lean_Meta_mkDecide___rarg___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_expandGT___closed__3; lean_object* l___regBuiltin_Lean_Elab_Term_expandLE(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_expandBEq___closed__1; @@ -366,6 +365,7 @@ lean_object* l_Lean_Elab_Term_expandDiv___boxed(lean_object*, lean_object*, lean lean_object* l_Lean_Elab_Term_expandSub___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_heq_x3f___closed__2; lean_object* l_Lean_Elab_Term_expandBEq___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_expandDbgTrace___closed__15; lean_object* l_Lean_Elab_Term_elabTerm(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabNativeDecide___closed__2; 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*); @@ -499,6 +499,7 @@ lean_object* l___regBuiltin_Lean_Elab_Term_expandUMinus(lean_object*); lean_object* l_Lean_Elab_Term_expandBNe___boxed(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_expandOrM(lean_object*); lean_object* l_Lean_Elab_Term_elabNativeRefl___lambda__1___closed__9; +lean_object* l_Lean_Elab_Term_expandDbgTrace___closed__16; lean_object* l_Lean_Meta_mkArrow___at_Lean_Elab_Term_elabStateRefT___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_Literal_type___closed__2; extern lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__19; @@ -517,7 +518,6 @@ extern lean_object* l_Lean_Meta_evalNat___closed__14; lean_object* l_Lean_Elab_Term_elabNativeRefl___lambda__1___closed__8; lean_object* l___regBuiltin_Lean_Elab_Term_expandBOr___closed__1; lean_object* l___regBuiltin_Lean_Elab_Term_expandAnd___closed__3; -lean_object* l___regBuiltin_Lean_Elab_Term_elabDecide___closed__2; uint8_t l_Lean_Expr_isConstOf(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabStateRefT___closed__1; lean_object* l___regBuiltin_Lean_Elab_Term_elabPanic___closed__2; @@ -643,6 +643,7 @@ lean_object* l_Lean_Elab_Term_elabSubst_match__3___rarg(lean_object*, lean_objec lean_object* l___regBuiltin_Lean_Elab_Term_expandSeqRight___closed__2; 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; +extern lean_object* l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__2; extern lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__11; lean_object* l_Lean_Elab_Term_expandSorry___boxed(lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_getSepArgs___spec__1(lean_object*, size_t, size_t, lean_object*); @@ -679,6 +680,7 @@ lean_object* l_Lean_Elab_Term_expandNot(lean_object*, lean_object*, lean_object* lean_object* l_Lean_Elab_Term_expandBind(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Init_LeanInit___instance__8___closed__1; lean_object* l_Lean_Elab_Term_expandAssert___closed__14; +extern lean_object* l_myMacro____x40_Init_Tactics___hyg_338____closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_expandIff___closed__2; lean_object* l_Lean_Elab_Term_expandIf___closed__2; lean_object* l_Lean_Elab_Term_expandOr___boxed(lean_object*, lean_object*, lean_object*); @@ -714,7 +716,6 @@ lean_object* l_Lean_Syntax_getPos(lean_object*); lean_object* l_Lean_Elab_Term_expandSeqLeft___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandDbgTrace___closed__12; lean_object* l_Lean_Elab_Term_expandSorry___rarg___closed__8; -lean_object* l___regBuiltin_Lean_Elab_Term_expandSorry___closed__2; lean_object* l_Lean_Elab_Term_elabNativeDecide___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__10; lean_object* l_Lean_Elab_Term_expandNe___closed__2; @@ -775,6 +776,7 @@ lean_object* l_Lean_Elab_Term_expandShow___closed__4; 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*); lean_object* l___regBuiltin_Lean_Elab_Term_expandOrElse___closed__1; lean_object* l_Lean_Elab_Term_expandUnreachable___boxed(lean_object*, lean_object*); +extern lean_object* l___kind_tactic____x40_Init_Tactics___hyg_2____closed__6; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_expandUMinus___closed__3; lean_object* l_Lean_Elab_Term_expandSubtype___closed__12; @@ -823,6 +825,7 @@ lean_object* l_Lean_Elab_Term_mkPairs_loop(lean_object*, lean_object*, lean_obje lean_object* l_Lean_Elab_Term_expandUnreachable___rarg___closed__1; lean_object* l___regBuiltin_Lean_Elab_Term_expandNot___closed__3; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); +extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__8; lean_object* l___regBuiltin_Lean_Elab_Term_elabPanic___closed__3; lean_object* l_Lean_Elab_Term_expandSuffices(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_elabArrow___spec__1___rarg(lean_object*); @@ -832,7 +835,6 @@ lean_object* l_Lean_Elab_Term_expandSorry___rarg___closed__1; extern lean_object* l_Lean_mkOptionalNode___closed__2; lean_object* l_Lean_Elab_Term_expandAssert___closed__3; lean_object* l___regBuiltin_Lean_Elab_Term_expandUnreachable(lean_object*); -extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__9; lean_object* l___regBuiltin_Lean_Elab_Term_expandGT___closed__2; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__4; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabCDot___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -8187,7 +8189,7 @@ x_10 = lean_box(0); x_11 = l_Lean_mkAppStx___closed__9; x_12 = lean_array_push(x_11, x_9); x_13 = lean_array_push(x_12, x_10); -x_14 = l_Lean_Meta_mkDecide___rarg___closed__2; +x_14 = l_Lean_Meta_mkDecide___rarg___closed__1; x_15 = l_Lean_Meta_mkAppOptM___at___private_Lean_Elab_Term_0__Lean_Elab_Term_tryPureCoe_x3f___spec__2(x_14, x_13, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_15; } @@ -8711,16 +8713,6 @@ return x_2; static lean_object* _init_l___regBuiltin_Lean_Elab_Term_elabDecide___closed__1() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_mkAppStx___closed__6; -x_2 = l_Lean_Meta_mkDecide___rarg___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_elabDecide___closed__2() { -_start: -{ lean_object* x_1; x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_elabDecide___boxed), 1, 0); return x_1; @@ -8731,8 +8723,8 @@ _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___regBuiltin_Lean_Elab_Term_elabDecide___closed__1; -x_4 = l___regBuiltin_Lean_Elab_Term_elabDecide___closed__2; +x_3 = l_myMacro____x40_Init_Tactics___hyg_186____closed__2; +x_4 = l___regBuiltin_Lean_Elab_Term_elabDecide___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } @@ -12615,8 +12607,8 @@ static lean_object* _init_l_Lean_Elab_Term_expandDbgTrace___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__9; -x_2 = l___kind_term____x40_Init_Data_ToString_Macro___hyg_2____closed__10; +x_1 = l_Lean___kind_term____x40_Lean_Data_FormatMacro___hyg_3____closed__2; +x_2 = l___kind_tactic____x40_Init_Tactics___hyg_2____closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -12626,7 +12618,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_expandDbgTrace___closed__9; -x_2 = l___kind_term____x40_Init_Data_ToString_Macro___hyg_2____closed__12; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__8; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -12636,7 +12628,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_expandDbgTrace___closed__10; -x_2 = l_Lean_Name_hasMacroScopes___closed__1; +x_2 = l___kind_term____x40_Init_Data_ToString_Macro___hyg_2____closed__10; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -12646,12 +12638,32 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_expandDbgTrace___closed__11; +x_2 = l___kind_term____x40_Init_Data_ToString_Macro___hyg_2____closed__12; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_expandDbgTrace___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_expandDbgTrace___closed__12; +x_2 = l_Lean_Name_hasMacroScopes___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_expandDbgTrace___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_expandDbgTrace___closed__13; x_2 = lean_unsigned_to_nat(2u); x_3 = lean_name_mk_numeral(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_expandDbgTrace___closed__13() { +static lean_object* _init_l_Lean_Elab_Term_expandDbgTrace___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -12663,12 +12675,12 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_expandDbgTrace___closed__14() { +static lean_object* _init_l_Lean_Elab_Term_expandDbgTrace___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l_Lean_Elab_Term_expandDbgTrace___closed__13; +x_2 = l_Lean_Elab_Term_expandDbgTrace___closed__15; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -12788,9 +12800,9 @@ lean_ctor_set(x_64, 2, x_60); lean_ctor_set(x_64, 3, x_63); x_65 = l_Array_empty___closed__1; x_66 = lean_array_push(x_65, x_64); -x_67 = l_Lean_Elab_Term_expandDbgTrace___closed__14; +x_67 = l_Lean_Elab_Term_expandDbgTrace___closed__16; x_68 = lean_array_push(x_67, x_5); -x_69 = l_Lean_Elab_Term_expandDbgTrace___closed__12; +x_69 = l_Lean_Elab_Term_expandDbgTrace___closed__14; x_70 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_70, 0, x_69); lean_ctor_set(x_70, 1, x_68); @@ -13050,24 +13062,6 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Term_expandSorry___closed__1( _start: { lean_object* x_1; -x_1 = lean_mk_string("sorry"); -return x_1; -} -} -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_expandSorry___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_mkAppStx___closed__6; -x_2 = l___regBuiltin_Lean_Elab_Term_expandSorry___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_expandSorry___closed__3() { -_start: -{ -lean_object* x_1; x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_expandSorry___boxed), 1, 0); return x_1; } @@ -13077,8 +13071,8 @@ _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___regBuiltin_Lean_Elab_Term_expandSorry___closed__2; -x_4 = l___regBuiltin_Lean_Elab_Term_expandSorry___closed__3; +x_3 = l_myMacro____x40_Init_Tactics___hyg_338____closed__2; +x_4 = l___regBuiltin_Lean_Elab_Term_expandSorry___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } @@ -17497,8 +17491,6 @@ l_Lean_Elab_Term_elabDecide___rarg___closed__2 = _init_l_Lean_Elab_Term_elabDeci lean_mark_persistent(l_Lean_Elab_Term_elabDecide___rarg___closed__2); l___regBuiltin_Lean_Elab_Term_elabDecide___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_elabDecide___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabDecide___closed__1); -l___regBuiltin_Lean_Elab_Term_elabDecide___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_elabDecide___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabDecide___closed__2); res = l___regBuiltin_Lean_Elab_Term_elabDecide(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); @@ -18088,6 +18080,10 @@ l_Lean_Elab_Term_expandDbgTrace___closed__13 = _init_l_Lean_Elab_Term_expandDbgT lean_mark_persistent(l_Lean_Elab_Term_expandDbgTrace___closed__13); l_Lean_Elab_Term_expandDbgTrace___closed__14 = _init_l_Lean_Elab_Term_expandDbgTrace___closed__14(); lean_mark_persistent(l_Lean_Elab_Term_expandDbgTrace___closed__14); +l_Lean_Elab_Term_expandDbgTrace___closed__15 = _init_l_Lean_Elab_Term_expandDbgTrace___closed__15(); +lean_mark_persistent(l_Lean_Elab_Term_expandDbgTrace___closed__15); +l_Lean_Elab_Term_expandDbgTrace___closed__16 = _init_l_Lean_Elab_Term_expandDbgTrace___closed__16(); +lean_mark_persistent(l_Lean_Elab_Term_expandDbgTrace___closed__16); l___regBuiltin_Lean_Elab_Term_expandDbgTrace___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_expandDbgTrace___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_expandDbgTrace___closed__1); l___regBuiltin_Lean_Elab_Term_expandDbgTrace___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_expandDbgTrace___closed__2(); @@ -18115,10 +18111,6 @@ l_Lean_Elab_Term_expandSorry___rarg___closed__9 = _init_l_Lean_Elab_Term_expandS lean_mark_persistent(l_Lean_Elab_Term_expandSorry___rarg___closed__9); l___regBuiltin_Lean_Elab_Term_expandSorry___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_expandSorry___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_expandSorry___closed__1); -l___regBuiltin_Lean_Elab_Term_expandSorry___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_expandSorry___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_expandSorry___closed__2); -l___regBuiltin_Lean_Elab_Term_expandSorry___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_expandSorry___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_expandSorry___closed__3); res = l___regBuiltin_Lean_Elab_Term_expandSorry(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); diff --git a/stage0/stdlib/Lean/Elab/Do.c b/stage0/stdlib/Lean/Elab/Do.c index bd0055b032..bf95c7062d 100644 --- a/stage0/stdlib/Lean/Elab/Do.c +++ b/stage0/stdlib/Lean/Elab/Do.c @@ -37,6 +37,7 @@ lean_object* l_Lean_Elab_Term_Do_extendUpdatedVarsAux_update_match__1(lean_objec lean_object* l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__26; lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___boxed__const__1; lean_object* l_Lean_Elab_Term_Do_ToTerm_declToTermCore___closed__4; +extern lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__10; size_t l_USize_add(size_t, size_t); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___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*, lean_object*, lean_object*); lean_object* l_Lean_Meta_inferType___at___private_Lean_Elab_Term_0__Lean_Elab_Term_tryLiftAndCoe___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -908,7 +909,6 @@ lean_object* l_Array_foldlMUnsafe_fold___at_Lean_initFn____x40_Lean_Environment_ lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__2; lean_object* l_Lean_Elab_Term_Do_mkSimpleJmp___closed__5; -extern lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__12; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Do_mkSimpleJmp___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Elab_Term_Do_ToCodeBlock_Context_insideFor___default; lean_object* l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__30; @@ -2847,7 +2847,7 @@ static lean_object* _init_l_Lean_Elab_Term_Do_CodeBlocl_toMessageData_loop___clo _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__12; +x_1 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__10; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } diff --git a/stage0/stdlib/Lean/Elab/Import.c b/stage0/stdlib/Lean/Elab/Import.c index 0a5c0a7305..b68f99020b 100644 --- a/stage0/stdlib/Lean/Elab/Import.c +++ b/stage0/stdlib/Lean/Elab/Import.c @@ -46,10 +46,10 @@ uint8_t l_Lean_Syntax_isNone(lean_object*); lean_object* l_List_map___at_Lean_Elab_headerToImports___spec__1(lean_object*); lean_object* l_Array_toList___rarg(lean_object*); lean_object* l_Lean_Elab_parseImports(lean_object*, lean_object*, lean_object*); +extern lean_object* l___kind_tactic____x40_Init_Tactics___hyg_2____closed__6; lean_object* l_IO_println___at_Lean_Environment_displayStats___spec__3(lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); lean_object* l_Lean_Elab_parseImportsExport_match__1___rarg(lean_object*, lean_object*); -extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__6; lean_object* l_Lean_Elab_parseImportsExport_match__1(lean_object*); lean_object* l_List_forIn_loop___at_Lean_Elab_printDeps___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_List_map___at_Lean_Elab_headerToImports___spec__1(lean_object* x_1) { @@ -154,7 +154,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__6; +x_2 = l___kind_tactic____x40_Init_Tactics___hyg_2____closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } diff --git a/stage0/stdlib/Lean/Elab/Quotation.c b/stage0/stdlib/Lean/Elab/Quotation.c index 41ca334ec5..376dfd57c5 100644 --- a/stage0/stdlib/Lean/Elab/Quotation.c +++ b/stage0/stdlib/Lean/Elab/Quotation.c @@ -132,16 +132,15 @@ lean_object* l_Lean_Elab_Term_Quotation_antiquotKind_x3f___closed__1; extern lean_object* l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__6; lean_object* lean_string_utf8_byte_size(lean_object*); lean_object* l_Lean_Elab_Term_Quotation_elabStxQuot(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_mkAppStx___closed__4; lean_object* l_Lean_mkAtom(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss_match__1(lean_object*); 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; lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__2; lean_object* l_Lean_Elab_Term_getMainModule___rarg(lean_object*, lean_object*); lean_object* l_List_join___rarg(lean_object*); uint8_t l_USize_decLt(size_t, size_t); -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__3; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__9; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -282,7 +281,6 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compile lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__49; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__4___rarg(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__3; -extern lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225____closed__1; 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*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__4(lean_object*); @@ -4549,23 +4547,13 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_mkAppStx___closed__4; -x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225____closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Syntax_isQuot_match__1___rarg___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__2() { _start: { lean_object* x_1; @@ -4578,8 +4566,8 @@ _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___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__2; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__3; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__2; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } @@ -4605,7 +4593,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuotSeq___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -13195,8 +13183,6 @@ l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1 = _init_l___r lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1); l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__2(); lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__3); res = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); diff --git a/stage0/stdlib/Lean/Elab/Syntax.c b/stage0/stdlib/Lean/Elab/Syntax.c index f0e5fa8fae..6243e9ed27 100644 --- a/stage0/stdlib/Lean/Elab/Syntax.c +++ b/stage0/stdlib/Lean/Elab/Syntax.c @@ -102,6 +102,7 @@ lean_object* l_Array_append___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandMixfix___closed__25; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__30; extern lean_object* l_Lean_Parser_mkParserOfConstantUnsafe_match__1___rarg___closed__3; +lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_9384____closed__1; lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__90; lean_object* l_Lean_Elab_Command_elabMacroRulesAux_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__5; @@ -148,6 +149,7 @@ lean_object* l_Lean_Elab_Command_withExpectedType(lean_object*, lean_object*, le lean_object* l___regBuiltin_Lean_Elab_Command_expandMacro___closed__1; extern lean_object* l_Array_empty___closed__1; lean_object* l___private_Init_LeanInit_0__Array_mapSepElemsMAux___at_Lean_Elab_Command_elabMacroRulesAux___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; lean_object* lean_environment_find(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandMixfix___closed__24; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser(lean_object*, lean_object*, lean_object*, lean_object*); @@ -161,7 +163,6 @@ lean_object* l_Lean_Elab_Command_expandElab___closed__45; lean_object* lean_st_ref_get(lean_object*, lean_object*); lean_object* l_Lean_resolveGlobalConst___at_Lean_Elab_Term_toParserDescrAux___spec__3___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__165; -extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__2; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__30; lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__77; lean_object* l_Array_mapIdxM_map___at_Lean_Elab_Term_toParserDescrAux___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*, lean_object*); @@ -211,6 +212,7 @@ extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____ extern lean_object* l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; lean_object* l_Lean_Elab_Command_expandMacro___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__101; +lean_object* l_Lean_Elab_Command_expandOptPrio___boxed(lean_object*); lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__27; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Term_withNotFirst(lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__79; @@ -249,8 +251,6 @@ extern lean_object* l_Lean_mkAppStx___closed__7; lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax_match__2(lean_object*); lean_object* l_Lean_Elab_Command_elabDeclareSyntaxCat___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__2; -lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_9346____closed__1; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__2; extern lean_object* l_Lean_throwUnknownConstant___rarg___closed__2; lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__55; @@ -385,7 +385,7 @@ lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQ lean_object* l_Lean_Elab_Term_toParserDescrAux_match__5___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_numLitKind___closed__1; 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_9346_(lean_object*); +lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_9384_(lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax_match__2___rarg(lean_object*, lean_object*); extern lean_object* l_Lean_strLitKind___closed__1; lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__176; @@ -524,6 +524,7 @@ size_t lean_usize_of_nat(lean_object*); lean_object* l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__3; lean_object* l_Lean_Elab_Command_expandMacroHeadIntoSyntaxItem___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Command_expandOptPrio(lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__86; lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__10; lean_object* l_Lean_ConstantInfo_type(lean_object*); @@ -665,6 +666,7 @@ lean_object* l_Lean_Elab_Command_inferMacroRulesAltKind___boxed(lean_object*, le lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__26; extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3125____closed__4; lean_object* l_Lean_Elab_Command_getMainModule___rarg(lean_object*, lean_object*); +extern lean_object* l___kind_tactic____x40_Init_Tactics___hyg_2____closed__2; lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__168; lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__173; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Term_markAsTrailingParser___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -782,6 +784,7 @@ extern lean_object* l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__7 lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__31; lean_object* l_Lean_Elab_Command_expandElab___boxed__const__1; lean_object* l_Lean_Elab_Command_expandElab___closed__8; +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_528____closed__9; lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__159; lean_object* l_Lean_Elab_Command_expandMixfix___closed__20; lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__59; @@ -834,6 +837,7 @@ extern lean_object* l_Lean_mkAppStx___closed__2; lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__146; lean_object* l_Lean_Elab_Command_expandElab___closed__2; lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__16; +extern lean_object* l___kind_tactic____x40_Init_Tactics___hyg_2____closed__3; lean_object* l_Lean_Elab_Command_expandElab___closed__47; lean_object* l_Lean_throwError___at_Lean_Elab_Term_throwErrorIfErrors___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_inferMacroRulesAltKind___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -858,7 +862,6 @@ lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__12; lean_object* l_Lean_Elab_Command_elabMacroRulesAux_match__1(lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_toParserDescrAux___spec__1___rarg(lean_object*); lean_object* l_Lean_Elab_Command_expandMacroArgIntoSyntaxItem___boxed(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Intro___hyg_538____closed__2; extern lean_object* l_Lean_mkAppStx___closed__1; lean_object* l_Lean_Elab_Command_elabDeclareSyntaxCat(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_mkMacroAttributeUnsafe___closed__8; @@ -11719,7 +11722,7 @@ lean_object* l_Lean_Elab_Command_mkKindName(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__2; +x_2 = l___kind_tactic____x40_Init_Tactics___hyg_2____closed__2; x_3 = l_Lean_Name_append(x_2, x_1); return x_3; } @@ -19358,6 +19361,51 @@ lean_dec(x_2); return x_4; } } +lean_object* l_Lean_Elab_Command_expandOptPrio(lean_object* x_1) { +_start: +{ +uint8_t x_2; +x_2 = l_Lean_Syntax_isNone(x_1); +if (x_2 == 0) +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_3 = lean_unsigned_to_nat(1u); +x_4 = l_Lean_Syntax_getArg(x_1, x_3); +x_5 = l_Lean_numLitKind; +x_6 = l_Lean_Syntax_isNatLitAux(x_5, x_4); +lean_dec(x_4); +if (lean_obj_tag(x_6) == 0) +{ +lean_object* x_7; +x_7 = lean_unsigned_to_nat(0u); +return x_7; +} +else +{ +lean_object* x_8; +x_8 = lean_ctor_get(x_6, 0); +lean_inc(x_8); +lean_dec(x_6); +return x_8; +} +} +else +{ +lean_object* x_9; +x_9 = lean_unsigned_to_nat(0u); +return x_9; +} +} +} +lean_object* l_Lean_Elab_Command_expandOptPrio___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Elab_Command_expandOptPrio(x_1); +lean_dec(x_1); +return x_2; +} +} lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Command_expandMacro___spec__1(size_t x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { @@ -19500,591 +19548,627 @@ return x_2; lean_object* l_Lean_Elab_Command_expandMacro(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { -lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; x_4 = lean_unsigned_to_nat(1u); x_5 = l_Lean_Syntax_getArg(x_1, x_4); x_6 = l_Lean_Syntax_getArgs(x_5); lean_dec(x_5); x_7 = lean_unsigned_to_nat(2u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = lean_unsigned_to_nat(3u); -x_10 = l_Lean_Syntax_getArg(x_1, x_9); -x_11 = l_Lean_Syntax_getArgs(x_10); -lean_dec(x_10); -x_12 = lean_unsigned_to_nat(5u); +x_9 = l_Lean_Elab_Command_expandOptPrio(x_8); +lean_dec(x_8); +x_10 = lean_unsigned_to_nat(3u); +x_11 = l_Lean_Syntax_getArg(x_1, x_10); +x_12 = lean_unsigned_to_nat(4u); x_13 = l_Lean_Syntax_getArg(x_1, x_12); -x_14 = l_Lean_Syntax_getId(x_13); -x_15 = lean_erase_macro_scopes(x_14); +x_14 = l_Lean_Syntax_getArgs(x_13); +lean_dec(x_13); +x_15 = lean_unsigned_to_nat(6u); +x_16 = l_Lean_Syntax_getArg(x_1, x_15); +x_17 = l_Lean_Syntax_getId(x_16); +x_18 = lean_erase_macro_scopes(x_17); lean_inc(x_2); -x_16 = l_Lean_Elab_Command_Macro_mkFreshKind(x_15, x_2, x_3); -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); -lean_inc(x_8); -x_19 = l_Lean_Elab_Command_expandMacroHeadIntoSyntaxItem(x_8, x_2, x_18); -if (lean_obj_tag(x_19) == 0) -{ -lean_object* x_20; lean_object* x_21; lean_object* x_22; size_t x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_19 = l_Lean_Elab_Command_Macro_mkFreshKind(x_18, x_2, x_3); 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_array_get_size(x_11); -x_23 = lean_usize_of_nat(x_22); -lean_dec(x_22); -x_24 = x_11; -x_25 = lean_box_usize(x_23); -x_26 = l_Lean_Elab_Command_expandMacro___boxed__const__1; +lean_inc(x_11); +x_22 = l_Lean_Elab_Command_expandMacroHeadIntoSyntaxItem(x_11, x_2, x_21); +if (lean_obj_tag(x_22) == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; size_t x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); lean_inc(x_24); -x_27 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at_Lean_Elab_Command_expandMacro___spec__1___boxed), 5, 3); -lean_closure_set(x_27, 0, x_25); -lean_closure_set(x_27, 1, x_26); -lean_closure_set(x_27, 2, x_24); -x_28 = x_27; +lean_dec(x_22); +x_25 = lean_array_get_size(x_14); +x_26 = lean_usize_of_nat(x_25); +lean_dec(x_25); +x_27 = x_14; +x_28 = lean_box_usize(x_26); +x_29 = l_Lean_Elab_Command_expandMacro___boxed__const__1; +lean_inc(x_27); +x_30 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at_Lean_Elab_Command_expandMacro___spec__1___boxed), 5, 3); +lean_closure_set(x_30, 0, x_28); +lean_closure_set(x_30, 1, x_29); +lean_closure_set(x_30, 2, x_27); +x_31 = x_30; lean_inc(x_2); -x_29 = lean_apply_2(x_28, x_2, x_21); -if (lean_obj_tag(x_29) == 0) +x_32 = lean_apply_2(x_31, x_2, x_24); +if (lean_obj_tag(x_32) == 0) { -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_30 = lean_ctor_get(x_29, 0); -lean_inc(x_30); -x_31 = lean_ctor_get(x_29, 1); -lean_inc(x_31); -lean_dec(x_29); -x_32 = l_Lean_mkOptionalNode___closed__2; -x_33 = lean_array_push(x_32, x_20); -x_34 = l_Array_append___rarg(x_33, x_30); -lean_dec(x_30); -x_35 = l_Lean_Elab_Command_expandMacroHeadIntoPattern(x_8, x_2, x_31); -if (lean_obj_tag(x_35) == 0) +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_33 = lean_ctor_get(x_32, 0); +lean_inc(x_33); +x_34 = lean_ctor_get(x_32, 1); +lean_inc(x_34); +lean_dec(x_32); +x_35 = l_Lean_mkOptionalNode___closed__2; +x_36 = lean_array_push(x_35, x_23); +x_37 = l_Array_append___rarg(x_36, x_33); +lean_dec(x_33); +x_38 = l_Lean_Elab_Command_expandMacroHeadIntoPattern(x_11, x_2, x_34); +if (lean_obj_tag(x_38) == 0) { -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_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_38 = lean_box_usize(x_23); -x_39 = l_Lean_Elab_Command_expandMacro___boxed__const__1; -x_40 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at_Lean_Elab_Command_expandMacro___spec__2___boxed), 5, 3); -lean_closure_set(x_40, 0, x_38); -lean_closure_set(x_40, 1, x_39); -lean_closure_set(x_40, 2, x_24); -x_41 = x_40; -x_42 = lean_apply_2(x_41, x_2, x_37); -if (lean_obj_tag(x_42) == 0) +lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_39 = lean_ctor_get(x_38, 0); +lean_inc(x_39); +x_40 = lean_ctor_get(x_38, 1); +lean_inc(x_40); +lean_dec(x_38); +x_41 = lean_box_usize(x_26); +x_42 = l_Lean_Elab_Command_expandMacro___boxed__const__1; +x_43 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at_Lean_Elab_Command_expandMacro___spec__2___boxed), 5, 3); +lean_closure_set(x_43, 0, x_41); +lean_closure_set(x_43, 1, x_42); +lean_closure_set(x_43, 2, x_27); +x_44 = x_43; +x_45 = lean_apply_2(x_44, x_2, x_40); +if (lean_obj_tag(x_45) == 0) { -uint8_t x_43; -x_43 = !lean_is_exclusive(x_42); -if (x_43 == 0) +uint8_t x_46; +x_46 = !lean_is_exclusive(x_45); +if (x_46 == 0) { -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_44 = lean_ctor_get(x_42, 0); -x_45 = lean_array_push(x_32, x_36); -x_46 = l_Array_append___rarg(x_45, x_44); -lean_dec(x_44); -lean_inc(x_17); -x_47 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_47, 0, x_17); -lean_ctor_set(x_47, 1, x_46); -x_48 = l_Lean_Syntax_getArgs(x_1); -x_49 = lean_array_get_size(x_48); -lean_dec(x_48); -x_50 = lean_unsigned_to_nat(8u); -x_51 = lean_nat_dec_eq(x_49, x_50); -lean_dec(x_49); -if (x_51 == 0) +lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; uint8_t x_54; +x_47 = lean_ctor_get(x_45, 0); +x_48 = lean_array_push(x_35, x_39); +x_49 = l_Array_append___rarg(x_48, x_47); +lean_dec(x_47); +lean_inc(x_20); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_20); +lean_ctor_set(x_50, 1, x_49); +x_51 = l_Lean_Syntax_getArgs(x_1); +x_52 = lean_array_get_size(x_51); +lean_dec(x_51); +x_53 = lean_unsigned_to_nat(9u); +x_54 = lean_nat_dec_eq(x_52, x_53); +lean_dec(x_52); +if (x_54 == 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; 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; -x_52 = l_Lean_Syntax_getArg(x_1, x_50); -x_53 = l_Array_empty___closed__1; -x_54 = l_Array_append___rarg(x_53, x_6); +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; 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; +x_55 = l_Lean_Syntax_getArg(x_1, x_53); +x_56 = l_Array_empty___closed__1; +x_57 = l_Array_append___rarg(x_56, x_6); lean_dec(x_6); -x_55 = l_Lean_nullKind___closed__2; -x_56 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_56, 0, x_55); -lean_ctor_set(x_56, 1, x_54); -x_57 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; -x_58 = lean_array_push(x_57, x_56); -x_59 = l_Lean_mkIdentFrom(x_1, x_17); -x_60 = lean_array_push(x_53, x_59); -x_61 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___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); -x_63 = l_Lean_Elab_Term_expandArrayLit___closed__10; -x_64 = lean_array_push(x_63, x_62); -x_65 = l_Lean_Elab_Term_expandArrayLit___closed__11; -x_66 = lean_array_push(x_64, x_65); -x_67 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_67, 0, x_55); -lean_ctor_set(x_67, 1, x_66); -x_68 = lean_array_push(x_58, x_67); -x_69 = l_Array_append___rarg(x_53, x_34); -lean_dec(x_34); -x_70 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_70, 0, x_55); -lean_ctor_set(x_70, 1, x_69); -x_71 = lean_array_push(x_68, x_70); -x_72 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__21; -x_73 = lean_array_push(x_71, x_72); -x_74 = lean_array_push(x_73, x_13); -x_75 = l___regBuiltin_Lean_Elab_Command_elabSyntax___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); -x_77 = lean_array_push(x_53, x_76); -x_78 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; -x_79 = lean_array_push(x_78, x_47); -x_80 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__15; -x_81 = lean_array_push(x_79, x_80); -x_82 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_83 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_83, 0, x_82); -lean_ctor_set(x_83, 1, x_81); -x_84 = lean_array_push(x_53, x_83); -x_85 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_85, 0, x_55); -lean_ctor_set(x_85, 1, x_84); -x_86 = lean_array_push(x_53, x_85); -x_87 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__19; -x_88 = lean_array_push(x_86, x_87); -x_89 = lean_array_push(x_78, x_52); -x_90 = lean_array_push(x_89, x_80); -x_91 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_91, 0, x_82); -lean_ctor_set(x_91, 1, x_90); -x_92 = lean_array_push(x_88, x_91); -x_93 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_94 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_94, 0, x_93); -lean_ctor_set(x_94, 1, x_92); -x_95 = lean_array_push(x_53, x_94); -x_96 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_96, 0, x_55); -lean_ctor_set(x_96, 1, x_95); -x_97 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_98 = lean_array_push(x_97, x_96); -x_99 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -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 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__5; -x_102 = lean_array_push(x_101, x_100); -x_103 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; +x_58 = l_Lean_nullKind___closed__2; +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 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; +x_61 = lean_array_push(x_60, x_59); +x_62 = l_Lean_mkIdentFrom(x_1, x_20); +x_63 = lean_array_push(x_56, x_62); +x_64 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_528____closed__9; +x_65 = lean_array_push(x_63, x_64); +x_66 = l_Nat_repr(x_9); +x_67 = l_Lean_numLitKind; +x_68 = l_Lean_Init_LeanInit___instance__8___closed__1; +x_69 = l_Lean_mkStxLit(x_67, x_66, x_68); +x_70 = lean_array_push(x_65, x_69); +x_71 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; +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 = l_Lean_Elab_Term_expandArrayLit___closed__10; +x_74 = lean_array_push(x_73, x_72); +x_75 = l_Lean_Elab_Term_expandArrayLit___closed__11; +x_76 = lean_array_push(x_74, x_75); +x_77 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_77, 0, x_58); +lean_ctor_set(x_77, 1, x_76); +x_78 = lean_array_push(x_61, x_77); +x_79 = l_Array_append___rarg(x_56, x_37); +lean_dec(x_37); +x_80 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_80, 0, x_58); +lean_ctor_set(x_80, 1, x_79); +x_81 = lean_array_push(x_78, x_80); +x_82 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__21; +x_83 = lean_array_push(x_81, x_82); +x_84 = lean_array_push(x_83, x_16); +x_85 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; +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_56, x_86); +x_88 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; +x_89 = lean_array_push(x_88, x_50); +x_90 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__15; +x_91 = lean_array_push(x_89, x_90); +x_92 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_93 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_93, 0, x_92); +lean_ctor_set(x_93, 1, x_91); +x_94 = lean_array_push(x_56, x_93); +x_95 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_95, 0, x_58); +lean_ctor_set(x_95, 1, x_94); +x_96 = lean_array_push(x_56, x_95); +x_97 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__19; +x_98 = lean_array_push(x_96, x_97); +x_99 = lean_array_push(x_88, x_55); +x_100 = lean_array_push(x_99, x_90); +x_101 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_101, 0, x_92); +lean_ctor_set(x_101, 1, x_100); +x_102 = lean_array_push(x_98, x_101); +x_103 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; x_104 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_104, 0, x_103); lean_ctor_set(x_104, 1, x_102); -x_105 = lean_array_push(x_77, x_104); +x_105 = lean_array_push(x_56, x_104); x_106 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_106, 0, x_55); +lean_ctor_set(x_106, 0, x_58); lean_ctor_set(x_106, 1, x_105); -lean_ctor_set(x_42, 0, x_106); -return x_42; +x_107 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_108 = lean_array_push(x_107, x_106); +x_109 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_110 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_110, 0, x_109); +lean_ctor_set(x_110, 1, x_108); +x_111 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__5; +x_112 = lean_array_push(x_111, x_110); +x_113 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; +x_114 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_114, 0, x_113); +lean_ctor_set(x_114, 1, x_112); +x_115 = lean_array_push(x_87, x_114); +x_116 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_116, 0, x_58); +lean_ctor_set(x_116, 1, x_115); +lean_ctor_set(x_45, 0, x_116); +return x_45; } else { -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; -x_107 = lean_unsigned_to_nat(7u); -x_108 = l_Lean_Syntax_getArg(x_1, x_107); -x_109 = l_Array_empty___closed__1; -x_110 = l_Array_append___rarg(x_109, x_6); +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; 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; +x_117 = lean_unsigned_to_nat(8u); +x_118 = l_Lean_Syntax_getArg(x_1, x_117); +x_119 = l_Array_empty___closed__1; +x_120 = l_Array_append___rarg(x_119, x_6); lean_dec(x_6); -x_111 = l_Lean_nullKind___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 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; -x_114 = lean_array_push(x_113, x_112); -x_115 = l_Lean_mkIdentFrom(x_1, x_17); -x_116 = lean_array_push(x_109, x_115); -x_117 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__2; -x_118 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_118, 0, x_117); -lean_ctor_set(x_118, 1, x_116); -x_119 = l_Lean_Elab_Term_expandArrayLit___closed__10; -x_120 = lean_array_push(x_119, x_118); -x_121 = l_Lean_Elab_Term_expandArrayLit___closed__11; -x_122 = lean_array_push(x_120, x_121); -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_114, x_123); -x_125 = l_Array_append___rarg(x_109, x_34); -lean_dec(x_34); -x_126 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_126, 0, x_111); -lean_ctor_set(x_126, 1, x_125); -x_127 = lean_array_push(x_124, x_126); -x_128 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__21; -x_129 = lean_array_push(x_127, x_128); -x_130 = lean_array_push(x_129, x_13); -x_131 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; -x_132 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_132, 0, x_131); -lean_ctor_set(x_132, 1, x_130); -x_133 = lean_array_push(x_109, x_132); -x_134 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; -x_135 = lean_array_push(x_134, x_47); -x_136 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__15; -x_137 = lean_array_push(x_135, x_136); -x_138 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -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_109, x_139); -x_141 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_141, 0, x_111); -lean_ctor_set(x_141, 1, x_140); -x_142 = lean_array_push(x_109, x_141); -x_143 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__19; -x_144 = lean_array_push(x_142, x_143); -x_145 = lean_array_push(x_144, x_108); -x_146 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_147 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_147, 0, x_146); -lean_ctor_set(x_147, 1, x_145); -x_148 = lean_array_push(x_109, x_147); +x_121 = l_Lean_nullKind___closed__2; +x_122 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_122, 0, x_121); +lean_ctor_set(x_122, 1, x_120); +x_123 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; +x_124 = lean_array_push(x_123, x_122); +x_125 = l_Lean_mkIdentFrom(x_1, x_20); +x_126 = lean_array_push(x_119, x_125); +x_127 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_528____closed__9; +x_128 = lean_array_push(x_126, x_127); +x_129 = l_Nat_repr(x_9); +x_130 = l_Lean_numLitKind; +x_131 = l_Lean_Init_LeanInit___instance__8___closed__1; +x_132 = l_Lean_mkStxLit(x_130, x_129, x_131); +x_133 = lean_array_push(x_128, x_132); +x_134 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; +x_135 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_135, 0, x_134); +lean_ctor_set(x_135, 1, x_133); +x_136 = l_Lean_Elab_Term_expandArrayLit___closed__10; +x_137 = lean_array_push(x_136, x_135); +x_138 = l_Lean_Elab_Term_expandArrayLit___closed__11; +x_139 = lean_array_push(x_137, x_138); +x_140 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_140, 0, x_121); +lean_ctor_set(x_140, 1, x_139); +x_141 = lean_array_push(x_124, x_140); +x_142 = l_Array_append___rarg(x_119, x_37); +lean_dec(x_37); +x_143 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_143, 0, x_121); +lean_ctor_set(x_143, 1, x_142); +x_144 = lean_array_push(x_141, x_143); +x_145 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__21; +x_146 = lean_array_push(x_144, x_145); +x_147 = lean_array_push(x_146, x_16); +x_148 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; x_149 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_149, 0, x_111); -lean_ctor_set(x_149, 1, x_148); -x_150 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_151 = lean_array_push(x_150, x_149); -x_152 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_153 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_153, 0, x_152); -lean_ctor_set(x_153, 1, x_151); -x_154 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__5; -x_155 = lean_array_push(x_154, x_153); -x_156 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; -x_157 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_157, 0, x_156); -lean_ctor_set(x_157, 1, x_155); -x_158 = lean_array_push(x_133, x_157); -x_159 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_159, 0, x_111); -lean_ctor_set(x_159, 1, x_158); -lean_ctor_set(x_42, 0, x_159); -return x_42; +lean_ctor_set(x_149, 0, x_148); +lean_ctor_set(x_149, 1, x_147); +x_150 = lean_array_push(x_119, x_149); +x_151 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; +x_152 = lean_array_push(x_151, x_50); +x_153 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__15; +x_154 = lean_array_push(x_152, x_153); +x_155 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_156 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_156, 0, x_155); +lean_ctor_set(x_156, 1, x_154); +x_157 = lean_array_push(x_119, x_156); +x_158 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_158, 0, x_121); +lean_ctor_set(x_158, 1, x_157); +x_159 = lean_array_push(x_119, x_158); +x_160 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__19; +x_161 = lean_array_push(x_159, x_160); +x_162 = lean_array_push(x_161, x_118); +x_163 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; +x_164 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_164, 0, x_163); +lean_ctor_set(x_164, 1, x_162); +x_165 = lean_array_push(x_119, x_164); +x_166 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_166, 0, x_121); +lean_ctor_set(x_166, 1, x_165); +x_167 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_168 = lean_array_push(x_167, x_166); +x_169 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_170 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_170, 0, x_169); +lean_ctor_set(x_170, 1, x_168); +x_171 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__5; +x_172 = lean_array_push(x_171, x_170); +x_173 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; +x_174 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_174, 0, x_173); +lean_ctor_set(x_174, 1, x_172); +x_175 = lean_array_push(x_150, x_174); +x_176 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_176, 0, x_121); +lean_ctor_set(x_176, 1, x_175); +lean_ctor_set(x_45, 0, x_176); +return x_45; } } else { -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; uint8_t x_168; -x_160 = lean_ctor_get(x_42, 0); -x_161 = lean_ctor_get(x_42, 1); -lean_inc(x_161); -lean_inc(x_160); -lean_dec(x_42); -x_162 = lean_array_push(x_32, x_36); -x_163 = l_Array_append___rarg(x_162, x_160); -lean_dec(x_160); -lean_inc(x_17); -x_164 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_164, 0, x_17); -lean_ctor_set(x_164, 1, x_163); -x_165 = l_Lean_Syntax_getArgs(x_1); -x_166 = lean_array_get_size(x_165); -lean_dec(x_165); -x_167 = lean_unsigned_to_nat(8u); -x_168 = lean_nat_dec_eq(x_166, x_167); -lean_dec(x_166); -if (x_168 == 0) +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; uint8_t x_185; +x_177 = lean_ctor_get(x_45, 0); +x_178 = lean_ctor_get(x_45, 1); +lean_inc(x_178); +lean_inc(x_177); +lean_dec(x_45); +x_179 = lean_array_push(x_35, x_39); +x_180 = l_Array_append___rarg(x_179, x_177); +lean_dec(x_177); +lean_inc(x_20); +x_181 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_181, 0, x_20); +lean_ctor_set(x_181, 1, x_180); +x_182 = l_Lean_Syntax_getArgs(x_1); +x_183 = lean_array_get_size(x_182); +lean_dec(x_182); +x_184 = lean_unsigned_to_nat(9u); +x_185 = lean_nat_dec_eq(x_183, x_184); +lean_dec(x_183); +if (x_185 == 0) { -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; 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; -x_169 = l_Lean_Syntax_getArg(x_1, x_167); -x_170 = l_Array_empty___closed__1; -x_171 = l_Array_append___rarg(x_170, x_6); +lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; 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; +x_186 = l_Lean_Syntax_getArg(x_1, x_184); +x_187 = l_Array_empty___closed__1; +x_188 = l_Array_append___rarg(x_187, x_6); lean_dec(x_6); -x_172 = l_Lean_nullKind___closed__2; -x_173 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_173, 0, x_172); -lean_ctor_set(x_173, 1, x_171); -x_174 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; -x_175 = lean_array_push(x_174, x_173); -x_176 = l_Lean_mkIdentFrom(x_1, x_17); -x_177 = lean_array_push(x_170, x_176); -x_178 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__2; -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 = l_Lean_Elab_Term_expandArrayLit___closed__10; -x_181 = lean_array_push(x_180, x_179); -x_182 = l_Lean_Elab_Term_expandArrayLit___closed__11; -x_183 = lean_array_push(x_181, x_182); -x_184 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_184, 0, x_172); -lean_ctor_set(x_184, 1, x_183); -x_185 = lean_array_push(x_175, x_184); -x_186 = l_Array_append___rarg(x_170, x_34); -lean_dec(x_34); -x_187 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_187, 0, x_172); -lean_ctor_set(x_187, 1, x_186); -x_188 = lean_array_push(x_185, x_187); -x_189 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__21; -x_190 = lean_array_push(x_188, x_189); -x_191 = lean_array_push(x_190, x_13); -x_192 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; -x_193 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_193, 0, x_192); -lean_ctor_set(x_193, 1, x_191); -x_194 = lean_array_push(x_170, x_193); -x_195 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; -x_196 = lean_array_push(x_195, x_164); -x_197 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__15; -x_198 = lean_array_push(x_196, x_197); -x_199 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_200 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_200, 0, x_199); -lean_ctor_set(x_200, 1, x_198); -x_201 = lean_array_push(x_170, x_200); -x_202 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_202, 0, x_172); -lean_ctor_set(x_202, 1, x_201); -x_203 = lean_array_push(x_170, x_202); -x_204 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__19; -x_205 = lean_array_push(x_203, x_204); -x_206 = lean_array_push(x_195, x_169); -x_207 = lean_array_push(x_206, x_197); +x_189 = l_Lean_nullKind___closed__2; +x_190 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_190, 0, x_189); +lean_ctor_set(x_190, 1, x_188); +x_191 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; +x_192 = lean_array_push(x_191, x_190); +x_193 = l_Lean_mkIdentFrom(x_1, x_20); +x_194 = lean_array_push(x_187, x_193); +x_195 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_528____closed__9; +x_196 = lean_array_push(x_194, x_195); +x_197 = l_Nat_repr(x_9); +x_198 = l_Lean_numLitKind; +x_199 = l_Lean_Init_LeanInit___instance__8___closed__1; +x_200 = l_Lean_mkStxLit(x_198, x_197, x_199); +x_201 = lean_array_push(x_196, x_200); +x_202 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; +x_203 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_203, 0, x_202); +lean_ctor_set(x_203, 1, x_201); +x_204 = l_Lean_Elab_Term_expandArrayLit___closed__10; +x_205 = lean_array_push(x_204, x_203); +x_206 = l_Lean_Elab_Term_expandArrayLit___closed__11; +x_207 = lean_array_push(x_205, x_206); x_208 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_208, 0, x_199); +lean_ctor_set(x_208, 0, x_189); lean_ctor_set(x_208, 1, x_207); -x_209 = lean_array_push(x_205, x_208); -x_210 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; +x_209 = lean_array_push(x_192, x_208); +x_210 = l_Array_append___rarg(x_187, x_37); +lean_dec(x_37); x_211 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_211, 0, x_210); -lean_ctor_set(x_211, 1, x_209); -x_212 = lean_array_push(x_170, x_211); -x_213 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_213, 0, x_172); -lean_ctor_set(x_213, 1, x_212); -x_214 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_215 = lean_array_push(x_214, x_213); -x_216 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +lean_ctor_set(x_211, 0, x_189); +lean_ctor_set(x_211, 1, x_210); +x_212 = lean_array_push(x_209, x_211); +x_213 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__21; +x_214 = lean_array_push(x_212, x_213); +x_215 = lean_array_push(x_214, x_16); +x_216 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; x_217 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_217, 0, x_216); lean_ctor_set(x_217, 1, x_215); -x_218 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__5; -x_219 = lean_array_push(x_218, x_217); -x_220 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; -x_221 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_221, 0, x_220); -lean_ctor_set(x_221, 1, x_219); -x_222 = lean_array_push(x_194, x_221); -x_223 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_223, 0, x_172); -lean_ctor_set(x_223, 1, x_222); -x_224 = lean_alloc_ctor(0, 2, 0); +x_218 = lean_array_push(x_187, x_217); +x_219 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; +x_220 = lean_array_push(x_219, x_181); +x_221 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__15; +x_222 = lean_array_push(x_220, x_221); +x_223 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_224 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_224, 0, x_223); -lean_ctor_set(x_224, 1, x_161); -return x_224; -} -else -{ -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; 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; -x_225 = lean_unsigned_to_nat(7u); -x_226 = l_Lean_Syntax_getArg(x_1, x_225); -x_227 = l_Array_empty___closed__1; -x_228 = l_Array_append___rarg(x_227, x_6); -lean_dec(x_6); -x_229 = l_Lean_nullKind___closed__2; -x_230 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_230, 0, x_229); -lean_ctor_set(x_230, 1, x_228); -x_231 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; -x_232 = lean_array_push(x_231, x_230); -x_233 = l_Lean_mkIdentFrom(x_1, x_17); -x_234 = lean_array_push(x_227, x_233); -x_235 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__2; -x_236 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_236, 0, x_235); -lean_ctor_set(x_236, 1, x_234); -x_237 = l_Lean_Elab_Term_expandArrayLit___closed__10; -x_238 = lean_array_push(x_237, x_236); -x_239 = l_Lean_Elab_Term_expandArrayLit___closed__11; -x_240 = lean_array_push(x_238, x_239); +lean_ctor_set(x_224, 1, x_222); +x_225 = lean_array_push(x_187, x_224); +x_226 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_226, 0, x_189); +lean_ctor_set(x_226, 1, x_225); +x_227 = lean_array_push(x_187, x_226); +x_228 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__19; +x_229 = lean_array_push(x_227, x_228); +x_230 = lean_array_push(x_219, x_186); +x_231 = lean_array_push(x_230, x_221); +x_232 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_232, 0, x_223); +lean_ctor_set(x_232, 1, x_231); +x_233 = lean_array_push(x_229, x_232); +x_234 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; +x_235 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_235, 0, x_234); +lean_ctor_set(x_235, 1, x_233); +x_236 = lean_array_push(x_187, x_235); +x_237 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_237, 0, x_189); +lean_ctor_set(x_237, 1, x_236); +x_238 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_239 = lean_array_push(x_238, x_237); +x_240 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; x_241 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_241, 0, x_229); -lean_ctor_set(x_241, 1, x_240); -x_242 = lean_array_push(x_232, x_241); -x_243 = l_Array_append___rarg(x_227, x_34); -lean_dec(x_34); -x_244 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_244, 0, x_229); -lean_ctor_set(x_244, 1, x_243); -x_245 = lean_array_push(x_242, x_244); -x_246 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__21; -x_247 = lean_array_push(x_245, x_246); -x_248 = lean_array_push(x_247, x_13); -x_249 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; -x_250 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_250, 0, x_249); -lean_ctor_set(x_250, 1, x_248); -x_251 = lean_array_push(x_227, x_250); -x_252 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; -x_253 = lean_array_push(x_252, x_164); -x_254 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__15; -x_255 = lean_array_push(x_253, x_254); -x_256 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_257 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_257, 0, x_256); -lean_ctor_set(x_257, 1, x_255); -x_258 = lean_array_push(x_227, x_257); -x_259 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_259, 0, x_229); -lean_ctor_set(x_259, 1, x_258); -x_260 = lean_array_push(x_227, x_259); -x_261 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__19; -x_262 = lean_array_push(x_260, x_261); -x_263 = lean_array_push(x_262, x_226); -x_264 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_265 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_265, 0, x_264); -lean_ctor_set(x_265, 1, x_263); -x_266 = lean_array_push(x_227, x_265); +lean_ctor_set(x_241, 0, x_240); +lean_ctor_set(x_241, 1, x_239); +x_242 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__5; +x_243 = lean_array_push(x_242, x_241); +x_244 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; +x_245 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_245, 0, x_244); +lean_ctor_set(x_245, 1, x_243); +x_246 = lean_array_push(x_218, x_245); +x_247 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_247, 0, x_189); +lean_ctor_set(x_247, 1, x_246); +x_248 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_248, 0, x_247); +lean_ctor_set(x_248, 1, x_178); +return x_248; +} +else +{ +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; 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; +x_249 = lean_unsigned_to_nat(8u); +x_250 = l_Lean_Syntax_getArg(x_1, x_249); +x_251 = l_Array_empty___closed__1; +x_252 = l_Array_append___rarg(x_251, x_6); +lean_dec(x_6); +x_253 = l_Lean_nullKind___closed__2; +x_254 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_254, 0, x_253); +lean_ctor_set(x_254, 1, x_252); +x_255 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; +x_256 = lean_array_push(x_255, x_254); +x_257 = l_Lean_mkIdentFrom(x_1, x_20); +x_258 = lean_array_push(x_251, x_257); +x_259 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_528____closed__9; +x_260 = lean_array_push(x_258, x_259); +x_261 = l_Nat_repr(x_9); +x_262 = l_Lean_numLitKind; +x_263 = l_Lean_Init_LeanInit___instance__8___closed__1; +x_264 = l_Lean_mkStxLit(x_262, x_261, x_263); +x_265 = lean_array_push(x_260, x_264); +x_266 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; x_267 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_267, 0, x_229); -lean_ctor_set(x_267, 1, x_266); -x_268 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +lean_ctor_set(x_267, 0, x_266); +lean_ctor_set(x_267, 1, x_265); +x_268 = l_Lean_Elab_Term_expandArrayLit___closed__10; x_269 = lean_array_push(x_268, x_267); -x_270 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_271 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_271, 0, x_270); -lean_ctor_set(x_271, 1, x_269); -x_272 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__5; -x_273 = lean_array_push(x_272, x_271); -x_274 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; +x_270 = l_Lean_Elab_Term_expandArrayLit___closed__11; +x_271 = lean_array_push(x_269, x_270); +x_272 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_272, 0, x_253); +lean_ctor_set(x_272, 1, x_271); +x_273 = lean_array_push(x_256, x_272); +x_274 = l_Array_append___rarg(x_251, x_37); +lean_dec(x_37); 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_251, x_275); -x_277 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_277, 0, x_229); -lean_ctor_set(x_277, 1, x_276); -x_278 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_278, 0, x_277); -lean_ctor_set(x_278, 1, x_161); -return x_278; -} -} -} -else -{ -uint8_t x_279; -lean_dec(x_36); -lean_dec(x_34); -lean_dec(x_17); -lean_dec(x_13); -lean_dec(x_6); -x_279 = !lean_is_exclusive(x_42); -if (x_279 == 0) -{ -return x_42; -} -else -{ -lean_object* x_280; lean_object* x_281; lean_object* x_282; -x_280 = lean_ctor_get(x_42, 0); -x_281 = lean_ctor_get(x_42, 1); -lean_inc(x_281); -lean_inc(x_280); -lean_dec(x_42); -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_34); -lean_dec(x_24); -lean_dec(x_17); -lean_dec(x_13); -lean_dec(x_6); -lean_dec(x_2); -x_283 = !lean_is_exclusive(x_35); -if (x_283 == 0) -{ -return x_35; -} -else -{ -lean_object* x_284; lean_object* x_285; lean_object* x_286; -x_284 = lean_ctor_get(x_35, 0); -x_285 = lean_ctor_get(x_35, 1); -lean_inc(x_285); -lean_inc(x_284); -lean_dec(x_35); -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 -{ -uint8_t x_287; -lean_dec(x_24); -lean_dec(x_20); -lean_dec(x_17); -lean_dec(x_13); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_2); -x_287 = !lean_is_exclusive(x_29); -if (x_287 == 0) -{ -return x_29; -} -else -{ -lean_object* x_288; lean_object* x_289; lean_object* x_290; -x_288 = lean_ctor_get(x_29, 0); -x_289 = lean_ctor_get(x_29, 1); -lean_inc(x_289); -lean_inc(x_288); -lean_dec(x_29); +lean_ctor_set(x_275, 0, x_253); +lean_ctor_set(x_275, 1, x_274); +x_276 = lean_array_push(x_273, x_275); +x_277 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__21; +x_278 = lean_array_push(x_276, x_277); +x_279 = lean_array_push(x_278, x_16); +x_280 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; +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_251, x_281); +x_283 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; +x_284 = lean_array_push(x_283, x_181); +x_285 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__15; +x_286 = lean_array_push(x_284, x_285); +x_287 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_288 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_288, 0, x_287); +lean_ctor_set(x_288, 1, x_286); +x_289 = lean_array_push(x_251, x_288); x_290 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_290, 0, x_288); +lean_ctor_set(x_290, 0, x_253); lean_ctor_set(x_290, 1, x_289); -return x_290; +x_291 = lean_array_push(x_251, x_290); +x_292 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__19; +x_293 = lean_array_push(x_291, x_292); +x_294 = lean_array_push(x_293, x_250); +x_295 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; +x_296 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_296, 0, x_295); +lean_ctor_set(x_296, 1, x_294); +x_297 = lean_array_push(x_251, x_296); +x_298 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_298, 0, x_253); +lean_ctor_set(x_298, 1, x_297); +x_299 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_300 = lean_array_push(x_299, x_298); +x_301 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_302 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_302, 0, x_301); +lean_ctor_set(x_302, 1, x_300); +x_303 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__5; +x_304 = lean_array_push(x_303, x_302); +x_305 = l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; +x_306 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_306, 0, x_305); +lean_ctor_set(x_306, 1, x_304); +x_307 = lean_array_push(x_282, x_306); +x_308 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_308, 0, x_253); +lean_ctor_set(x_308, 1, x_307); +x_309 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_309, 0, x_308); +lean_ctor_set(x_309, 1, x_178); +return x_309; } } } else { -uint8_t x_291; -lean_dec(x_17); -lean_dec(x_13); -lean_dec(x_11); -lean_dec(x_8); +uint8_t x_310; +lean_dec(x_39); +lean_dec(x_37); +lean_dec(x_20); +lean_dec(x_16); +lean_dec(x_9); +lean_dec(x_6); +x_310 = !lean_is_exclusive(x_45); +if (x_310 == 0) +{ +return x_45; +} +else +{ +lean_object* x_311; lean_object* x_312; lean_object* x_313; +x_311 = lean_ctor_get(x_45, 0); +x_312 = lean_ctor_get(x_45, 1); +lean_inc(x_312); +lean_inc(x_311); +lean_dec(x_45); +x_313 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_313, 0, x_311); +lean_ctor_set(x_313, 1, x_312); +return x_313; +} +} +} +else +{ +uint8_t x_314; +lean_dec(x_37); +lean_dec(x_27); +lean_dec(x_20); +lean_dec(x_16); +lean_dec(x_9); lean_dec(x_6); lean_dec(x_2); -x_291 = !lean_is_exclusive(x_19); -if (x_291 == 0) +x_314 = !lean_is_exclusive(x_38); +if (x_314 == 0) { -return x_19; +return x_38; } else { -lean_object* x_292; lean_object* x_293; lean_object* x_294; -x_292 = lean_ctor_get(x_19, 0); -x_293 = lean_ctor_get(x_19, 1); -lean_inc(x_293); -lean_inc(x_292); -lean_dec(x_19); -x_294 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_294, 0, x_292); -lean_ctor_set(x_294, 1, x_293); -return x_294; +lean_object* x_315; lean_object* x_316; lean_object* x_317; +x_315 = lean_ctor_get(x_38, 0); +x_316 = lean_ctor_get(x_38, 1); +lean_inc(x_316); +lean_inc(x_315); +lean_dec(x_38); +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; +lean_dec(x_27); +lean_dec(x_23); +lean_dec(x_20); +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_2); +x_318 = !lean_is_exclusive(x_32); +if (x_318 == 0) +{ +return x_32; +} +else +{ +lean_object* x_319; lean_object* x_320; lean_object* x_321; +x_319 = lean_ctor_get(x_32, 0); +x_320 = lean_ctor_get(x_32, 1); +lean_inc(x_320); +lean_inc(x_319); +lean_dec(x_32); +x_321 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_321, 0, x_319); +lean_ctor_set(x_321, 1, x_320); +return x_321; +} +} +} +else +{ +uint8_t x_322; +lean_dec(x_20); +lean_dec(x_16); +lean_dec(x_14); +lean_dec(x_11); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_2); +x_322 = !lean_is_exclusive(x_22); +if (x_322 == 0) +{ +return x_22; +} +else +{ +lean_object* x_323; lean_object* x_324; lean_object* x_325; +x_323 = lean_ctor_get(x_22, 0); +x_324 = lean_ctor_get(x_22, 1); +lean_inc(x_324); +lean_inc(x_323); +lean_dec(x_22); +x_325 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_325, 0, x_323); +lean_ctor_set(x_325, 1, x_324); +return x_325; } } } @@ -20153,7 +20237,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_9346____closed__1() { +static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_9384____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -20163,11 +20247,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_9346_(lean_object* x_1) { +lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_9384_(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_9346____closed__1; +x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_9384____closed__1; x_3 = l_Lean_registerTraceClass(x_2, x_1); return x_3; } @@ -20315,7 +20399,7 @@ static lean_object* _init_l_Lean_Elab_Command_expandElab___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Intro___hyg_538____closed__2; +x_1 = l___kind_tactic____x40_Init_Tactics___hyg_2____closed__3; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } @@ -20324,7 +20408,7 @@ static lean_object* _init_l_Lean_Elab_Command_expandElab___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Intro___hyg_538____closed__2; +x_1 = l___kind_tactic____x40_Init_Tactics___hyg_2____closed__3; x_2 = lean_unsigned_to_nat(0u); x_3 = l_Lean_Elab_Command_expandElab___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); @@ -20833,2473 +20917,2533 @@ return x_2; lean_object* l_Lean_Elab_Command_expandElab(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { -lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; 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; x_4 = lean_unsigned_to_nat(1u); x_5 = l_Lean_Syntax_getArg(x_1, x_4); x_6 = l_Lean_Syntax_getArgs(x_5); lean_dec(x_5); x_7 = lean_unsigned_to_nat(2u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); -x_9 = lean_unsigned_to_nat(3u); -x_10 = l_Lean_Syntax_getArg(x_1, x_9); -x_11 = l_Lean_Syntax_getArgs(x_10); -lean_dec(x_10); -x_12 = lean_unsigned_to_nat(5u); +x_9 = l_Lean_Elab_Command_expandOptPrio(x_8); +lean_dec(x_8); +x_10 = lean_unsigned_to_nat(3u); +x_11 = l_Lean_Syntax_getArg(x_1, x_10); +x_12 = lean_unsigned_to_nat(4u); x_13 = l_Lean_Syntax_getArg(x_1, x_12); -x_14 = lean_unsigned_to_nat(6u); -x_15 = l_Lean_Syntax_getArg(x_1, x_14); -x_16 = lean_unsigned_to_nat(8u); -x_17 = l_Lean_Syntax_getArg(x_1, x_16); -x_18 = l_Lean_Syntax_getId(x_13); -lean_inc(x_18); -x_19 = lean_erase_macro_scopes(x_18); -lean_inc(x_2); -x_20 = l_Lean_Elab_Command_Macro_mkFreshKind(x_19, x_2, x_3); -x_21 = lean_ctor_get(x_20, 0); +x_14 = l_Lean_Syntax_getArgs(x_13); +lean_dec(x_13); +x_15 = lean_unsigned_to_nat(6u); +x_16 = l_Lean_Syntax_getArg(x_1, x_15); +x_17 = lean_unsigned_to_nat(7u); +x_18 = l_Lean_Syntax_getArg(x_1, x_17); +x_19 = lean_unsigned_to_nat(9u); +x_20 = l_Lean_Syntax_getArg(x_1, x_19); +x_21 = l_Lean_Syntax_getId(x_16); lean_inc(x_21); -x_22 = lean_ctor_get(x_20, 1); -lean_inc(x_22); -lean_dec(x_20); -lean_inc(x_8); -x_23 = l_Lean_Elab_Command_expandMacroHeadIntoSyntaxItem(x_8, x_2, x_22); -if (lean_obj_tag(x_23) == 0) -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; size_t 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; +x_22 = lean_erase_macro_scopes(x_21); +lean_inc(x_2); +x_23 = l_Lean_Elab_Command_Macro_mkFreshKind(x_22, x_2, x_3); x_24 = lean_ctor_get(x_23, 0); lean_inc(x_24); x_25 = lean_ctor_get(x_23, 1); lean_inc(x_25); lean_dec(x_23); -x_26 = lean_array_get_size(x_11); -x_27 = lean_usize_of_nat(x_26); -lean_dec(x_26); -x_28 = x_11; -x_29 = lean_box_usize(x_27); -x_30 = l_Lean_Elab_Command_expandElab___boxed__const__1; +lean_inc(x_11); +x_26 = l_Lean_Elab_Command_expandMacroHeadIntoSyntaxItem(x_11, x_2, x_25); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; size_t 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_27 = lean_ctor_get(x_26, 0); +lean_inc(x_27); +x_28 = lean_ctor_get(x_26, 1); lean_inc(x_28); -x_31 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at_Lean_Elab_Command_expandMacro___spec__1___boxed), 5, 3); -lean_closure_set(x_31, 0, x_29); -lean_closure_set(x_31, 1, x_30); -lean_closure_set(x_31, 2, x_28); -x_32 = x_31; +lean_dec(x_26); +x_29 = lean_array_get_size(x_14); +x_30 = lean_usize_of_nat(x_29); +lean_dec(x_29); +x_31 = x_14; +x_32 = lean_box_usize(x_30); +x_33 = l_Lean_Elab_Command_expandElab___boxed__const__1; +lean_inc(x_31); +x_34 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at_Lean_Elab_Command_expandMacro___spec__1___boxed), 5, 3); +lean_closure_set(x_34, 0, x_32); +lean_closure_set(x_34, 1, x_33); +lean_closure_set(x_34, 2, x_31); +x_35 = x_34; lean_inc(x_2); -x_33 = lean_apply_2(x_32, x_2, x_25); -if (lean_obj_tag(x_33) == 0) +x_36 = lean_apply_2(x_35, x_2, x_28); +if (lean_obj_tag(x_36) == 0) { -lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -x_35 = lean_ctor_get(x_33, 1); -lean_inc(x_35); -lean_dec(x_33); -x_36 = l_Lean_mkOptionalNode___closed__2; -x_37 = lean_array_push(x_36, x_24); -x_38 = l_Array_append___rarg(x_37, x_34); -lean_dec(x_34); -x_39 = l_Lean_Elab_Command_expandMacroHeadIntoPattern(x_8, x_2, x_35); -if (lean_obj_tag(x_39) == 0) +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_37 = lean_ctor_get(x_36, 0); +lean_inc(x_37); +x_38 = lean_ctor_get(x_36, 1); +lean_inc(x_38); +lean_dec(x_36); +x_39 = l_Lean_mkOptionalNode___closed__2; +x_40 = lean_array_push(x_39, x_27); +x_41 = l_Array_append___rarg(x_40, x_37); +lean_dec(x_37); +x_42 = l_Lean_Elab_Command_expandMacroHeadIntoPattern(x_11, x_2, x_38); +if (lean_obj_tag(x_42) == 0) { -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; -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 = lean_box_usize(x_27); -x_43 = l_Lean_Elab_Command_expandElab___boxed__const__1; -x_44 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at_Lean_Elab_Command_expandMacro___spec__2___boxed), 5, 3); -lean_closure_set(x_44, 0, x_42); -lean_closure_set(x_44, 1, x_43); -lean_closure_set(x_44, 2, x_28); -x_45 = x_44; +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_43 = lean_ctor_get(x_42, 0); +lean_inc(x_43); +x_44 = lean_ctor_get(x_42, 1); +lean_inc(x_44); +lean_dec(x_42); +x_45 = lean_box_usize(x_30); +x_46 = l_Lean_Elab_Command_expandElab___boxed__const__1; +x_47 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at_Lean_Elab_Command_expandMacro___spec__2___boxed), 5, 3); +lean_closure_set(x_47, 0, x_45); +lean_closure_set(x_47, 1, x_46); +lean_closure_set(x_47, 2, x_31); +x_48 = x_47; lean_inc(x_2); -x_46 = lean_apply_2(x_45, x_2, x_41); -if (lean_obj_tag(x_46) == 0) +x_49 = lean_apply_2(x_48, x_2, x_44); +if (lean_obj_tag(x_49) == 0) { -uint8_t x_47; -x_47 = !lean_is_exclusive(x_46); -if (x_47 == 0) +uint8_t x_50; +x_50 = !lean_is_exclusive(x_49); +if (x_50 == 0) { -lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; uint8_t x_54; -x_48 = lean_ctor_get(x_46, 0); -x_49 = lean_ctor_get(x_46, 1); -x_50 = lean_array_push(x_36, x_40); -x_51 = l_Array_append___rarg(x_50, x_48); -lean_dec(x_48); -lean_inc(x_21); -x_52 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_52, 0, x_21); -lean_ctor_set(x_52, 1, x_51); -x_53 = l_Lean_mkIdentFrom(x_1, x_21); -x_54 = l_Lean_Syntax_hasArgs(x_15); -if (x_54 == 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; uint8_t x_57; +x_51 = lean_ctor_get(x_49, 0); +x_52 = lean_ctor_get(x_49, 1); +x_53 = lean_array_push(x_39, x_43); +x_54 = l_Array_append___rarg(x_53, x_51); +lean_dec(x_51); +lean_inc(x_24); +x_55 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_55, 0, x_24); +lean_ctor_set(x_55, 1, x_54); +x_56 = l_Lean_mkIdentFrom(x_1, x_24); +x_57 = l_Lean_Syntax_hasArgs(x_18); +if (x_57 == 0) { -lean_object* x_55; uint8_t x_56; -lean_dec(x_15); -x_55 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__17; -x_56 = lean_name_eq(x_18, x_55); -if (x_56 == 0) +lean_object* x_58; uint8_t x_59; +lean_dec(x_18); +x_58 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__17; +x_59 = lean_name_eq(x_21, x_58); +if (x_59 == 0) { -lean_object* x_57; uint8_t x_58; -x_57 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3125____closed__4; -x_58 = lean_name_eq(x_18, x_57); -if (x_58 == 0) +lean_object* x_60; uint8_t x_61; +x_60 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3125____closed__4; +x_61 = lean_name_eq(x_21, x_60); +if (x_61 == 0) { -lean_object* x_59; uint8_t x_60; -x_59 = l_Lean_Elab_Tactic_mkTacticAttribute___closed__6; -x_60 = lean_name_eq(x_18, x_59); -if (x_60 == 0) +lean_object* x_62; uint8_t x_63; +x_62 = l_Lean_Elab_Tactic_mkTacticAttribute___closed__6; +x_63 = lean_name_eq(x_21, x_62); +if (x_63 == 0) { -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_dec(x_53); -lean_dec(x_52); -lean_free_object(x_46); -lean_dec(x_38); -lean_dec(x_17); -lean_dec(x_13); +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_dec(x_56); +lean_dec(x_55); +lean_free_object(x_49); +lean_dec(x_41); +lean_dec(x_20); +lean_dec(x_16); +lean_dec(x_9); lean_dec(x_6); -x_61 = l_System_FilePath_dirName___closed__1; -x_62 = l_Lean_Name_toStringWithSep(x_61, x_18); -x_63 = l_Lean_Elab_Command_expandElab___closed__1; -x_64 = lean_string_append(x_63, x_62); -lean_dec(x_62); -x_65 = l_Init_Data_Repr___instance__15___closed__1; -x_66 = lean_string_append(x_64, x_65); -x_67 = l_Lean_Macro_throwError___rarg(x_1, x_66, x_2, x_49); +x_64 = l_System_FilePath_dirName___closed__1; +x_65 = l_Lean_Name_toStringWithSep(x_64, x_21); +x_66 = l_Lean_Elab_Command_expandElab___closed__1; +x_67 = lean_string_append(x_66, x_65); +lean_dec(x_65); +x_68 = l_Init_Data_Repr___instance__15___closed__1; +x_69 = lean_string_append(x_67, x_68); +x_70 = l_Lean_Macro_throwError___rarg(x_1, x_69, x_2, x_52); lean_dec(x_2); -return x_67; +return x_70; } 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; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; 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; 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; 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_dec(x_18); +lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; 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; 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; 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_dec(x_21); lean_dec(x_1); -x_68 = lean_ctor_get(x_2, 2); -lean_inc(x_68); -x_69 = lean_ctor_get(x_2, 1); -lean_inc(x_69); +x_71 = lean_ctor_get(x_2, 2); +lean_inc(x_71); +x_72 = lean_ctor_get(x_2, 1); +lean_inc(x_72); lean_dec(x_2); -x_70 = l_Array_empty___closed__1; -x_71 = l_Array_append___rarg(x_70, x_6); +x_73 = l_Array_empty___closed__1; +x_74 = l_Array_append___rarg(x_73, x_6); lean_dec(x_6); -x_72 = l_Lean_nullKind___closed__2; -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 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; -x_75 = lean_array_push(x_74, x_73); -x_76 = lean_array_push(x_70, x_53); -x_77 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__2; -lean_inc(x_76); -x_78 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_78, 0, x_77); -lean_ctor_set(x_78, 1, x_76); -x_79 = l_Lean_Elab_Term_expandArrayLit___closed__10; -x_80 = lean_array_push(x_79, x_78); -x_81 = l_Lean_Elab_Term_expandArrayLit___closed__11; -x_82 = lean_array_push(x_80, x_81); -x_83 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_83, 0, x_72); -lean_ctor_set(x_83, 1, x_82); -x_84 = lean_array_push(x_75, x_83); -x_85 = l_Array_append___rarg(x_70, x_38); -lean_dec(x_38); -x_86 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_86, 0, x_72); -lean_ctor_set(x_86, 1, x_85); -x_87 = lean_array_push(x_84, x_86); -x_88 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__21; -x_89 = lean_array_push(x_87, x_88); -x_90 = lean_array_push(x_89, x_13); -x_91 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; -x_92 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_92, 0, x_91); -lean_ctor_set(x_92, 1, x_90); -x_93 = lean_array_push(x_70, x_92); -lean_inc(x_68); -lean_inc(x_69); -x_94 = l_Lean_addMacroScope(x_69, x_59, x_68); -x_95 = lean_box(0); -x_96 = l_Lean_Init_LeanInit___instance__8___closed__1; -x_97 = l_Lean_Elab_Command_expandElab___closed__3; -x_98 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_98, 0, x_96); -lean_ctor_set(x_98, 1, x_97); -lean_ctor_set(x_98, 2, x_94); -lean_ctor_set(x_98, 3, x_95); -x_99 = lean_array_push(x_70, x_98); -x_100 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_100, 0, x_72); -lean_ctor_set(x_100, 1, x_76); -x_101 = lean_array_push(x_99, x_100); -x_102 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; -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_70, x_103); -x_105 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_105, 0, x_72); -lean_ctor_set(x_105, 1, x_104); -x_106 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; -x_107 = lean_array_push(x_106, x_105); -x_108 = lean_array_push(x_107, x_81); -x_109 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; -x_110 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_110, 0, x_109); -lean_ctor_set(x_110, 1, x_108); -x_111 = lean_array_push(x_70, x_110); +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 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; +x_78 = lean_array_push(x_77, x_76); +x_79 = lean_array_push(x_73, x_56); +x_80 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_528____closed__9; +lean_inc(x_79); +x_81 = lean_array_push(x_79, x_80); +x_82 = l_Nat_repr(x_9); +x_83 = l_Lean_numLitKind; +x_84 = l_Lean_Init_LeanInit___instance__8___closed__1; +x_85 = l_Lean_mkStxLit(x_83, x_82, x_84); +x_86 = lean_array_push(x_81, x_85); +x_87 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; +x_88 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_88, 0, x_87); +lean_ctor_set(x_88, 1, x_86); +x_89 = l_Lean_Elab_Term_expandArrayLit___closed__10; +x_90 = lean_array_push(x_89, x_88); +x_91 = l_Lean_Elab_Term_expandArrayLit___closed__11; +x_92 = lean_array_push(x_90, x_91); +x_93 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_93, 0, x_75); +lean_ctor_set(x_93, 1, x_92); +x_94 = lean_array_push(x_78, x_93); +x_95 = l_Array_append___rarg(x_73, x_41); +lean_dec(x_41); +x_96 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_96, 0, x_75); +lean_ctor_set(x_96, 1, x_95); +x_97 = lean_array_push(x_94, x_96); +x_98 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__21; +x_99 = lean_array_push(x_97, x_98); +x_100 = lean_array_push(x_99, x_16); +x_101 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; +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_73, x_102); +lean_inc(x_71); +lean_inc(x_72); +x_104 = l_Lean_addMacroScope(x_72, x_62, x_71); +x_105 = lean_box(0); +x_106 = l_Lean_Elab_Command_expandElab___closed__3; +x_107 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_107, 0, x_84); +lean_ctor_set(x_107, 1, x_106); +lean_ctor_set(x_107, 2, x_104); +lean_ctor_set(x_107, 3, x_105); +x_108 = lean_array_push(x_73, x_107); +x_109 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_109, 0, x_75); +lean_ctor_set(x_109, 1, x_79); +x_110 = lean_array_push(x_108, x_109); +x_111 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; x_112 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_112, 0, x_72); -lean_ctor_set(x_112, 1, x_111); -x_113 = l_Lean_Elab_Tactic_evalIntro___closed__5; -x_114 = lean_array_push(x_113, x_112); -x_115 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__13; -x_116 = lean_array_push(x_114, x_115); -x_117 = lean_array_push(x_116, x_115); -x_118 = lean_array_push(x_117, x_115); -x_119 = lean_array_push(x_118, x_115); -x_120 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; +lean_ctor_set(x_112, 0, x_111); +lean_ctor_set(x_112, 1, x_110); +x_113 = lean_array_push(x_73, x_112); +x_114 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_114, 0, x_75); +lean_ctor_set(x_114, 1, x_113); +x_115 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; +x_116 = lean_array_push(x_115, x_114); +x_117 = lean_array_push(x_116, x_91); +x_118 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; +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_73, x_119); x_121 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_121, 0, x_120); -lean_ctor_set(x_121, 1, x_119); -x_122 = lean_array_push(x_70, x_121); -x_123 = l_Lean_Elab_Command_expandElab___closed__7; -lean_inc(x_68); -lean_inc(x_69); -x_124 = l_Lean_addMacroScope(x_69, x_123, x_68); -x_125 = l_Lean_Elab_Command_expandElab___closed__6; -x_126 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_126, 0, x_96); -lean_ctor_set(x_126, 1, x_125); -lean_ctor_set(x_126, 2, x_124); -lean_ctor_set(x_126, 3, x_95); -x_127 = lean_array_push(x_70, x_126); -x_128 = lean_array_push(x_127, x_115); -x_129 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; +lean_ctor_set(x_121, 0, x_75); +lean_ctor_set(x_121, 1, x_120); +x_122 = l_Lean_Elab_Tactic_evalIntro___closed__5; +x_123 = lean_array_push(x_122, x_121); +x_124 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__13; +x_125 = lean_array_push(x_123, x_124); +x_126 = lean_array_push(x_125, x_124); +x_127 = lean_array_push(x_126, x_124); +x_128 = lean_array_push(x_127, x_124); +x_129 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; x_130 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_130, 0, x_129); lean_ctor_set(x_130, 1, x_128); -x_131 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; -x_132 = lean_array_push(x_131, x_130); -x_133 = l_Lean_Elab_Tactic_mkTacticAttribute___closed__7; -lean_inc(x_68); -lean_inc(x_69); -x_134 = l_Lean_addMacroScope(x_69, x_133, x_68); -x_135 = l_Lean_Elab_Command_expandElab___closed__10; -x_136 = l_Lean_Elab_Command_expandElab___closed__12; -x_137 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_137, 0, x_96); -lean_ctor_set(x_137, 1, x_135); -lean_ctor_set(x_137, 2, x_134); -lean_ctor_set(x_137, 3, x_136); -x_138 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__22; -x_139 = lean_array_push(x_138, x_137); -x_140 = l_Lean_Elab_Term_elabLetDeclCore___closed__6; -x_141 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_141, 0, x_140); -lean_ctor_set(x_141, 1, x_139); -x_142 = lean_array_push(x_70, x_141); -x_143 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_143, 0, x_72); -lean_ctor_set(x_143, 1, x_142); -x_144 = lean_array_push(x_113, x_143); -x_145 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; -x_146 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_146, 0, x_145); +x_131 = lean_array_push(x_73, x_130); +x_132 = l_Lean_Elab_Command_expandElab___closed__7; +lean_inc(x_71); +lean_inc(x_72); +x_133 = l_Lean_addMacroScope(x_72, x_132, x_71); +x_134 = l_Lean_Elab_Command_expandElab___closed__6; +x_135 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_135, 0, x_84); +lean_ctor_set(x_135, 1, x_134); +lean_ctor_set(x_135, 2, x_133); +lean_ctor_set(x_135, 3, x_105); +x_136 = lean_array_push(x_73, x_135); +x_137 = lean_array_push(x_136, x_124); +x_138 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; +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 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; +x_141 = lean_array_push(x_140, x_139); +x_142 = l_Lean_Elab_Tactic_mkTacticAttribute___closed__7; +lean_inc(x_71); +lean_inc(x_72); +x_143 = l_Lean_addMacroScope(x_72, x_142, x_71); +x_144 = l_Lean_Elab_Command_expandElab___closed__10; +x_145 = l_Lean_Elab_Command_expandElab___closed__12; +x_146 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_146, 0, x_84); lean_ctor_set(x_146, 1, x_144); -x_147 = lean_array_push(x_132, x_146); -x_148 = l_Lean_Parser_categoryParserFnImpl___closed__4; -lean_inc(x_68); -lean_inc(x_69); -x_149 = l_Lean_addMacroScope(x_69, x_148, x_68); -x_150 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_151 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_151, 0, x_96); -lean_ctor_set(x_151, 1, x_150); -lean_ctor_set(x_151, 2, x_149); -lean_ctor_set(x_151, 3, x_95); -lean_inc(x_151); -x_152 = lean_array_push(x_70, x_151); -x_153 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_153, 0, x_72); -lean_ctor_set(x_153, 1, x_152); -x_154 = lean_array_push(x_70, x_153); -x_155 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__19; -x_156 = lean_array_push(x_154, x_155); -x_157 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; -x_158 = lean_array_push(x_157, x_151); -x_159 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_160 = lean_array_push(x_158, x_159); -x_161 = l_Lean_Elab_Command_expandElab___closed__15; -x_162 = lean_array_push(x_161, x_52); -x_163 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__15; -x_164 = lean_array_push(x_162, x_163); -x_165 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__2; -x_166 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_166, 0, x_165); -lean_ctor_set(x_166, 1, x_164); -x_167 = lean_array_push(x_70, x_166); -x_168 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_168, 0, x_72); -lean_ctor_set(x_168, 1, x_167); -x_169 = lean_array_push(x_70, x_168); -x_170 = lean_array_push(x_169, x_155); -x_171 = lean_array_push(x_170, x_17); -x_172 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_173 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_173, 0, x_172); -lean_ctor_set(x_173, 1, x_171); -x_174 = lean_array_push(x_70, x_173); -x_175 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_176 = lean_array_push(x_174, x_175); -x_177 = l_Lean_Elab_Command_expandElab___closed__19; -x_178 = l_Lean_addMacroScope(x_69, x_177, x_68); -x_179 = l_Lean_Elab_Command_expandElab___closed__18; -x_180 = l_Lean_Elab_Command_expandElab___closed__22; -x_181 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_181, 0, x_96); -lean_ctor_set(x_181, 1, x_179); -lean_ctor_set(x_181, 2, x_178); -lean_ctor_set(x_181, 3, x_180); -x_182 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; -x_183 = lean_array_push(x_182, x_181); -x_184 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_184, 0, x_172); -lean_ctor_set(x_184, 1, x_183); -x_185 = lean_array_push(x_176, x_184); -x_186 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_186, 0, x_72); -lean_ctor_set(x_186, 1, x_185); -x_187 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_188 = lean_array_push(x_187, x_186); -x_189 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_190 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_190, 0, x_189); +lean_ctor_set(x_146, 2, x_143); +lean_ctor_set(x_146, 3, x_145); +x_147 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__22; +x_148 = lean_array_push(x_147, x_146); +x_149 = l_Lean_Elab_Term_elabLetDeclCore___closed__6; +x_150 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_150, 0, x_149); +lean_ctor_set(x_150, 1, x_148); +x_151 = lean_array_push(x_73, x_150); +x_152 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_152, 0, x_75); +lean_ctor_set(x_152, 1, x_151); +x_153 = lean_array_push(x_122, x_152); +x_154 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; +x_155 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_155, 0, x_154); +lean_ctor_set(x_155, 1, x_153); +x_156 = lean_array_push(x_141, x_155); +x_157 = l_Lean_Parser_categoryParserFnImpl___closed__4; +lean_inc(x_71); +lean_inc(x_72); +x_158 = l_Lean_addMacroScope(x_72, x_157, x_71); +x_159 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_160 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_160, 0, x_84); +lean_ctor_set(x_160, 1, x_159); +lean_ctor_set(x_160, 2, x_158); +lean_ctor_set(x_160, 3, x_105); +lean_inc(x_160); +x_161 = lean_array_push(x_73, x_160); +x_162 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_162, 0, x_75); +lean_ctor_set(x_162, 1, x_161); +x_163 = lean_array_push(x_73, x_162); +x_164 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__19; +x_165 = lean_array_push(x_163, x_164); +x_166 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; +x_167 = lean_array_push(x_166, x_160); +x_168 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_169 = lean_array_push(x_167, x_168); +x_170 = l_Lean_Elab_Command_expandElab___closed__15; +x_171 = lean_array_push(x_170, x_55); +x_172 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__15; +x_173 = lean_array_push(x_171, x_172); +x_174 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_175 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_175, 0, x_174); +lean_ctor_set(x_175, 1, x_173); +x_176 = lean_array_push(x_73, x_175); +x_177 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_177, 0, x_75); +lean_ctor_set(x_177, 1, x_176); +x_178 = lean_array_push(x_73, x_177); +x_179 = lean_array_push(x_178, x_164); +x_180 = lean_array_push(x_179, x_20); +x_181 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; +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_73, x_182); +x_184 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_185 = lean_array_push(x_183, x_184); +x_186 = l_Lean_Elab_Command_expandElab___closed__19; +x_187 = l_Lean_addMacroScope(x_72, x_186, x_71); +x_188 = l_Lean_Elab_Command_expandElab___closed__18; +x_189 = l_Lean_Elab_Command_expandElab___closed__22; +x_190 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_190, 0, x_84); lean_ctor_set(x_190, 1, x_188); -x_191 = lean_array_push(x_160, x_190); -x_192 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +lean_ctor_set(x_190, 2, x_187); +lean_ctor_set(x_190, 3, x_189); +x_191 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; +x_192 = lean_array_push(x_191, x_190); x_193 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_193, 0, x_192); -lean_ctor_set(x_193, 1, x_191); -x_194 = lean_array_push(x_156, x_193); -x_195 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__11; -x_196 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_196, 0, x_195); -lean_ctor_set(x_196, 1, x_194); -x_197 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__9; -x_198 = lean_array_push(x_197, x_196); -x_199 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__7; -x_200 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_200, 0, x_199); -lean_ctor_set(x_200, 1, x_198); -x_201 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__28; -x_202 = lean_array_push(x_201, x_200); -x_203 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; -x_204 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_204, 0, x_203); -lean_ctor_set(x_204, 1, x_202); -x_205 = lean_array_push(x_147, x_204); -x_206 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; -x_207 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_207, 0, x_206); -lean_ctor_set(x_207, 1, x_205); -x_208 = lean_array_push(x_122, x_207); -x_209 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; -x_210 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_210, 0, x_209); -lean_ctor_set(x_210, 1, x_208); -x_211 = lean_array_push(x_93, x_210); -x_212 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_212, 0, x_72); -lean_ctor_set(x_212, 1, x_211); -lean_ctor_set(x_46, 0, x_212); -return x_46; +lean_ctor_set(x_193, 0, x_181); +lean_ctor_set(x_193, 1, x_192); +x_194 = lean_array_push(x_185, x_193); +x_195 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_195, 0, x_75); +lean_ctor_set(x_195, 1, x_194); +x_196 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_197 = lean_array_push(x_196, x_195); +x_198 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_199 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_199, 0, x_198); +lean_ctor_set(x_199, 1, x_197); +x_200 = lean_array_push(x_169, x_199); +x_201 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_202 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_202, 0, x_201); +lean_ctor_set(x_202, 1, x_200); +x_203 = lean_array_push(x_165, x_202); +x_204 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__11; +x_205 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_205, 0, x_204); +lean_ctor_set(x_205, 1, x_203); +x_206 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__9; +x_207 = lean_array_push(x_206, x_205); +x_208 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__7; +x_209 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_209, 0, x_208); +lean_ctor_set(x_209, 1, x_207); +x_210 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__28; +x_211 = lean_array_push(x_210, x_209); +x_212 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; +x_213 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_213, 0, x_212); +lean_ctor_set(x_213, 1, x_211); +x_214 = lean_array_push(x_156, x_213); +x_215 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; +x_216 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_216, 0, x_215); +lean_ctor_set(x_216, 1, x_214); +x_217 = lean_array_push(x_131, x_216); +x_218 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_219 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_219, 0, x_218); +lean_ctor_set(x_219, 1, x_217); +x_220 = lean_array_push(x_103, x_219); +x_221 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_221, 0, x_75); +lean_ctor_set(x_221, 1, x_220); +lean_ctor_set(x_49, 0, x_221); +return x_49; } } else { -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; 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; 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; 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_dec(x_18); +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; 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; 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; 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; lean_object* x_373; +lean_dec(x_21); lean_dec(x_1); -x_213 = lean_ctor_get(x_2, 2); -lean_inc(x_213); -x_214 = lean_ctor_get(x_2, 1); -lean_inc(x_214); +x_222 = lean_ctor_get(x_2, 2); +lean_inc(x_222); +x_223 = lean_ctor_get(x_2, 1); +lean_inc(x_223); lean_dec(x_2); -x_215 = l_Array_empty___closed__1; -x_216 = l_Array_append___rarg(x_215, x_6); +x_224 = l_Array_empty___closed__1; +x_225 = l_Array_append___rarg(x_224, x_6); lean_dec(x_6); -x_217 = l_Lean_nullKind___closed__2; -x_218 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_218, 0, x_217); -lean_ctor_set(x_218, 1, x_216); -x_219 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; -x_220 = lean_array_push(x_219, x_218); -x_221 = lean_array_push(x_215, x_53); -x_222 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__2; -lean_inc(x_221); -x_223 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_223, 0, x_222); -lean_ctor_set(x_223, 1, x_221); -x_224 = l_Lean_Elab_Term_expandArrayLit___closed__10; -x_225 = lean_array_push(x_224, x_223); -x_226 = l_Lean_Elab_Term_expandArrayLit___closed__11; -x_227 = lean_array_push(x_225, x_226); -x_228 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_228, 0, x_217); -lean_ctor_set(x_228, 1, x_227); -x_229 = lean_array_push(x_220, x_228); -x_230 = l_Array_append___rarg(x_215, x_38); -lean_dec(x_38); -x_231 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_231, 0, x_217); -lean_ctor_set(x_231, 1, x_230); -x_232 = lean_array_push(x_229, x_231); -x_233 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__21; -x_234 = lean_array_push(x_232, x_233); -x_235 = lean_array_push(x_234, x_13); -x_236 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; -x_237 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_237, 0, x_236); -lean_ctor_set(x_237, 1, x_235); -x_238 = lean_array_push(x_215, x_237); -x_239 = l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__7; -lean_inc(x_213); -lean_inc(x_214); -x_240 = l_Lean_addMacroScope(x_214, x_239, x_213); -x_241 = lean_box(0); -x_242 = l_Lean_Init_LeanInit___instance__8___closed__1; -x_243 = l_Lean_Elab_Command_expandElab___closed__24; -x_244 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_244, 0, x_242); +x_226 = l_Lean_nullKind___closed__2; +x_227 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_227, 0, x_226); +lean_ctor_set(x_227, 1, x_225); +x_228 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; +x_229 = lean_array_push(x_228, x_227); +x_230 = lean_array_push(x_224, x_56); +x_231 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_528____closed__9; +lean_inc(x_230); +x_232 = lean_array_push(x_230, x_231); +x_233 = l_Nat_repr(x_9); +x_234 = l_Lean_numLitKind; +x_235 = l_Lean_Init_LeanInit___instance__8___closed__1; +x_236 = l_Lean_mkStxLit(x_234, x_233, x_235); +x_237 = lean_array_push(x_232, x_236); +x_238 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; +x_239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_239, 0, x_238); +lean_ctor_set(x_239, 1, x_237); +x_240 = l_Lean_Elab_Term_expandArrayLit___closed__10; +x_241 = lean_array_push(x_240, x_239); +x_242 = l_Lean_Elab_Term_expandArrayLit___closed__11; +x_243 = lean_array_push(x_241, x_242); +x_244 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_244, 0, x_226); lean_ctor_set(x_244, 1, x_243); -lean_ctor_set(x_244, 2, x_240); -lean_ctor_set(x_244, 3, x_241); -x_245 = lean_array_push(x_215, x_244); -x_246 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_246, 0, x_217); -lean_ctor_set(x_246, 1, x_221); -x_247 = lean_array_push(x_245, x_246); -x_248 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; -x_249 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_249, 0, x_248); -lean_ctor_set(x_249, 1, x_247); -x_250 = lean_array_push(x_215, x_249); -x_251 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_251, 0, x_217); -lean_ctor_set(x_251, 1, x_250); -x_252 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; -x_253 = lean_array_push(x_252, x_251); -x_254 = lean_array_push(x_253, x_226); -x_255 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; -x_256 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_256, 0, x_255); -lean_ctor_set(x_256, 1, x_254); -x_257 = lean_array_push(x_215, x_256); -x_258 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_258, 0, x_217); -lean_ctor_set(x_258, 1, x_257); -x_259 = l_Lean_Elab_Tactic_evalIntro___closed__5; -x_260 = lean_array_push(x_259, x_258); -x_261 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__13; +x_245 = lean_array_push(x_229, x_244); +x_246 = l_Array_append___rarg(x_224, x_41); +lean_dec(x_41); +x_247 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_247, 0, x_226); +lean_ctor_set(x_247, 1, x_246); +x_248 = lean_array_push(x_245, x_247); +x_249 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__21; +x_250 = lean_array_push(x_248, x_249); +x_251 = lean_array_push(x_250, x_16); +x_252 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; +x_253 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_253, 0, x_252); +lean_ctor_set(x_253, 1, x_251); +x_254 = lean_array_push(x_224, x_253); +x_255 = l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__7; +lean_inc(x_222); +lean_inc(x_223); +x_256 = l_Lean_addMacroScope(x_223, x_255, x_222); +x_257 = lean_box(0); +x_258 = l_Lean_Elab_Command_expandElab___closed__24; +x_259 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_259, 0, x_235); +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_224, x_259); +x_261 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_261, 0, x_226); +lean_ctor_set(x_261, 1, x_230); x_262 = lean_array_push(x_260, x_261); -x_263 = lean_array_push(x_262, x_261); -x_264 = lean_array_push(x_263, x_261); -x_265 = lean_array_push(x_264, x_261); -x_266 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; -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_215, x_267); -x_269 = l_Lean_Elab_Command_expandElab___closed__7; -lean_inc(x_213); -lean_inc(x_214); -x_270 = l_Lean_addMacroScope(x_214, x_269, x_213); -x_271 = l_Lean_Elab_Command_expandElab___closed__6; -x_272 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_272, 0, x_242); -lean_ctor_set(x_272, 1, x_271); -lean_ctor_set(x_272, 2, x_270); -lean_ctor_set(x_272, 3, x_241); -x_273 = lean_array_push(x_215, x_272); -x_274 = lean_array_push(x_273, x_261); -x_275 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; -x_276 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_276, 0, x_275); -lean_ctor_set(x_276, 1, x_274); -x_277 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; +x_263 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; +x_264 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_264, 0, x_263); +lean_ctor_set(x_264, 1, x_262); +x_265 = lean_array_push(x_224, x_264); +x_266 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_266, 0, x_226); +lean_ctor_set(x_266, 1, x_265); +x_267 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; +x_268 = lean_array_push(x_267, x_266); +x_269 = lean_array_push(x_268, x_242); +x_270 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; +x_271 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_271, 0, x_270); +lean_ctor_set(x_271, 1, x_269); +x_272 = lean_array_push(x_224, x_271); +x_273 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_273, 0, x_226); +lean_ctor_set(x_273, 1, x_272); +x_274 = l_Lean_Elab_Tactic_evalIntro___closed__5; +x_275 = lean_array_push(x_274, x_273); +x_276 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__13; +x_277 = lean_array_push(x_275, x_276); x_278 = lean_array_push(x_277, x_276); -x_279 = l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__9; -lean_inc(x_213); -lean_inc(x_214); -x_280 = l_Lean_addMacroScope(x_214, x_279, x_213); -x_281 = l_Lean_Elab_Command_expandElab___closed__27; -x_282 = l_Lean_Elab_Command_expandElab___closed__29; -x_283 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_283, 0, x_242); -lean_ctor_set(x_283, 1, x_281); -lean_ctor_set(x_283, 2, x_280); -lean_ctor_set(x_283, 3, x_282); -x_284 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__22; -x_285 = lean_array_push(x_284, x_283); -x_286 = l_Lean_Elab_Term_elabLetDeclCore___closed__6; -x_287 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_287, 0, x_286); -lean_ctor_set(x_287, 1, x_285); -x_288 = lean_array_push(x_215, x_287); -x_289 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_289, 0, x_217); -lean_ctor_set(x_289, 1, x_288); -x_290 = lean_array_push(x_259, x_289); -x_291 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; -x_292 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_292, 0, x_291); -lean_ctor_set(x_292, 1, x_290); -x_293 = lean_array_push(x_278, x_292); -x_294 = l_Lean_Parser_categoryParserFnImpl___closed__4; -lean_inc(x_213); -lean_inc(x_214); -x_295 = l_Lean_addMacroScope(x_214, x_294, x_213); -x_296 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_297 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_297, 0, x_242); -lean_ctor_set(x_297, 1, x_296); -lean_ctor_set(x_297, 2, x_295); -lean_ctor_set(x_297, 3, x_241); -lean_inc(x_297); -x_298 = lean_array_push(x_215, x_297); -x_299 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_299, 0, x_217); -lean_ctor_set(x_299, 1, x_298); -x_300 = lean_array_push(x_215, x_299); -x_301 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__19; -x_302 = lean_array_push(x_300, x_301); -x_303 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; -x_304 = lean_array_push(x_303, x_297); -x_305 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_306 = lean_array_push(x_304, x_305); -x_307 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; -x_308 = lean_array_push(x_307, x_52); -x_309 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__15; -x_310 = lean_array_push(x_308, x_309); -x_311 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_312 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_312, 0, x_311); -lean_ctor_set(x_312, 1, x_310); -x_313 = lean_array_push(x_215, x_312); +x_279 = lean_array_push(x_278, x_276); +x_280 = lean_array_push(x_279, x_276); +x_281 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; +x_282 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_282, 0, x_281); +lean_ctor_set(x_282, 1, x_280); +x_283 = lean_array_push(x_224, x_282); +x_284 = l_Lean_Elab_Command_expandElab___closed__7; +lean_inc(x_222); +lean_inc(x_223); +x_285 = l_Lean_addMacroScope(x_223, x_284, x_222); +x_286 = l_Lean_Elab_Command_expandElab___closed__6; +x_287 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_287, 0, x_235); +lean_ctor_set(x_287, 1, x_286); +lean_ctor_set(x_287, 2, x_285); +lean_ctor_set(x_287, 3, x_257); +x_288 = lean_array_push(x_224, x_287); +x_289 = lean_array_push(x_288, x_276); +x_290 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; +x_291 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_291, 0, x_290); +lean_ctor_set(x_291, 1, x_289); +x_292 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; +x_293 = lean_array_push(x_292, x_291); +x_294 = l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__9; +lean_inc(x_222); +lean_inc(x_223); +x_295 = l_Lean_addMacroScope(x_223, x_294, x_222); +x_296 = l_Lean_Elab_Command_expandElab___closed__27; +x_297 = l_Lean_Elab_Command_expandElab___closed__29; +x_298 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_298, 0, x_235); +lean_ctor_set(x_298, 1, x_296); +lean_ctor_set(x_298, 2, x_295); +lean_ctor_set(x_298, 3, x_297); +x_299 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__22; +x_300 = lean_array_push(x_299, x_298); +x_301 = l_Lean_Elab_Term_elabLetDeclCore___closed__6; +x_302 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_302, 0, x_301); +lean_ctor_set(x_302, 1, x_300); +x_303 = lean_array_push(x_224, x_302); +x_304 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_304, 0, x_226); +lean_ctor_set(x_304, 1, x_303); +x_305 = lean_array_push(x_274, x_304); +x_306 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; +x_307 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_307, 0, x_306); +lean_ctor_set(x_307, 1, x_305); +x_308 = lean_array_push(x_293, x_307); +x_309 = l_Lean_Parser_categoryParserFnImpl___closed__4; +lean_inc(x_222); +lean_inc(x_223); +x_310 = l_Lean_addMacroScope(x_223, x_309, x_222); +x_311 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_312 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_312, 0, x_235); +lean_ctor_set(x_312, 1, x_311); +lean_ctor_set(x_312, 2, x_310); +lean_ctor_set(x_312, 3, x_257); +lean_inc(x_312); +x_313 = lean_array_push(x_224, x_312); x_314 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_314, 0, x_217); +lean_ctor_set(x_314, 0, x_226); lean_ctor_set(x_314, 1, x_313); -x_315 = lean_array_push(x_215, x_314); -x_316 = lean_array_push(x_315, x_301); -x_317 = lean_array_push(x_316, x_17); -x_318 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_319 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_319, 0, x_318); -lean_ctor_set(x_319, 1, x_317); -x_320 = lean_array_push(x_215, x_319); -x_321 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_322 = lean_array_push(x_320, x_321); -x_323 = l_Lean_Elab_Command_expandElab___closed__19; -x_324 = l_Lean_addMacroScope(x_214, x_323, x_213); -x_325 = l_Lean_Elab_Command_expandElab___closed__18; -x_326 = l_Lean_Elab_Command_expandElab___closed__22; -x_327 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_327, 0, x_242); +x_315 = lean_array_push(x_224, x_314); +x_316 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__19; +x_317 = lean_array_push(x_315, x_316); +x_318 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; +x_319 = lean_array_push(x_318, x_312); +x_320 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_321 = lean_array_push(x_319, x_320); +x_322 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; +x_323 = lean_array_push(x_322, x_55); +x_324 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__15; +x_325 = lean_array_push(x_323, x_324); +x_326 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_327 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_327, 0, x_326); lean_ctor_set(x_327, 1, x_325); -lean_ctor_set(x_327, 2, x_324); -lean_ctor_set(x_327, 3, x_326); -x_328 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; -x_329 = lean_array_push(x_328, x_327); -x_330 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_330, 0, x_318); -lean_ctor_set(x_330, 1, x_329); -x_331 = lean_array_push(x_322, x_330); -x_332 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_332, 0, x_217); -lean_ctor_set(x_332, 1, x_331); -x_333 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_334 = lean_array_push(x_333, x_332); -x_335 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_336 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_336, 0, x_335); -lean_ctor_set(x_336, 1, x_334); -x_337 = lean_array_push(x_306, x_336); -x_338 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_339 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_339, 0, x_338); -lean_ctor_set(x_339, 1, x_337); -x_340 = lean_array_push(x_302, x_339); -x_341 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__11; -x_342 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_342, 0, x_341); +x_328 = lean_array_push(x_224, x_327); +x_329 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_329, 0, x_226); +lean_ctor_set(x_329, 1, x_328); +x_330 = lean_array_push(x_224, x_329); +x_331 = lean_array_push(x_330, x_316); +x_332 = lean_array_push(x_331, x_20); +x_333 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; +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_224, x_334); +x_336 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_337 = lean_array_push(x_335, x_336); +x_338 = l_Lean_Elab_Command_expandElab___closed__19; +x_339 = l_Lean_addMacroScope(x_223, x_338, x_222); +x_340 = l_Lean_Elab_Command_expandElab___closed__18; +x_341 = l_Lean_Elab_Command_expandElab___closed__22; +x_342 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_342, 0, x_235); lean_ctor_set(x_342, 1, x_340); -x_343 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__9; +lean_ctor_set(x_342, 2, x_339); +lean_ctor_set(x_342, 3, x_341); +x_343 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; x_344 = lean_array_push(x_343, x_342); -x_345 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__7; -x_346 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_346, 0, x_345); -lean_ctor_set(x_346, 1, x_344); -x_347 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__28; -x_348 = lean_array_push(x_347, x_346); -x_349 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; -x_350 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_350, 0, x_349); -lean_ctor_set(x_350, 1, x_348); -x_351 = lean_array_push(x_293, x_350); -x_352 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; -x_353 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_353, 0, x_352); -lean_ctor_set(x_353, 1, x_351); -x_354 = lean_array_push(x_268, x_353); -x_355 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; -x_356 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_356, 0, x_355); -lean_ctor_set(x_356, 1, x_354); -x_357 = lean_array_push(x_238, x_356); -x_358 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_358, 0, x_217); -lean_ctor_set(x_358, 1, x_357); -lean_ctor_set(x_46, 0, x_358); -return x_46; +x_345 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_345, 0, x_333); +lean_ctor_set(x_345, 1, x_344); +x_346 = lean_array_push(x_337, x_345); +x_347 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_347, 0, x_226); +lean_ctor_set(x_347, 1, x_346); +x_348 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_349 = lean_array_push(x_348, x_347); +x_350 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_351 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_351, 0, x_350); +lean_ctor_set(x_351, 1, x_349); +x_352 = lean_array_push(x_321, x_351); +x_353 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_354 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_354, 0, x_353); +lean_ctor_set(x_354, 1, x_352); +x_355 = lean_array_push(x_317, x_354); +x_356 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__11; +x_357 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_357, 0, x_356); +lean_ctor_set(x_357, 1, x_355); +x_358 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__9; +x_359 = lean_array_push(x_358, x_357); +x_360 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__7; +x_361 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_361, 0, x_360); +lean_ctor_set(x_361, 1, x_359); +x_362 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__28; +x_363 = lean_array_push(x_362, x_361); +x_364 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; +x_365 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_365, 0, x_364); +lean_ctor_set(x_365, 1, x_363); +x_366 = lean_array_push(x_308, x_365); +x_367 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; +x_368 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_368, 0, x_367); +lean_ctor_set(x_368, 1, x_366); +x_369 = lean_array_push(x_283, x_368); +x_370 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_371 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_371, 0, x_370); +lean_ctor_set(x_371, 1, x_369); +x_372 = lean_array_push(x_254, x_371); +x_373 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_373, 0, x_226); +lean_ctor_set(x_373, 1, x_372); +lean_ctor_set(x_49, 0, x_373); +return x_49; } } else { -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; 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; 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; lean_object* x_439; lean_object* x_440; 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; 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_dec(x_18); +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; 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; lean_object* x_439; lean_object* x_440; 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; 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; 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_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_dec(x_21); lean_dec(x_1); -x_359 = lean_ctor_get(x_2, 2); -lean_inc(x_359); -x_360 = lean_ctor_get(x_2, 1); -lean_inc(x_360); +x_374 = lean_ctor_get(x_2, 2); +lean_inc(x_374); +x_375 = lean_ctor_get(x_2, 1); +lean_inc(x_375); lean_dec(x_2); -x_361 = l_Array_empty___closed__1; -x_362 = l_Array_append___rarg(x_361, x_6); +x_376 = l_Array_empty___closed__1; +x_377 = l_Array_append___rarg(x_376, x_6); lean_dec(x_6); -x_363 = l_Lean_nullKind___closed__2; -x_364 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_364, 0, x_363); -lean_ctor_set(x_364, 1, x_362); -x_365 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; -x_366 = lean_array_push(x_365, x_364); -x_367 = lean_array_push(x_361, x_53); -x_368 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__2; -lean_inc(x_367); -x_369 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_369, 0, x_368); -lean_ctor_set(x_369, 1, x_367); -x_370 = l_Lean_Elab_Term_expandArrayLit___closed__10; -x_371 = lean_array_push(x_370, x_369); -x_372 = l_Lean_Elab_Term_expandArrayLit___closed__11; -x_373 = lean_array_push(x_371, x_372); -x_374 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_374, 0, x_363); -lean_ctor_set(x_374, 1, x_373); -x_375 = lean_array_push(x_366, x_374); -x_376 = l_Array_append___rarg(x_361, x_38); -lean_dec(x_38); -x_377 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_377, 0, x_363); -lean_ctor_set(x_377, 1, x_376); -x_378 = lean_array_push(x_375, x_377); -x_379 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__21; -x_380 = lean_array_push(x_378, x_379); -x_381 = lean_array_push(x_380, x_13); -x_382 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; -x_383 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_383, 0, x_382); -lean_ctor_set(x_383, 1, x_381); -x_384 = lean_array_push(x_361, x_383); -x_385 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; -lean_inc(x_359); -lean_inc(x_360); -x_386 = l_Lean_addMacroScope(x_360, x_385, x_359); -x_387 = lean_box(0); -x_388 = l_Lean_Init_LeanInit___instance__8___closed__1; -x_389 = l_Lean_Elab_Command_expandElab___closed__31; -x_390 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_390, 0, x_388); -lean_ctor_set(x_390, 1, x_389); -lean_ctor_set(x_390, 2, x_386); -lean_ctor_set(x_390, 3, x_387); -x_391 = lean_array_push(x_361, x_390); -x_392 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_392, 0, x_363); -lean_ctor_set(x_392, 1, x_367); -x_393 = lean_array_push(x_391, x_392); -x_394 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; -x_395 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_395, 0, x_394); -lean_ctor_set(x_395, 1, x_393); -x_396 = lean_array_push(x_361, x_395); -x_397 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_397, 0, x_363); -lean_ctor_set(x_397, 1, x_396); -x_398 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; -x_399 = lean_array_push(x_398, x_397); -x_400 = lean_array_push(x_399, x_372); -x_401 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; -x_402 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_402, 0, x_401); -lean_ctor_set(x_402, 1, x_400); -x_403 = lean_array_push(x_361, x_402); -x_404 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_404, 0, x_363); -lean_ctor_set(x_404, 1, x_403); -x_405 = l_Lean_Elab_Tactic_evalIntro___closed__5; -x_406 = lean_array_push(x_405, x_404); -x_407 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__13; -x_408 = lean_array_push(x_406, x_407); -x_409 = lean_array_push(x_408, x_407); -x_410 = lean_array_push(x_409, x_407); -x_411 = lean_array_push(x_410, x_407); -x_412 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; +x_378 = l_Lean_nullKind___closed__2; +x_379 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_379, 0, x_378); +lean_ctor_set(x_379, 1, x_377); +x_380 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; +x_381 = lean_array_push(x_380, x_379); +x_382 = lean_array_push(x_376, x_56); +x_383 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_528____closed__9; +lean_inc(x_382); +x_384 = lean_array_push(x_382, x_383); +x_385 = l_Nat_repr(x_9); +x_386 = l_Lean_numLitKind; +x_387 = l_Lean_Init_LeanInit___instance__8___closed__1; +x_388 = l_Lean_mkStxLit(x_386, x_385, x_387); +x_389 = lean_array_push(x_384, x_388); +x_390 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; +x_391 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_391, 0, x_390); +lean_ctor_set(x_391, 1, x_389); +x_392 = l_Lean_Elab_Term_expandArrayLit___closed__10; +x_393 = lean_array_push(x_392, x_391); +x_394 = l_Lean_Elab_Term_expandArrayLit___closed__11; +x_395 = lean_array_push(x_393, x_394); +x_396 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_396, 0, x_378); +lean_ctor_set(x_396, 1, x_395); +x_397 = lean_array_push(x_381, x_396); +x_398 = l_Array_append___rarg(x_376, x_41); +lean_dec(x_41); +x_399 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_399, 0, x_378); +lean_ctor_set(x_399, 1, x_398); +x_400 = lean_array_push(x_397, x_399); +x_401 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__21; +x_402 = lean_array_push(x_400, x_401); +x_403 = lean_array_push(x_402, x_16); +x_404 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; +x_405 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_405, 0, x_404); +lean_ctor_set(x_405, 1, x_403); +x_406 = lean_array_push(x_376, x_405); +x_407 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; +lean_inc(x_374); +lean_inc(x_375); +x_408 = l_Lean_addMacroScope(x_375, x_407, x_374); +x_409 = lean_box(0); +x_410 = l_Lean_Elab_Command_expandElab___closed__31; +x_411 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_411, 0, x_387); +lean_ctor_set(x_411, 1, x_410); +lean_ctor_set(x_411, 2, x_408); +lean_ctor_set(x_411, 3, x_409); +x_412 = lean_array_push(x_376, x_411); x_413 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_413, 0, x_412); -lean_ctor_set(x_413, 1, x_411); -x_414 = lean_array_push(x_361, x_413); -x_415 = l_Lean_Elab_Command_expandElab___closed__7; -lean_inc(x_359); -lean_inc(x_360); -x_416 = l_Lean_addMacroScope(x_360, x_415, x_359); -x_417 = l_Lean_Elab_Command_expandElab___closed__6; -x_418 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_418, 0, x_388); +lean_ctor_set(x_413, 0, x_378); +lean_ctor_set(x_413, 1, x_382); +x_414 = lean_array_push(x_412, x_413); +x_415 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; +x_416 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_416, 0, x_415); +lean_ctor_set(x_416, 1, x_414); +x_417 = lean_array_push(x_376, x_416); +x_418 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_418, 0, x_378); lean_ctor_set(x_418, 1, x_417); -lean_ctor_set(x_418, 2, x_416); -lean_ctor_set(x_418, 3, x_387); -x_419 = lean_array_push(x_361, x_418); -x_420 = lean_array_push(x_419, x_407); -x_421 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; -x_422 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_422, 0, x_421); -lean_ctor_set(x_422, 1, x_420); -x_423 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; -x_424 = lean_array_push(x_423, x_422); -x_425 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; -lean_inc(x_359); -lean_inc(x_360); -x_426 = l_Lean_addMacroScope(x_360, x_425, x_359); -x_427 = l_Lean_Elab_Command_expandElab___closed__34; -x_428 = l_Lean_Elab_Command_expandElab___closed__36; -x_429 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_429, 0, x_388); -lean_ctor_set(x_429, 1, x_427); -lean_ctor_set(x_429, 2, x_426); -lean_ctor_set(x_429, 3, x_428); -x_430 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__22; -x_431 = lean_array_push(x_430, x_429); -x_432 = l_Lean_Elab_Term_elabLetDeclCore___closed__6; -x_433 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_433, 0, x_432); -lean_ctor_set(x_433, 1, x_431); -x_434 = lean_array_push(x_361, x_433); -x_435 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_435, 0, x_363); -lean_ctor_set(x_435, 1, x_434); -x_436 = lean_array_push(x_405, x_435); -x_437 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; -x_438 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_438, 0, x_437); -lean_ctor_set(x_438, 1, x_436); -x_439 = lean_array_push(x_424, x_438); -x_440 = l_Lean_Parser_categoryParserFnImpl___closed__4; -lean_inc(x_359); -lean_inc(x_360); -x_441 = l_Lean_addMacroScope(x_360, x_440, x_359); -x_442 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_443 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_443, 0, x_388); -lean_ctor_set(x_443, 1, x_442); -lean_ctor_set(x_443, 2, x_441); -lean_ctor_set(x_443, 3, x_387); -lean_inc(x_443); -x_444 = lean_array_push(x_361, x_443); -x_445 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__14; -x_446 = lean_array_push(x_444, x_445); -x_447 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_447, 0, x_363); -lean_ctor_set(x_447, 1, x_446); -x_448 = lean_array_push(x_361, x_447); -x_449 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__19; -x_450 = lean_array_push(x_448, x_449); -x_451 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; -x_452 = lean_array_push(x_451, x_443); -x_453 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_454 = lean_array_push(x_452, x_453); -x_455 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; -x_456 = lean_array_push(x_455, x_52); -x_457 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__15; -x_458 = lean_array_push(x_456, x_457); -x_459 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_460 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_460, 0, x_459); -lean_ctor_set(x_460, 1, x_458); -x_461 = lean_array_push(x_361, x_460); -x_462 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_462, 0, x_363); -lean_ctor_set(x_462, 1, x_461); -x_463 = lean_array_push(x_361, x_462); -x_464 = lean_array_push(x_463, x_449); -x_465 = lean_array_push(x_464, x_17); -x_466 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_467 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_467, 0, x_466); -lean_ctor_set(x_467, 1, x_465); -x_468 = lean_array_push(x_361, x_467); -x_469 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_470 = lean_array_push(x_468, x_469); -x_471 = l_Lean_Elab_Command_expandElab___closed__19; -x_472 = l_Lean_addMacroScope(x_360, x_471, x_359); -x_473 = l_Lean_Elab_Command_expandElab___closed__18; -x_474 = l_Lean_Elab_Command_expandElab___closed__22; -x_475 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_475, 0, x_388); -lean_ctor_set(x_475, 1, x_473); -lean_ctor_set(x_475, 2, x_472); -lean_ctor_set(x_475, 3, x_474); -x_476 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; -x_477 = lean_array_push(x_476, x_475); -x_478 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_478, 0, x_466); -lean_ctor_set(x_478, 1, x_477); -x_479 = lean_array_push(x_470, x_478); -x_480 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_480, 0, x_363); -lean_ctor_set(x_480, 1, x_479); -x_481 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_482 = lean_array_push(x_481, x_480); -x_483 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_484 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_484, 0, x_483); -lean_ctor_set(x_484, 1, x_482); -x_485 = lean_array_push(x_454, x_484); -x_486 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_487 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_487, 0, x_486); -lean_ctor_set(x_487, 1, x_485); -x_488 = lean_array_push(x_450, x_487); -x_489 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__11; -x_490 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_490, 0, x_489); -lean_ctor_set(x_490, 1, x_488); -x_491 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__9; -x_492 = lean_array_push(x_491, x_490); -x_493 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__7; -x_494 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_494, 0, x_493); -lean_ctor_set(x_494, 1, x_492); -x_495 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__28; -x_496 = lean_array_push(x_495, x_494); -x_497 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; -x_498 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_498, 0, x_497); -lean_ctor_set(x_498, 1, x_496); -x_499 = lean_array_push(x_439, x_498); -x_500 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; +x_419 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; +x_420 = lean_array_push(x_419, x_418); +x_421 = lean_array_push(x_420, x_394); +x_422 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; +x_423 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_423, 0, x_422); +lean_ctor_set(x_423, 1, x_421); +x_424 = lean_array_push(x_376, x_423); +x_425 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_425, 0, x_378); +lean_ctor_set(x_425, 1, x_424); +x_426 = l_Lean_Elab_Tactic_evalIntro___closed__5; +x_427 = lean_array_push(x_426, x_425); +x_428 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__13; +x_429 = lean_array_push(x_427, x_428); +x_430 = lean_array_push(x_429, x_428); +x_431 = lean_array_push(x_430, x_428); +x_432 = lean_array_push(x_431, x_428); +x_433 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; +x_434 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_434, 0, x_433); +lean_ctor_set(x_434, 1, x_432); +x_435 = lean_array_push(x_376, x_434); +x_436 = l_Lean_Elab_Command_expandElab___closed__7; +lean_inc(x_374); +lean_inc(x_375); +x_437 = l_Lean_addMacroScope(x_375, x_436, x_374); +x_438 = l_Lean_Elab_Command_expandElab___closed__6; +x_439 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_439, 0, x_387); +lean_ctor_set(x_439, 1, x_438); +lean_ctor_set(x_439, 2, x_437); +lean_ctor_set(x_439, 3, x_409); +x_440 = lean_array_push(x_376, x_439); +x_441 = lean_array_push(x_440, x_428); +x_442 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; +x_443 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_443, 0, x_442); +lean_ctor_set(x_443, 1, x_441); +x_444 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; +x_445 = lean_array_push(x_444, x_443); +x_446 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; +lean_inc(x_374); +lean_inc(x_375); +x_447 = l_Lean_addMacroScope(x_375, x_446, x_374); +x_448 = l_Lean_Elab_Command_expandElab___closed__34; +x_449 = l_Lean_Elab_Command_expandElab___closed__36; +x_450 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_450, 0, x_387); +lean_ctor_set(x_450, 1, x_448); +lean_ctor_set(x_450, 2, x_447); +lean_ctor_set(x_450, 3, x_449); +x_451 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__22; +x_452 = lean_array_push(x_451, x_450); +x_453 = l_Lean_Elab_Term_elabLetDeclCore___closed__6; +x_454 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_454, 0, x_453); +lean_ctor_set(x_454, 1, x_452); +x_455 = lean_array_push(x_376, x_454); +x_456 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_456, 0, x_378); +lean_ctor_set(x_456, 1, x_455); +x_457 = lean_array_push(x_426, x_456); +x_458 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; +x_459 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_459, 0, x_458); +lean_ctor_set(x_459, 1, x_457); +x_460 = lean_array_push(x_445, x_459); +x_461 = l_Lean_Parser_categoryParserFnImpl___closed__4; +lean_inc(x_374); +lean_inc(x_375); +x_462 = l_Lean_addMacroScope(x_375, x_461, x_374); +x_463 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_464 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_464, 0, x_387); +lean_ctor_set(x_464, 1, x_463); +lean_ctor_set(x_464, 2, x_462); +lean_ctor_set(x_464, 3, x_409); +lean_inc(x_464); +x_465 = lean_array_push(x_376, x_464); +x_466 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__14; +x_467 = lean_array_push(x_465, x_466); +x_468 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_468, 0, x_378); +lean_ctor_set(x_468, 1, x_467); +x_469 = lean_array_push(x_376, x_468); +x_470 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__19; +x_471 = lean_array_push(x_469, x_470); +x_472 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; +x_473 = lean_array_push(x_472, x_464); +x_474 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_475 = lean_array_push(x_473, x_474); +x_476 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; +x_477 = lean_array_push(x_476, x_55); +x_478 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__15; +x_479 = lean_array_push(x_477, x_478); +x_480 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_481 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_481, 0, x_480); +lean_ctor_set(x_481, 1, x_479); +x_482 = lean_array_push(x_376, x_481); +x_483 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_483, 0, x_378); +lean_ctor_set(x_483, 1, x_482); +x_484 = lean_array_push(x_376, x_483); +x_485 = lean_array_push(x_484, x_470); +x_486 = lean_array_push(x_485, x_20); +x_487 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; +x_488 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_488, 0, x_487); +lean_ctor_set(x_488, 1, x_486); +x_489 = lean_array_push(x_376, x_488); +x_490 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_491 = lean_array_push(x_489, x_490); +x_492 = l_Lean_Elab_Command_expandElab___closed__19; +x_493 = l_Lean_addMacroScope(x_375, x_492, x_374); +x_494 = l_Lean_Elab_Command_expandElab___closed__18; +x_495 = l_Lean_Elab_Command_expandElab___closed__22; +x_496 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_496, 0, x_387); +lean_ctor_set(x_496, 1, x_494); +lean_ctor_set(x_496, 2, x_493); +lean_ctor_set(x_496, 3, x_495); +x_497 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; +x_498 = lean_array_push(x_497, x_496); +x_499 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_499, 0, x_487); +lean_ctor_set(x_499, 1, x_498); +x_500 = lean_array_push(x_491, x_499); x_501 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_501, 0, x_500); -lean_ctor_set(x_501, 1, x_499); -x_502 = lean_array_push(x_414, x_501); -x_503 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; -x_504 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_504, 0, x_503); -lean_ctor_set(x_504, 1, x_502); -x_505 = lean_array_push(x_384, x_504); -x_506 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_506, 0, x_363); -lean_ctor_set(x_506, 1, x_505); -lean_ctor_set(x_46, 0, x_506); -return x_46; -} -} -else -{ -lean_object* x_507; uint8_t x_508; -lean_dec(x_1); -x_507 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__17; -x_508 = lean_name_eq(x_18, x_507); -if (x_508 == 0) -{ -lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; -lean_dec(x_53); -lean_dec(x_52); -lean_free_object(x_46); -lean_dec(x_38); -lean_dec(x_17); -lean_dec(x_13); -lean_dec(x_6); -x_509 = l_System_FilePath_dirName___closed__1; -x_510 = l_Lean_Name_toStringWithSep(x_509, x_18); -x_511 = l_Lean_Elab_Command_expandElab___closed__37; -x_512 = lean_string_append(x_511, x_510); -lean_dec(x_510); -x_513 = l_Lean_Elab_Command_expandElab___closed__38; -x_514 = lean_string_append(x_512, x_513); -x_515 = l_Lean_Macro_throwError___rarg(x_15, x_514, x_2, x_49); -lean_dec(x_2); -return x_515; -} -else -{ -lean_object* x_516; 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; 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; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; 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; lean_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; lean_object* x_682; lean_object* x_683; lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; -lean_dec(x_18); -x_516 = l_Lean_Syntax_getArg(x_15, x_4); -lean_dec(x_15); -x_517 = lean_ctor_get(x_2, 2); -lean_inc(x_517); -x_518 = lean_ctor_get(x_2, 1); -lean_inc(x_518); -lean_dec(x_2); -x_519 = l_Array_empty___closed__1; -x_520 = l_Array_append___rarg(x_519, x_6); -lean_dec(x_6); -x_521 = l_Lean_nullKind___closed__2; +lean_ctor_set(x_501, 0, x_378); +lean_ctor_set(x_501, 1, x_500); +x_502 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_503 = lean_array_push(x_502, x_501); +x_504 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_505 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_505, 0, x_504); +lean_ctor_set(x_505, 1, x_503); +x_506 = lean_array_push(x_475, x_505); +x_507 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_508 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_508, 0, x_507); +lean_ctor_set(x_508, 1, x_506); +x_509 = lean_array_push(x_471, x_508); +x_510 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__11; +x_511 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_511, 0, x_510); +lean_ctor_set(x_511, 1, x_509); +x_512 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__9; +x_513 = lean_array_push(x_512, x_511); +x_514 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__7; +x_515 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_515, 0, x_514); +lean_ctor_set(x_515, 1, x_513); +x_516 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__28; +x_517 = lean_array_push(x_516, x_515); +x_518 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; +x_519 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_519, 0, x_518); +lean_ctor_set(x_519, 1, x_517); +x_520 = lean_array_push(x_460, x_519); +x_521 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; x_522 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_522, 0, x_521); lean_ctor_set(x_522, 1, x_520); -x_523 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; -x_524 = lean_array_push(x_523, x_522); -x_525 = lean_array_push(x_519, x_53); -x_526 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__2; -lean_inc(x_525); +x_523 = lean_array_push(x_435, x_522); +x_524 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_525 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_525, 0, x_524); +lean_ctor_set(x_525, 1, x_523); +x_526 = lean_array_push(x_406, x_525); x_527 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_527, 0, x_526); -lean_ctor_set(x_527, 1, x_525); -x_528 = l_Lean_Elab_Term_expandArrayLit___closed__10; -x_529 = lean_array_push(x_528, x_527); -x_530 = l_Lean_Elab_Term_expandArrayLit___closed__11; -x_531 = lean_array_push(x_529, x_530); -x_532 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_532, 0, x_521); -lean_ctor_set(x_532, 1, x_531); -x_533 = lean_array_push(x_524, x_532); -x_534 = l_Array_append___rarg(x_519, x_38); -lean_dec(x_38); -x_535 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_535, 0, x_521); -lean_ctor_set(x_535, 1, x_534); -x_536 = lean_array_push(x_533, x_535); -x_537 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__21; -x_538 = lean_array_push(x_536, x_537); -x_539 = lean_array_push(x_538, x_13); -x_540 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; -x_541 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_541, 0, x_540); -lean_ctor_set(x_541, 1, x_539); -x_542 = lean_array_push(x_519, x_541); -x_543 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; -lean_inc(x_517); -lean_inc(x_518); -x_544 = l_Lean_addMacroScope(x_518, x_543, x_517); -x_545 = lean_box(0); -x_546 = l_Lean_Init_LeanInit___instance__8___closed__1; -x_547 = l_Lean_Elab_Command_expandElab___closed__31; -x_548 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_548, 0, x_546); -lean_ctor_set(x_548, 1, x_547); -lean_ctor_set(x_548, 2, x_544); -lean_ctor_set(x_548, 3, x_545); -x_549 = lean_array_push(x_519, x_548); -x_550 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_550, 0, x_521); -lean_ctor_set(x_550, 1, x_525); -x_551 = lean_array_push(x_549, x_550); -x_552 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; -x_553 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_553, 0, x_552); -lean_ctor_set(x_553, 1, x_551); -x_554 = lean_array_push(x_519, x_553); +lean_ctor_set(x_527, 0, x_378); +lean_ctor_set(x_527, 1, x_526); +lean_ctor_set(x_49, 0, x_527); +return x_49; +} +} +else +{ +lean_object* x_528; uint8_t x_529; +lean_dec(x_1); +x_528 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__17; +x_529 = lean_name_eq(x_21, x_528); +if (x_529 == 0) +{ +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_dec(x_56); +lean_dec(x_55); +lean_free_object(x_49); +lean_dec(x_41); +lean_dec(x_20); +lean_dec(x_16); +lean_dec(x_9); +lean_dec(x_6); +x_530 = l_System_FilePath_dirName___closed__1; +x_531 = l_Lean_Name_toStringWithSep(x_530, x_21); +x_532 = l_Lean_Elab_Command_expandElab___closed__37; +x_533 = lean_string_append(x_532, x_531); +lean_dec(x_531); +x_534 = l_Lean_Elab_Command_expandElab___closed__38; +x_535 = lean_string_append(x_533, x_534); +x_536 = l_Lean_Macro_throwError___rarg(x_18, x_535, x_2, x_52); +lean_dec(x_2); +return x_536; +} +else +{ +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; 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; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; 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; lean_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; lean_object* x_682; lean_object* x_683; lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; 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_dec(x_21); +x_537 = l_Lean_Syntax_getArg(x_18, x_4); +lean_dec(x_18); +x_538 = lean_ctor_get(x_2, 2); +lean_inc(x_538); +x_539 = lean_ctor_get(x_2, 1); +lean_inc(x_539); +lean_dec(x_2); +x_540 = l_Array_empty___closed__1; +x_541 = l_Array_append___rarg(x_540, x_6); +lean_dec(x_6); +x_542 = l_Lean_nullKind___closed__2; +x_543 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_543, 0, x_542); +lean_ctor_set(x_543, 1, x_541); +x_544 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; +x_545 = lean_array_push(x_544, x_543); +x_546 = lean_array_push(x_540, x_56); +x_547 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_528____closed__9; +lean_inc(x_546); +x_548 = lean_array_push(x_546, x_547); +x_549 = l_Nat_repr(x_9); +x_550 = l_Lean_numLitKind; +x_551 = l_Lean_Init_LeanInit___instance__8___closed__1; +x_552 = l_Lean_mkStxLit(x_550, x_549, x_551); +x_553 = lean_array_push(x_548, x_552); +x_554 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; x_555 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_555, 0, x_521); -lean_ctor_set(x_555, 1, x_554); -x_556 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; +lean_ctor_set(x_555, 0, x_554); +lean_ctor_set(x_555, 1, x_553); +x_556 = l_Lean_Elab_Term_expandArrayLit___closed__10; x_557 = lean_array_push(x_556, x_555); -x_558 = lean_array_push(x_557, x_530); -x_559 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; +x_558 = l_Lean_Elab_Term_expandArrayLit___closed__11; +x_559 = lean_array_push(x_557, x_558); x_560 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_560, 0, x_559); -lean_ctor_set(x_560, 1, x_558); -x_561 = lean_array_push(x_519, x_560); -x_562 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_562, 0, x_521); -lean_ctor_set(x_562, 1, x_561); -x_563 = l_Lean_Elab_Tactic_evalIntro___closed__5; -x_564 = lean_array_push(x_563, x_562); -x_565 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__13; +lean_ctor_set(x_560, 0, x_542); +lean_ctor_set(x_560, 1, x_559); +x_561 = lean_array_push(x_545, x_560); +x_562 = l_Array_append___rarg(x_540, x_41); +lean_dec(x_41); +x_563 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_563, 0, x_542); +lean_ctor_set(x_563, 1, x_562); +x_564 = lean_array_push(x_561, x_563); +x_565 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__21; x_566 = lean_array_push(x_564, x_565); -x_567 = lean_array_push(x_566, x_565); -x_568 = lean_array_push(x_567, x_565); -x_569 = lean_array_push(x_568, x_565); -x_570 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; -x_571 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_571, 0, x_570); -lean_ctor_set(x_571, 1, x_569); -x_572 = lean_array_push(x_519, x_571); -x_573 = l_Lean_Elab_Command_expandElab___closed__7; -lean_inc(x_517); -lean_inc(x_518); -x_574 = l_Lean_addMacroScope(x_518, x_573, x_517); -x_575 = l_Lean_Elab_Command_expandElab___closed__6; -x_576 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_576, 0, x_546); -lean_ctor_set(x_576, 1, x_575); -lean_ctor_set(x_576, 2, x_574); -lean_ctor_set(x_576, 3, x_545); -x_577 = lean_array_push(x_519, x_576); -x_578 = lean_array_push(x_577, x_565); -x_579 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; +x_567 = lean_array_push(x_566, x_16); +x_568 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; +x_569 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_569, 0, x_568); +lean_ctor_set(x_569, 1, x_567); +x_570 = lean_array_push(x_540, x_569); +x_571 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; +lean_inc(x_538); +lean_inc(x_539); +x_572 = l_Lean_addMacroScope(x_539, x_571, x_538); +x_573 = lean_box(0); +x_574 = l_Lean_Elab_Command_expandElab___closed__31; +x_575 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_575, 0, x_551); +lean_ctor_set(x_575, 1, x_574); +lean_ctor_set(x_575, 2, x_572); +lean_ctor_set(x_575, 3, x_573); +x_576 = lean_array_push(x_540, x_575); +x_577 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_577, 0, x_542); +lean_ctor_set(x_577, 1, x_546); +x_578 = lean_array_push(x_576, x_577); +x_579 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; x_580 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_580, 0, x_579); lean_ctor_set(x_580, 1, x_578); -x_581 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; -x_582 = lean_array_push(x_581, x_580); -x_583 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; -lean_inc(x_517); -lean_inc(x_518); -x_584 = l_Lean_addMacroScope(x_518, x_583, x_517); -x_585 = l_Lean_Elab_Command_expandElab___closed__34; -x_586 = l_Lean_Elab_Command_expandElab___closed__36; -x_587 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_587, 0, x_546); +x_581 = lean_array_push(x_540, x_580); +x_582 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_582, 0, x_542); +lean_ctor_set(x_582, 1, x_581); +x_583 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; +x_584 = lean_array_push(x_583, x_582); +x_585 = lean_array_push(x_584, x_558); +x_586 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; +x_587 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_587, 0, x_586); lean_ctor_set(x_587, 1, x_585); -lean_ctor_set(x_587, 2, x_584); -lean_ctor_set(x_587, 3, x_586); -x_588 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__22; -x_589 = lean_array_push(x_588, x_587); -x_590 = l_Lean_Elab_Term_elabLetDeclCore___closed__6; -x_591 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_591, 0, x_590); -lean_ctor_set(x_591, 1, x_589); -x_592 = lean_array_push(x_519, x_591); -x_593 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_593, 0, x_521); -lean_ctor_set(x_593, 1, x_592); -x_594 = lean_array_push(x_563, x_593); -x_595 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; -x_596 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_596, 0, x_595); -lean_ctor_set(x_596, 1, x_594); -x_597 = lean_array_push(x_582, x_596); -x_598 = l_Lean_Parser_categoryParserFnImpl___closed__4; -lean_inc(x_517); -lean_inc(x_518); -x_599 = l_Lean_addMacroScope(x_518, x_598, x_517); -x_600 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_601 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_601, 0, x_546); -lean_ctor_set(x_601, 1, x_600); -lean_ctor_set(x_601, 2, x_599); -lean_ctor_set(x_601, 3, x_545); -lean_inc(x_601); -x_602 = lean_array_push(x_519, x_601); -x_603 = l_Lean_Elab_Command_expandElab___closed__42; -lean_inc(x_517); -lean_inc(x_518); -x_604 = l_Lean_addMacroScope(x_518, x_603, x_517); -x_605 = l_Lean_Elab_Command_expandElab___closed__41; -x_606 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_606, 0, x_546); -lean_ctor_set(x_606, 1, x_605); -lean_ctor_set(x_606, 2, x_604); -lean_ctor_set(x_606, 3, x_545); -lean_inc(x_606); -x_607 = lean_array_push(x_602, x_606); -x_608 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_608, 0, x_521); -lean_ctor_set(x_608, 1, x_607); -x_609 = lean_array_push(x_519, x_608); -x_610 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__19; -x_611 = lean_array_push(x_609, x_610); -x_612 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; -x_613 = lean_array_push(x_612, x_601); -x_614 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_615 = lean_array_push(x_613, x_614); -x_616 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; -x_617 = lean_array_push(x_616, x_52); -x_618 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__15; -x_619 = lean_array_push(x_617, x_618); -x_620 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_621 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_621, 0, x_620); -lean_ctor_set(x_621, 1, x_619); -x_622 = lean_array_push(x_519, x_621); +x_588 = lean_array_push(x_540, x_587); +x_589 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_589, 0, x_542); +lean_ctor_set(x_589, 1, x_588); +x_590 = l_Lean_Elab_Tactic_evalIntro___closed__5; +x_591 = lean_array_push(x_590, x_589); +x_592 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__13; +x_593 = lean_array_push(x_591, x_592); +x_594 = lean_array_push(x_593, x_592); +x_595 = lean_array_push(x_594, x_592); +x_596 = lean_array_push(x_595, x_592); +x_597 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; +x_598 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_598, 0, x_597); +lean_ctor_set(x_598, 1, x_596); +x_599 = lean_array_push(x_540, x_598); +x_600 = l_Lean_Elab_Command_expandElab___closed__7; +lean_inc(x_538); +lean_inc(x_539); +x_601 = l_Lean_addMacroScope(x_539, x_600, x_538); +x_602 = l_Lean_Elab_Command_expandElab___closed__6; +x_603 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_603, 0, x_551); +lean_ctor_set(x_603, 1, x_602); +lean_ctor_set(x_603, 2, x_601); +lean_ctor_set(x_603, 3, x_573); +x_604 = lean_array_push(x_540, x_603); +x_605 = lean_array_push(x_604, x_592); +x_606 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; +x_607 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_607, 0, x_606); +lean_ctor_set(x_607, 1, x_605); +x_608 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; +x_609 = lean_array_push(x_608, x_607); +x_610 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; +lean_inc(x_538); +lean_inc(x_539); +x_611 = l_Lean_addMacroScope(x_539, x_610, x_538); +x_612 = l_Lean_Elab_Command_expandElab___closed__34; +x_613 = l_Lean_Elab_Command_expandElab___closed__36; +x_614 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_614, 0, x_551); +lean_ctor_set(x_614, 1, x_612); +lean_ctor_set(x_614, 2, x_611); +lean_ctor_set(x_614, 3, x_613); +x_615 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__22; +x_616 = lean_array_push(x_615, x_614); +x_617 = l_Lean_Elab_Term_elabLetDeclCore___closed__6; +x_618 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_618, 0, x_617); +lean_ctor_set(x_618, 1, x_616); +x_619 = lean_array_push(x_540, x_618); +x_620 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_620, 0, x_542); +lean_ctor_set(x_620, 1, x_619); +x_621 = lean_array_push(x_590, x_620); +x_622 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; x_623 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_623, 0, x_521); -lean_ctor_set(x_623, 1, x_622); -x_624 = lean_array_push(x_519, x_623); -x_625 = lean_array_push(x_624, x_610); -x_626 = l_Lean_Elab_Command_expandElab___closed__47; -lean_inc(x_517); -lean_inc(x_518); -x_627 = l_Lean_addMacroScope(x_518, x_626, x_517); -x_628 = l_Lean_Elab_Command_expandElab___closed__45; -x_629 = l_Lean_Elab_Command_expandElab___closed__49; -x_630 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_630, 0, x_546); -lean_ctor_set(x_630, 1, x_628); -lean_ctor_set(x_630, 2, x_627); -lean_ctor_set(x_630, 3, x_629); -x_631 = lean_array_push(x_519, x_630); -x_632 = lean_array_push(x_519, x_606); -x_633 = lean_array_push(x_519, x_516); -x_634 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_634, 0, x_521); -lean_ctor_set(x_634, 1, x_633); -x_635 = lean_array_push(x_519, x_634); -x_636 = lean_array_push(x_635, x_610); -x_637 = lean_array_push(x_636, x_17); -x_638 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__11; -x_639 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_639, 0, x_638); -lean_ctor_set(x_639, 1, x_637); -x_640 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__9; -x_641 = lean_array_push(x_640, x_639); -x_642 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__7; -x_643 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_643, 0, x_642); -lean_ctor_set(x_643, 1, x_641); -x_644 = lean_array_push(x_632, x_643); -x_645 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_645, 0, x_521); -lean_ctor_set(x_645, 1, x_644); -x_646 = lean_array_push(x_631, x_645); -x_647 = l_Lean_mkAppStx___closed__8; +lean_ctor_set(x_623, 0, x_622); +lean_ctor_set(x_623, 1, x_621); +x_624 = lean_array_push(x_609, x_623); +x_625 = l_Lean_Parser_categoryParserFnImpl___closed__4; +lean_inc(x_538); +lean_inc(x_539); +x_626 = l_Lean_addMacroScope(x_539, x_625, x_538); +x_627 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_628 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_628, 0, x_551); +lean_ctor_set(x_628, 1, x_627); +lean_ctor_set(x_628, 2, x_626); +lean_ctor_set(x_628, 3, x_573); +lean_inc(x_628); +x_629 = lean_array_push(x_540, x_628); +x_630 = l_Lean_Elab_Command_expandElab___closed__42; +lean_inc(x_538); +lean_inc(x_539); +x_631 = l_Lean_addMacroScope(x_539, x_630, x_538); +x_632 = l_Lean_Elab_Command_expandElab___closed__41; +x_633 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_633, 0, x_551); +lean_ctor_set(x_633, 1, x_632); +lean_ctor_set(x_633, 2, x_631); +lean_ctor_set(x_633, 3, x_573); +lean_inc(x_633); +x_634 = lean_array_push(x_629, x_633); +x_635 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_635, 0, x_542); +lean_ctor_set(x_635, 1, x_634); +x_636 = lean_array_push(x_540, x_635); +x_637 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__19; +x_638 = lean_array_push(x_636, x_637); +x_639 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; +x_640 = lean_array_push(x_639, x_628); +x_641 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_642 = lean_array_push(x_640, x_641); +x_643 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; +x_644 = lean_array_push(x_643, x_55); +x_645 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__15; +x_646 = lean_array_push(x_644, x_645); +x_647 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; x_648 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_648, 0, x_647); lean_ctor_set(x_648, 1, x_646); -x_649 = lean_array_push(x_625, x_648); -x_650 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_651 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_651, 0, x_650); -lean_ctor_set(x_651, 1, x_649); -x_652 = lean_array_push(x_519, x_651); -x_653 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_654 = lean_array_push(x_652, x_653); -x_655 = l_Lean_Elab_Command_expandElab___closed__19; -x_656 = l_Lean_addMacroScope(x_518, x_655, x_517); -x_657 = l_Lean_Elab_Command_expandElab___closed__18; -x_658 = l_Lean_Elab_Command_expandElab___closed__22; -x_659 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_659, 0, x_546); -lean_ctor_set(x_659, 1, x_657); -lean_ctor_set(x_659, 2, x_656); -lean_ctor_set(x_659, 3, x_658); -x_660 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; -x_661 = lean_array_push(x_660, x_659); -x_662 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_662, 0, x_650); -lean_ctor_set(x_662, 1, x_661); -x_663 = lean_array_push(x_654, x_662); -x_664 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_664, 0, x_521); -lean_ctor_set(x_664, 1, x_663); -x_665 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_666 = lean_array_push(x_665, x_664); -x_667 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_668 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_668, 0, x_667); -lean_ctor_set(x_668, 1, x_666); -x_669 = lean_array_push(x_615, x_668); -x_670 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_671 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_671, 0, x_670); -lean_ctor_set(x_671, 1, x_669); -x_672 = lean_array_push(x_611, x_671); -x_673 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_673, 0, x_638); -lean_ctor_set(x_673, 1, x_672); -x_674 = lean_array_push(x_640, x_673); +x_649 = lean_array_push(x_540, x_648); +x_650 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_650, 0, x_542); +lean_ctor_set(x_650, 1, x_649); +x_651 = lean_array_push(x_540, x_650); +x_652 = lean_array_push(x_651, x_637); +x_653 = l_Lean_Elab_Command_expandElab___closed__47; +lean_inc(x_538); +lean_inc(x_539); +x_654 = l_Lean_addMacroScope(x_539, x_653, x_538); +x_655 = l_Lean_Elab_Command_expandElab___closed__45; +x_656 = l_Lean_Elab_Command_expandElab___closed__49; +x_657 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_657, 0, x_551); +lean_ctor_set(x_657, 1, x_655); +lean_ctor_set(x_657, 2, x_654); +lean_ctor_set(x_657, 3, x_656); +x_658 = lean_array_push(x_540, x_657); +x_659 = lean_array_push(x_540, x_633); +x_660 = lean_array_push(x_540, x_537); +x_661 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_661, 0, x_542); +lean_ctor_set(x_661, 1, x_660); +x_662 = lean_array_push(x_540, x_661); +x_663 = lean_array_push(x_662, x_637); +x_664 = lean_array_push(x_663, x_20); +x_665 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__11; +x_666 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_666, 0, x_665); +lean_ctor_set(x_666, 1, x_664); +x_667 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__9; +x_668 = lean_array_push(x_667, x_666); +x_669 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__7; +x_670 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_670, 0, x_669); +lean_ctor_set(x_670, 1, x_668); +x_671 = lean_array_push(x_659, x_670); +x_672 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_672, 0, x_542); +lean_ctor_set(x_672, 1, x_671); +x_673 = lean_array_push(x_658, x_672); +x_674 = l_Lean_mkAppStx___closed__8; x_675 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_675, 0, x_642); -lean_ctor_set(x_675, 1, x_674); -x_676 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__28; -x_677 = lean_array_push(x_676, x_675); -x_678 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; -x_679 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_679, 0, x_678); -lean_ctor_set(x_679, 1, x_677); -x_680 = lean_array_push(x_597, x_679); -x_681 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; -x_682 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_682, 0, x_681); -lean_ctor_set(x_682, 1, x_680); -x_683 = lean_array_push(x_572, x_682); -x_684 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; -x_685 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_685, 0, x_684); -lean_ctor_set(x_685, 1, x_683); -x_686 = lean_array_push(x_542, x_685); -x_687 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_687, 0, x_521); -lean_ctor_set(x_687, 1, x_686); -lean_ctor_set(x_46, 0, x_687); -return x_46; +lean_ctor_set(x_675, 0, x_674); +lean_ctor_set(x_675, 1, x_673); +x_676 = lean_array_push(x_652, x_675); +x_677 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; +x_678 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_678, 0, x_677); +lean_ctor_set(x_678, 1, x_676); +x_679 = lean_array_push(x_540, x_678); +x_680 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_681 = lean_array_push(x_679, x_680); +x_682 = l_Lean_Elab_Command_expandElab___closed__19; +x_683 = l_Lean_addMacroScope(x_539, x_682, x_538); +x_684 = l_Lean_Elab_Command_expandElab___closed__18; +x_685 = l_Lean_Elab_Command_expandElab___closed__22; +x_686 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_686, 0, x_551); +lean_ctor_set(x_686, 1, x_684); +lean_ctor_set(x_686, 2, x_683); +lean_ctor_set(x_686, 3, x_685); +x_687 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; +x_688 = lean_array_push(x_687, x_686); +x_689 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_689, 0, x_677); +lean_ctor_set(x_689, 1, x_688); +x_690 = lean_array_push(x_681, x_689); +x_691 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_691, 0, x_542); +lean_ctor_set(x_691, 1, x_690); +x_692 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_693 = lean_array_push(x_692, x_691); +x_694 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_695 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_695, 0, x_694); +lean_ctor_set(x_695, 1, x_693); +x_696 = lean_array_push(x_642, x_695); +x_697 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_698 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_698, 0, x_697); +lean_ctor_set(x_698, 1, x_696); +x_699 = lean_array_push(x_638, x_698); +x_700 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_700, 0, x_665); +lean_ctor_set(x_700, 1, x_699); +x_701 = lean_array_push(x_667, x_700); +x_702 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_702, 0, x_669); +lean_ctor_set(x_702, 1, x_701); +x_703 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__28; +x_704 = lean_array_push(x_703, x_702); +x_705 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; +x_706 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_706, 0, x_705); +lean_ctor_set(x_706, 1, x_704); +x_707 = lean_array_push(x_624, x_706); +x_708 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; +x_709 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_709, 0, x_708); +lean_ctor_set(x_709, 1, x_707); +x_710 = lean_array_push(x_599, x_709); +x_711 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_712 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_712, 0, x_711); +lean_ctor_set(x_712, 1, x_710); +x_713 = lean_array_push(x_570, x_712); +x_714 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_714, 0, x_542); +lean_ctor_set(x_714, 1, x_713); +lean_ctor_set(x_49, 0, x_714); +return x_49; } } } else { -lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; uint8_t x_694; -x_688 = lean_ctor_get(x_46, 0); -x_689 = lean_ctor_get(x_46, 1); -lean_inc(x_689); -lean_inc(x_688); -lean_dec(x_46); -x_690 = lean_array_push(x_36, x_40); -x_691 = l_Array_append___rarg(x_690, x_688); -lean_dec(x_688); -lean_inc(x_21); -x_692 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_692, 0, x_21); -lean_ctor_set(x_692, 1, x_691); -x_693 = l_Lean_mkIdentFrom(x_1, x_21); -x_694 = l_Lean_Syntax_hasArgs(x_15); -if (x_694 == 0) -{ -lean_object* x_695; uint8_t x_696; -lean_dec(x_15); -x_695 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__17; -x_696 = lean_name_eq(x_18, x_695); -if (x_696 == 0) -{ -lean_object* x_697; uint8_t x_698; -x_697 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3125____closed__4; -x_698 = lean_name_eq(x_18, x_697); -if (x_698 == 0) -{ -lean_object* x_699; uint8_t x_700; -x_699 = l_Lean_Elab_Tactic_mkTacticAttribute___closed__6; -x_700 = lean_name_eq(x_18, x_699); -if (x_700 == 0) -{ -lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; -lean_dec(x_693); -lean_dec(x_692); -lean_dec(x_38); -lean_dec(x_17); -lean_dec(x_13); -lean_dec(x_6); -x_701 = l_System_FilePath_dirName___closed__1; -x_702 = l_Lean_Name_toStringWithSep(x_701, x_18); -x_703 = l_Lean_Elab_Command_expandElab___closed__1; -x_704 = lean_string_append(x_703, x_702); -lean_dec(x_702); -x_705 = l_Init_Data_Repr___instance__15___closed__1; -x_706 = lean_string_append(x_704, x_705); -x_707 = l_Lean_Macro_throwError___rarg(x_1, x_706, x_2, x_689); -lean_dec(x_2); -return x_707; -} -else -{ -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; 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; lean_object* x_735; 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; 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; 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; lean_object* x_787; lean_object* x_788; lean_object* x_789; lean_object* x_790; 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; 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; 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; 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; 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; lean_object* x_852; lean_object* x_853; -lean_dec(x_18); -lean_dec(x_1); -x_708 = lean_ctor_get(x_2, 2); -lean_inc(x_708); -x_709 = lean_ctor_get(x_2, 1); -lean_inc(x_709); -lean_dec(x_2); -x_710 = l_Array_empty___closed__1; -x_711 = l_Array_append___rarg(x_710, x_6); -lean_dec(x_6); -x_712 = l_Lean_nullKind___closed__2; -x_713 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_713, 0, x_712); -lean_ctor_set(x_713, 1, x_711); -x_714 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; -x_715 = lean_array_push(x_714, x_713); -x_716 = lean_array_push(x_710, x_693); -x_717 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__2; +lean_object* x_715; lean_object* x_716; lean_object* x_717; lean_object* x_718; lean_object* x_719; lean_object* x_720; uint8_t x_721; +x_715 = lean_ctor_get(x_49, 0); +x_716 = lean_ctor_get(x_49, 1); lean_inc(x_716); -x_718 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_718, 0, x_717); -lean_ctor_set(x_718, 1, x_716); -x_719 = l_Lean_Elab_Term_expandArrayLit___closed__10; -x_720 = lean_array_push(x_719, x_718); -x_721 = l_Lean_Elab_Term_expandArrayLit___closed__11; -x_722 = lean_array_push(x_720, x_721); -x_723 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_723, 0, x_712); -lean_ctor_set(x_723, 1, x_722); -x_724 = lean_array_push(x_715, x_723); -x_725 = l_Array_append___rarg(x_710, x_38); -lean_dec(x_38); -x_726 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_726, 0, x_712); -lean_ctor_set(x_726, 1, x_725); -x_727 = lean_array_push(x_724, x_726); -x_728 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__21; -x_729 = lean_array_push(x_727, x_728); -x_730 = lean_array_push(x_729, x_13); -x_731 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; -x_732 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_732, 0, x_731); -lean_ctor_set(x_732, 1, x_730); -x_733 = lean_array_push(x_710, x_732); -lean_inc(x_708); -lean_inc(x_709); -x_734 = l_Lean_addMacroScope(x_709, x_699, x_708); -x_735 = lean_box(0); -x_736 = l_Lean_Init_LeanInit___instance__8___closed__1; -x_737 = l_Lean_Elab_Command_expandElab___closed__3; -x_738 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_738, 0, x_736); -lean_ctor_set(x_738, 1, x_737); -lean_ctor_set(x_738, 2, x_734); -lean_ctor_set(x_738, 3, x_735); -x_739 = lean_array_push(x_710, x_738); +lean_inc(x_715); +lean_dec(x_49); +x_717 = lean_array_push(x_39, x_43); +x_718 = l_Array_append___rarg(x_717, x_715); +lean_dec(x_715); +lean_inc(x_24); +x_719 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_719, 0, x_24); +lean_ctor_set(x_719, 1, x_718); +x_720 = l_Lean_mkIdentFrom(x_1, x_24); +x_721 = l_Lean_Syntax_hasArgs(x_18); +if (x_721 == 0) +{ +lean_object* x_722; uint8_t x_723; +lean_dec(x_18); +x_722 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__17; +x_723 = lean_name_eq(x_21, x_722); +if (x_723 == 0) +{ +lean_object* x_724; uint8_t x_725; +x_724 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3125____closed__4; +x_725 = lean_name_eq(x_21, x_724); +if (x_725 == 0) +{ +lean_object* x_726; uint8_t x_727; +x_726 = l_Lean_Elab_Tactic_mkTacticAttribute___closed__6; +x_727 = lean_name_eq(x_21, x_726); +if (x_727 == 0) +{ +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; +lean_dec(x_720); +lean_dec(x_719); +lean_dec(x_41); +lean_dec(x_20); +lean_dec(x_16); +lean_dec(x_9); +lean_dec(x_6); +x_728 = l_System_FilePath_dirName___closed__1; +x_729 = l_Lean_Name_toStringWithSep(x_728, x_21); +x_730 = l_Lean_Elab_Command_expandElab___closed__1; +x_731 = lean_string_append(x_730, x_729); +lean_dec(x_729); +x_732 = l_Init_Data_Repr___instance__15___closed__1; +x_733 = lean_string_append(x_731, x_732); +x_734 = l_Lean_Macro_throwError___rarg(x_1, x_733, x_2, x_716); +lean_dec(x_2); +return x_734; +} +else +{ +lean_object* x_735; 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; 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; 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; lean_object* x_787; lean_object* x_788; lean_object* x_789; lean_object* x_790; 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; 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; 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; 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; 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; lean_object* x_852; 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; lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; lean_object* x_867; lean_object* x_868; lean_object* x_869; lean_object* x_870; lean_object* x_871; lean_object* x_872; lean_object* x_873; lean_object* x_874; lean_object* x_875; lean_object* x_876; lean_object* x_877; lean_object* x_878; lean_object* x_879; lean_object* x_880; lean_object* x_881; lean_object* x_882; lean_object* x_883; lean_object* x_884; lean_object* x_885; lean_object* x_886; +lean_dec(x_21); +lean_dec(x_1); +x_735 = lean_ctor_get(x_2, 2); +lean_inc(x_735); +x_736 = lean_ctor_get(x_2, 1); +lean_inc(x_736); +lean_dec(x_2); +x_737 = l_Array_empty___closed__1; +x_738 = l_Array_append___rarg(x_737, x_6); +lean_dec(x_6); +x_739 = l_Lean_nullKind___closed__2; x_740 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_740, 0, x_712); -lean_ctor_set(x_740, 1, x_716); -x_741 = lean_array_push(x_739, x_740); -x_742 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; -x_743 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_743, 0, x_742); -lean_ctor_set(x_743, 1, x_741); -x_744 = lean_array_push(x_710, x_743); -x_745 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_745, 0, x_712); -lean_ctor_set(x_745, 1, x_744); -x_746 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; -x_747 = lean_array_push(x_746, x_745); -x_748 = lean_array_push(x_747, x_721); -x_749 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; -x_750 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_750, 0, x_749); -lean_ctor_set(x_750, 1, x_748); -x_751 = lean_array_push(x_710, x_750); +lean_ctor_set(x_740, 0, x_739); +lean_ctor_set(x_740, 1, x_738); +x_741 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; +x_742 = lean_array_push(x_741, x_740); +x_743 = lean_array_push(x_737, x_720); +x_744 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_528____closed__9; +lean_inc(x_743); +x_745 = lean_array_push(x_743, x_744); +x_746 = l_Nat_repr(x_9); +x_747 = l_Lean_numLitKind; +x_748 = l_Lean_Init_LeanInit___instance__8___closed__1; +x_749 = l_Lean_mkStxLit(x_747, x_746, x_748); +x_750 = lean_array_push(x_745, x_749); +x_751 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; x_752 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_752, 0, x_712); -lean_ctor_set(x_752, 1, x_751); -x_753 = l_Lean_Elab_Tactic_evalIntro___closed__5; +lean_ctor_set(x_752, 0, x_751); +lean_ctor_set(x_752, 1, x_750); +x_753 = l_Lean_Elab_Term_expandArrayLit___closed__10; x_754 = lean_array_push(x_753, x_752); -x_755 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__13; +x_755 = l_Lean_Elab_Term_expandArrayLit___closed__11; x_756 = lean_array_push(x_754, x_755); -x_757 = lean_array_push(x_756, x_755); -x_758 = lean_array_push(x_757, x_755); -x_759 = lean_array_push(x_758, x_755); -x_760 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; -x_761 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_761, 0, x_760); -lean_ctor_set(x_761, 1, x_759); -x_762 = lean_array_push(x_710, x_761); -x_763 = l_Lean_Elab_Command_expandElab___closed__7; -lean_inc(x_708); -lean_inc(x_709); -x_764 = l_Lean_addMacroScope(x_709, x_763, x_708); -x_765 = l_Lean_Elab_Command_expandElab___closed__6; -x_766 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_766, 0, x_736); -lean_ctor_set(x_766, 1, x_765); -lean_ctor_set(x_766, 2, x_764); -lean_ctor_set(x_766, 3, x_735); -x_767 = lean_array_push(x_710, x_766); -x_768 = lean_array_push(x_767, x_755); -x_769 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; -x_770 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_770, 0, x_769); -lean_ctor_set(x_770, 1, x_768); -x_771 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; -x_772 = lean_array_push(x_771, x_770); -x_773 = l_Lean_Elab_Tactic_mkTacticAttribute___closed__7; -lean_inc(x_708); -lean_inc(x_709); -x_774 = l_Lean_addMacroScope(x_709, x_773, x_708); -x_775 = l_Lean_Elab_Command_expandElab___closed__10; -x_776 = l_Lean_Elab_Command_expandElab___closed__12; -x_777 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_777, 0, x_736); -lean_ctor_set(x_777, 1, x_775); -lean_ctor_set(x_777, 2, x_774); -lean_ctor_set(x_777, 3, x_776); -x_778 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__22; -x_779 = lean_array_push(x_778, x_777); -x_780 = l_Lean_Elab_Term_elabLetDeclCore___closed__6; -x_781 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_781, 0, x_780); -lean_ctor_set(x_781, 1, x_779); -x_782 = lean_array_push(x_710, x_781); +x_757 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_757, 0, x_739); +lean_ctor_set(x_757, 1, x_756); +x_758 = lean_array_push(x_742, x_757); +x_759 = l_Array_append___rarg(x_737, x_41); +lean_dec(x_41); +x_760 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_760, 0, x_739); +lean_ctor_set(x_760, 1, x_759); +x_761 = lean_array_push(x_758, x_760); +x_762 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__21; +x_763 = lean_array_push(x_761, x_762); +x_764 = lean_array_push(x_763, x_16); +x_765 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; +x_766 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_766, 0, x_765); +lean_ctor_set(x_766, 1, x_764); +x_767 = lean_array_push(x_737, x_766); +lean_inc(x_735); +lean_inc(x_736); +x_768 = l_Lean_addMacroScope(x_736, x_726, x_735); +x_769 = lean_box(0); +x_770 = l_Lean_Elab_Command_expandElab___closed__3; +x_771 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_771, 0, x_748); +lean_ctor_set(x_771, 1, x_770); +lean_ctor_set(x_771, 2, x_768); +lean_ctor_set(x_771, 3, x_769); +x_772 = lean_array_push(x_737, x_771); +x_773 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_773, 0, x_739); +lean_ctor_set(x_773, 1, x_743); +x_774 = lean_array_push(x_772, x_773); +x_775 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; +x_776 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_776, 0, x_775); +lean_ctor_set(x_776, 1, x_774); +x_777 = lean_array_push(x_737, x_776); +x_778 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_778, 0, x_739); +lean_ctor_set(x_778, 1, x_777); +x_779 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; +x_780 = lean_array_push(x_779, x_778); +x_781 = lean_array_push(x_780, x_755); +x_782 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; x_783 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_783, 0, x_712); -lean_ctor_set(x_783, 1, x_782); -x_784 = lean_array_push(x_753, x_783); -x_785 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; -x_786 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_786, 0, x_785); -lean_ctor_set(x_786, 1, x_784); -x_787 = lean_array_push(x_772, x_786); -x_788 = l_Lean_Parser_categoryParserFnImpl___closed__4; -lean_inc(x_708); -lean_inc(x_709); -x_789 = l_Lean_addMacroScope(x_709, x_788, x_708); -x_790 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_791 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_791, 0, x_736); -lean_ctor_set(x_791, 1, x_790); -lean_ctor_set(x_791, 2, x_789); -lean_ctor_set(x_791, 3, x_735); -lean_inc(x_791); -x_792 = lean_array_push(x_710, x_791); -x_793 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_793, 0, x_712); -lean_ctor_set(x_793, 1, x_792); -x_794 = lean_array_push(x_710, x_793); -x_795 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__19; -x_796 = lean_array_push(x_794, x_795); -x_797 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; -x_798 = lean_array_push(x_797, x_791); -x_799 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_800 = lean_array_push(x_798, x_799); -x_801 = l_Lean_Elab_Command_expandElab___closed__15; -x_802 = lean_array_push(x_801, x_692); -x_803 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__15; -x_804 = lean_array_push(x_802, x_803); -x_805 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__2; -x_806 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_806, 0, x_805); -lean_ctor_set(x_806, 1, x_804); -x_807 = lean_array_push(x_710, x_806); -x_808 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_808, 0, x_712); -lean_ctor_set(x_808, 1, x_807); -x_809 = lean_array_push(x_710, x_808); -x_810 = lean_array_push(x_809, x_795); -x_811 = lean_array_push(x_810, x_17); -x_812 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_813 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_813, 0, x_812); -lean_ctor_set(x_813, 1, x_811); -x_814 = lean_array_push(x_710, x_813); -x_815 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_816 = lean_array_push(x_814, x_815); -x_817 = l_Lean_Elab_Command_expandElab___closed__19; -x_818 = l_Lean_addMacroScope(x_709, x_817, x_708); -x_819 = l_Lean_Elab_Command_expandElab___closed__18; -x_820 = l_Lean_Elab_Command_expandElab___closed__22; -x_821 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_821, 0, x_736); -lean_ctor_set(x_821, 1, x_819); -lean_ctor_set(x_821, 2, x_818); -lean_ctor_set(x_821, 3, x_820); -x_822 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; -x_823 = lean_array_push(x_822, x_821); -x_824 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_824, 0, x_812); +lean_ctor_set(x_783, 0, x_782); +lean_ctor_set(x_783, 1, x_781); +x_784 = lean_array_push(x_737, x_783); +x_785 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_785, 0, x_739); +lean_ctor_set(x_785, 1, x_784); +x_786 = l_Lean_Elab_Tactic_evalIntro___closed__5; +x_787 = lean_array_push(x_786, x_785); +x_788 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__13; +x_789 = lean_array_push(x_787, x_788); +x_790 = lean_array_push(x_789, x_788); +x_791 = lean_array_push(x_790, x_788); +x_792 = lean_array_push(x_791, x_788); +x_793 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; +x_794 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_794, 0, x_793); +lean_ctor_set(x_794, 1, x_792); +x_795 = lean_array_push(x_737, x_794); +x_796 = l_Lean_Elab_Command_expandElab___closed__7; +lean_inc(x_735); +lean_inc(x_736); +x_797 = l_Lean_addMacroScope(x_736, x_796, x_735); +x_798 = l_Lean_Elab_Command_expandElab___closed__6; +x_799 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_799, 0, x_748); +lean_ctor_set(x_799, 1, x_798); +lean_ctor_set(x_799, 2, x_797); +lean_ctor_set(x_799, 3, x_769); +x_800 = lean_array_push(x_737, x_799); +x_801 = lean_array_push(x_800, x_788); +x_802 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; +x_803 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_803, 0, x_802); +lean_ctor_set(x_803, 1, x_801); +x_804 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; +x_805 = lean_array_push(x_804, x_803); +x_806 = l_Lean_Elab_Tactic_mkTacticAttribute___closed__7; +lean_inc(x_735); +lean_inc(x_736); +x_807 = l_Lean_addMacroScope(x_736, x_806, x_735); +x_808 = l_Lean_Elab_Command_expandElab___closed__10; +x_809 = l_Lean_Elab_Command_expandElab___closed__12; +x_810 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_810, 0, x_748); +lean_ctor_set(x_810, 1, x_808); +lean_ctor_set(x_810, 2, x_807); +lean_ctor_set(x_810, 3, x_809); +x_811 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__22; +x_812 = lean_array_push(x_811, x_810); +x_813 = l_Lean_Elab_Term_elabLetDeclCore___closed__6; +x_814 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_814, 0, x_813); +lean_ctor_set(x_814, 1, x_812); +x_815 = lean_array_push(x_737, x_814); +x_816 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_816, 0, x_739); +lean_ctor_set(x_816, 1, x_815); +x_817 = lean_array_push(x_786, x_816); +x_818 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; +x_819 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_819, 0, x_818); +lean_ctor_set(x_819, 1, x_817); +x_820 = lean_array_push(x_805, x_819); +x_821 = l_Lean_Parser_categoryParserFnImpl___closed__4; +lean_inc(x_735); +lean_inc(x_736); +x_822 = l_Lean_addMacroScope(x_736, x_821, x_735); +x_823 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_824 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_824, 0, x_748); lean_ctor_set(x_824, 1, x_823); -x_825 = lean_array_push(x_816, x_824); +lean_ctor_set(x_824, 2, x_822); +lean_ctor_set(x_824, 3, x_769); +lean_inc(x_824); +x_825 = lean_array_push(x_737, x_824); x_826 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_826, 0, x_712); +lean_ctor_set(x_826, 0, x_739); lean_ctor_set(x_826, 1, x_825); -x_827 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_828 = lean_array_push(x_827, x_826); -x_829 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_830 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_830, 0, x_829); -lean_ctor_set(x_830, 1, x_828); -x_831 = lean_array_push(x_800, x_830); -x_832 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_833 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_833, 0, x_832); -lean_ctor_set(x_833, 1, x_831); -x_834 = lean_array_push(x_796, x_833); -x_835 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__11; -x_836 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_836, 0, x_835); -lean_ctor_set(x_836, 1, x_834); -x_837 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__9; -x_838 = lean_array_push(x_837, x_836); -x_839 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__7; -x_840 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_840, 0, x_839); -lean_ctor_set(x_840, 1, x_838); -x_841 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__28; -x_842 = lean_array_push(x_841, x_840); -x_843 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; -x_844 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_844, 0, x_843); -lean_ctor_set(x_844, 1, x_842); -x_845 = lean_array_push(x_787, x_844); -x_846 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; -x_847 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_847, 0, x_846); -lean_ctor_set(x_847, 1, x_845); -x_848 = lean_array_push(x_762, x_847); -x_849 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; -x_850 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_850, 0, x_849); -lean_ctor_set(x_850, 1, x_848); -x_851 = lean_array_push(x_733, x_850); -x_852 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_852, 0, x_712); -lean_ctor_set(x_852, 1, x_851); -x_853 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_853, 0, x_852); -lean_ctor_set(x_853, 1, x_689); -return x_853; -} -} -else -{ -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; lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; lean_object* x_867; lean_object* x_868; lean_object* x_869; lean_object* x_870; lean_object* x_871; lean_object* x_872; lean_object* x_873; lean_object* x_874; lean_object* x_875; lean_object* x_876; lean_object* x_877; lean_object* x_878; lean_object* x_879; lean_object* x_880; lean_object* x_881; lean_object* x_882; lean_object* x_883; lean_object* x_884; lean_object* x_885; lean_object* x_886; lean_object* x_887; lean_object* x_888; lean_object* x_889; lean_object* x_890; lean_object* x_891; lean_object* x_892; lean_object* x_893; lean_object* x_894; lean_object* x_895; lean_object* x_896; lean_object* x_897; lean_object* x_898; lean_object* x_899; lean_object* x_900; lean_object* x_901; lean_object* x_902; lean_object* x_903; lean_object* x_904; lean_object* x_905; lean_object* x_906; lean_object* x_907; lean_object* x_908; lean_object* x_909; lean_object* x_910; lean_object* x_911; lean_object* x_912; lean_object* x_913; lean_object* x_914; lean_object* x_915; lean_object* x_916; lean_object* x_917; lean_object* x_918; lean_object* x_919; lean_object* x_920; lean_object* x_921; lean_object* x_922; lean_object* x_923; lean_object* x_924; lean_object* x_925; lean_object* x_926; lean_object* x_927; lean_object* x_928; lean_object* x_929; lean_object* x_930; lean_object* x_931; lean_object* x_932; lean_object* x_933; lean_object* x_934; lean_object* x_935; lean_object* x_936; lean_object* x_937; lean_object* x_938; lean_object* x_939; lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; lean_object* x_945; lean_object* x_946; lean_object* x_947; lean_object* x_948; lean_object* x_949; lean_object* x_950; lean_object* x_951; lean_object* x_952; lean_object* x_953; lean_object* x_954; lean_object* x_955; lean_object* x_956; lean_object* x_957; lean_object* x_958; lean_object* x_959; lean_object* x_960; lean_object* x_961; lean_object* x_962; lean_object* x_963; lean_object* x_964; lean_object* x_965; lean_object* x_966; lean_object* x_967; lean_object* x_968; lean_object* x_969; lean_object* x_970; lean_object* x_971; lean_object* x_972; lean_object* x_973; lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; lean_object* x_981; lean_object* x_982; lean_object* x_983; lean_object* x_984; lean_object* x_985; lean_object* x_986; lean_object* x_987; lean_object* x_988; lean_object* x_989; lean_object* x_990; lean_object* x_991; lean_object* x_992; lean_object* x_993; lean_object* x_994; lean_object* x_995; lean_object* x_996; lean_object* x_997; lean_object* x_998; lean_object* x_999; lean_object* x_1000; -lean_dec(x_18); -lean_dec(x_1); -x_854 = lean_ctor_get(x_2, 2); -lean_inc(x_854); -x_855 = lean_ctor_get(x_2, 1); -lean_inc(x_855); -lean_dec(x_2); -x_856 = l_Array_empty___closed__1; -x_857 = l_Array_append___rarg(x_856, x_6); -lean_dec(x_6); -x_858 = l_Lean_nullKind___closed__2; +x_827 = lean_array_push(x_737, x_826); +x_828 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__19; +x_829 = lean_array_push(x_827, x_828); +x_830 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; +x_831 = lean_array_push(x_830, x_824); +x_832 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_833 = lean_array_push(x_831, x_832); +x_834 = l_Lean_Elab_Command_expandElab___closed__15; +x_835 = lean_array_push(x_834, x_719); +x_836 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__15; +x_837 = lean_array_push(x_835, x_836); +x_838 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_839 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_839, 0, x_838); +lean_ctor_set(x_839, 1, x_837); +x_840 = lean_array_push(x_737, x_839); +x_841 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_841, 0, x_739); +lean_ctor_set(x_841, 1, x_840); +x_842 = lean_array_push(x_737, x_841); +x_843 = lean_array_push(x_842, x_828); +x_844 = lean_array_push(x_843, x_20); +x_845 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; +x_846 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_846, 0, x_845); +lean_ctor_set(x_846, 1, x_844); +x_847 = lean_array_push(x_737, x_846); +x_848 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_849 = lean_array_push(x_847, x_848); +x_850 = l_Lean_Elab_Command_expandElab___closed__19; +x_851 = l_Lean_addMacroScope(x_736, x_850, x_735); +x_852 = l_Lean_Elab_Command_expandElab___closed__18; +x_853 = l_Lean_Elab_Command_expandElab___closed__22; +x_854 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_854, 0, x_748); +lean_ctor_set(x_854, 1, x_852); +lean_ctor_set(x_854, 2, x_851); +lean_ctor_set(x_854, 3, x_853); +x_855 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; +x_856 = lean_array_push(x_855, x_854); +x_857 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_857, 0, x_845); +lean_ctor_set(x_857, 1, x_856); +x_858 = lean_array_push(x_849, x_857); x_859 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_859, 0, x_858); -lean_ctor_set(x_859, 1, x_857); -x_860 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; +lean_ctor_set(x_859, 0, x_739); +lean_ctor_set(x_859, 1, x_858); +x_860 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; x_861 = lean_array_push(x_860, x_859); -x_862 = lean_array_push(x_856, x_693); -x_863 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__2; -lean_inc(x_862); -x_864 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_864, 0, x_863); -lean_ctor_set(x_864, 1, x_862); -x_865 = l_Lean_Elab_Term_expandArrayLit___closed__10; -x_866 = lean_array_push(x_865, x_864); -x_867 = l_Lean_Elab_Term_expandArrayLit___closed__11; -x_868 = lean_array_push(x_866, x_867); +x_862 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_863 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_863, 0, x_862); +lean_ctor_set(x_863, 1, x_861); +x_864 = lean_array_push(x_833, x_863); +x_865 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_866 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_866, 0, x_865); +lean_ctor_set(x_866, 1, x_864); +x_867 = lean_array_push(x_829, x_866); +x_868 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__11; x_869 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_869, 0, x_858); -lean_ctor_set(x_869, 1, x_868); -x_870 = lean_array_push(x_861, x_869); -x_871 = l_Array_append___rarg(x_856, x_38); -lean_dec(x_38); -x_872 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_872, 0, x_858); -lean_ctor_set(x_872, 1, x_871); -x_873 = lean_array_push(x_870, x_872); -x_874 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__21; -x_875 = lean_array_push(x_873, x_874); -x_876 = lean_array_push(x_875, x_13); -x_877 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; -x_878 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_878, 0, x_877); -lean_ctor_set(x_878, 1, x_876); -x_879 = lean_array_push(x_856, x_878); -x_880 = l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__7; -lean_inc(x_854); -lean_inc(x_855); -x_881 = l_Lean_addMacroScope(x_855, x_880, x_854); -x_882 = lean_box(0); -x_883 = l_Lean_Init_LeanInit___instance__8___closed__1; -x_884 = l_Lean_Elab_Command_expandElab___closed__24; -x_885 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_885, 0, x_883); +lean_ctor_set(x_869, 0, x_868); +lean_ctor_set(x_869, 1, x_867); +x_870 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__9; +x_871 = lean_array_push(x_870, x_869); +x_872 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__7; +x_873 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_873, 0, x_872); +lean_ctor_set(x_873, 1, x_871); +x_874 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__28; +x_875 = lean_array_push(x_874, x_873); +x_876 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; +x_877 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_877, 0, x_876); +lean_ctor_set(x_877, 1, x_875); +x_878 = lean_array_push(x_820, x_877); +x_879 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; +x_880 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_880, 0, x_879); +lean_ctor_set(x_880, 1, x_878); +x_881 = lean_array_push(x_795, x_880); +x_882 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_883 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_883, 0, x_882); +lean_ctor_set(x_883, 1, x_881); +x_884 = lean_array_push(x_767, x_883); +x_885 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_885, 0, x_739); lean_ctor_set(x_885, 1, x_884); -lean_ctor_set(x_885, 2, x_881); -lean_ctor_set(x_885, 3, x_882); -x_886 = lean_array_push(x_856, x_885); -x_887 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_887, 0, x_858); -lean_ctor_set(x_887, 1, x_862); -x_888 = lean_array_push(x_886, x_887); -x_889 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; -x_890 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_890, 0, x_889); -lean_ctor_set(x_890, 1, x_888); -x_891 = lean_array_push(x_856, x_890); -x_892 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_892, 0, x_858); -lean_ctor_set(x_892, 1, x_891); -x_893 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; -x_894 = lean_array_push(x_893, x_892); -x_895 = lean_array_push(x_894, x_867); -x_896 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; -x_897 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_897, 0, x_896); -lean_ctor_set(x_897, 1, x_895); -x_898 = lean_array_push(x_856, x_897); -x_899 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_899, 0, x_858); -lean_ctor_set(x_899, 1, x_898); -x_900 = l_Lean_Elab_Tactic_evalIntro___closed__5; -x_901 = lean_array_push(x_900, x_899); -x_902 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__13; -x_903 = lean_array_push(x_901, x_902); -x_904 = lean_array_push(x_903, x_902); -x_905 = lean_array_push(x_904, x_902); -x_906 = lean_array_push(x_905, x_902); -x_907 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; -x_908 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_908, 0, x_907); -lean_ctor_set(x_908, 1, x_906); -x_909 = lean_array_push(x_856, x_908); -x_910 = l_Lean_Elab_Command_expandElab___closed__7; -lean_inc(x_854); -lean_inc(x_855); -x_911 = l_Lean_addMacroScope(x_855, x_910, x_854); -x_912 = l_Lean_Elab_Command_expandElab___closed__6; -x_913 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_913, 0, x_883); -lean_ctor_set(x_913, 1, x_912); -lean_ctor_set(x_913, 2, x_911); -lean_ctor_set(x_913, 3, x_882); -x_914 = lean_array_push(x_856, x_913); -x_915 = lean_array_push(x_914, x_902); -x_916 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; -x_917 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_917, 0, x_916); -lean_ctor_set(x_917, 1, x_915); -x_918 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; -x_919 = lean_array_push(x_918, x_917); -x_920 = l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__9; -lean_inc(x_854); -lean_inc(x_855); -x_921 = l_Lean_addMacroScope(x_855, x_920, x_854); -x_922 = l_Lean_Elab_Command_expandElab___closed__27; -x_923 = l_Lean_Elab_Command_expandElab___closed__29; -x_924 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_924, 0, x_883); -lean_ctor_set(x_924, 1, x_922); -lean_ctor_set(x_924, 2, x_921); -lean_ctor_set(x_924, 3, x_923); -x_925 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__22; -x_926 = lean_array_push(x_925, x_924); -x_927 = l_Lean_Elab_Term_elabLetDeclCore___closed__6; -x_928 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_928, 0, x_927); -lean_ctor_set(x_928, 1, x_926); -x_929 = lean_array_push(x_856, x_928); -x_930 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_930, 0, x_858); -lean_ctor_set(x_930, 1, x_929); -x_931 = lean_array_push(x_900, x_930); -x_932 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; -x_933 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_933, 0, x_932); -lean_ctor_set(x_933, 1, x_931); -x_934 = lean_array_push(x_919, x_933); -x_935 = l_Lean_Parser_categoryParserFnImpl___closed__4; -lean_inc(x_854); -lean_inc(x_855); -x_936 = l_Lean_addMacroScope(x_855, x_935, x_854); -x_937 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_938 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_938, 0, x_883); -lean_ctor_set(x_938, 1, x_937); -lean_ctor_set(x_938, 2, x_936); -lean_ctor_set(x_938, 3, x_882); -lean_inc(x_938); -x_939 = lean_array_push(x_856, x_938); -x_940 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_940, 0, x_858); -lean_ctor_set(x_940, 1, x_939); -x_941 = lean_array_push(x_856, x_940); -x_942 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__19; -x_943 = lean_array_push(x_941, x_942); -x_944 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; -x_945 = lean_array_push(x_944, x_938); -x_946 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_947 = lean_array_push(x_945, x_946); -x_948 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; -x_949 = lean_array_push(x_948, x_692); -x_950 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__15; -x_951 = lean_array_push(x_949, x_950); -x_952 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_953 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_953, 0, x_952); -lean_ctor_set(x_953, 1, x_951); -x_954 = lean_array_push(x_856, x_953); -x_955 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_955, 0, x_858); -lean_ctor_set(x_955, 1, x_954); -x_956 = lean_array_push(x_856, x_955); -x_957 = lean_array_push(x_956, x_942); -x_958 = lean_array_push(x_957, x_17); -x_959 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_960 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_960, 0, x_959); -lean_ctor_set(x_960, 1, x_958); -x_961 = lean_array_push(x_856, x_960); -x_962 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_963 = lean_array_push(x_961, x_962); -x_964 = l_Lean_Elab_Command_expandElab___closed__19; -x_965 = l_Lean_addMacroScope(x_855, x_964, x_854); -x_966 = l_Lean_Elab_Command_expandElab___closed__18; -x_967 = l_Lean_Elab_Command_expandElab___closed__22; -x_968 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_968, 0, x_883); -lean_ctor_set(x_968, 1, x_966); -lean_ctor_set(x_968, 2, x_965); -lean_ctor_set(x_968, 3, x_967); -x_969 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; -x_970 = lean_array_push(x_969, x_968); -x_971 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_971, 0, x_959); -lean_ctor_set(x_971, 1, x_970); -x_972 = lean_array_push(x_963, x_971); -x_973 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_973, 0, x_858); -lean_ctor_set(x_973, 1, x_972); -x_974 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_975 = lean_array_push(x_974, x_973); -x_976 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_977 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_977, 0, x_976); -lean_ctor_set(x_977, 1, x_975); -x_978 = lean_array_push(x_947, x_977); -x_979 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_980 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_980, 0, x_979); -lean_ctor_set(x_980, 1, x_978); -x_981 = lean_array_push(x_943, x_980); -x_982 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__11; -x_983 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_983, 0, x_982); -lean_ctor_set(x_983, 1, x_981); -x_984 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__9; -x_985 = lean_array_push(x_984, x_983); -x_986 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__7; -x_987 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_987, 0, x_986); -lean_ctor_set(x_987, 1, x_985); -x_988 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__28; -x_989 = lean_array_push(x_988, x_987); -x_990 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; -x_991 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_991, 0, x_990); -lean_ctor_set(x_991, 1, x_989); -x_992 = lean_array_push(x_934, x_991); -x_993 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; -x_994 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_994, 0, x_993); -lean_ctor_set(x_994, 1, x_992); -x_995 = lean_array_push(x_909, x_994); -x_996 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; -x_997 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_997, 0, x_996); -lean_ctor_set(x_997, 1, x_995); -x_998 = lean_array_push(x_879, x_997); -x_999 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_999, 0, x_858); -lean_ctor_set(x_999, 1, x_998); -x_1000 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1000, 0, x_999); -lean_ctor_set(x_1000, 1, x_689); -return x_1000; +x_886 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_886, 0, x_885); +lean_ctor_set(x_886, 1, x_716); +return x_886; } } else { -lean_object* x_1001; lean_object* x_1002; lean_object* x_1003; lean_object* x_1004; lean_object* x_1005; lean_object* x_1006; lean_object* x_1007; lean_object* x_1008; lean_object* x_1009; lean_object* x_1010; lean_object* x_1011; lean_object* x_1012; lean_object* x_1013; lean_object* x_1014; lean_object* x_1015; lean_object* x_1016; lean_object* x_1017; lean_object* x_1018; lean_object* x_1019; lean_object* x_1020; lean_object* x_1021; lean_object* x_1022; lean_object* x_1023; lean_object* x_1024; lean_object* x_1025; lean_object* x_1026; lean_object* x_1027; lean_object* x_1028; lean_object* x_1029; lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; lean_object* x_1033; lean_object* x_1034; lean_object* x_1035; lean_object* x_1036; lean_object* x_1037; lean_object* x_1038; lean_object* x_1039; lean_object* x_1040; lean_object* x_1041; lean_object* x_1042; lean_object* x_1043; lean_object* x_1044; lean_object* x_1045; lean_object* x_1046; lean_object* x_1047; lean_object* x_1048; lean_object* x_1049; lean_object* x_1050; lean_object* x_1051; lean_object* x_1052; lean_object* x_1053; lean_object* x_1054; lean_object* x_1055; lean_object* x_1056; lean_object* x_1057; lean_object* x_1058; lean_object* x_1059; lean_object* x_1060; lean_object* x_1061; lean_object* x_1062; lean_object* x_1063; lean_object* x_1064; lean_object* x_1065; lean_object* x_1066; lean_object* x_1067; lean_object* x_1068; lean_object* x_1069; lean_object* x_1070; lean_object* x_1071; lean_object* x_1072; lean_object* x_1073; lean_object* x_1074; lean_object* x_1075; lean_object* x_1076; lean_object* x_1077; lean_object* x_1078; lean_object* x_1079; lean_object* x_1080; lean_object* x_1081; lean_object* x_1082; lean_object* x_1083; lean_object* x_1084; lean_object* x_1085; lean_object* x_1086; lean_object* x_1087; lean_object* x_1088; lean_object* x_1089; lean_object* x_1090; lean_object* x_1091; lean_object* x_1092; lean_object* x_1093; lean_object* x_1094; lean_object* x_1095; lean_object* x_1096; lean_object* x_1097; lean_object* x_1098; lean_object* x_1099; lean_object* x_1100; lean_object* x_1101; lean_object* x_1102; lean_object* x_1103; lean_object* x_1104; lean_object* x_1105; lean_object* x_1106; lean_object* x_1107; lean_object* x_1108; lean_object* x_1109; lean_object* x_1110; lean_object* x_1111; lean_object* x_1112; lean_object* x_1113; lean_object* x_1114; lean_object* x_1115; lean_object* x_1116; lean_object* x_1117; lean_object* x_1118; lean_object* x_1119; lean_object* x_1120; lean_object* x_1121; lean_object* x_1122; lean_object* x_1123; lean_object* x_1124; lean_object* x_1125; lean_object* x_1126; lean_object* x_1127; lean_object* x_1128; lean_object* x_1129; lean_object* x_1130; lean_object* x_1131; lean_object* x_1132; lean_object* x_1133; lean_object* x_1134; lean_object* x_1135; lean_object* x_1136; lean_object* x_1137; lean_object* x_1138; lean_object* x_1139; lean_object* x_1140; lean_object* x_1141; lean_object* x_1142; lean_object* x_1143; lean_object* x_1144; lean_object* x_1145; lean_object* x_1146; lean_object* x_1147; lean_object* x_1148; lean_object* x_1149; -lean_dec(x_18); +lean_object* x_887; lean_object* x_888; lean_object* x_889; lean_object* x_890; lean_object* x_891; lean_object* x_892; lean_object* x_893; lean_object* x_894; lean_object* x_895; lean_object* x_896; lean_object* x_897; lean_object* x_898; lean_object* x_899; lean_object* x_900; lean_object* x_901; lean_object* x_902; lean_object* x_903; lean_object* x_904; lean_object* x_905; lean_object* x_906; lean_object* x_907; lean_object* x_908; lean_object* x_909; lean_object* x_910; lean_object* x_911; lean_object* x_912; lean_object* x_913; lean_object* x_914; lean_object* x_915; lean_object* x_916; lean_object* x_917; lean_object* x_918; lean_object* x_919; lean_object* x_920; lean_object* x_921; lean_object* x_922; lean_object* x_923; lean_object* x_924; lean_object* x_925; lean_object* x_926; lean_object* x_927; lean_object* x_928; lean_object* x_929; lean_object* x_930; lean_object* x_931; lean_object* x_932; lean_object* x_933; lean_object* x_934; lean_object* x_935; lean_object* x_936; lean_object* x_937; lean_object* x_938; lean_object* x_939; lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; lean_object* x_945; lean_object* x_946; lean_object* x_947; lean_object* x_948; lean_object* x_949; lean_object* x_950; lean_object* x_951; lean_object* x_952; lean_object* x_953; lean_object* x_954; lean_object* x_955; lean_object* x_956; lean_object* x_957; lean_object* x_958; lean_object* x_959; lean_object* x_960; lean_object* x_961; lean_object* x_962; lean_object* x_963; lean_object* x_964; lean_object* x_965; lean_object* x_966; lean_object* x_967; lean_object* x_968; lean_object* x_969; lean_object* x_970; lean_object* x_971; lean_object* x_972; lean_object* x_973; lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; lean_object* x_981; lean_object* x_982; lean_object* x_983; lean_object* x_984; lean_object* x_985; lean_object* x_986; lean_object* x_987; lean_object* x_988; lean_object* x_989; lean_object* x_990; lean_object* x_991; lean_object* x_992; lean_object* x_993; lean_object* x_994; lean_object* x_995; lean_object* x_996; lean_object* x_997; lean_object* x_998; lean_object* x_999; lean_object* x_1000; lean_object* x_1001; lean_object* x_1002; lean_object* x_1003; lean_object* x_1004; lean_object* x_1005; lean_object* x_1006; lean_object* x_1007; lean_object* x_1008; lean_object* x_1009; lean_object* x_1010; lean_object* x_1011; lean_object* x_1012; lean_object* x_1013; lean_object* x_1014; lean_object* x_1015; lean_object* x_1016; lean_object* x_1017; lean_object* x_1018; lean_object* x_1019; lean_object* x_1020; lean_object* x_1021; lean_object* x_1022; lean_object* x_1023; lean_object* x_1024; lean_object* x_1025; lean_object* x_1026; lean_object* x_1027; lean_object* x_1028; lean_object* x_1029; lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; lean_object* x_1033; lean_object* x_1034; lean_object* x_1035; lean_object* x_1036; lean_object* x_1037; lean_object* x_1038; lean_object* x_1039; +lean_dec(x_21); lean_dec(x_1); -x_1001 = lean_ctor_get(x_2, 2); -lean_inc(x_1001); -x_1002 = lean_ctor_get(x_2, 1); -lean_inc(x_1002); +x_887 = lean_ctor_get(x_2, 2); +lean_inc(x_887); +x_888 = lean_ctor_get(x_2, 1); +lean_inc(x_888); lean_dec(x_2); -x_1003 = l_Array_empty___closed__1; -x_1004 = l_Array_append___rarg(x_1003, x_6); +x_889 = l_Array_empty___closed__1; +x_890 = l_Array_append___rarg(x_889, x_6); lean_dec(x_6); -x_1005 = l_Lean_nullKind___closed__2; -x_1006 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1006, 0, x_1005); -lean_ctor_set(x_1006, 1, x_1004); -x_1007 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; -x_1008 = lean_array_push(x_1007, x_1006); -x_1009 = lean_array_push(x_1003, x_693); -x_1010 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__2; -lean_inc(x_1009); -x_1011 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1011, 0, x_1010); -lean_ctor_set(x_1011, 1, x_1009); -x_1012 = l_Lean_Elab_Term_expandArrayLit___closed__10; -x_1013 = lean_array_push(x_1012, x_1011); -x_1014 = l_Lean_Elab_Term_expandArrayLit___closed__11; -x_1015 = lean_array_push(x_1013, x_1014); +x_891 = l_Lean_nullKind___closed__2; +x_892 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_892, 0, x_891); +lean_ctor_set(x_892, 1, x_890); +x_893 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; +x_894 = lean_array_push(x_893, x_892); +x_895 = lean_array_push(x_889, x_720); +x_896 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_528____closed__9; +lean_inc(x_895); +x_897 = lean_array_push(x_895, x_896); +x_898 = l_Nat_repr(x_9); +x_899 = l_Lean_numLitKind; +x_900 = l_Lean_Init_LeanInit___instance__8___closed__1; +x_901 = l_Lean_mkStxLit(x_899, x_898, x_900); +x_902 = lean_array_push(x_897, x_901); +x_903 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; +x_904 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_904, 0, x_903); +lean_ctor_set(x_904, 1, x_902); +x_905 = l_Lean_Elab_Term_expandArrayLit___closed__10; +x_906 = lean_array_push(x_905, x_904); +x_907 = l_Lean_Elab_Term_expandArrayLit___closed__11; +x_908 = lean_array_push(x_906, x_907); +x_909 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_909, 0, x_891); +lean_ctor_set(x_909, 1, x_908); +x_910 = lean_array_push(x_894, x_909); +x_911 = l_Array_append___rarg(x_889, x_41); +lean_dec(x_41); +x_912 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_912, 0, x_891); +lean_ctor_set(x_912, 1, x_911); +x_913 = lean_array_push(x_910, x_912); +x_914 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__21; +x_915 = lean_array_push(x_913, x_914); +x_916 = lean_array_push(x_915, x_16); +x_917 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; +x_918 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_918, 0, x_917); +lean_ctor_set(x_918, 1, x_916); +x_919 = lean_array_push(x_889, x_918); +x_920 = l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__7; +lean_inc(x_887); +lean_inc(x_888); +x_921 = l_Lean_addMacroScope(x_888, x_920, x_887); +x_922 = lean_box(0); +x_923 = l_Lean_Elab_Command_expandElab___closed__24; +x_924 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_924, 0, x_900); +lean_ctor_set(x_924, 1, x_923); +lean_ctor_set(x_924, 2, x_921); +lean_ctor_set(x_924, 3, x_922); +x_925 = lean_array_push(x_889, x_924); +x_926 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_926, 0, x_891); +lean_ctor_set(x_926, 1, x_895); +x_927 = lean_array_push(x_925, x_926); +x_928 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; +x_929 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_929, 0, x_928); +lean_ctor_set(x_929, 1, x_927); +x_930 = lean_array_push(x_889, x_929); +x_931 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_931, 0, x_891); +lean_ctor_set(x_931, 1, x_930); +x_932 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; +x_933 = lean_array_push(x_932, x_931); +x_934 = lean_array_push(x_933, x_907); +x_935 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; +x_936 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_936, 0, x_935); +lean_ctor_set(x_936, 1, x_934); +x_937 = lean_array_push(x_889, x_936); +x_938 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_938, 0, x_891); +lean_ctor_set(x_938, 1, x_937); +x_939 = l_Lean_Elab_Tactic_evalIntro___closed__5; +x_940 = lean_array_push(x_939, x_938); +x_941 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__13; +x_942 = lean_array_push(x_940, x_941); +x_943 = lean_array_push(x_942, x_941); +x_944 = lean_array_push(x_943, x_941); +x_945 = lean_array_push(x_944, x_941); +x_946 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; +x_947 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_947, 0, x_946); +lean_ctor_set(x_947, 1, x_945); +x_948 = lean_array_push(x_889, x_947); +x_949 = l_Lean_Elab_Command_expandElab___closed__7; +lean_inc(x_887); +lean_inc(x_888); +x_950 = l_Lean_addMacroScope(x_888, x_949, x_887); +x_951 = l_Lean_Elab_Command_expandElab___closed__6; +x_952 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_952, 0, x_900); +lean_ctor_set(x_952, 1, x_951); +lean_ctor_set(x_952, 2, x_950); +lean_ctor_set(x_952, 3, x_922); +x_953 = lean_array_push(x_889, x_952); +x_954 = lean_array_push(x_953, x_941); +x_955 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; +x_956 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_956, 0, x_955); +lean_ctor_set(x_956, 1, x_954); +x_957 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; +x_958 = lean_array_push(x_957, x_956); +x_959 = l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__9; +lean_inc(x_887); +lean_inc(x_888); +x_960 = l_Lean_addMacroScope(x_888, x_959, x_887); +x_961 = l_Lean_Elab_Command_expandElab___closed__27; +x_962 = l_Lean_Elab_Command_expandElab___closed__29; +x_963 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_963, 0, x_900); +lean_ctor_set(x_963, 1, x_961); +lean_ctor_set(x_963, 2, x_960); +lean_ctor_set(x_963, 3, x_962); +x_964 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__22; +x_965 = lean_array_push(x_964, x_963); +x_966 = l_Lean_Elab_Term_elabLetDeclCore___closed__6; +x_967 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_967, 0, x_966); +lean_ctor_set(x_967, 1, x_965); +x_968 = lean_array_push(x_889, x_967); +x_969 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_969, 0, x_891); +lean_ctor_set(x_969, 1, x_968); +x_970 = lean_array_push(x_939, x_969); +x_971 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; +x_972 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_972, 0, x_971); +lean_ctor_set(x_972, 1, x_970); +x_973 = lean_array_push(x_958, x_972); +x_974 = l_Lean_Parser_categoryParserFnImpl___closed__4; +lean_inc(x_887); +lean_inc(x_888); +x_975 = l_Lean_addMacroScope(x_888, x_974, x_887); +x_976 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_977 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_977, 0, x_900); +lean_ctor_set(x_977, 1, x_976); +lean_ctor_set(x_977, 2, x_975); +lean_ctor_set(x_977, 3, x_922); +lean_inc(x_977); +x_978 = lean_array_push(x_889, x_977); +x_979 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_979, 0, x_891); +lean_ctor_set(x_979, 1, x_978); +x_980 = lean_array_push(x_889, x_979); +x_981 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__19; +x_982 = lean_array_push(x_980, x_981); +x_983 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; +x_984 = lean_array_push(x_983, x_977); +x_985 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_986 = lean_array_push(x_984, x_985); +x_987 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; +x_988 = lean_array_push(x_987, x_719); +x_989 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__15; +x_990 = lean_array_push(x_988, x_989); +x_991 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_992 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_992, 0, x_991); +lean_ctor_set(x_992, 1, x_990); +x_993 = lean_array_push(x_889, x_992); +x_994 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_994, 0, x_891); +lean_ctor_set(x_994, 1, x_993); +x_995 = lean_array_push(x_889, x_994); +x_996 = lean_array_push(x_995, x_981); +x_997 = lean_array_push(x_996, x_20); +x_998 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; +x_999 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_999, 0, x_998); +lean_ctor_set(x_999, 1, x_997); +x_1000 = lean_array_push(x_889, x_999); +x_1001 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_1002 = lean_array_push(x_1000, x_1001); +x_1003 = l_Lean_Elab_Command_expandElab___closed__19; +x_1004 = l_Lean_addMacroScope(x_888, x_1003, x_887); +x_1005 = l_Lean_Elab_Command_expandElab___closed__18; +x_1006 = l_Lean_Elab_Command_expandElab___closed__22; +x_1007 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1007, 0, x_900); +lean_ctor_set(x_1007, 1, x_1005); +lean_ctor_set(x_1007, 2, x_1004); +lean_ctor_set(x_1007, 3, x_1006); +x_1008 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; +x_1009 = lean_array_push(x_1008, x_1007); +x_1010 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1010, 0, x_998); +lean_ctor_set(x_1010, 1, x_1009); +x_1011 = lean_array_push(x_1002, x_1010); +x_1012 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1012, 0, x_891); +lean_ctor_set(x_1012, 1, x_1011); +x_1013 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_1014 = lean_array_push(x_1013, x_1012); +x_1015 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; x_1016 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1016, 0, x_1005); -lean_ctor_set(x_1016, 1, x_1015); -x_1017 = lean_array_push(x_1008, x_1016); -x_1018 = l_Array_append___rarg(x_1003, x_38); -lean_dec(x_38); +lean_ctor_set(x_1016, 0, x_1015); +lean_ctor_set(x_1016, 1, x_1014); +x_1017 = lean_array_push(x_986, x_1016); +x_1018 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; x_1019 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1019, 0, x_1005); -lean_ctor_set(x_1019, 1, x_1018); -x_1020 = lean_array_push(x_1017, x_1019); -x_1021 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__21; -x_1022 = lean_array_push(x_1020, x_1021); -x_1023 = lean_array_push(x_1022, x_13); -x_1024 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; -x_1025 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1025, 0, x_1024); -lean_ctor_set(x_1025, 1, x_1023); -x_1026 = lean_array_push(x_1003, x_1025); -x_1027 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; -lean_inc(x_1001); -lean_inc(x_1002); -x_1028 = l_Lean_addMacroScope(x_1002, x_1027, x_1001); -x_1029 = lean_box(0); -x_1030 = l_Lean_Init_LeanInit___instance__8___closed__1; -x_1031 = l_Lean_Elab_Command_expandElab___closed__31; -x_1032 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1032, 0, x_1030); -lean_ctor_set(x_1032, 1, x_1031); -lean_ctor_set(x_1032, 2, x_1028); -lean_ctor_set(x_1032, 3, x_1029); -x_1033 = lean_array_push(x_1003, x_1032); -x_1034 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1034, 0, x_1005); -lean_ctor_set(x_1034, 1, x_1009); -x_1035 = lean_array_push(x_1033, x_1034); -x_1036 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; -x_1037 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1037, 0, x_1036); -lean_ctor_set(x_1037, 1, x_1035); -x_1038 = lean_array_push(x_1003, x_1037); -x_1039 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1039, 0, x_1005); -lean_ctor_set(x_1039, 1, x_1038); -x_1040 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; -x_1041 = lean_array_push(x_1040, x_1039); -x_1042 = lean_array_push(x_1041, x_1014); -x_1043 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; -x_1044 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1044, 0, x_1043); -lean_ctor_set(x_1044, 1, x_1042); -x_1045 = lean_array_push(x_1003, x_1044); -x_1046 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1046, 0, x_1005); -lean_ctor_set(x_1046, 1, x_1045); -x_1047 = l_Lean_Elab_Tactic_evalIntro___closed__5; -x_1048 = lean_array_push(x_1047, x_1046); -x_1049 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__13; +lean_ctor_set(x_1019, 0, x_1018); +lean_ctor_set(x_1019, 1, x_1017); +x_1020 = lean_array_push(x_982, x_1019); +x_1021 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__11; +x_1022 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1022, 0, x_1021); +lean_ctor_set(x_1022, 1, x_1020); +x_1023 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__9; +x_1024 = lean_array_push(x_1023, x_1022); +x_1025 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__7; +x_1026 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1026, 0, x_1025); +lean_ctor_set(x_1026, 1, x_1024); +x_1027 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__28; +x_1028 = lean_array_push(x_1027, x_1026); +x_1029 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; +x_1030 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1030, 0, x_1029); +lean_ctor_set(x_1030, 1, x_1028); +x_1031 = lean_array_push(x_973, x_1030); +x_1032 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; +x_1033 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1033, 0, x_1032); +lean_ctor_set(x_1033, 1, x_1031); +x_1034 = lean_array_push(x_948, x_1033); +x_1035 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_1036 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1036, 0, x_1035); +lean_ctor_set(x_1036, 1, x_1034); +x_1037 = lean_array_push(x_919, x_1036); +x_1038 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1038, 0, x_891); +lean_ctor_set(x_1038, 1, x_1037); +x_1039 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1039, 0, x_1038); +lean_ctor_set(x_1039, 1, x_716); +return x_1039; +} +} +else +{ +lean_object* x_1040; lean_object* x_1041; lean_object* x_1042; lean_object* x_1043; lean_object* x_1044; lean_object* x_1045; lean_object* x_1046; lean_object* x_1047; lean_object* x_1048; lean_object* x_1049; lean_object* x_1050; lean_object* x_1051; lean_object* x_1052; lean_object* x_1053; lean_object* x_1054; lean_object* x_1055; lean_object* x_1056; lean_object* x_1057; lean_object* x_1058; lean_object* x_1059; lean_object* x_1060; lean_object* x_1061; lean_object* x_1062; lean_object* x_1063; lean_object* x_1064; lean_object* x_1065; lean_object* x_1066; lean_object* x_1067; lean_object* x_1068; lean_object* x_1069; lean_object* x_1070; lean_object* x_1071; lean_object* x_1072; lean_object* x_1073; lean_object* x_1074; lean_object* x_1075; lean_object* x_1076; lean_object* x_1077; lean_object* x_1078; lean_object* x_1079; lean_object* x_1080; lean_object* x_1081; lean_object* x_1082; lean_object* x_1083; lean_object* x_1084; lean_object* x_1085; lean_object* x_1086; lean_object* x_1087; lean_object* x_1088; lean_object* x_1089; lean_object* x_1090; lean_object* x_1091; lean_object* x_1092; lean_object* x_1093; lean_object* x_1094; lean_object* x_1095; lean_object* x_1096; lean_object* x_1097; lean_object* x_1098; lean_object* x_1099; lean_object* x_1100; lean_object* x_1101; lean_object* x_1102; lean_object* x_1103; lean_object* x_1104; lean_object* x_1105; lean_object* x_1106; lean_object* x_1107; lean_object* x_1108; lean_object* x_1109; lean_object* x_1110; lean_object* x_1111; lean_object* x_1112; lean_object* x_1113; lean_object* x_1114; lean_object* x_1115; lean_object* x_1116; lean_object* x_1117; lean_object* x_1118; lean_object* x_1119; lean_object* x_1120; lean_object* x_1121; lean_object* x_1122; lean_object* x_1123; lean_object* x_1124; lean_object* x_1125; lean_object* x_1126; lean_object* x_1127; lean_object* x_1128; lean_object* x_1129; lean_object* x_1130; lean_object* x_1131; lean_object* x_1132; lean_object* x_1133; lean_object* x_1134; lean_object* x_1135; lean_object* x_1136; lean_object* x_1137; lean_object* x_1138; lean_object* x_1139; lean_object* x_1140; lean_object* x_1141; lean_object* x_1142; lean_object* x_1143; lean_object* x_1144; lean_object* x_1145; lean_object* x_1146; lean_object* x_1147; lean_object* x_1148; lean_object* x_1149; lean_object* x_1150; lean_object* x_1151; lean_object* x_1152; lean_object* x_1153; lean_object* x_1154; lean_object* x_1155; lean_object* x_1156; lean_object* x_1157; lean_object* x_1158; lean_object* x_1159; lean_object* x_1160; lean_object* x_1161; lean_object* x_1162; lean_object* x_1163; lean_object* x_1164; lean_object* x_1165; lean_object* x_1166; lean_object* x_1167; lean_object* x_1168; lean_object* x_1169; lean_object* x_1170; lean_object* x_1171; lean_object* x_1172; lean_object* x_1173; lean_object* x_1174; lean_object* x_1175; lean_object* x_1176; lean_object* x_1177; lean_object* x_1178; lean_object* x_1179; lean_object* x_1180; lean_object* x_1181; lean_object* x_1182; lean_object* x_1183; lean_object* x_1184; lean_object* x_1185; lean_object* x_1186; lean_object* x_1187; lean_object* x_1188; lean_object* x_1189; lean_object* x_1190; lean_object* x_1191; lean_object* x_1192; lean_object* x_1193; lean_object* x_1194; +lean_dec(x_21); +lean_dec(x_1); +x_1040 = lean_ctor_get(x_2, 2); +lean_inc(x_1040); +x_1041 = lean_ctor_get(x_2, 1); +lean_inc(x_1041); +lean_dec(x_2); +x_1042 = l_Array_empty___closed__1; +x_1043 = l_Array_append___rarg(x_1042, x_6); +lean_dec(x_6); +x_1044 = l_Lean_nullKind___closed__2; +x_1045 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1045, 0, x_1044); +lean_ctor_set(x_1045, 1, x_1043); +x_1046 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; +x_1047 = lean_array_push(x_1046, x_1045); +x_1048 = lean_array_push(x_1042, x_720); +x_1049 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_528____closed__9; +lean_inc(x_1048); x_1050 = lean_array_push(x_1048, x_1049); -x_1051 = lean_array_push(x_1050, x_1049); -x_1052 = lean_array_push(x_1051, x_1049); -x_1053 = lean_array_push(x_1052, x_1049); -x_1054 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; -x_1055 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1055, 0, x_1054); -lean_ctor_set(x_1055, 1, x_1053); -x_1056 = lean_array_push(x_1003, x_1055); -x_1057 = l_Lean_Elab_Command_expandElab___closed__7; -lean_inc(x_1001); -lean_inc(x_1002); -x_1058 = l_Lean_addMacroScope(x_1002, x_1057, x_1001); -x_1059 = l_Lean_Elab_Command_expandElab___closed__6; -x_1060 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1060, 0, x_1030); -lean_ctor_set(x_1060, 1, x_1059); -lean_ctor_set(x_1060, 2, x_1058); -lean_ctor_set(x_1060, 3, x_1029); -x_1061 = lean_array_push(x_1003, x_1060); -x_1062 = lean_array_push(x_1061, x_1049); -x_1063 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; -x_1064 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1064, 0, x_1063); -lean_ctor_set(x_1064, 1, x_1062); -x_1065 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; -x_1066 = lean_array_push(x_1065, x_1064); -x_1067 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; -lean_inc(x_1001); -lean_inc(x_1002); -x_1068 = l_Lean_addMacroScope(x_1002, x_1067, x_1001); -x_1069 = l_Lean_Elab_Command_expandElab___closed__34; -x_1070 = l_Lean_Elab_Command_expandElab___closed__36; -x_1071 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1071, 0, x_1030); +x_1051 = l_Nat_repr(x_9); +x_1052 = l_Lean_numLitKind; +x_1053 = l_Lean_Init_LeanInit___instance__8___closed__1; +x_1054 = l_Lean_mkStxLit(x_1052, x_1051, x_1053); +x_1055 = lean_array_push(x_1050, x_1054); +x_1056 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; +x_1057 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1057, 0, x_1056); +lean_ctor_set(x_1057, 1, x_1055); +x_1058 = l_Lean_Elab_Term_expandArrayLit___closed__10; +x_1059 = lean_array_push(x_1058, x_1057); +x_1060 = l_Lean_Elab_Term_expandArrayLit___closed__11; +x_1061 = lean_array_push(x_1059, x_1060); +x_1062 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1062, 0, x_1044); +lean_ctor_set(x_1062, 1, x_1061); +x_1063 = lean_array_push(x_1047, x_1062); +x_1064 = l_Array_append___rarg(x_1042, x_41); +lean_dec(x_41); +x_1065 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1065, 0, x_1044); +lean_ctor_set(x_1065, 1, x_1064); +x_1066 = lean_array_push(x_1063, x_1065); +x_1067 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__21; +x_1068 = lean_array_push(x_1066, x_1067); +x_1069 = lean_array_push(x_1068, x_16); +x_1070 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; +x_1071 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1071, 0, x_1070); lean_ctor_set(x_1071, 1, x_1069); -lean_ctor_set(x_1071, 2, x_1068); -lean_ctor_set(x_1071, 3, x_1070); -x_1072 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__22; -x_1073 = lean_array_push(x_1072, x_1071); -x_1074 = l_Lean_Elab_Term_elabLetDeclCore___closed__6; -x_1075 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1075, 0, x_1074); -lean_ctor_set(x_1075, 1, x_1073); -x_1076 = lean_array_push(x_1003, x_1075); -x_1077 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1077, 0, x_1005); +x_1072 = lean_array_push(x_1042, x_1071); +x_1073 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; +lean_inc(x_1040); +lean_inc(x_1041); +x_1074 = l_Lean_addMacroScope(x_1041, x_1073, x_1040); +x_1075 = lean_box(0); +x_1076 = l_Lean_Elab_Command_expandElab___closed__31; +x_1077 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1077, 0, x_1053); lean_ctor_set(x_1077, 1, x_1076); -x_1078 = lean_array_push(x_1047, x_1077); -x_1079 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; -x_1080 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1080, 0, x_1079); -lean_ctor_set(x_1080, 1, x_1078); -x_1081 = lean_array_push(x_1066, x_1080); -x_1082 = l_Lean_Parser_categoryParserFnImpl___closed__4; -lean_inc(x_1001); -lean_inc(x_1002); -x_1083 = l_Lean_addMacroScope(x_1002, x_1082, x_1001); -x_1084 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_1085 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1085, 0, x_1030); -lean_ctor_set(x_1085, 1, x_1084); -lean_ctor_set(x_1085, 2, x_1083); -lean_ctor_set(x_1085, 3, x_1029); -lean_inc(x_1085); -x_1086 = lean_array_push(x_1003, x_1085); -x_1087 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__14; -x_1088 = lean_array_push(x_1086, x_1087); +lean_ctor_set(x_1077, 2, x_1074); +lean_ctor_set(x_1077, 3, x_1075); +x_1078 = lean_array_push(x_1042, x_1077); +x_1079 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1079, 0, x_1044); +lean_ctor_set(x_1079, 1, x_1048); +x_1080 = lean_array_push(x_1078, x_1079); +x_1081 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; +x_1082 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1082, 0, x_1081); +lean_ctor_set(x_1082, 1, x_1080); +x_1083 = lean_array_push(x_1042, x_1082); +x_1084 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1084, 0, x_1044); +lean_ctor_set(x_1084, 1, x_1083); +x_1085 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; +x_1086 = lean_array_push(x_1085, x_1084); +x_1087 = lean_array_push(x_1086, x_1060); +x_1088 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; x_1089 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1089, 0, x_1005); -lean_ctor_set(x_1089, 1, x_1088); -x_1090 = lean_array_push(x_1003, x_1089); -x_1091 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__19; -x_1092 = lean_array_push(x_1090, x_1091); -x_1093 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; -x_1094 = lean_array_push(x_1093, x_1085); -x_1095 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_1096 = lean_array_push(x_1094, x_1095); -x_1097 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; -x_1098 = lean_array_push(x_1097, x_692); -x_1099 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__15; -x_1100 = lean_array_push(x_1098, x_1099); -x_1101 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_1102 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1102, 0, x_1101); -lean_ctor_set(x_1102, 1, x_1100); -x_1103 = lean_array_push(x_1003, x_1102); -x_1104 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1104, 0, x_1005); -lean_ctor_set(x_1104, 1, x_1103); -x_1105 = lean_array_push(x_1003, x_1104); -x_1106 = lean_array_push(x_1105, x_1091); -x_1107 = lean_array_push(x_1106, x_17); -x_1108 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; +lean_ctor_set(x_1089, 0, x_1088); +lean_ctor_set(x_1089, 1, x_1087); +x_1090 = lean_array_push(x_1042, x_1089); +x_1091 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1091, 0, x_1044); +lean_ctor_set(x_1091, 1, x_1090); +x_1092 = l_Lean_Elab_Tactic_evalIntro___closed__5; +x_1093 = lean_array_push(x_1092, x_1091); +x_1094 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__13; +x_1095 = lean_array_push(x_1093, x_1094); +x_1096 = lean_array_push(x_1095, x_1094); +x_1097 = lean_array_push(x_1096, x_1094); +x_1098 = lean_array_push(x_1097, x_1094); +x_1099 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; +x_1100 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1100, 0, x_1099); +lean_ctor_set(x_1100, 1, x_1098); +x_1101 = lean_array_push(x_1042, x_1100); +x_1102 = l_Lean_Elab_Command_expandElab___closed__7; +lean_inc(x_1040); +lean_inc(x_1041); +x_1103 = l_Lean_addMacroScope(x_1041, x_1102, x_1040); +x_1104 = l_Lean_Elab_Command_expandElab___closed__6; +x_1105 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1105, 0, x_1053); +lean_ctor_set(x_1105, 1, x_1104); +lean_ctor_set(x_1105, 2, x_1103); +lean_ctor_set(x_1105, 3, x_1075); +x_1106 = lean_array_push(x_1042, x_1105); +x_1107 = lean_array_push(x_1106, x_1094); +x_1108 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; x_1109 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1109, 0, x_1108); lean_ctor_set(x_1109, 1, x_1107); -x_1110 = lean_array_push(x_1003, x_1109); -x_1111 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_1112 = lean_array_push(x_1110, x_1111); -x_1113 = l_Lean_Elab_Command_expandElab___closed__19; -x_1114 = l_Lean_addMacroScope(x_1002, x_1113, x_1001); -x_1115 = l_Lean_Elab_Command_expandElab___closed__18; -x_1116 = l_Lean_Elab_Command_expandElab___closed__22; -x_1117 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1117, 0, x_1030); -lean_ctor_set(x_1117, 1, x_1115); -lean_ctor_set(x_1117, 2, x_1114); -lean_ctor_set(x_1117, 3, x_1116); -x_1118 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; -x_1119 = lean_array_push(x_1118, x_1117); +x_1110 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; +x_1111 = lean_array_push(x_1110, x_1109); +x_1112 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; +lean_inc(x_1040); +lean_inc(x_1041); +x_1113 = l_Lean_addMacroScope(x_1041, x_1112, x_1040); +x_1114 = l_Lean_Elab_Command_expandElab___closed__34; +x_1115 = l_Lean_Elab_Command_expandElab___closed__36; +x_1116 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1116, 0, x_1053); +lean_ctor_set(x_1116, 1, x_1114); +lean_ctor_set(x_1116, 2, x_1113); +lean_ctor_set(x_1116, 3, x_1115); +x_1117 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__22; +x_1118 = lean_array_push(x_1117, x_1116); +x_1119 = l_Lean_Elab_Term_elabLetDeclCore___closed__6; x_1120 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1120, 0, x_1108); -lean_ctor_set(x_1120, 1, x_1119); -x_1121 = lean_array_push(x_1112, x_1120); +lean_ctor_set(x_1120, 0, x_1119); +lean_ctor_set(x_1120, 1, x_1118); +x_1121 = lean_array_push(x_1042, x_1120); x_1122 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1122, 0, x_1005); +lean_ctor_set(x_1122, 0, x_1044); lean_ctor_set(x_1122, 1, x_1121); -x_1123 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_1124 = lean_array_push(x_1123, x_1122); -x_1125 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1126 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1126, 0, x_1125); -lean_ctor_set(x_1126, 1, x_1124); -x_1127 = lean_array_push(x_1096, x_1126); -x_1128 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_1129 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1129, 0, x_1128); -lean_ctor_set(x_1129, 1, x_1127); -x_1130 = lean_array_push(x_1092, x_1129); -x_1131 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__11; -x_1132 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1132, 0, x_1131); -lean_ctor_set(x_1132, 1, x_1130); -x_1133 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__9; -x_1134 = lean_array_push(x_1133, x_1132); -x_1135 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__7; -x_1136 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1136, 0, x_1135); -lean_ctor_set(x_1136, 1, x_1134); -x_1137 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__28; -x_1138 = lean_array_push(x_1137, x_1136); -x_1139 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; -x_1140 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1140, 0, x_1139); -lean_ctor_set(x_1140, 1, x_1138); -x_1141 = lean_array_push(x_1081, x_1140); -x_1142 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; -x_1143 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1143, 0, x_1142); -lean_ctor_set(x_1143, 1, x_1141); -x_1144 = lean_array_push(x_1056, x_1143); -x_1145 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; -x_1146 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1146, 0, x_1145); -lean_ctor_set(x_1146, 1, x_1144); -x_1147 = lean_array_push(x_1026, x_1146); -x_1148 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1148, 0, x_1005); -lean_ctor_set(x_1148, 1, x_1147); -x_1149 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1149, 0, x_1148); -lean_ctor_set(x_1149, 1, x_689); -return x_1149; -} -} -else -{ -lean_object* x_1150; uint8_t x_1151; -lean_dec(x_1); -x_1150 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__17; -x_1151 = lean_name_eq(x_18, x_1150); -if (x_1151 == 0) -{ -lean_object* x_1152; lean_object* x_1153; lean_object* x_1154; lean_object* x_1155; lean_object* x_1156; lean_object* x_1157; lean_object* x_1158; -lean_dec(x_693); -lean_dec(x_692); -lean_dec(x_38); -lean_dec(x_17); -lean_dec(x_13); -lean_dec(x_6); -x_1152 = l_System_FilePath_dirName___closed__1; -x_1153 = l_Lean_Name_toStringWithSep(x_1152, x_18); -x_1154 = l_Lean_Elab_Command_expandElab___closed__37; -x_1155 = lean_string_append(x_1154, x_1153); -lean_dec(x_1153); -x_1156 = l_Lean_Elab_Command_expandElab___closed__38; -x_1157 = lean_string_append(x_1155, x_1156); -x_1158 = l_Lean_Macro_throwError___rarg(x_15, x_1157, x_2, x_689); -lean_dec(x_2); -return x_1158; -} -else -{ -lean_object* x_1159; lean_object* x_1160; lean_object* x_1161; lean_object* x_1162; lean_object* x_1163; lean_object* x_1164; lean_object* x_1165; lean_object* x_1166; lean_object* x_1167; lean_object* x_1168; lean_object* x_1169; lean_object* x_1170; lean_object* x_1171; lean_object* x_1172; lean_object* x_1173; lean_object* x_1174; lean_object* x_1175; lean_object* x_1176; lean_object* x_1177; lean_object* x_1178; lean_object* x_1179; lean_object* x_1180; lean_object* x_1181; lean_object* x_1182; lean_object* x_1183; lean_object* x_1184; lean_object* x_1185; lean_object* x_1186; lean_object* x_1187; lean_object* x_1188; lean_object* x_1189; lean_object* x_1190; lean_object* x_1191; lean_object* x_1192; lean_object* x_1193; lean_object* x_1194; lean_object* x_1195; lean_object* x_1196; lean_object* x_1197; lean_object* x_1198; lean_object* x_1199; lean_object* x_1200; lean_object* x_1201; lean_object* x_1202; lean_object* x_1203; lean_object* x_1204; lean_object* x_1205; lean_object* x_1206; lean_object* x_1207; lean_object* x_1208; lean_object* x_1209; lean_object* x_1210; lean_object* x_1211; lean_object* x_1212; lean_object* x_1213; lean_object* x_1214; lean_object* x_1215; lean_object* x_1216; lean_object* x_1217; lean_object* x_1218; lean_object* x_1219; lean_object* x_1220; lean_object* x_1221; lean_object* x_1222; lean_object* x_1223; lean_object* x_1224; lean_object* x_1225; lean_object* x_1226; lean_object* x_1227; lean_object* x_1228; lean_object* x_1229; lean_object* x_1230; lean_object* x_1231; lean_object* x_1232; lean_object* x_1233; lean_object* x_1234; lean_object* x_1235; lean_object* x_1236; lean_object* x_1237; lean_object* x_1238; lean_object* x_1239; lean_object* x_1240; lean_object* x_1241; lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; lean_object* x_1245; lean_object* x_1246; lean_object* x_1247; lean_object* x_1248; lean_object* x_1249; lean_object* x_1250; lean_object* x_1251; lean_object* x_1252; lean_object* x_1253; lean_object* x_1254; lean_object* x_1255; lean_object* x_1256; lean_object* x_1257; lean_object* x_1258; lean_object* x_1259; lean_object* x_1260; lean_object* x_1261; lean_object* x_1262; lean_object* x_1263; lean_object* x_1264; lean_object* x_1265; lean_object* x_1266; lean_object* x_1267; lean_object* x_1268; lean_object* x_1269; lean_object* x_1270; lean_object* x_1271; lean_object* x_1272; lean_object* x_1273; lean_object* x_1274; lean_object* x_1275; lean_object* x_1276; lean_object* x_1277; lean_object* x_1278; lean_object* x_1279; lean_object* x_1280; lean_object* x_1281; lean_object* x_1282; lean_object* x_1283; lean_object* x_1284; lean_object* x_1285; lean_object* x_1286; lean_object* x_1287; lean_object* x_1288; lean_object* x_1289; lean_object* x_1290; lean_object* x_1291; lean_object* x_1292; lean_object* x_1293; lean_object* x_1294; lean_object* x_1295; lean_object* x_1296; lean_object* x_1297; lean_object* x_1298; lean_object* x_1299; lean_object* x_1300; lean_object* x_1301; lean_object* x_1302; lean_object* x_1303; lean_object* x_1304; lean_object* x_1305; lean_object* x_1306; lean_object* x_1307; lean_object* x_1308; lean_object* x_1309; lean_object* x_1310; lean_object* x_1311; lean_object* x_1312; lean_object* x_1313; lean_object* x_1314; lean_object* x_1315; lean_object* x_1316; lean_object* x_1317; lean_object* x_1318; lean_object* x_1319; lean_object* x_1320; lean_object* x_1321; lean_object* x_1322; lean_object* x_1323; lean_object* x_1324; lean_object* x_1325; lean_object* x_1326; lean_object* x_1327; lean_object* x_1328; lean_object* x_1329; lean_object* x_1330; lean_object* x_1331; -lean_dec(x_18); -x_1159 = l_Lean_Syntax_getArg(x_15, x_4); -lean_dec(x_15); -x_1160 = lean_ctor_get(x_2, 2); -lean_inc(x_1160); -x_1161 = lean_ctor_get(x_2, 1); -lean_inc(x_1161); -lean_dec(x_2); -x_1162 = l_Array_empty___closed__1; -x_1163 = l_Array_append___rarg(x_1162, x_6); -lean_dec(x_6); -x_1164 = l_Lean_nullKind___closed__2; +x_1123 = lean_array_push(x_1092, x_1122); +x_1124 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; +x_1125 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1125, 0, x_1124); +lean_ctor_set(x_1125, 1, x_1123); +x_1126 = lean_array_push(x_1111, x_1125); +x_1127 = l_Lean_Parser_categoryParserFnImpl___closed__4; +lean_inc(x_1040); +lean_inc(x_1041); +x_1128 = l_Lean_addMacroScope(x_1041, x_1127, x_1040); +x_1129 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_1130 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1130, 0, x_1053); +lean_ctor_set(x_1130, 1, x_1129); +lean_ctor_set(x_1130, 2, x_1128); +lean_ctor_set(x_1130, 3, x_1075); +lean_inc(x_1130); +x_1131 = lean_array_push(x_1042, x_1130); +x_1132 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__14; +x_1133 = lean_array_push(x_1131, x_1132); +x_1134 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1134, 0, x_1044); +lean_ctor_set(x_1134, 1, x_1133); +x_1135 = lean_array_push(x_1042, x_1134); +x_1136 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__19; +x_1137 = lean_array_push(x_1135, x_1136); +x_1138 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; +x_1139 = lean_array_push(x_1138, x_1130); +x_1140 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1141 = lean_array_push(x_1139, x_1140); +x_1142 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; +x_1143 = lean_array_push(x_1142, x_719); +x_1144 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__15; +x_1145 = lean_array_push(x_1143, x_1144); +x_1146 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_1147 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1147, 0, x_1146); +lean_ctor_set(x_1147, 1, x_1145); +x_1148 = lean_array_push(x_1042, x_1147); +x_1149 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1149, 0, x_1044); +lean_ctor_set(x_1149, 1, x_1148); +x_1150 = lean_array_push(x_1042, x_1149); +x_1151 = lean_array_push(x_1150, x_1136); +x_1152 = lean_array_push(x_1151, x_20); +x_1153 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; +x_1154 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1154, 0, x_1153); +lean_ctor_set(x_1154, 1, x_1152); +x_1155 = lean_array_push(x_1042, x_1154); +x_1156 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_1157 = lean_array_push(x_1155, x_1156); +x_1158 = l_Lean_Elab_Command_expandElab___closed__19; +x_1159 = l_Lean_addMacroScope(x_1041, x_1158, x_1040); +x_1160 = l_Lean_Elab_Command_expandElab___closed__18; +x_1161 = l_Lean_Elab_Command_expandElab___closed__22; +x_1162 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1162, 0, x_1053); +lean_ctor_set(x_1162, 1, x_1160); +lean_ctor_set(x_1162, 2, x_1159); +lean_ctor_set(x_1162, 3, x_1161); +x_1163 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; +x_1164 = lean_array_push(x_1163, x_1162); x_1165 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1165, 0, x_1164); -lean_ctor_set(x_1165, 1, x_1163); -x_1166 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; -x_1167 = lean_array_push(x_1166, x_1165); -x_1168 = lean_array_push(x_1162, x_693); -x_1169 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__2; -lean_inc(x_1168); -x_1170 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1170, 0, x_1169); -lean_ctor_set(x_1170, 1, x_1168); -x_1171 = l_Lean_Elab_Term_expandArrayLit___closed__10; -x_1172 = lean_array_push(x_1171, x_1170); -x_1173 = l_Lean_Elab_Term_expandArrayLit___closed__11; -x_1174 = lean_array_push(x_1172, x_1173); -x_1175 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1175, 0, x_1164); -lean_ctor_set(x_1175, 1, x_1174); -x_1176 = lean_array_push(x_1167, x_1175); -x_1177 = l_Array_append___rarg(x_1162, x_38); -lean_dec(x_38); -x_1178 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1178, 0, x_1164); -lean_ctor_set(x_1178, 1, x_1177); -x_1179 = lean_array_push(x_1176, x_1178); -x_1180 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__21; -x_1181 = lean_array_push(x_1179, x_1180); -x_1182 = lean_array_push(x_1181, x_13); -x_1183 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; -x_1184 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1184, 0, x_1183); -lean_ctor_set(x_1184, 1, x_1182); -x_1185 = lean_array_push(x_1162, x_1184); -x_1186 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; -lean_inc(x_1160); -lean_inc(x_1161); -x_1187 = l_Lean_addMacroScope(x_1161, x_1186, x_1160); -x_1188 = lean_box(0); -x_1189 = l_Lean_Init_LeanInit___instance__8___closed__1; -x_1190 = l_Lean_Elab_Command_expandElab___closed__31; -x_1191 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1191, 0, x_1189); -lean_ctor_set(x_1191, 1, x_1190); -lean_ctor_set(x_1191, 2, x_1187); -lean_ctor_set(x_1191, 3, x_1188); -x_1192 = lean_array_push(x_1162, x_1191); +lean_ctor_set(x_1165, 0, x_1153); +lean_ctor_set(x_1165, 1, x_1164); +x_1166 = lean_array_push(x_1157, x_1165); +x_1167 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1167, 0, x_1044); +lean_ctor_set(x_1167, 1, x_1166); +x_1168 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_1169 = lean_array_push(x_1168, x_1167); +x_1170 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_1171 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1171, 0, x_1170); +lean_ctor_set(x_1171, 1, x_1169); +x_1172 = lean_array_push(x_1141, x_1171); +x_1173 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_1174 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1174, 0, x_1173); +lean_ctor_set(x_1174, 1, x_1172); +x_1175 = lean_array_push(x_1137, x_1174); +x_1176 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__11; +x_1177 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1177, 0, x_1176); +lean_ctor_set(x_1177, 1, x_1175); +x_1178 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__9; +x_1179 = lean_array_push(x_1178, x_1177); +x_1180 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__7; +x_1181 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1181, 0, x_1180); +lean_ctor_set(x_1181, 1, x_1179); +x_1182 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__28; +x_1183 = lean_array_push(x_1182, x_1181); +x_1184 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; +x_1185 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1185, 0, x_1184); +lean_ctor_set(x_1185, 1, x_1183); +x_1186 = lean_array_push(x_1126, x_1185); +x_1187 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; +x_1188 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1188, 0, x_1187); +lean_ctor_set(x_1188, 1, x_1186); +x_1189 = lean_array_push(x_1101, x_1188); +x_1190 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_1191 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1191, 0, x_1190); +lean_ctor_set(x_1191, 1, x_1189); +x_1192 = lean_array_push(x_1072, x_1191); x_1193 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1193, 0, x_1164); -lean_ctor_set(x_1193, 1, x_1168); -x_1194 = lean_array_push(x_1192, x_1193); -x_1195 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; -x_1196 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1196, 0, x_1195); -lean_ctor_set(x_1196, 1, x_1194); -x_1197 = lean_array_push(x_1162, x_1196); -x_1198 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1198, 0, x_1164); -lean_ctor_set(x_1198, 1, x_1197); -x_1199 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; -x_1200 = lean_array_push(x_1199, x_1198); -x_1201 = lean_array_push(x_1200, x_1173); -x_1202 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; -x_1203 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1203, 0, x_1202); -lean_ctor_set(x_1203, 1, x_1201); -x_1204 = lean_array_push(x_1162, x_1203); -x_1205 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1205, 0, x_1164); -lean_ctor_set(x_1205, 1, x_1204); -x_1206 = l_Lean_Elab_Tactic_evalIntro___closed__5; -x_1207 = lean_array_push(x_1206, x_1205); -x_1208 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__13; -x_1209 = lean_array_push(x_1207, x_1208); -x_1210 = lean_array_push(x_1209, x_1208); -x_1211 = lean_array_push(x_1210, x_1208); -x_1212 = lean_array_push(x_1211, x_1208); -x_1213 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; -x_1214 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1214, 0, x_1213); -lean_ctor_set(x_1214, 1, x_1212); -x_1215 = lean_array_push(x_1162, x_1214); -x_1216 = l_Lean_Elab_Command_expandElab___closed__7; -lean_inc(x_1160); -lean_inc(x_1161); -x_1217 = l_Lean_addMacroScope(x_1161, x_1216, x_1160); -x_1218 = l_Lean_Elab_Command_expandElab___closed__6; -x_1219 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1219, 0, x_1189); -lean_ctor_set(x_1219, 1, x_1218); -lean_ctor_set(x_1219, 2, x_1217); -lean_ctor_set(x_1219, 3, x_1188); -x_1220 = lean_array_push(x_1162, x_1219); -x_1221 = lean_array_push(x_1220, x_1208); -x_1222 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; -x_1223 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1223, 0, x_1222); -lean_ctor_set(x_1223, 1, x_1221); -x_1224 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; -x_1225 = lean_array_push(x_1224, x_1223); -x_1226 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; -lean_inc(x_1160); -lean_inc(x_1161); -x_1227 = l_Lean_addMacroScope(x_1161, x_1226, x_1160); -x_1228 = l_Lean_Elab_Command_expandElab___closed__34; -x_1229 = l_Lean_Elab_Command_expandElab___closed__36; -x_1230 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1230, 0, x_1189); -lean_ctor_set(x_1230, 1, x_1228); -lean_ctor_set(x_1230, 2, x_1227); -lean_ctor_set(x_1230, 3, x_1229); -x_1231 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__22; -x_1232 = lean_array_push(x_1231, x_1230); -x_1233 = l_Lean_Elab_Term_elabLetDeclCore___closed__6; -x_1234 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1234, 0, x_1233); -lean_ctor_set(x_1234, 1, x_1232); -x_1235 = lean_array_push(x_1162, x_1234); +lean_ctor_set(x_1193, 0, x_1044); +lean_ctor_set(x_1193, 1, x_1192); +x_1194 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1194, 0, x_1193); +lean_ctor_set(x_1194, 1, x_716); +return x_1194; +} +} +else +{ +lean_object* x_1195; uint8_t x_1196; +lean_dec(x_1); +x_1195 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__17; +x_1196 = lean_name_eq(x_21, x_1195); +if (x_1196 == 0) +{ +lean_object* x_1197; lean_object* x_1198; lean_object* x_1199; lean_object* x_1200; lean_object* x_1201; lean_object* x_1202; lean_object* x_1203; +lean_dec(x_720); +lean_dec(x_719); +lean_dec(x_41); +lean_dec(x_20); +lean_dec(x_16); +lean_dec(x_9); +lean_dec(x_6); +x_1197 = l_System_FilePath_dirName___closed__1; +x_1198 = l_Lean_Name_toStringWithSep(x_1197, x_21); +x_1199 = l_Lean_Elab_Command_expandElab___closed__37; +x_1200 = lean_string_append(x_1199, x_1198); +lean_dec(x_1198); +x_1201 = l_Lean_Elab_Command_expandElab___closed__38; +x_1202 = lean_string_append(x_1200, x_1201); +x_1203 = l_Lean_Macro_throwError___rarg(x_18, x_1202, x_2, x_716); +lean_dec(x_2); +return x_1203; +} +else +{ +lean_object* x_1204; lean_object* x_1205; lean_object* x_1206; lean_object* x_1207; lean_object* x_1208; lean_object* x_1209; lean_object* x_1210; lean_object* x_1211; lean_object* x_1212; lean_object* x_1213; lean_object* x_1214; lean_object* x_1215; lean_object* x_1216; lean_object* x_1217; lean_object* x_1218; lean_object* x_1219; lean_object* x_1220; lean_object* x_1221; lean_object* x_1222; lean_object* x_1223; lean_object* x_1224; lean_object* x_1225; lean_object* x_1226; lean_object* x_1227; lean_object* x_1228; lean_object* x_1229; lean_object* x_1230; lean_object* x_1231; lean_object* x_1232; lean_object* x_1233; lean_object* x_1234; lean_object* x_1235; lean_object* x_1236; lean_object* x_1237; lean_object* x_1238; lean_object* x_1239; lean_object* x_1240; lean_object* x_1241; lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; lean_object* x_1245; lean_object* x_1246; lean_object* x_1247; lean_object* x_1248; lean_object* x_1249; lean_object* x_1250; lean_object* x_1251; lean_object* x_1252; lean_object* x_1253; lean_object* x_1254; lean_object* x_1255; lean_object* x_1256; lean_object* x_1257; lean_object* x_1258; lean_object* x_1259; lean_object* x_1260; lean_object* x_1261; lean_object* x_1262; lean_object* x_1263; lean_object* x_1264; lean_object* x_1265; lean_object* x_1266; lean_object* x_1267; lean_object* x_1268; lean_object* x_1269; lean_object* x_1270; lean_object* x_1271; lean_object* x_1272; lean_object* x_1273; lean_object* x_1274; lean_object* x_1275; lean_object* x_1276; lean_object* x_1277; lean_object* x_1278; lean_object* x_1279; lean_object* x_1280; lean_object* x_1281; lean_object* x_1282; lean_object* x_1283; lean_object* x_1284; lean_object* x_1285; lean_object* x_1286; lean_object* x_1287; lean_object* x_1288; lean_object* x_1289; lean_object* x_1290; lean_object* x_1291; lean_object* x_1292; lean_object* x_1293; lean_object* x_1294; lean_object* x_1295; lean_object* x_1296; lean_object* x_1297; lean_object* x_1298; lean_object* x_1299; lean_object* x_1300; lean_object* x_1301; lean_object* x_1302; lean_object* x_1303; lean_object* x_1304; lean_object* x_1305; lean_object* x_1306; lean_object* x_1307; lean_object* x_1308; lean_object* x_1309; lean_object* x_1310; lean_object* x_1311; lean_object* x_1312; lean_object* x_1313; lean_object* x_1314; lean_object* x_1315; lean_object* x_1316; lean_object* x_1317; lean_object* x_1318; lean_object* x_1319; lean_object* x_1320; lean_object* x_1321; lean_object* x_1322; lean_object* x_1323; lean_object* x_1324; lean_object* x_1325; lean_object* x_1326; lean_object* x_1327; lean_object* x_1328; lean_object* x_1329; lean_object* x_1330; lean_object* x_1331; lean_object* x_1332; lean_object* x_1333; lean_object* x_1334; lean_object* x_1335; lean_object* x_1336; lean_object* x_1337; lean_object* x_1338; lean_object* x_1339; lean_object* x_1340; lean_object* x_1341; lean_object* x_1342; lean_object* x_1343; lean_object* x_1344; lean_object* x_1345; lean_object* x_1346; lean_object* x_1347; lean_object* x_1348; lean_object* x_1349; lean_object* x_1350; lean_object* x_1351; lean_object* x_1352; lean_object* x_1353; lean_object* x_1354; lean_object* x_1355; lean_object* x_1356; lean_object* x_1357; lean_object* x_1358; lean_object* x_1359; lean_object* x_1360; lean_object* x_1361; lean_object* x_1362; lean_object* x_1363; lean_object* x_1364; lean_object* x_1365; lean_object* x_1366; lean_object* x_1367; lean_object* x_1368; lean_object* x_1369; lean_object* x_1370; lean_object* x_1371; lean_object* x_1372; lean_object* x_1373; lean_object* x_1374; lean_object* x_1375; lean_object* x_1376; lean_object* x_1377; lean_object* x_1378; lean_object* x_1379; lean_object* x_1380; lean_object* x_1381; lean_object* x_1382; +lean_dec(x_21); +x_1204 = l_Lean_Syntax_getArg(x_18, x_4); +lean_dec(x_18); +x_1205 = lean_ctor_get(x_2, 2); +lean_inc(x_1205); +x_1206 = lean_ctor_get(x_2, 1); +lean_inc(x_1206); +lean_dec(x_2); +x_1207 = l_Array_empty___closed__1; +x_1208 = l_Array_append___rarg(x_1207, x_6); +lean_dec(x_6); +x_1209 = l_Lean_nullKind___closed__2; +x_1210 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1210, 0, x_1209); +lean_ctor_set(x_1210, 1, x_1208); +x_1211 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; +x_1212 = lean_array_push(x_1211, x_1210); +x_1213 = lean_array_push(x_1207, x_720); +x_1214 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_528____closed__9; +lean_inc(x_1213); +x_1215 = lean_array_push(x_1213, x_1214); +x_1216 = l_Nat_repr(x_9); +x_1217 = l_Lean_numLitKind; +x_1218 = l_Lean_Init_LeanInit___instance__8___closed__1; +x_1219 = l_Lean_mkStxLit(x_1217, x_1216, x_1218); +x_1220 = lean_array_push(x_1215, x_1219); +x_1221 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; +x_1222 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1222, 0, x_1221); +lean_ctor_set(x_1222, 1, x_1220); +x_1223 = l_Lean_Elab_Term_expandArrayLit___closed__10; +x_1224 = lean_array_push(x_1223, x_1222); +x_1225 = l_Lean_Elab_Term_expandArrayLit___closed__11; +x_1226 = lean_array_push(x_1224, x_1225); +x_1227 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1227, 0, x_1209); +lean_ctor_set(x_1227, 1, x_1226); +x_1228 = lean_array_push(x_1212, x_1227); +x_1229 = l_Array_append___rarg(x_1207, x_41); +lean_dec(x_41); +x_1230 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1230, 0, x_1209); +lean_ctor_set(x_1230, 1, x_1229); +x_1231 = lean_array_push(x_1228, x_1230); +x_1232 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__21; +x_1233 = lean_array_push(x_1231, x_1232); +x_1234 = lean_array_push(x_1233, x_16); +x_1235 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; x_1236 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1236, 0, x_1164); -lean_ctor_set(x_1236, 1, x_1235); -x_1237 = lean_array_push(x_1206, x_1236); -x_1238 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; -x_1239 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1239, 0, x_1238); -lean_ctor_set(x_1239, 1, x_1237); -x_1240 = lean_array_push(x_1225, x_1239); -x_1241 = l_Lean_Parser_categoryParserFnImpl___closed__4; -lean_inc(x_1160); -lean_inc(x_1161); -x_1242 = l_Lean_addMacroScope(x_1161, x_1241, x_1160); -x_1243 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_1244 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1244, 0, x_1189); -lean_ctor_set(x_1244, 1, x_1243); -lean_ctor_set(x_1244, 2, x_1242); -lean_ctor_set(x_1244, 3, x_1188); -lean_inc(x_1244); -x_1245 = lean_array_push(x_1162, x_1244); -x_1246 = l_Lean_Elab_Command_expandElab___closed__42; -lean_inc(x_1160); -lean_inc(x_1161); -x_1247 = l_Lean_addMacroScope(x_1161, x_1246, x_1160); -x_1248 = l_Lean_Elab_Command_expandElab___closed__41; -x_1249 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1249, 0, x_1189); +lean_ctor_set(x_1236, 0, x_1235); +lean_ctor_set(x_1236, 1, x_1234); +x_1237 = lean_array_push(x_1207, x_1236); +x_1238 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; +lean_inc(x_1205); +lean_inc(x_1206); +x_1239 = l_Lean_addMacroScope(x_1206, x_1238, x_1205); +x_1240 = lean_box(0); +x_1241 = l_Lean_Elab_Command_expandElab___closed__31; +x_1242 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1242, 0, x_1218); +lean_ctor_set(x_1242, 1, x_1241); +lean_ctor_set(x_1242, 2, x_1239); +lean_ctor_set(x_1242, 3, x_1240); +x_1243 = lean_array_push(x_1207, x_1242); +x_1244 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1244, 0, x_1209); +lean_ctor_set(x_1244, 1, x_1213); +x_1245 = lean_array_push(x_1243, x_1244); +x_1246 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; +x_1247 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1247, 0, x_1246); +lean_ctor_set(x_1247, 1, x_1245); +x_1248 = lean_array_push(x_1207, x_1247); +x_1249 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1249, 0, x_1209); lean_ctor_set(x_1249, 1, x_1248); -lean_ctor_set(x_1249, 2, x_1247); -lean_ctor_set(x_1249, 3, x_1188); -lean_inc(x_1249); -x_1250 = lean_array_push(x_1245, x_1249); -x_1251 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1251, 0, x_1164); -lean_ctor_set(x_1251, 1, x_1250); -x_1252 = lean_array_push(x_1162, x_1251); -x_1253 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__19; -x_1254 = lean_array_push(x_1252, x_1253); -x_1255 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; -x_1256 = lean_array_push(x_1255, x_1244); -x_1257 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_1258 = lean_array_push(x_1256, x_1257); -x_1259 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; -x_1260 = lean_array_push(x_1259, x_692); -x_1261 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__15; -x_1262 = lean_array_push(x_1260, x_1261); -x_1263 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_1264 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1264, 0, x_1263); -lean_ctor_set(x_1264, 1, x_1262); -x_1265 = lean_array_push(x_1162, x_1264); -x_1266 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1266, 0, x_1164); -lean_ctor_set(x_1266, 1, x_1265); -x_1267 = lean_array_push(x_1162, x_1266); -x_1268 = lean_array_push(x_1267, x_1253); -x_1269 = l_Lean_Elab_Command_expandElab___closed__47; -lean_inc(x_1160); -lean_inc(x_1161); -x_1270 = l_Lean_addMacroScope(x_1161, x_1269, x_1160); -x_1271 = l_Lean_Elab_Command_expandElab___closed__45; -x_1272 = l_Lean_Elab_Command_expandElab___closed__49; -x_1273 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1273, 0, x_1189); -lean_ctor_set(x_1273, 1, x_1271); -lean_ctor_set(x_1273, 2, x_1270); -lean_ctor_set(x_1273, 3, x_1272); -x_1274 = lean_array_push(x_1162, x_1273); -x_1275 = lean_array_push(x_1162, x_1249); -x_1276 = lean_array_push(x_1162, x_1159); -x_1277 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1277, 0, x_1164); -lean_ctor_set(x_1277, 1, x_1276); -x_1278 = lean_array_push(x_1162, x_1277); -x_1279 = lean_array_push(x_1278, x_1253); -x_1280 = lean_array_push(x_1279, x_17); -x_1281 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__11; -x_1282 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1282, 0, x_1281); -lean_ctor_set(x_1282, 1, x_1280); -x_1283 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__9; -x_1284 = lean_array_push(x_1283, x_1282); -x_1285 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__7; -x_1286 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1286, 0, x_1285); -lean_ctor_set(x_1286, 1, x_1284); -x_1287 = lean_array_push(x_1275, x_1286); -x_1288 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1288, 0, x_1164); -lean_ctor_set(x_1288, 1, x_1287); -x_1289 = lean_array_push(x_1274, x_1288); -x_1290 = l_Lean_mkAppStx___closed__8; -x_1291 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1291, 0, x_1290); -lean_ctor_set(x_1291, 1, x_1289); -x_1292 = lean_array_push(x_1268, x_1291); -x_1293 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; -x_1294 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1294, 0, x_1293); -lean_ctor_set(x_1294, 1, x_1292); -x_1295 = lean_array_push(x_1162, x_1294); -x_1296 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_1297 = lean_array_push(x_1295, x_1296); -x_1298 = l_Lean_Elab_Command_expandElab___closed__19; -x_1299 = l_Lean_addMacroScope(x_1161, x_1298, x_1160); -x_1300 = l_Lean_Elab_Command_expandElab___closed__18; -x_1301 = l_Lean_Elab_Command_expandElab___closed__22; -x_1302 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1302, 0, x_1189); -lean_ctor_set(x_1302, 1, x_1300); -lean_ctor_set(x_1302, 2, x_1299); -lean_ctor_set(x_1302, 3, x_1301); -x_1303 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; -x_1304 = lean_array_push(x_1303, x_1302); -x_1305 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1305, 0, x_1293); -lean_ctor_set(x_1305, 1, x_1304); -x_1306 = lean_array_push(x_1297, x_1305); -x_1307 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1307, 0, x_1164); -lean_ctor_set(x_1307, 1, x_1306); -x_1308 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; -x_1309 = lean_array_push(x_1308, x_1307); -x_1310 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1311 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1311, 0, x_1310); -lean_ctor_set(x_1311, 1, x_1309); -x_1312 = lean_array_push(x_1258, x_1311); -x_1313 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_1314 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1314, 0, x_1313); -lean_ctor_set(x_1314, 1, x_1312); -x_1315 = lean_array_push(x_1254, x_1314); -x_1316 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1316, 0, x_1281); -lean_ctor_set(x_1316, 1, x_1315); -x_1317 = lean_array_push(x_1283, x_1316); -x_1318 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1318, 0, x_1285); -lean_ctor_set(x_1318, 1, x_1317); -x_1319 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__28; -x_1320 = lean_array_push(x_1319, x_1318); -x_1321 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; -x_1322 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1322, 0, x_1321); -lean_ctor_set(x_1322, 1, x_1320); -x_1323 = lean_array_push(x_1240, x_1322); -x_1324 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; -x_1325 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1325, 0, x_1324); -lean_ctor_set(x_1325, 1, x_1323); -x_1326 = lean_array_push(x_1215, x_1325); -x_1327 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_1250 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; +x_1251 = lean_array_push(x_1250, x_1249); +x_1252 = lean_array_push(x_1251, x_1225); +x_1253 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; +x_1254 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1254, 0, x_1253); +lean_ctor_set(x_1254, 1, x_1252); +x_1255 = lean_array_push(x_1207, x_1254); +x_1256 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1256, 0, x_1209); +lean_ctor_set(x_1256, 1, x_1255); +x_1257 = l_Lean_Elab_Tactic_evalIntro___closed__5; +x_1258 = lean_array_push(x_1257, x_1256); +x_1259 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__13; +x_1260 = lean_array_push(x_1258, x_1259); +x_1261 = lean_array_push(x_1260, x_1259); +x_1262 = lean_array_push(x_1261, x_1259); +x_1263 = lean_array_push(x_1262, x_1259); +x_1264 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; +x_1265 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1265, 0, x_1264); +lean_ctor_set(x_1265, 1, x_1263); +x_1266 = lean_array_push(x_1207, x_1265); +x_1267 = l_Lean_Elab_Command_expandElab___closed__7; +lean_inc(x_1205); +lean_inc(x_1206); +x_1268 = l_Lean_addMacroScope(x_1206, x_1267, x_1205); +x_1269 = l_Lean_Elab_Command_expandElab___closed__6; +x_1270 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1270, 0, x_1218); +lean_ctor_set(x_1270, 1, x_1269); +lean_ctor_set(x_1270, 2, x_1268); +lean_ctor_set(x_1270, 3, x_1240); +x_1271 = lean_array_push(x_1207, x_1270); +x_1272 = lean_array_push(x_1271, x_1259); +x_1273 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; +x_1274 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1274, 0, x_1273); +lean_ctor_set(x_1274, 1, x_1272); +x_1275 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; +x_1276 = lean_array_push(x_1275, x_1274); +x_1277 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; +lean_inc(x_1205); +lean_inc(x_1206); +x_1278 = l_Lean_addMacroScope(x_1206, x_1277, x_1205); +x_1279 = l_Lean_Elab_Command_expandElab___closed__34; +x_1280 = l_Lean_Elab_Command_expandElab___closed__36; +x_1281 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1281, 0, x_1218); +lean_ctor_set(x_1281, 1, x_1279); +lean_ctor_set(x_1281, 2, x_1278); +lean_ctor_set(x_1281, 3, x_1280); +x_1282 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__22; +x_1283 = lean_array_push(x_1282, x_1281); +x_1284 = l_Lean_Elab_Term_elabLetDeclCore___closed__6; +x_1285 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1285, 0, x_1284); +lean_ctor_set(x_1285, 1, x_1283); +x_1286 = lean_array_push(x_1207, x_1285); +x_1287 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1287, 0, x_1209); +lean_ctor_set(x_1287, 1, x_1286); +x_1288 = lean_array_push(x_1257, x_1287); +x_1289 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; +x_1290 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1290, 0, x_1289); +lean_ctor_set(x_1290, 1, x_1288); +x_1291 = lean_array_push(x_1276, x_1290); +x_1292 = l_Lean_Parser_categoryParserFnImpl___closed__4; +lean_inc(x_1205); +lean_inc(x_1206); +x_1293 = l_Lean_addMacroScope(x_1206, x_1292, x_1205); +x_1294 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_1295 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1295, 0, x_1218); +lean_ctor_set(x_1295, 1, x_1294); +lean_ctor_set(x_1295, 2, x_1293); +lean_ctor_set(x_1295, 3, x_1240); +lean_inc(x_1295); +x_1296 = lean_array_push(x_1207, x_1295); +x_1297 = l_Lean_Elab_Command_expandElab___closed__42; +lean_inc(x_1205); +lean_inc(x_1206); +x_1298 = l_Lean_addMacroScope(x_1206, x_1297, x_1205); +x_1299 = l_Lean_Elab_Command_expandElab___closed__41; +x_1300 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1300, 0, x_1218); +lean_ctor_set(x_1300, 1, x_1299); +lean_ctor_set(x_1300, 2, x_1298); +lean_ctor_set(x_1300, 3, x_1240); +lean_inc(x_1300); +x_1301 = lean_array_push(x_1296, x_1300); +x_1302 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1302, 0, x_1209); +lean_ctor_set(x_1302, 1, x_1301); +x_1303 = lean_array_push(x_1207, x_1302); +x_1304 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__19; +x_1305 = lean_array_push(x_1303, x_1304); +x_1306 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; +x_1307 = lean_array_push(x_1306, x_1295); +x_1308 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1309 = lean_array_push(x_1307, x_1308); +x_1310 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; +x_1311 = lean_array_push(x_1310, x_719); +x_1312 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__15; +x_1313 = lean_array_push(x_1311, x_1312); +x_1314 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_1315 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1315, 0, x_1314); +lean_ctor_set(x_1315, 1, x_1313); +x_1316 = lean_array_push(x_1207, x_1315); +x_1317 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1317, 0, x_1209); +lean_ctor_set(x_1317, 1, x_1316); +x_1318 = lean_array_push(x_1207, x_1317); +x_1319 = lean_array_push(x_1318, x_1304); +x_1320 = l_Lean_Elab_Command_expandElab___closed__47; +lean_inc(x_1205); +lean_inc(x_1206); +x_1321 = l_Lean_addMacroScope(x_1206, x_1320, x_1205); +x_1322 = l_Lean_Elab_Command_expandElab___closed__45; +x_1323 = l_Lean_Elab_Command_expandElab___closed__49; +x_1324 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1324, 0, x_1218); +lean_ctor_set(x_1324, 1, x_1322); +lean_ctor_set(x_1324, 2, x_1321); +lean_ctor_set(x_1324, 3, x_1323); +x_1325 = lean_array_push(x_1207, x_1324); +x_1326 = lean_array_push(x_1207, x_1300); +x_1327 = lean_array_push(x_1207, x_1204); x_1328 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1328, 0, x_1327); -lean_ctor_set(x_1328, 1, x_1326); -x_1329 = lean_array_push(x_1185, x_1328); -x_1330 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1330, 0, x_1164); -lean_ctor_set(x_1330, 1, x_1329); -x_1331 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1331, 0, x_1330); -lean_ctor_set(x_1331, 1, x_689); -return x_1331; -} -} -} -} -else -{ -uint8_t x_1332; -lean_dec(x_40); -lean_dec(x_38); -lean_dec(x_21); -lean_dec(x_18); -lean_dec(x_17); -lean_dec(x_15); -lean_dec(x_13); -lean_dec(x_6); -lean_dec(x_2); -lean_dec(x_1); -x_1332 = !lean_is_exclusive(x_46); -if (x_1332 == 0) -{ -return x_46; -} -else -{ -lean_object* x_1333; lean_object* x_1334; lean_object* x_1335; -x_1333 = lean_ctor_get(x_46, 0); -x_1334 = lean_ctor_get(x_46, 1); -lean_inc(x_1334); -lean_inc(x_1333); -lean_dec(x_46); -x_1335 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1335, 0, x_1333); -lean_ctor_set(x_1335, 1, x_1334); -return x_1335; -} -} -} -else -{ -uint8_t x_1336; -lean_dec(x_38); -lean_dec(x_28); -lean_dec(x_21); -lean_dec(x_18); -lean_dec(x_17); -lean_dec(x_15); -lean_dec(x_13); -lean_dec(x_6); -lean_dec(x_2); -lean_dec(x_1); -x_1336 = !lean_is_exclusive(x_39); -if (x_1336 == 0) -{ -return x_39; -} -else -{ -lean_object* x_1337; lean_object* x_1338; lean_object* x_1339; -x_1337 = lean_ctor_get(x_39, 0); -x_1338 = lean_ctor_get(x_39, 1); -lean_inc(x_1338); -lean_inc(x_1337); -lean_dec(x_39); +lean_ctor_set(x_1328, 0, x_1209); +lean_ctor_set(x_1328, 1, x_1327); +x_1329 = lean_array_push(x_1207, x_1328); +x_1330 = lean_array_push(x_1329, x_1304); +x_1331 = lean_array_push(x_1330, x_20); +x_1332 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__11; +x_1333 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1333, 0, x_1332); +lean_ctor_set(x_1333, 1, x_1331); +x_1334 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__9; +x_1335 = lean_array_push(x_1334, x_1333); +x_1336 = l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__7; +x_1337 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1337, 0, x_1336); +lean_ctor_set(x_1337, 1, x_1335); +x_1338 = lean_array_push(x_1326, x_1337); x_1339 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1339, 0, x_1337); +lean_ctor_set(x_1339, 0, x_1209); lean_ctor_set(x_1339, 1, x_1338); -return x_1339; +x_1340 = lean_array_push(x_1325, x_1339); +x_1341 = l_Lean_mkAppStx___closed__8; +x_1342 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1342, 0, x_1341); +lean_ctor_set(x_1342, 1, x_1340); +x_1343 = lean_array_push(x_1319, x_1342); +x_1344 = l_Lean_Elab_Term_expandFunBinders_loop___closed__18; +x_1345 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1345, 0, x_1344); +lean_ctor_set(x_1345, 1, x_1343); +x_1346 = lean_array_push(x_1207, x_1345); +x_1347 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_1348 = lean_array_push(x_1346, x_1347); +x_1349 = l_Lean_Elab_Command_expandElab___closed__19; +x_1350 = l_Lean_addMacroScope(x_1206, x_1349, x_1205); +x_1351 = l_Lean_Elab_Command_expandElab___closed__18; +x_1352 = l_Lean_Elab_Command_expandElab___closed__22; +x_1353 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1353, 0, x_1218); +lean_ctor_set(x_1353, 1, x_1351); +lean_ctor_set(x_1353, 2, x_1350); +lean_ctor_set(x_1353, 3, x_1352); +x_1354 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; +x_1355 = lean_array_push(x_1354, x_1353); +x_1356 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1356, 0, x_1344); +lean_ctor_set(x_1356, 1, x_1355); +x_1357 = lean_array_push(x_1348, x_1356); +x_1358 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1358, 0, x_1209); +lean_ctor_set(x_1358, 1, x_1357); +x_1359 = l_Lean_Elab_Term_expandFunBinders_loop___closed__16; +x_1360 = lean_array_push(x_1359, x_1358); +x_1361 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_1362 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1362, 0, x_1361); +lean_ctor_set(x_1362, 1, x_1360); +x_1363 = lean_array_push(x_1309, x_1362); +x_1364 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_1365 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1365, 0, x_1364); +lean_ctor_set(x_1365, 1, x_1363); +x_1366 = lean_array_push(x_1305, x_1365); +x_1367 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1367, 0, x_1332); +lean_ctor_set(x_1367, 1, x_1366); +x_1368 = lean_array_push(x_1334, x_1367); +x_1369 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1369, 0, x_1336); +lean_ctor_set(x_1369, 1, x_1368); +x_1370 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__28; +x_1371 = lean_array_push(x_1370, x_1369); +x_1372 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; +x_1373 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1373, 0, x_1372); +lean_ctor_set(x_1373, 1, x_1371); +x_1374 = lean_array_push(x_1291, x_1373); +x_1375 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; +x_1376 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1376, 0, x_1375); +lean_ctor_set(x_1376, 1, x_1374); +x_1377 = lean_array_push(x_1266, x_1376); +x_1378 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_1379 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1379, 0, x_1378); +lean_ctor_set(x_1379, 1, x_1377); +x_1380 = lean_array_push(x_1237, x_1379); +x_1381 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1381, 0, x_1209); +lean_ctor_set(x_1381, 1, x_1380); +x_1382 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1382, 0, x_1381); +lean_ctor_set(x_1382, 1, x_716); +return x_1382; +} } } } else { -uint8_t x_1340; -lean_dec(x_28); +uint8_t x_1383; +lean_dec(x_43); +lean_dec(x_41); lean_dec(x_24); lean_dec(x_21); +lean_dec(x_20); lean_dec(x_18); -lean_dec(x_17); -lean_dec(x_15); -lean_dec(x_13); -lean_dec(x_8); +lean_dec(x_16); +lean_dec(x_9); lean_dec(x_6); lean_dec(x_2); lean_dec(x_1); -x_1340 = !lean_is_exclusive(x_33); -if (x_1340 == 0) +x_1383 = !lean_is_exclusive(x_49); +if (x_1383 == 0) { -return x_33; +return x_49; } else { -lean_object* x_1341; lean_object* x_1342; lean_object* x_1343; -x_1341 = lean_ctor_get(x_33, 0); -x_1342 = lean_ctor_get(x_33, 1); -lean_inc(x_1342); -lean_inc(x_1341); -lean_dec(x_33); -x_1343 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1343, 0, x_1341); -lean_ctor_set(x_1343, 1, x_1342); -return x_1343; +lean_object* x_1384; lean_object* x_1385; lean_object* x_1386; +x_1384 = lean_ctor_get(x_49, 0); +x_1385 = lean_ctor_get(x_49, 1); +lean_inc(x_1385); +lean_inc(x_1384); +lean_dec(x_49); +x_1386 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1386, 0, x_1384); +lean_ctor_set(x_1386, 1, x_1385); +return x_1386; } } } else { -uint8_t x_1344; +uint8_t x_1387; +lean_dec(x_41); +lean_dec(x_31); +lean_dec(x_24); lean_dec(x_21); +lean_dec(x_20); lean_dec(x_18); -lean_dec(x_17); -lean_dec(x_15); -lean_dec(x_13); -lean_dec(x_11); -lean_dec(x_8); +lean_dec(x_16); +lean_dec(x_9); lean_dec(x_6); lean_dec(x_2); lean_dec(x_1); -x_1344 = !lean_is_exclusive(x_23); -if (x_1344 == 0) +x_1387 = !lean_is_exclusive(x_42); +if (x_1387 == 0) { -return x_23; +return x_42; } else { -lean_object* x_1345; lean_object* x_1346; lean_object* x_1347; -x_1345 = lean_ctor_get(x_23, 0); -x_1346 = lean_ctor_get(x_23, 1); -lean_inc(x_1346); -lean_inc(x_1345); -lean_dec(x_23); -x_1347 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1347, 0, x_1345); -lean_ctor_set(x_1347, 1, x_1346); -return x_1347; +lean_object* x_1388; lean_object* x_1389; lean_object* x_1390; +x_1388 = lean_ctor_get(x_42, 0); +x_1389 = lean_ctor_get(x_42, 1); +lean_inc(x_1389); +lean_inc(x_1388); +lean_dec(x_42); +x_1390 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1390, 0, x_1388); +lean_ctor_set(x_1390, 1, x_1389); +return x_1390; +} +} +} +else +{ +uint8_t x_1391; +lean_dec(x_31); +lean_dec(x_27); +lean_dec(x_24); +lean_dec(x_21); +lean_dec(x_20); +lean_dec(x_18); +lean_dec(x_16); +lean_dec(x_11); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_1391 = !lean_is_exclusive(x_36); +if (x_1391 == 0) +{ +return x_36; +} +else +{ +lean_object* x_1392; lean_object* x_1393; lean_object* x_1394; +x_1392 = lean_ctor_get(x_36, 0); +x_1393 = lean_ctor_get(x_36, 1); +lean_inc(x_1393); +lean_inc(x_1392); +lean_dec(x_36); +x_1394 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1394, 0, x_1392); +lean_ctor_set(x_1394, 1, x_1393); +return x_1394; +} +} +} +else +{ +uint8_t x_1395; +lean_dec(x_24); +lean_dec(x_21); +lean_dec(x_20); +lean_dec(x_18); +lean_dec(x_16); +lean_dec(x_14); +lean_dec(x_11); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_1395 = !lean_is_exclusive(x_26); +if (x_1395 == 0) +{ +return x_26; +} +else +{ +lean_object* x_1396; lean_object* x_1397; lean_object* x_1398; +x_1396 = lean_ctor_get(x_26, 0); +x_1397 = lean_ctor_get(x_26, 1); +lean_inc(x_1397); +lean_inc(x_1396); +lean_dec(x_26); +x_1398 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1398, 0, x_1396); +lean_ctor_set(x_1398, 1, x_1397); +return x_1398; } } } @@ -24195,9 +24339,9 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Command_expandMacro___closed__2); res = l___regBuiltin_Lean_Elab_Command_expandMacro(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_9346____closed__1 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_9346____closed__1(); -lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_9346____closed__1); -res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_9346_(lean_io_mk_world()); +l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_9384____closed__1 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_9384____closed__1(); +lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_9384____closed__1); +res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_9384_(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 d8e3b977c1..09af14e308 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Basic.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Basic.c @@ -96,7 +96,6 @@ lean_object* l_Lean_mkMVar(lean_object*); lean_object* l_Lean_Elab_Tactic_evalTacticSeq1Indented___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_Array_empty___closed__1; lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_findTag_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; extern lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___closed__4; uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_forEachVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -118,8 +117,8 @@ lean_object* l___regBuiltin_Lean_Elab_Tactic_evalCase___closed__1; lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_evalTacticUsing_loop___spec__1___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_List_forIn_loop___at_Lean_Elab_Tactic_tagUntaggedGoals___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_saveAllState(lean_object*); -extern lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__14; lean_object* l_Lean_Meta_subst(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__1; lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_getIntrosSize_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__14; lean_object* l_Lean_Elab_Tactic_liftMetaTacticAux_match__2___rarg(lean_object*, lean_object*); @@ -159,6 +158,7 @@ extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_Tactic_evalTactic___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_throwTacticEx___rarg___closed__2; lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__2; lean_object* l_Lean_Elab_Term_getMainModule___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_done___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_USize_decLt(size_t, size_t); @@ -333,7 +333,6 @@ extern lean_object* l_Lean_throwUnknownConstant___rarg___closed__3; lean_object* l_Lean_Elab_Tactic_evalTactic_match__3(lean_object*); lean_object* l_Lean_Elab_Tactic_Lean_Elab_Tactic_Basic___instance__4___closed__1; lean_object* l_Lean_Elab_logAt___at_Lean_Elab_Tactic_evalTactic___spec__9(lean_object*, lean_object*, 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_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225____closed__1; lean_object* l_Lean_Elab_Tactic_evalFailIfSuccess___closed__2; lean_object* l_Lean_Elab_Term_reportUnsolvedGoals___closed__1; lean_object* l___regBuiltin_Lean_Elab_Tactic_evalOrelse___closed__1; @@ -371,6 +370,7 @@ lean_object* l_Lean_Meta_instantiateMVars___at_Lean_Elab_Tactic_ensureHasNoMVars 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* 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* l_Lean_Elab_Tactic_evalIntros___closed__2; +extern lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__4; lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_sortFVarIds(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_appendGoals(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_saveBacktrackableState(lean_object*); @@ -402,7 +402,6 @@ lean_object* l_Lean_Elab_Tactic_liftTermElabM___rarg___boxed(lean_object*, lean_ lean_object* l___regBuiltin_Lean_Elab_Tactic_evalFocus(lean_object*); lean_object* lean_environment_main_module(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalTraceState___closed__1; -extern lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__11; lean_object* l_Lean_Elab_Tactic_evalSubst___closed__2; lean_object* l_Lean_Elab_Tactic_evalRevert___closed__1; uint8_t lean_nat_dec_le(lean_object*, lean_object*); @@ -469,6 +468,7 @@ lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_getIntrosSiz lean_object* l___regBuiltin_Lean_Elab_Tactic_evalTacticSeqBracketed___closed__1; lean_object* l_Lean_Elab_Tactic_evalAssumption___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_HashMapImp_find_x3f___at_Lean_Elab_Tactic_evalTactic___spec__5(lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__12; lean_object* l_Lean_Elab_Tactic_liftTermElabM___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_liftMetaTacticAux(lean_object*); lean_object* l_Lean_Elab_Tactic_adaptExpander(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -558,6 +558,7 @@ lean_object* l_Lean_indentExpr(lean_object*); lean_object* l_Lean_Elab_Tactic_getMainModule___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getFVarId___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_forInUnsafe_loop___at_Lean_Elab_Tactic_evalClear___spec__1___lambda__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___kind_tactic____x40_Init_Tactics___hyg_2____closed__3; lean_object* l_Lean_throwError___at_Lean_Elab_Term_throwErrorIfErrors___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_setMVarTag(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalCase(lean_object*); @@ -583,7 +584,6 @@ lean_object* l___regBuiltin_Lean_Elab_Tactic_evalIntroMatch___closed__3; lean_object* l_Lean_Elab_Tactic_TacticM_run_x27___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_log___at_Lean_Elab_Tactic_evalTactic___spec__8(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_liftMetaTacticAux___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*); -extern lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Intro___hyg_538____closed__2; lean_object* l_Lean_Elab_Tactic_expandTacticMacro(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_expandTacticMacroFns_loop_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalChoiceAux___spec__1___rarg(lean_object*); @@ -1683,7 +1683,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_mkMacroAttributeUnsafe___closed__2; -x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225____closed__1; +x_2 = l_myMacro____x40_Init_Tactics___hyg_31____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -1729,7 +1729,7 @@ _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_Tactic_Intro___hyg_538____closed__2; +x_2 = l___kind_tactic____x40_Init_Tactics___hyg_2____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -1739,7 +1739,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Tactic_mkTacticAttribute___closed__1; -x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225____closed__1; +x_2 = l_myMacro____x40_Init_Tactics___hyg_31____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -1751,9 +1751,9 @@ lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_obj x_2 = l_Lean_Elab_Tactic_mkTacticAttribute___closed__3; x_3 = l_Lean_Elab_Tactic_mkTacticAttribute___closed__5; x_4 = l_Lean_Elab_Tactic_mkTacticAttribute___closed__6; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_5 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_6 = l_Lean_Elab_Tactic_mkTacticAttribute___closed__7; -x_7 = l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Intro___hyg_538____closed__2; +x_7 = l___kind_tactic____x40_Init_Tactics___hyg_2____closed__3; x_8 = l_Lean_Elab_mkElabAttribute___rarg(x_2, x_3, x_4, x_5, x_6, x_7, x_1); return x_8; } @@ -7118,7 +7118,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalDone___closed__2() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l___regBuiltin_Lean_Elab_Tactic_evalDone___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -8147,7 +8147,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___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__7; +x_3 = l_myMacro____x40_Init_Tactics___hyg_31____closed__4; x_4 = l___regBuiltin_Lean_Elab_Tactic_evalSeq1___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -8177,7 +8177,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalParen___closed__1( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -8388,7 +8388,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalTacticSeq1Indented _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l___regBuiltin_Lean_Elab_Tactic_evalTacticSeq1Indented___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -8611,7 +8611,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalTacticSeqBracketed _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l___regBuiltin_Lean_Elab_Tactic_evalTacticSeqBracketed___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -8669,7 +8669,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalFocus___closed__2( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l___regBuiltin_Lean_Elab_Tactic_evalFocus___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -8725,7 +8725,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalTacticSeq___closed _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l___regBuiltin_Lean_Elab_Tactic_evalTacticSeq___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -9067,7 +9067,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalSkip___closed__2() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l___regBuiltin_Lean_Elab_Tactic_evalSkip___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -9226,7 +9226,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalFailIfSuccess___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l___regBuiltin_Lean_Elab_Tactic_evalFailIfSuccess___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -9312,7 +9312,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalTraceState___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l___regBuiltin_Lean_Elab_Tactic_evalTraceState___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -9500,7 +9500,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalAssumption___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Meta_assumptionAux___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -9914,7 +9914,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_evalIntro___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Elab_Term_expandFunBinders_loop___closed__17; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -9924,7 +9924,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_evalIntro___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Meta_clear___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -9956,7 +9956,7 @@ lean_object* l_Lean_Elab_Tactic_evalIntro(lean_object* x_1, lean_object* x_2, le _start: { lean_object* x_11; uint8_t x_12; -x_11 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__9; +x_11 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__7; lean_inc(x_1); x_12 = l_Lean_Syntax_isOfKind(x_1, x_11); if (x_12 == 0) @@ -10120,7 +10120,7 @@ x_34 = l_Lean_nullKind___closed__2; x_35 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_35, 0, x_34); lean_ctor_set(x_35, 1, x_33); -x_36 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__11; +x_36 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__9; x_37 = lean_array_push(x_36, x_35); x_38 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_38, 0, x_11); @@ -10142,7 +10142,7 @@ x_47 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_47, 0, x_34); lean_ctor_set(x_47, 1, x_46); x_48 = lean_array_push(x_32, x_47); -x_49 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__7; +x_49 = l_myMacro____x40_Init_Tactics___hyg_31____closed__4; x_50 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_48); @@ -10314,7 +10314,7 @@ x_97 = lean_array_push(x_96, x_95); x_98 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_98, 0, x_72); lean_ctor_set(x_98, 1, x_97); -x_99 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__11; +x_99 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__9; lean_inc(x_98); x_100 = lean_array_push(x_99, x_98); x_101 = lean_alloc_ctor(1, 2, 0); @@ -10362,7 +10362,7 @@ x_130 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_130, 0, x_72); lean_ctor_set(x_130, 1, x_129); x_131 = lean_array_push(x_116, x_130); -x_132 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__14; +x_132 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__12; x_133 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_133, 0, x_132); lean_ctor_set(x_133, 1, x_131); @@ -10379,7 +10379,7 @@ x_141 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_141, 0, x_72); lean_ctor_set(x_141, 1, x_140); x_142 = lean_array_push(x_96, x_141); -x_143 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__7; +x_143 = l_myMacro____x40_Init_Tactics___hyg_31____closed__4; x_144 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_144, 0, x_143); lean_ctor_set(x_144, 1, x_142); @@ -10483,7 +10483,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___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__9; +x_3 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__7; x_4 = l___regBuiltin_Lean_Elab_Tactic_evalIntro___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -10661,7 +10661,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalIntroMatch___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l___regBuiltin_Lean_Elab_Tactic_evalIntroMatch___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -11174,7 +11174,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_evalIntros___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Elab_Tactic_evalIntros___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -11812,7 +11812,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_evalRevert___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Meta_revert___lambda__2___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -13547,7 +13547,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_evalSubst___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Meta_substCore___lambda__13___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -14154,7 +14154,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_evalCase___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Elab_Tactic_evalCase___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -14558,7 +14558,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_evalOrelse___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Elab_Tactic_evalOrelse___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -14677,7 +14677,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_834____closed__1; -x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Intro___hyg_538____closed__2; +x_2 = l___kind_tactic____x40_Init_Tactics___hyg_2____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } diff --git a/stage0/stdlib/Lean/Elab/Tactic/Binders.c b/stage0/stdlib/Lean/Elab/Tactic/Binders.c index dd3bde4d82..29fbb950fd 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Binders.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Binders.c @@ -23,12 +23,12 @@ lean_object* l_Array_append___rarg(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_expandSufficesTactic___closed__3; extern lean_object* l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_464____closed__1; extern lean_object* l_Array_empty___closed__1; -extern lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; lean_object* l___regBuiltin_Lean_Elab_Tactic_expandSufficesTactic___closed__2; lean_object* l___private_Lean_Elab_Tactic_Binders_0__Lean_Elab_Tactic_liftTermBinderSyntax___closed__9; lean_object* l___private_Lean_Elab_Tactic_Binders_0__Lean_Elab_Tactic_liftTermBinderSyntax___closed__4; lean_object* l_Lean_Elab_Tactic_expandLetTactic___boxed(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_expandSufficesTactic___closed__1; +extern lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__1; extern lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__14; lean_object* l___regBuiltin_Lean_Elab_Tactic_expandHaveTactic(lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); @@ -39,6 +39,7 @@ lean_object* l___private_Lean_Elab_Tactic_Binders_0__Lean_Elab_Tactic_liftTermBi extern lean_object* l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__6; lean_object* l___private_Lean_Elab_Tactic_Binders_0__Lean_Elab_Tactic_liftTermBinderSyntax___closed__1; lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__2; lean_object* l___regBuiltin_Lean_Elab_Tactic_expandLetBangTactic___closed__1; extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_299____closed__5; lean_object* l_Lean_Elab_Tactic_expandLetBangTactic(lean_object*, lean_object*, lean_object*); @@ -57,7 +58,6 @@ lean_object* l_Lean_Elab_Tactic_expandShowTactic___closed__8; extern lean_object* l_Lean_Parser_Error_toString___closed__2; lean_object* l_Lean_Elab_Tactic_expandHaveTactic___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_expandShowTactic(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225____closed__1; lean_object* l_Lean_Elab_Tactic_expandShowTactic___closed__11; lean_object* l_Lean_Elab_Tactic_expandSufficesTactic(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Tactic_Binders_0__Lean_Elab_Tactic_liftTermBinderSyntax_match__1(lean_object*); @@ -113,7 +113,7 @@ x_8 = lean_ctor_get(x_4, 1); lean_inc(x_8); x_9 = lean_ctor_get_usize(x_4, 2); lean_dec(x_4); -x_10 = l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225____closed__1; +x_10 = l_myMacro____x40_Init_Tactics___hyg_31____closed__1; x_11 = lean_string_dec_eq(x_8, x_10); lean_dec(x_8); if (x_11 == 0) @@ -226,7 +226,7 @@ static lean_object* _init_l___private_Lean_Elab_Tactic_Binders_0__Lean_Elab_Tact _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l___private_Lean_Elab_Tactic_Binders_0__Lean_Elab_Tactic_liftTermBinderSyntax___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -276,7 +276,7 @@ lean_inc(x_7); x_8 = lean_ctor_get(x_5, 1); lean_inc(x_8); lean_dec(x_5); -x_9 = l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225____closed__1; +x_9 = l_myMacro____x40_Init_Tactics___hyg_31____closed__1; x_10 = lean_string_dec_eq(x_8, x_9); lean_dec(x_8); if (x_10 == 0) @@ -377,7 +377,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_expandHaveTactic___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l___regBuiltin_Lean_Elab_Tactic_expandHaveTactic___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -423,7 +423,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_expandLetTactic___clos _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_464____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -469,7 +469,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_expandLetBangTactic___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Elab_Term_elabLetDeclCore___closed__9; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -523,7 +523,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_expandSufficesTactic__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l___regBuiltin_Lean_Elab_Tactic_expandSufficesTactic___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -714,7 +714,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_expandShowTactic___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Elab_Tactic_expandShowTactic___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; diff --git a/stage0/stdlib/Lean/Elab/Tactic/ElabTerm.c b/stage0/stdlib/Lean/Elab/Tactic/ElabTerm.c index 4b4e86789b..7cf7f6f7bf 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/ElabTerm.c +++ b/stage0/stdlib/Lean/Elab/Tactic/ElabTerm.c @@ -15,7 +15,6 @@ extern "C" { #endif lean_object* l_Lean_Meta_assert(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_elabAsFVar___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_Lean_Elab_Tactic_expandAdmit___rarg___closed__4; size_t l_USize_add(size_t, size_t); lean_object* l_Lean_Elab_Tactic_refineCore_match__2___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getMainTag(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -23,45 +22,37 @@ extern lean_object* l_Lean_withIncRecDepth___rarg___lambda__2___closed__2; uint8_t l_USize_decEq(size_t, size_t); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalExact(lean_object*); lean_object* lean_array_uget(lean_object*, size_t); -lean_object* l_Lean_Elab_Tactic_expandAdmit___rarg___closed__9; uint8_t l_Lean_MetavarKind_isNatural(uint8_t); -lean_object* l_Lean_Elab_Tactic_expandAdmit___rarg___closed__8; lean_object* l_Lean_Elab_Tactic_evalExact_match__1(lean_object*); extern lean_object* l_Array_empty___closed__1; -extern lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; lean_object* l_List_append___rarg(lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_expandAdmit___rarg___closed__6; lean_object* l_Lean_Meta_getMVarsNoDelayed___at_Lean_Elab_Tactic_elabTermWithHoles___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_Tactic_expandAdmit___rarg(lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); -lean_object* l_Lean_Elab_Tactic_expandAdmit___rarg___closed__3; lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_elabTermWithHoles___spec__2(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_elabAsFVar_match__3(lean_object*); lean_object* l_Lean_Elab_Tactic_elabAsFVar___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalApply(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_expandAdmit___rarg___closed__5; lean_object* l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_995____spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__2; lean_object* l_Lean_Elab_Tactic_evalRefine(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_refineCore_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_Meta_instantiateMVarsImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getMVarDecl___at_Lean_Elab_Tactic_getMainTag___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_apply(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__6; lean_object* l_Lean_Elab_Tactic_elabTerm___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_Meta_intro1Core(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_elabTermWithHoles(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_evalExact___closed__2; lean_object* l_Lean_Elab_Tactic_elabAsFVar_match__4___rarg(lean_object*, lean_object*); lean_object* l_Lean_replaceRef(lean_object*, lean_object*); lean_object* l_Lean_Meta_getMVarsNoDelayed___at_Lean_Elab_Tactic_elabTermWithHoles___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_assignExprMVar___at_Lean_Elab_Tactic_evalExact___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_assignExprMVar___at_Lean_Elab_Tactic_evalExact___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_evalExact___closed__1; lean_object* l_Lean_Elab_Tactic_evalApply___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_expandAdmit___rarg___closed__1; lean_object* lean_name_mk_string(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_elabAsFVar_match__4(lean_object*); lean_object* l_Lean_Elab_Term_synthesizeSyntheticMVars_loop(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -70,12 +61,7 @@ lean_object* l_Lean_MetavarContext_assignExpr(lean_object*, lean_object*, lean_o lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_elabTermWithHoles___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalRefine___closed__3; lean_object* l_Lean_Elab_Tactic_getMainGoal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_expandAdmit___rarg___closed__2; -extern lean_object* l_Lean_mkAppStx___closed__6; lean_object* l_Lean_Elab_Tactic_evalApply_match__1(lean_object*); -extern lean_object* l_Lean_Meta_admit___closed__1; -lean_object* l___regBuiltin_Lean_Elab_Tactic_expandAdmit___closed__1; -lean_object* l_Lean_Elab_Tactic_expandAdmit___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_elabAsFVar_match__1(lean_object*); extern lean_object* l___private_Lean_Meta_Tactic_Apply_0__Lean_Meta_throwApplyError___rarg___closed__1; lean_object* l_Lean_Meta_getMVarsNoDelayedImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -84,7 +70,6 @@ lean_object* l_Lean_Elab_Tactic_evalApply___lambda__1___boxed(lean_object*, lean extern lean_object* l_Lean_Elab_Tactic_tacticElabAttribute; lean_object* l_Lean_Elab_Tactic_evalRefineBang___closed__1; lean_object* l_Lean_Elab_Tactic_evalExact___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___regBuiltin_Lean_Elab_Tactic_expandAdmit(lean_object*); 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_Lean_Elab_Tactic_elabAsFVar_match__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalExact___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -95,7 +80,6 @@ lean_object* l_Lean_Elab_Tactic_elabTerm___lambda__1(uint8_t, lean_object*, lean lean_object* l___regBuiltin_Lean_Elab_Tactic_evalExact___closed__1; lean_object* l_Lean_Elab_Tactic_evalExact_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalRefine___closed__2; -extern lean_object* l_Lean_Elab_macroAttribute; lean_object* l_Lean_Meta_inferType___at_Lean_Elab_Tactic_elabAsFVar___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_refineCore_match__1(lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); @@ -103,9 +87,7 @@ lean_object* l_Lean_Elab_Tactic_elabAsFVar_match__2(lean_object*); extern lean_object* l_Lean_Elab_Tactic_evalIntro___closed__4; lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l_ReaderT_bind___at_Lean_Elab_Tactic_liftMetaTacticAux___spec__1___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* l___regBuiltin_Lean_Elab_Tactic_expandAdmit___closed__2; lean_object* l_Lean_Elab_Tactic_refineCore_match__2(lean_object*); -extern lean_object* l_Lean_Init_LeanInit___instance__8___closed__1; lean_object* l_Lean_Elab_Tactic_setGoals(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabTerm___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l___private_Lean_Meta_Tactic_Apply_0__Lean_Meta_reorderNonDependentFirst___closed__1; @@ -120,7 +102,6 @@ lean_object* l_Lean_Elab_Tactic_ensureHasNoMVars(lean_object*, lean_object*, lea lean_object* l_Lean_Elab_Tactic_elabTerm(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___regBuiltin_Lean_Elab_Tactic_evalRefineBang(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalApply(lean_object*); -lean_object* l_Lean_Elab_Tactic_expandAdmit(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_refineCore___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*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_toList___rarg(lean_object*); lean_object* l_Lean_Elab_Tactic_ensureHasType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -139,7 +120,6 @@ lean_object* l_Lean_Elab_Tactic_refineCore___boxed(lean_object*, lean_object*, l lean_object* l___regBuiltin_Lean_Elab_Tactic_evalRefine(lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_elabTermWithHoles___spec__3(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_elabTermWithHoles___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Tactic_expandAdmit___rarg___closed__7; lean_object* l_Lean_Elab_Tactic_evalRefineBang___closed__2; lean_object* l_Lean_Elab_Tactic_refineCore(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalExact(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -552,29 +532,11 @@ return x_29; } } } -static lean_object* _init_l_Lean_Elab_Tactic_evalExact___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("exact"); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_evalExact___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; -x_2 = l_Lean_Elab_Tactic_evalExact___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} lean_object* l_Lean_Elab_Tactic_evalExact(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; uint8_t x_12; -x_11 = l_Lean_Elab_Tactic_evalExact___closed__2; +x_11 = l_myMacro____x40_Init_Tactics___hyg_31____closed__6; lean_inc(x_1); x_12 = l_Lean_Syntax_isOfKind(x_1, x_11); if (x_12 == 0) @@ -779,166 +741,12 @@ _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_Elab_Tactic_evalExact___closed__2; +x_3 = l_myMacro____x40_Init_Tactics___hyg_31____closed__6; x_4 = l___regBuiltin_Lean_Elab_Tactic_evalExact___closed__1; 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_Tactic_expandAdmit___rarg___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Init_LeanInit___instance__8___closed__1; -x_2 = l_Lean_Elab_Tactic_evalExact___closed__1; -x_3 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_expandAdmit___rarg___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_empty___closed__1; -x_2 = l_Lean_Elab_Tactic_expandAdmit___rarg___closed__1; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_expandAdmit___rarg___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("sorry"); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_expandAdmit___rarg___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_mkAppStx___closed__6; -x_2 = l_Lean_Elab_Tactic_expandAdmit___rarg___closed__3; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_expandAdmit___rarg___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Init_LeanInit___instance__8___closed__1; -x_2 = l_Lean_Elab_Tactic_expandAdmit___rarg___closed__3; -x_3 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_expandAdmit___rarg___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_empty___closed__1; -x_2 = l_Lean_Elab_Tactic_expandAdmit___rarg___closed__5; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_expandAdmit___rarg___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_expandAdmit___rarg___closed__4; -x_2 = l_Lean_Elab_Tactic_expandAdmit___rarg___closed__6; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_expandAdmit___rarg___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_expandAdmit___rarg___closed__2; -x_2 = l_Lean_Elab_Tactic_expandAdmit___rarg___closed__7; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_expandAdmit___rarg___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_evalExact___closed__2; -x_2 = l_Lean_Elab_Tactic_expandAdmit___rarg___closed__8; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -lean_object* l_Lean_Elab_Tactic_expandAdmit___rarg(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Elab_Tactic_expandAdmit___rarg___closed__9; -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; -} -} -lean_object* l_Lean_Elab_Tactic_expandAdmit(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_expandAdmit___rarg), 1, 0); -return x_3; -} -} -lean_object* l_Lean_Elab_Tactic_expandAdmit___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_Lean_Elab_Tactic_expandAdmit(x_1, x_2); -lean_dec(x_2); -lean_dec(x_1); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_expandAdmit___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; -x_2 = l_Lean_Meta_admit___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_expandAdmit___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_expandAdmit___boxed), 2, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Elab_Tactic_expandAdmit(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_macroAttribute; -x_3 = l___regBuiltin_Lean_Elab_Tactic_expandAdmit___closed__1; -x_4 = l___regBuiltin_Lean_Elab_Tactic_expandAdmit___closed__2; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} lean_object* l_Lean_Meta_getMVarsNoDelayed___at_Lean_Elab_Tactic_elabTermWithHoles___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { @@ -1869,7 +1677,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_evalRefine___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Elab_Tactic_evalRefine___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -1976,7 +1784,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_evalRefineBang___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Elab_Tactic_evalRefineBang___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -2231,7 +2039,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_evalApply___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l___private_Lean_Meta_Tactic_Apply_0__Lean_Meta_throwApplyError___rarg___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -3037,40 +2845,11 @@ lean_dec_ref(res); res = initialize_Lean_Elab_SyntheticMVars(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Elab_Tactic_evalExact___closed__1 = _init_l_Lean_Elab_Tactic_evalExact___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_evalExact___closed__1); -l_Lean_Elab_Tactic_evalExact___closed__2 = _init_l_Lean_Elab_Tactic_evalExact___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_evalExact___closed__2); l___regBuiltin_Lean_Elab_Tactic_evalExact___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_evalExact___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalExact___closed__1); res = l___regBuiltin_Lean_Elab_Tactic_evalExact(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Elab_Tactic_expandAdmit___rarg___closed__1 = _init_l_Lean_Elab_Tactic_expandAdmit___rarg___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_expandAdmit___rarg___closed__1); -l_Lean_Elab_Tactic_expandAdmit___rarg___closed__2 = _init_l_Lean_Elab_Tactic_expandAdmit___rarg___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_expandAdmit___rarg___closed__2); -l_Lean_Elab_Tactic_expandAdmit___rarg___closed__3 = _init_l_Lean_Elab_Tactic_expandAdmit___rarg___closed__3(); -lean_mark_persistent(l_Lean_Elab_Tactic_expandAdmit___rarg___closed__3); -l_Lean_Elab_Tactic_expandAdmit___rarg___closed__4 = _init_l_Lean_Elab_Tactic_expandAdmit___rarg___closed__4(); -lean_mark_persistent(l_Lean_Elab_Tactic_expandAdmit___rarg___closed__4); -l_Lean_Elab_Tactic_expandAdmit___rarg___closed__5 = _init_l_Lean_Elab_Tactic_expandAdmit___rarg___closed__5(); -lean_mark_persistent(l_Lean_Elab_Tactic_expandAdmit___rarg___closed__5); -l_Lean_Elab_Tactic_expandAdmit___rarg___closed__6 = _init_l_Lean_Elab_Tactic_expandAdmit___rarg___closed__6(); -lean_mark_persistent(l_Lean_Elab_Tactic_expandAdmit___rarg___closed__6); -l_Lean_Elab_Tactic_expandAdmit___rarg___closed__7 = _init_l_Lean_Elab_Tactic_expandAdmit___rarg___closed__7(); -lean_mark_persistent(l_Lean_Elab_Tactic_expandAdmit___rarg___closed__7); -l_Lean_Elab_Tactic_expandAdmit___rarg___closed__8 = _init_l_Lean_Elab_Tactic_expandAdmit___rarg___closed__8(); -lean_mark_persistent(l_Lean_Elab_Tactic_expandAdmit___rarg___closed__8); -l_Lean_Elab_Tactic_expandAdmit___rarg___closed__9 = _init_l_Lean_Elab_Tactic_expandAdmit___rarg___closed__9(); -lean_mark_persistent(l_Lean_Elab_Tactic_expandAdmit___rarg___closed__9); -l___regBuiltin_Lean_Elab_Tactic_expandAdmit___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_expandAdmit___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_expandAdmit___closed__1); -l___regBuiltin_Lean_Elab_Tactic_expandAdmit___closed__2 = _init_l___regBuiltin_Lean_Elab_Tactic_expandAdmit___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_expandAdmit___closed__2); -res = l___regBuiltin_Lean_Elab_Tactic_expandAdmit(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); l_Lean_Elab_Tactic_evalRefine___closed__1 = _init_l_Lean_Elab_Tactic_evalRefine___closed__1(); lean_mark_persistent(l_Lean_Elab_Tactic_evalRefine___closed__1); l_Lean_Elab_Tactic_evalRefine___closed__2 = _init_l_Lean_Elab_Tactic_evalRefine___closed__2(); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Generalize.c b/stage0/stdlib/Lean/Elab/Tactic/Generalize.c index 2add5c6994..9a905bf539 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Generalize.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Generalize.c @@ -25,12 +25,12 @@ lean_object* l___private_Lean_Elab_Tactic_Generalize_0__Lean_Elab_Tactic_evalGen lean_object* l_Lean_Meta_inferType___at___private_Lean_Meta_InferType_0__Lean_Meta_inferAppType___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Tactic_Generalize_0__Lean_Elab_Tactic_evalGeneralizeWithEq___lambda__1___closed__3; lean_object* l_Lean_Elab_Tactic_evalGeneralizeAux___lambda__1___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___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; lean_object* l_Lean_Meta_getMVarTag(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_lift___rarg___boxed(lean_object*, lean_object*); extern lean_object* l___private_Lean_Meta_AppBuilder_0__Lean_Meta_mkEqReflImp___closed__2; lean_object* lean_expr_lift_loose_bvars(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__2; lean_object* l___private_Lean_Elab_Tactic_Generalize_0__Lean_Elab_Tactic_getVarName___boxed(lean_object*); lean_object* l___private_Lean_Elab_Tactic_Generalize_0__Lean_Elab_Tactic_evalGeneralizeFallback___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_Tactic_Generalize_0__Lean_Elab_Tactic_evalGeneralizeFinalize_match__1___rarg(lean_object*, lean_object*); @@ -1589,7 +1589,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalGeneralize___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Meta_generalize___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; diff --git a/stage0/stdlib/Lean/Elab/Tactic/Induction.c b/stage0/stdlib/Lean/Elab/Tactic/Induction.c index 466a28cda2..668d4153cc 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Induction.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Induction.c @@ -56,7 +56,6 @@ lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getAlts_ lean_object* l_Lean_Elab_Tactic_done(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_getRecFromUsingLoop_match__1___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Array_empty___closed__1; -extern lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; lean_object* lean_environment_find(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_generalizeMajor(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*); @@ -94,6 +93,7 @@ lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getRecIn lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getRecInfoDefault_match__2(lean_object*); lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_checkCasesResult_loop___closed__4; lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__2; lean_object* l_Lean_Elab_Tactic_evalInduction_match__1___rarg(lean_object*, lean_object*); uint8_t l_USize_decLt(size_t, size_t); lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getRecInfoDefault_match__2___rarg(lean_object*, lean_object*, lean_object*); @@ -8612,7 +8612,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalInduction___closed _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l___private_Lean_Meta_Tactic_Induction_0__Lean_Meta_addRecParams___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -9344,7 +9344,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalCases___closed__1( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l___private_Lean_Meta_Tactic_Cases_0__Lean_Meta_Cases_unifyEqsAux___lambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; diff --git a/stage0/stdlib/Lean/Elab/Tactic/Injection.c b/stage0/stdlib/Lean/Elab/Tactic/Injection.c index 1bbe05afed..e18767c58f 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Injection.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Injection.c @@ -15,13 +15,13 @@ extern "C" { #endif extern lean_object* l_Lean_Meta_injectionCore___closed__1; lean_object* l_Lean_stringToMessageData(lean_object*); -extern lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; lean_object* l_ReaderT_lift___rarg___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Tactic_evalAssumption___rarg___lambda__1___closed__1; lean_object* l_Lean_MessageData_ofList(lean_object*); lean_object* l___private_Lean_Elab_Tactic_Injection_0__Lean_Elab_Tactic_checkUnusedIds___closed__2; lean_object* l___private_Lean_Elab_Tactic_Injection_0__Lean_Elab_Tactic_checkUnusedIds___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__2; lean_object* l___private_Lean_Elab_Tactic_Injection_0__Lean_Elab_Tactic_checkUnusedIds___closed__1; lean_object* l___private_Lean_Elab_Tactic_Injection_0__Lean_Elab_Tactic_getInjectionNewIds(lean_object*); lean_object* l_StateRefT_x27_lift___rarg___boxed(lean_object*, lean_object*); @@ -806,7 +806,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalInjection___closed _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Meta_injectionCore___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; diff --git a/stage0/stdlib/Lean/Elab/Tactic/Location.c b/stage0/stdlib/Lean/Elab/Tactic/Location.c index e1bc633c9e..4ce861f971 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Location.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Location.c @@ -20,10 +20,9 @@ lean_object* lean_array_uset(lean_object*, size_t, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_expandLocation___boxed(lean_object*); lean_object* lean_array_get_size(lean_object*); -extern lean_object* l_Lean_mkAppStx___closed__4; lean_object* l_Lean_Elab_Tactic_expandLocation___closed__2; +extern lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__2; uint8_t l_USize_decLt(size_t, size_t); -lean_object* l_Lean_Elab_Tactic_expandLocation___closed__6; lean_object* l_Lean_Elab_Tactic_expandLocation___closed__1; lean_object* l_Lean_Elab_Tactic_expandOptLocation(lean_object*); lean_object* l_Lean_Elab_Tactic_expandLocation(lean_object*); @@ -35,7 +34,6 @@ size_t lean_usize_of_nat(lean_object*); lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_expandLocation___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getKind(lean_object*); -lean_object* l_Lean_Elab_Tactic_expandLocation___closed__5; uint8_t l_Lean_Syntax_isNone(lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); @@ -74,7 +72,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_expandLocation___closed__1() { _start: { lean_object* x_1; -x_1 = lean_mk_string("Tactic"); +x_1 = lean_mk_string("locationWildcard"); return x_1; } } @@ -82,7 +80,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_expandLocation___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_mkAppStx___closed__4; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Elab_Tactic_expandLocation___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -92,7 +90,7 @@ static lean_object* _init_l_Lean_Elab_Tactic_expandLocation___closed__3() { _start: { lean_object* x_1; -x_1 = lean_mk_string("locationWildcard"); +x_1 = lean_mk_string("locationTarget"); return x_1; } } @@ -100,30 +98,12 @@ static lean_object* _init_l_Lean_Elab_Tactic_expandLocation___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_expandLocation___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Elab_Tactic_expandLocation___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_expandLocation___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("locationTarget"); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_expandLocation___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_expandLocation___closed__2; -x_2 = l_Lean_Elab_Tactic_expandLocation___closed__5; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} lean_object* l_Lean_Elab_Tactic_expandLocation(lean_object* x_1) { _start: { @@ -132,12 +112,12 @@ x_2 = lean_unsigned_to_nat(1u); x_3 = l_Lean_Syntax_getArg(x_1, x_2); lean_inc(x_3); x_4 = l_Lean_Syntax_getKind(x_3); -x_5 = l_Lean_Elab_Tactic_expandLocation___closed__4; +x_5 = l_Lean_Elab_Tactic_expandLocation___closed__2; x_6 = lean_name_eq(x_4, x_5); if (x_6 == 0) { lean_object* x_7; uint8_t x_8; -x_7 = l_Lean_Elab_Tactic_expandLocation___closed__6; +x_7 = l_Lean_Elab_Tactic_expandLocation___closed__4; x_8 = lean_name_eq(x_4, x_7); lean_dec(x_4); if (x_8 == 0) @@ -246,10 +226,6 @@ l_Lean_Elab_Tactic_expandLocation___closed__3 = _init_l_Lean_Elab_Tactic_expandL lean_mark_persistent(l_Lean_Elab_Tactic_expandLocation___closed__3); l_Lean_Elab_Tactic_expandLocation___closed__4 = _init_l_Lean_Elab_Tactic_expandLocation___closed__4(); lean_mark_persistent(l_Lean_Elab_Tactic_expandLocation___closed__4); -l_Lean_Elab_Tactic_expandLocation___closed__5 = _init_l_Lean_Elab_Tactic_expandLocation___closed__5(); -lean_mark_persistent(l_Lean_Elab_Tactic_expandLocation___closed__5); -l_Lean_Elab_Tactic_expandLocation___closed__6 = _init_l_Lean_Elab_Tactic_expandLocation___closed__6(); -lean_mark_persistent(l_Lean_Elab_Tactic_expandLocation___closed__6); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Elab/Tactic/Match.c b/stage0/stdlib/Lean/Elab/Tactic/Match.c index 51ea40869f..43b4526048 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Match.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Match.c @@ -30,7 +30,6 @@ lean_object* lean_st_ref_get(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalTactic(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_Tactic_evalMatch___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*); -extern lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__14; lean_object* l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTerm_match__1(lean_object*); lean_object* l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__2; lean_object* lean_array_push(lean_object*, lean_object*); @@ -72,6 +71,7 @@ lean_object* l_Lean_Elab_Tactic_evalMatch(lean_object*, lean_object*, lean_objec lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalMatch___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +extern lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__12; extern lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__18; extern lean_object* l_Lean_Level_LevelToFormat_toResult___closed__4; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); @@ -1123,7 +1123,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___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__14; +x_3 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__12; x_4 = l___regBuiltin_Lean_Elab_Tactic_evalMatch___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/Tactic/Rewrite.c b/stage0/stdlib/Lean/Elab/Tactic/Rewrite.c index ee9bf2ae30..3322427316 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Rewrite.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Rewrite.c @@ -41,8 +41,8 @@ lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_rewriteAll___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*, lean_object*); lean_object* l_Lean_Elab_Tactic_rewriteLocalDeclFVarId___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*); -extern lean_object* l_Lean_Elab_Tactic_expandLocation___closed__2; lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__2; uint8_t l_USize_decLt(size_t, size_t); lean_object* l_Lean_Meta_instantiateMVarsImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_rewriteTarget___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -116,7 +116,7 @@ static lean_object* _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_expandRew _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_expandLocation___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Meta_rewrite___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -233,7 +233,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_expandRewriteTactic___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_expandLocation___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l___regBuiltin_Lean_Elab_Tactic_expandRewriteTactic___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; diff --git a/stage0/stdlib/Lean/Exception.c b/stage0/stdlib/Lean/Exception.c index 332217d11e..decca09cc4 100644 --- a/stage0/stdlib/Lean/Exception.c +++ b/stage0/stdlib/Lean/Exception.c @@ -19,13 +19,14 @@ lean_object* l_Lean_myMacro____x40_Lean_Exception___hyg_727____closed__5; extern lean_object* l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__8; lean_object* l_Lean_InternalExceptionId_toString(lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); -extern lean_object* l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__5; lean_object* l_Lean_Exception_getRef_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_withIncRecDepth___rarg___lambda__2___closed__2; lean_object* l_Lean___kind_term____x40_Lean_Exception___hyg_682____closed__1; lean_object* l_Lean_withIncRecDepth___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_withIncRecDepth___rarg___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___kind_term____x40_Lean_Message___hyg_1842____closed__3; lean_object* l_Lean___kind_term____x40_Lean_Exception___hyg_682____closed__2; +extern lean_object* l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__7; lean_object* l_Lean_withIncRecDepth___rarg___lambda__2___closed__1; lean_object* l_Lean_throwError_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_withRef___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -67,7 +68,6 @@ lean_object* l_Lean_replaceRef_match__1(lean_object*); lean_object* l_Lean_Lean_Exception___instance__1; lean_object* l_Lean_ofExcept_match__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Lean_Exception___instance__1___closed__1; -extern lean_object* l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__1; lean_object* l_Lean_replaceRef(lean_object*, lean_object*); lean_object* l_Lean___kind_term____x40_Lean_Exception___hyg_643____closed__6; lean_object* l_Lean_Lean_Exception___instance__4___rarg___lambda__3(lean_object*, lean_object*); @@ -98,6 +98,7 @@ extern lean_object* l_Lean_nullKind___closed__2; lean_object* l_Lean_replaceRef___boxed(lean_object*, lean_object*); lean_object* l_Lean___kind_term____x40_Lean_Exception___hyg_643____closed__3; lean_object* l_Lean_throwError(lean_object*); +extern lean_object* l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__10; lean_object* l_Lean_Lean_Exception___instance__5(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Lean_Exception___instance__4___rarg(lean_object*); lean_object* l_Lean___kind_term____x40_Lean_Exception___hyg_643____closed__9; @@ -126,7 +127,6 @@ uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); lean_object* l_Lean_throwUnknownConstant(lean_object*); extern lean_object* l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__4; lean_object* l_Lean___kind_term____x40_Lean_Exception___hyg_643____closed__1; -extern lean_object* l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__6; lean_object* l_Lean_withRef(lean_object*); lean_object* l_Lean_throwError___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); @@ -1011,7 +1011,7 @@ static lean_object* _init_l_Lean___kind_term____x40_Lean_Exception___hyg_643____ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__1; +x_1 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__3; x_2 = l_Lean___kind_term____x40_Lean_Exception___hyg_643____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -1059,7 +1059,7 @@ static lean_object* _init_l_Lean___kind_term____x40_Lean_Exception___hyg_643____ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__8; +x_1 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__10; x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__18; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -1267,7 +1267,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Init_LeanInit___instance__8___closed__1; -x_2 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__6; +x_2 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__8; x_3 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); @@ -1390,7 +1390,7 @@ x_44 = l_Array_empty___closed__1; x_45 = lean_array_push(x_44, x_43); x_46 = l_Lean_myMacro____x40_Lean_Exception___hyg_727____closed__9; x_47 = lean_array_push(x_46, x_15); -x_48 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__5; +x_48 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__7; x_49 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_49, 0, x_48); lean_ctor_set(x_49, 1, x_47); @@ -1612,7 +1612,7 @@ x_48 = lean_array_push(x_47, x_46); x_49 = lean_array_push(x_47, x_15); x_50 = l_Lean_myMacro____x40_Lean_Exception___hyg_727____closed__9; x_51 = lean_array_push(x_50, x_17); -x_52 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__5; +x_52 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__7; x_53 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_53, 0, x_52); lean_ctor_set(x_53, 1, x_51); diff --git a/stage0/stdlib/Lean/Message.c b/stage0/stdlib/Lean/Message.c index 5913db964c..297b5b7b9b 100644 --- a/stage0/stdlib/Lean/Message.c +++ b/stage0/stdlib/Lean/Message.c @@ -76,6 +76,7 @@ extern lean_object* l_Lean_Lean_Data_Format___instance__6___rarg___closed__1; lean_object* l_Lean_MessageData_nil; lean_object* l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__9; lean_object* l_Lean_Lean_Message___instance__22(lean_object*); +extern lean_object* l___private_Init_LeanInit_0__Lean_eraseMacroScopesAux___closed__5; lean_object* l_Lean_MessageData_Lean_Message___instance__4(lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); @@ -122,7 +123,6 @@ lean_object* l_Lean_MessageData_Lean_Message___instance__2(lean_object*, lean_ob lean_object* l___private_Std_Data_PersistentArray_0__Std_PersistentArray_foldlFromMAux___at_Lean_MessageLog_getInfoMessages___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_myMacro____x40_Lean_Message___hyg_1875____lambda__1___closed__9; lean_object* lean_string_utf8_next(lean_object*, lean_object*); -extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__5; lean_object* l_Lean_MessageLog_toList(lean_object*); lean_object* l_Lean_myMacro____x40_Lean_Message___hyg_1875____lambda__1___closed__7; lean_object* l_Lean_ppGoal(lean_object*, lean_object*, lean_object*); @@ -298,6 +298,7 @@ lean_object* l_Lean_MessageData_Lean_Message___instance__10(lean_object*); lean_object* l_Std_PersistentArray_forM___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KernelException_toMessageData___closed__2; lean_object* l_Lean_MessageData_ofList___closed__4; +extern lean_object* l___kind_tactic____x40_Init_Tactics___hyg_2____closed__2; extern lean_object* l_Lean_Format_paren___closed__4; lean_object* l_Lean_mkMessageEx___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_bracket(lean_object*, lean_object*, lean_object*); @@ -353,6 +354,7 @@ lean_object* l_Lean_MessageData_joinSep_match__1(lean_object*); lean_object* l_Lean_MessageData_Lean_Message___instance__3; uint8_t l_Std_PersistentArray_anyM___at_Lean_MessageLog_hasErrors___spec__1(lean_object*); extern lean_object* l_Init_Core___instance__1___closed__1; +extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__3; lean_object* l_Lean_KernelException_toMessageData_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_System_FilePath_dirName___closed__1; lean_object* l_Lean_KernelException_toMessageData___closed__44; @@ -382,6 +384,7 @@ uint8_t lean_string_utf8_at_end(lean_object*, lean_object*); extern lean_object* l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__18; lean_object* l_Lean_MessageData_formatAux___closed__2; lean_object* l_Lean_MessageLog_add(lean_object*, lean_object*); +lean_object* l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__11; lean_object* l_Lean_Lean_Message___instance__28_match__1(lean_object*); extern lean_object* l_Array_foldlMUnsafe_fold___at_Lean_ppGoal___spec__7___closed__1; lean_object* lean_nat_to_int(lean_object*); @@ -403,6 +406,7 @@ lean_object* l_Lean_MessageData_arrayExpr_toMessageData___boxed(lean_object*, le lean_object* l_Lean_MessageData_Lean_Message___instance__1; lean_object* l_Array_foldlMUnsafe_fold___at_Lean_MessageData_formatAux___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_String_split___at_Lean_stringToMessageData___spec__1___boxed(lean_object*); +lean_object* l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__12; lean_object* lean_mk_message(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_fmt___at_Lean_stringToMessageData___spec__3(lean_object*); @@ -7434,8 +7438,8 @@ static lean_object* _init_l_Lean___kind_term____x40_Lean_Message___hyg_1842____c _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__5; -x_2 = l_Lean_mkAppStx___closed__1; +x_1 = l___kind_tactic____x40_Init_Tactics___hyg_2____closed__2; +x_2 = l_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -7443,17 +7447,19 @@ return x_3; static lean_object* _init_l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__2() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("Message"); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__1; +x_2 = l___private_Init_LeanInit_0__Lean_eraseMacroScopesAux___closed__5; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; } } static lean_object* _init_l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__1; -x_2 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__2; +x_1 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__2; +x_2 = l_Lean_mkAppStx___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -7461,24 +7467,42 @@ return x_3; static lean_object* _init_l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__4() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__3; -x_2 = l_Lean_Name_hasMacroScopes___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string("Message"); +return x_1; } } static lean_object* _init_l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__4; +x_1 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__3; +x_2 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__4; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__5; +x_2 = l_Lean_Name_hasMacroScopes___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__6; x_2 = lean_unsigned_to_nat(1842u); x_3 = lean_name_mk_numeral(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__6() { +static lean_object* _init_l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__8() { _start: { lean_object* x_1; @@ -7486,17 +7510,17 @@ x_1 = lean_mk_string("msg!"); return x_1; } } -static lean_object* _init_l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__7() { +static lean_object* _init_l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__9() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__6; +x_1 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__8; x_2 = lean_alloc_ctor(11, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__8() { +static lean_object* _init_l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__10() { _start: { lean_object* x_1; lean_object* x_2; @@ -7506,25 +7530,25 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__9() { +static lean_object* _init_l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__7; -x_2 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__8; +x_1 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__9; +x_2 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__10; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__10() { +static lean_object* _init_l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__5; +x_1 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__7; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__9; +x_3 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__11; x_4 = lean_alloc_ctor(9, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -7536,7 +7560,7 @@ static lean_object* _init_l_Lean___kind_term____x40_Lean_Message___hyg_1842_() { _start: { lean_object* x_1; -x_1 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__10; +x_1 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__12; return x_1; } } @@ -7757,7 +7781,7 @@ lean_object* l_Lean_myMacro____x40_Lean_Message___hyg_1875_(lean_object* x_1, le _start: { lean_object* x_4; uint8_t x_5; -x_4 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__5; +x_4 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__7; lean_inc(x_1); x_5 = l_Lean_Syntax_isOfKind(x_1, x_4); if (x_5 == 0) @@ -8190,6 +8214,10 @@ l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__9 = _init_l_Lean___ lean_mark_persistent(l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__9); l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__10 = _init_l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__10(); lean_mark_persistent(l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__10); +l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__11 = _init_l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__11(); +lean_mark_persistent(l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__11); +l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__12 = _init_l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__12(); +lean_mark_persistent(l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__12); l_Lean___kind_term____x40_Lean_Message___hyg_1842_ = _init_l_Lean___kind_term____x40_Lean_Message___hyg_1842_(); lean_mark_persistent(l_Lean___kind_term____x40_Lean_Message___hyg_1842_); l_Lean_myMacro____x40_Lean_Message___hyg_1875____lambda__1___closed__1 = _init_l_Lean_myMacro____x40_Lean_Message___hyg_1875____lambda__1___closed__1(); diff --git a/stage0/stdlib/Lean/Meta/AppBuilder.c b/stage0/stdlib/Lean/Meta/AppBuilder.c index f46ed24c05..1b75304296 100644 --- a/stage0/stdlib/Lean/Meta/AppBuilder.c +++ b/stage0/stdlib/Lean/Meta/AppBuilder.c @@ -159,7 +159,6 @@ lean_object* l_Lean_Meta_mkAppM___rarg___lambda__1___closed__5; lean_object* l___private_Lean_Meta_AppBuilder_0__Lean_Meta_mkEqTransImp_match__1(lean_object*); lean_object* l___private_Lean_Meta_AppBuilder_0__Lean_Meta_mkAppOptMAux___closed__6; lean_object* l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_mkDecide___rarg___closed__2; lean_object* l_Lean_Meta_mkAppOptM_match__1(lean_object*); lean_object* l_Lean_throwError___at_Lean_Meta_getMVarDecl___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_AppBuilder_0__Lean_Meta_mkCongrArgImp_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -198,6 +197,7 @@ lean_object* l_Lean_Meta_mkDecide___rarg___closed__1; lean_object* l___private_Lean_Meta_AppBuilder_0__Lean_Meta_mkListLitAux___boxed(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_AppBuilder_0__Lean_Meta_mkEqNDRecImp___closed__3; lean_object* l___private_Lean_Meta_AppBuilder_0__Lean_Meta_mkListLitAux_match__1___rarg(lean_object*, lean_object*, lean_object*); +extern lean_object* l_myMacro____x40_Init_Tactics___hyg_186____closed__1; extern lean_object* l_Lean_Expr_heq_x3f___closed__2; lean_object* l_Lean_Meta_mkEq___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_AppBuilder_0__Lean_Meta_mkEqOfHEqImp_match__1___rarg(lean_object*, lean_object*, lean_object*); @@ -11090,17 +11090,9 @@ return x_5; static lean_object* _init_l_Lean_Meta_mkDecide___rarg___closed__1() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("decide"); -return x_1; -} -} -static lean_object* _init_l_Lean_Meta_mkDecide___rarg___closed__2() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_mkDecIsTrue___closed__2; -x_2 = l_Lean_Meta_mkDecide___rarg___closed__1; +x_2 = l_myMacro____x40_Init_Tactics___hyg_186____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -11115,7 +11107,7 @@ x_4 = lean_box(0); x_5 = l_Lean_mkAppStx___closed__9; x_6 = lean_array_push(x_5, x_3); x_7 = lean_array_push(x_6, x_4); -x_8 = l_Lean_Meta_mkDecide___rarg___closed__2; +x_8 = l_Lean_Meta_mkDecide___rarg___closed__1; x_9 = l_Lean_Meta_mkAppOptM___rarg(x_1, x_8, x_7); return x_9; } @@ -11991,7 +11983,7 @@ x_8 = lean_box(0); x_9 = l_Lean_mkAppStx___closed__9; x_10 = lean_array_push(x_9, x_7); x_11 = lean_array_push(x_10, x_8); -x_12 = l_Lean_Meta_mkDecide___rarg___closed__2; +x_12 = l_Lean_Meta_mkDecide___rarg___closed__1; x_13 = l_Lean_Meta_mkAppOptM___at_Lean_Meta_mkDecideProof___spec__2(x_12, x_11, x_2, x_3, x_4, x_5, x_6); return x_13; } @@ -13442,8 +13434,6 @@ l_Lean_Meta_mkSorry___rarg___lambda__1___closed__4 = _init_l_Lean_Meta_mkSorry__ lean_mark_persistent(l_Lean_Meta_mkSorry___rarg___lambda__1___closed__4); l_Lean_Meta_mkDecide___rarg___closed__1 = _init_l_Lean_Meta_mkDecide___rarg___closed__1(); lean_mark_persistent(l_Lean_Meta_mkDecide___rarg___closed__1); -l_Lean_Meta_mkDecide___rarg___closed__2 = _init_l_Lean_Meta_mkDecide___rarg___closed__2(); -lean_mark_persistent(l_Lean_Meta_mkDecide___rarg___closed__2); l_Lean_Meta_mkDecideProof___rarg___lambda__1___closed__1 = _init_l_Lean_Meta_mkDecideProof___rarg___lambda__1___closed__1(); lean_mark_persistent(l_Lean_Meta_mkDecideProof___rarg___lambda__1___closed__1); l_Lean_Meta_mkDecideProof___rarg___lambda__1___closed__2 = _init_l_Lean_Meta_mkDecideProof___rarg___lambda__1___closed__2(); diff --git a/stage0/stdlib/Lean/Meta/Tactic/Cases.c b/stage0/stdlib/Lean/Meta/Tactic/Cases.c index b8243ee219..8879333d36 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Cases.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Cases.c @@ -243,6 +243,7 @@ lean_object* l___private_Lean_Meta_InferType_0__Lean_Meta_getLevelImp(lean_objec lean_object* l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Meta_Tactic_Cases_0__Lean_Meta_Cases_hasIndepIndices___spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Meta_Tactic_Cases_0__Lean_Meta_Cases_unifyEqsAux___spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l___private_Lean_Meta_AppBuilder_0__Lean_Meta_mkHEqReflImp___closed__1; +extern lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225____closed__1; lean_object* l_Std_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_0__Lean_Meta_Cases_hasIndepIndices___spec__45___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Tactic_Cases_0__Lean_Meta_withNewIndexEqs_loop_match__1___rarg(lean_object*, lean_object*); uint8_t l_Array_anyMUnsafe_any___at___private_Lean_Meta_Tactic_Cases_0__Lean_Meta_Cases_hasIndepIndices___spec__20(lean_object*, lean_object*, uint8_t, lean_object*, size_t, size_t); @@ -394,7 +395,6 @@ lean_object* l___private_Lean_Meta_Tactic_Cases_0__Lean_Meta_Cases_unifyEqsAux_m lean_object* l___private_Lean_Meta_Tactic_Cases_0__Lean_Meta_throwInductiveTypeExpected___rarg___closed__2; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Meta_Tactic_Cases_0__Lean_Meta_Cases_unifyEqsAux___spec__18(lean_object*, size_t, size_t, lean_object*); lean_object* l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at___private_Lean_Meta_Tactic_Cases_0__Lean_Meta_Cases_hasIndepIndices___spec__30___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225____closed__2; lean_object* l_Lean_Expr_withAppAux___at_Lean_Meta_generalizeIndices___spec__1___lambda__6___closed__1; lean_object* l___private_Lean_Meta_Tactic_Cases_0__Lean_Meta_Cases_toCasesSubgoals___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_assignExprMVar___at___private_Lean_Meta_InferType_0__Lean_Meta_getLevelImp___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -15626,7 +15626,7 @@ static lean_object* _init_l___private_Lean_Meta_Tactic_Cases_0__Lean_Meta_Cases_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225____closed__2; +x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225____closed__1; x_2 = l___private_Lean_Meta_Tactic_Cases_0__Lean_Meta_Cases_unifyEqsAux___lambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; diff --git a/stage0/stdlib/Lean/Meta/Tactic/Induction.c b/stage0/stdlib/Lean/Meta/Tactic/Induction.c index 4a83925025..31ffa25422 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Induction.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Induction.c @@ -163,6 +163,7 @@ lean_object* l_Lean_Meta_Lean_Meta_Tactic_Induction___instance__1___closed__1; lean_object* l_Lean_Meta_introNCore(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_InferType_0__Lean_Meta_getLevelImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_throwUnknownConstant___rarg___closed__3; +extern lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225____closed__1; lean_object* l_Lean_Meta_RecursorInfo_firstIndexPos(lean_object*); lean_object* l___private_Lean_Meta_Tactic_Induction_0__Lean_Meta_finalize_loop___lambda__3___closed__1; lean_object* l_Array_forInUnsafe_loop___at_Lean_Meta_induction___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -264,7 +265,6 @@ lean_object* l_Lean_Meta_induction_match__9(lean_object*); lean_object* l_List_foldlM___at_Lean_Meta_induction___spec__10(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_withAppAux___at_Lean_Meta_induction___spec__12___closed__1; lean_object* l___private_Lean_Meta_Tactic_Induction_0__Lean_Meta_finalize_loop___lambda__3___closed__2; -extern lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225____closed__2; lean_object* l___private_Lean_Meta_Tactic_Induction_0__Lean_Meta_getTypeBody_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_assignExprMVar___at___private_Lean_Meta_InferType_0__Lean_Meta_getLevelImp___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_induction_match__11(lean_object*); @@ -6511,7 +6511,7 @@ static lean_object* _init_l_Lean_Expr_withAppAux___at_Lean_Meta_induction___spec _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225____closed__2; +x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225____closed__1; x_2 = l___private_Lean_Meta_Tactic_Induction_0__Lean_Meta_addRecParams___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; diff --git a/stage0/stdlib/Lean/Meta/Tactic/Intro.c b/stage0/stdlib/Lean/Meta/Tactic/Intro.c index f8aeb5691f..d5428c048f 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Intro.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Intro.c @@ -21,7 +21,6 @@ lean_object* l_Lean_Meta_intro1Core___boxed(lean_object*, lean_object*, lean_obj lean_object* lean_local_ctx_get_unused_name(lean_object*, lean_object*); lean_object* l_Lean_Meta_introN(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_uget(lean_object*, size_t); -lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Intro___hyg_538____closed__4; lean_object* l___private_Lean_Meta_Tactic_Intro_0__Lean_Meta_introNImp_loop___rarg___lambda__1___closed__4; uint8_t l_Lean_Meta_hygienicIntroDefault; lean_object* lean_local_ctx_mk_let_decl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); @@ -124,6 +123,7 @@ lean_object* l___private_Lean_Meta_Tactic_Intro_0__Lean_Meta_introNImp_loop___at lean_object* l___private_Lean_Meta_Tactic_Intro_0__Lean_Meta_introNImp_loop___at_Lean_Meta_introNCore___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getMVarTag___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkFreshId___at_Lean_Meta_mkFreshExprMVarAt___spec__1___rarg(lean_object*, lean_object*); +extern lean_object* l___kind_tactic____x40_Init_Tactics___hyg_2____closed__3; lean_object* l___private_Lean_Meta_Tactic_Intro_0__Lean_Meta_introNImp_loop___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Intro___hyg_538____closed__2; lean_object* l_Lean_Meta_assignExprMVar___at___private_Lean_Meta_InferType_0__Lean_Meta_getLevelImp___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1233,25 +1233,17 @@ static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Intro___hyg _start: { lean_object* x_1; -x_1 = lean_mk_string("tactic"); +x_1 = lean_mk_string("make sure 'intro'-like tactics are hygienic"); return x_1; } } static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Intro___hyg_538____closed__3() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("make sure 'intro'-like tactics are hygienic"); -return x_1; -} -} -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Intro___hyg_538____closed__4() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Intro___hyg_538____closed__1; -x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Intro___hyg_538____closed__2; -x_3 = l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Intro___hyg_538____closed__3; +x_2 = l___kind_tactic____x40_Init_Tactics___hyg_2____closed__3; +x_3 = l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Intro___hyg_538____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); @@ -1264,7 +1256,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; x_2 = l_Lean_Meta_getHygienicIntro___rarg___closed__2; -x_3 = l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Intro___hyg_538____closed__4; +x_3 = l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Intro___hyg_538____closed__3; x_4 = lean_register_option(x_2, x_3, x_1); return x_4; } @@ -2536,8 +2528,6 @@ l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Intro___hyg_538____closed__2 = _init_ lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Intro___hyg_538____closed__2); l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Intro___hyg_538____closed__3 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Intro___hyg_538____closed__3(); lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Intro___hyg_538____closed__3); -l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Intro___hyg_538____closed__4 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Intro___hyg_538____closed__4(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Intro___hyg_538____closed__4); res = l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Intro___hyg_538_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); diff --git a/stage0/stdlib/Lean/Meta/Tactic/Subst.c b/stage0/stdlib/Lean/Meta/Tactic/Subst.c index a38e64206b..07a5700d80 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Subst.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Subst.c @@ -108,6 +108,7 @@ extern lean_object* l_Lean_throwUnknownConstant___rarg___closed__3; lean_object* l_Lean_Meta_substCore___lambda__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_substCore___lambda__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_Lean_Meta_subst_match__3(lean_object*); +extern lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225____closed__1; lean_object* l_Lean_Meta_substCore___lambda__13___closed__1; lean_object* l_Lean_mkFVar(lean_object*); size_t lean_usize_of_nat(lean_object*); @@ -181,7 +182,6 @@ lean_object* l_Lean_Meta_mkEqSymm___at_Lean_Meta_substCore___spec__3(lean_object lean_object* l_Lean_Meta_substCore_match__5___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_substCore___lambda__5(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_substCore___lambda__11___closed__5; -extern lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225____closed__2; lean_object* l_Lean_Meta_assignExprMVar___at___private_Lean_Meta_InferType_0__Lean_Meta_getLevelImp___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_substCore___lambda__13___closed__6; extern lean_object* l_Array_findSomeM_x3f___rarg___closed__1; @@ -2981,7 +2981,7 @@ static lean_object* _init_l_Lean_Meta_substCore___lambda__13___closed__18() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225____closed__2; +x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225____closed__1; x_2 = l_Lean_Meta_substCore___lambda__13___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; diff --git a/stage0/stdlib/Lean/Meta/Tactic/Util.c b/stage0/stdlib/Lean/Meta/Tactic/Util.c index 616f161f0e..a01fed17a7 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Util.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Util.c @@ -29,6 +29,7 @@ lean_object* l_Lean_Meta_checkNotAssigned___closed__1; lean_object* l_Lean_Meta_getMVarTag(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_checkNotAssigned___closed__2; lean_object* lean_st_ref_get(lean_object*, lean_object*); +extern lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__1; lean_object* l_Lean_MetavarContext_setMVarUserName(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_throwTacticEx___rarg___closed__3; lean_object* l_Lean_Meta_throwTacticEx___rarg___closed__1; @@ -57,7 +58,6 @@ lean_object* l_Lean_Meta_admit___lambda__1(lean_object*, uint8_t, 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*); lean_object* l_Lean_Meta_mkFreshExprSyntheticOpaqueMVar___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_appendTagSuffix___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_admit___closed__2; lean_object* l_Lean_Meta_throwTacticEx___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Array_foldlMUnsafe_fold___at_Lean_withNestedTraces___spec__5___closed__1; lean_object* l_Lean_Meta_checkNotAssigned(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -73,6 +73,7 @@ extern lean_object* l_Lean_Meta_mkSorry___rarg___lambda__1___closed__4; lean_object* l_Lean_Meta_mkSorry___at_Lean_Meta_admit___spec__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_mkSorry___rarg___lambda__1___closed__2; lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___kind_tactic____x40_Init_Tactics___hyg_309____closed__2; lean_object* l_Lean_Meta_ppGoal___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, 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_Lean_mkAppB(lean_object*, lean_object*, lean_object*); @@ -80,7 +81,6 @@ lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225_(lean_obj lean_object* l_Lean_Meta_getMVarTag___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_setMVarTag(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkConst(lean_object*, lean_object*); -lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225____closed__2; lean_object* l_Lean_Meta_assignExprMVar___at___private_Lean_Meta_InferType_0__Lean_Meta_getLevelImp___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_bind___at_Lean_Meta_Lean_Meta_Basic___instance__8___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getMVarTag(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { @@ -760,17 +760,9 @@ return x_7; static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225____closed__1() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("Tactic"); -return x_1; -} -} -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225____closed__2() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_516____closed__2; -x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225____closed__1; +x_2 = l_myMacro____x40_Init_Tactics___hyg_31____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -779,7 +771,7 @@ lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225_(lean_obj _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225____closed__2; +x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225____closed__1; x_3 = l_Lean_registerTraceClass(x_2, x_1); return x_3; } @@ -1035,17 +1027,9 @@ return x_23; static lean_object* _init_l_Lean_Meta_admit___closed__1() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("admit"); -return x_1; -} -} -static lean_object* _init_l_Lean_Meta_admit___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_admit___closed__1; +x_2 = l___kind_tactic____x40_Init_Tactics___hyg_309____closed__2; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -1054,7 +1038,7 @@ lean_object* l_Lean_Meta_admit(lean_object* x_1, uint8_t x_2, lean_object* x_3, _start: { lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; -x_8 = l_Lean_Meta_admit___closed__2; +x_8 = l_Lean_Meta_admit___closed__1; lean_inc(x_1); x_9 = lean_alloc_closure((void*)(l_Lean_Meta_checkNotAssigned___boxed), 7, 2); lean_closure_set(x_9, 0, x_1); @@ -1139,15 +1123,11 @@ l_Lean_Meta_checkNotAssigned___closed__3 = _init_l_Lean_Meta_checkNotAssigned___ lean_mark_persistent(l_Lean_Meta_checkNotAssigned___closed__3); l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225____closed__1 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225____closed__1(); lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225____closed__1); -l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225____closed__2 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225____closed__2(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225____closed__2); res = l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Util___hyg_225_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Meta_admit___closed__1 = _init_l_Lean_Meta_admit___closed__1(); lean_mark_persistent(l_Lean_Meta_admit___closed__1); -l_Lean_Meta_admit___closed__2 = _init_l_Lean_Meta_admit___closed__2(); -lean_mark_persistent(l_Lean_Meta_admit___closed__2); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Parser/Syntax.c b/stage0/stdlib/Lean/Parser/Syntax.c index fd393c3f5e..8bf6bf65f2 100644 --- a/stage0/stdlib/Lean/Parser/Syntax.c +++ b/stage0/stdlib/Lean/Parser/Syntax.c @@ -62,6 +62,7 @@ lean_object* l_Lean_Parser_Command_macroTail_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_elabTail_formatter___closed__2; lean_object* l_Lean_Parser_Syntax_try___closed__5; lean_object* l_Lean_Parser_Syntax_sepBy___elambda__1___closed__7; +lean_object* l_Lean_Parser_Command_optPrio___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_notation___closed__7; lean_object* l_Lean_Parser_Command_macroArgSimple___closed__3; lean_object* l_Lean_Parser_Command_macroTailTactic___closed__1; @@ -125,6 +126,7 @@ lean_object* l_Lean_Parser_Syntax_interpolatedStr_parenthesizer___closed__5; lean_object* l_Lean_Parser_Syntax_paren___closed__6; lean_object* l_Lean_Parser_Command_syntax___elambda__1(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Syntax_many_parenthesizer(lean_object*); +lean_object* l_Lean_Parser_Command_optPrio___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_macro_formatter___closed__6; lean_object* l_Lean_Parser_Syntax_str___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_macroTail___elambda__1(lean_object*, lean_object*); @@ -205,6 +207,7 @@ lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Syntax___hyg_4_(lean_object lean_object* l_Lean_Parser_maxSymbol___elambda__1___closed__2; lean_object* l_Lean_Parser_Syntax_notFollowedBy_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_many___closed__1; +lean_object* l_Lean_Parser_Command_macro_formatter___closed__13; lean_object* l_Lean_Parser_Syntax_many___closed__2; lean_object* l_Lean_Parser_Command_prefix___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_infixr_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -239,11 +242,13 @@ lean_object* l_Lean_Parser_Command_prefix; lean_object* l_Lean_Parser_Command_elabTail_parenthesizer___closed__6; lean_object* l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_infixr___closed__1; +lean_object* l_Lean_Parser_Command_optPrio___closed__3; lean_object* l_Lean_PrettyPrinter_Formatter_orelse_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_macroArg_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_elab__rules___closed__7; lean_object* l_Lean_Parser_Syntax_paren___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_macroTail_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Command_elab_parenthesizer___closed__13; lean_object* l_Lean_Parser_Command_elab__rules_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_ident; lean_object* l_Lean_Parser_Command_macro___elambda__1___closed__15; @@ -300,11 +305,13 @@ lean_object* l_Lean_Parser_Command_syntax___elambda__1___closed__13; lean_object* l_Lean_Parser_Command_syntaxCat___elambda__1___closed__7; lean_object* l_Lean_Parser_Syntax_atom_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_quotSeq_formatter___closed__4; +lean_object* l_Lean_Parser_Command_optPrio___closed__5; lean_object* l_Lean_Parser_Syntax_noWs___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_macroArgSimple___closed__1; lean_object* l_Lean_Parser_orelseFn(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_registerBuiltinDynamicParserAttribute(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_try___closed__7; +lean_object* l_Lean_Parser_Command_macro___closed__12; lean_object* l_Lean_Parser_Command_macroTail_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_notFollowedBy___elambda__1___closed__6; lean_object* l_Lean_Parser_Syntax_interpolatedStr_formatter___closed__1; @@ -351,6 +358,7 @@ lean_object* l_Lean_Parser_Command_macroTail___elambda__1___closed__1; lean_object* l_Lean_Parser_maxSymbol___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_macroTailDefault___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_maxSymbol___closed__6; +lean_object* l_Lean_Parser_Command_optPrio___closed__2; lean_object* l_Lean_Parser_Syntax_paren_parenthesizer___closed__1; extern lean_object* l_Lean_Parser_Term_haveAssign_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_elab___closed__3; @@ -360,6 +368,7 @@ lean_object* l_Lean_Parser_Command_notationItem_parenthesizer___closed__4; lean_object* l_Lean_Parser_Syntax_sepBy___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_macroTailTactic_formatter___closed__4; lean_object* l___regBuiltin_Lean_Parser_Command_syntaxCat_formatter___closed__1; +lean_object* l_Lean_Parser_Command_optPrio___closed__1; lean_object* l_Lean_Parser_Syntax_ident___elambda__1___closed__2; lean_object* l_Lean_Parser_maxSymbol___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_cat_formatter___closed__2; @@ -474,6 +483,7 @@ extern lean_object* l_Lean_Parser_Term_structInstArrayRef_parenthesizer___closed lean_object* l_Lean_Parser_Command_macro__rules___closed__6; lean_object* l___regBuiltin_Lean_Parser_Syntax_ident_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_elab__rules_parenthesizer___closed__1; +lean_object* l_Lean_Parser_Command_elab_formatter___closed__13; lean_object* l_Lean_Parser_Command_elab; lean_object* l_Lean_Parser_Command_elab___closed__7; lean_object* l_Lean_Parser_Command_identPrec___closed__5; @@ -539,6 +549,7 @@ lean_object* l_Lean_Parser_Command_elab___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_syntaxAbbrev_formatter___closed__3; extern lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_macroTailCommand___closed__6; +lean_object* l_Lean_Parser_Command_optPrio_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_macroTailDefault_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_elab___elambda__1___closed__15; @@ -596,10 +607,12 @@ extern lean_object* l___regBuiltin_Lean_PrettyPrinter_Formatter_ppSpace_formatte lean_object* l_Lean_Parser_Command_parserKindPrio___closed__6; extern lean_object* l_Lean_Parser_ident___closed__2; lean_object* l_Lean_Parser_Command_macro__rules_formatter___closed__3; +lean_object* l_Lean_Parser_Command_optPrio___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_elabTail_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_mixfixKind___elambda__1___closed__1; lean_object* l_Lean_Parser_Syntax_sepBy1_parenthesizer___closed__4; lean_object* l_Lean_Parser_Syntax_many1___closed__1; +lean_object* l_Lean_Parser_Command_macro___elambda__1___closed__16; lean_object* l_Lean_Parser_Syntax_interpolatedStr_formatter___closed__3; extern lean_object* l_Lean_Parser_Term_tupleTail___closed__1; lean_object* l___regBuiltin_Lean_Parser_Syntax_notFollowedBy_parenthesizer(lean_object*); @@ -655,6 +668,7 @@ lean_object* l_Lean_Parser_Command_infixr___closed__6; lean_object* l_Lean_Parser_Syntax_orelse_parenthesizer___closed__2; lean_object* l_Lean_Parser_noFirstTokenInfo(lean_object*); lean_object* l_Lean_Parser_Command_infix___elambda__1___closed__8; +lean_object* l_Lean_Parser_Command_optPrio; lean_object* l_Lean_Parser_Syntax_paren_parenthesizer___closed__2; lean_object* l_Lean_Parser_Syntax_notFollowedBy___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_prefix___elambda__1___closed__7; @@ -726,6 +740,7 @@ lean_object* l___regBuiltin_Lean_Parser_Command_syntaxAbbrev_parenthesizer(lean_ lean_object* l_Lean_Parser_Command_notation_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_elab__rules; lean_object* l___regBuiltin_Lean_Parser_Syntax_interpolatedStr_formatter___closed__1; +lean_object* l_Lean_Parser_Command_macro_parenthesizer___closed__12; lean_object* l_Lean_Parser_Command_macro_formatter___closed__1; lean_object* l_Lean_Parser_Command_macroTailCommand___closed__2; lean_object* l___regBuiltin_Lean_Parser_Syntax_ident_formatter___closed__1; @@ -797,6 +812,7 @@ lean_object* l_Lean_Parser_Command_parserKind___closed__3; lean_object* l_Lean_Parser_Syntax_char_formatter___closed__2; lean_object* l_Lean_Parser_Syntax_ident; lean_object* l___regBuiltin_Lean_Parser_Syntax_ident_formatter(lean_object*); +lean_object* l_Lean_Parser_Command_optPrio_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_mixfix_formatter___closed__2; lean_object* l_Lean_Parser_Syntax_interpolatedStr___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_stx_quot___elambda__1___closed__12; @@ -905,7 +921,6 @@ lean_object* l_Lean_Parser_Command_macro__rules___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_stx_quot_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_macroArgSimple___closed__6; lean_object* l_Lean_Parser_Syntax_lookahead_parenthesizer___closed__1; -extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; extern lean_object* l_Lean_mkAppStx___closed__6; lean_object* l_Lean_Parser_Syntax_interpolatedStr___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_infixr___closed__5; @@ -985,12 +1000,14 @@ lean_object* l___regBuiltinParser_Lean_Parser_Syntax_interpolatedStr(lean_object lean_object* l_Lean_Parser_Command_notation___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_mixfix_formatter___closed__4; lean_object* l_Lean_Parser_Command_elabTail_formatter___closed__5; +lean_object* l_Lean_Parser_Command_optPrio_parenthesizer___closed__1; lean_object* l_Lean_Parser_Syntax_sepBy___closed__1; extern lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__1; extern lean_object* l_Lean_Parser_mkAntiquot___closed__21; lean_object* l_Lean_Parser_Command_mixfixKind; lean_object* l_Lean_Parser_Command_macro___elambda__1___closed__14; lean_object* l_Lean_Parser_Syntax_ident___closed__2; +lean_object* l_Lean_Parser_Command_elab___elambda__1___closed__16; lean_object* l_Lean_Parser_Command_macroTailDefault___closed__6; lean_object* l___regBuiltinParser_Lean_Parser_Command_syntaxCat(lean_object*); lean_object* l_Lean_Parser_precedence___elambda__1___closed__7; @@ -999,6 +1016,7 @@ lean_object* l_Lean_Parser_Syntax_many___closed__3; lean_object* l_Lean_Parser_Syntax_optional___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_macroTailTactic_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_macroArg___elambda__1___closed__2; +lean_object* l_Lean_Parser_Command_macro_parenthesizer___closed__13; lean_object* l_Lean_Parser_Syntax_num___elambda__1___closed__6; extern lean_object* l_Lean_Parser_antiquotNestedExpr___closed__3; lean_object* l_Lean_Parser_maxSymbol___closed__5; @@ -1014,7 +1032,9 @@ lean_object* l_Lean_Parser_Syntax_atom; lean_object* l_Lean_Parser_Term_stx_quot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_sepBy___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_syntaxAbbrev___elambda__1___closed__2; +lean_object* l_Lean_Parser_Command_optPrio_formatter___closed__2; lean_object* l_Lean_Parser_Command_macroTailTactic___elambda__1___closed__2; +lean_object* l_Lean_Parser_Command_optPrio_formatter___closed__1; lean_object* l_Lean_Parser_Syntax_cat_formatter___closed__1; extern lean_object* l_Lean_Parser_mkAntiquot___closed__7; lean_object* l_Lean_Parser_Command_mixfix_parenthesizer___closed__1; @@ -1038,10 +1058,12 @@ lean_object* l_Lean_Parser_Command_notationItem___closed__1; extern lean_object* l___regBuiltinParser_Lean_Parser_Term_str___closed__1; lean_object* l_Lean_Parser_Syntax_interpolatedStr___elambda__1___closed__5; lean_object* l___regBuiltinParser_Lean_Parser_Syntax_paren(lean_object*); +lean_object* l_Lean_Parser_Command_elab___closed__12; lean_object* l_Lean_Parser_Syntax_atom_formatter___closed__1; lean_object* l_Lean_Parser_Command_macro__rules_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_notation___elambda__1___closed__2; lean_object* l_Lean_Parser_Syntax_num_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Command_optPrio_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_mixfixKind_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_parserKindPrio_parenthesizer___closed__1; lean_object* l_Lean_Parser_Syntax_char___elambda__1___closed__4; @@ -1229,6 +1251,7 @@ lean_object* l___regBuiltin_Lean_Parser_Command_macro_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_macroTailTactic___closed__6; lean_object* l_Lean_Parser_Command_notation___closed__1; extern lean_object* l___regBuiltin_Lean_Parser_numLit_formatter___closed__2; +lean_object* l_Lean_Parser_Command_macro_formatter___closed__12; lean_object* l_Lean_Parser_Syntax_many1_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_elabHead_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_macroTailCommand___closed__4; @@ -1351,6 +1374,7 @@ lean_object* l_Lean_Parser_Command_macroHead_formatter___closed__1; lean_object* l_Lean_Parser_Command_syntax___closed__11; lean_object* l_Lean_Parser_precedenceLit___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_maxSymbol_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Command_optPrio___closed__4; lean_object* l_Lean_PrettyPrinter_Formatter_identEq_formatter___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_mixfixKind_formatter___closed__1; lean_object* l_Lean_Parser_Command_macroTailDefault_formatter___closed__3; @@ -1617,6 +1641,7 @@ lean_object* l_Lean_Parser_Command_macro___closed__4; lean_object* l_Lean_Parser_Command_macro__rules_parenthesizer___closed__6; lean_object* l_Lean_Parser_Syntax_orelse___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_optional___closed__1; +extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; lean_object* l_Lean_Parser_Syntax_cat___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_syntax_formatter___closed__5; lean_object* l_Lean_Parser_Command_syntax_parenthesizer___closed__7; @@ -15189,7 +15214,7 @@ static lean_object* _init_l_Lean_Parser_Command_macroTailTactic___elambda__1___c _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_2 = lean_alloc_closure((void*)(l_Lean_Parser_identEqFn), 3, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -15776,6 +15801,98 @@ x_1 = l_Lean_Parser_Command_macroTail___closed__4; return x_1; } } +static lean_object* _init_l_Lean_Parser_Command_optPrio___elambda__1___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_numLit___closed__2; +x_2 = l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__8; +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_Command_optPrio___elambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__6; +x_2 = l_Lean_Parser_Command_optPrio___elambda__1___closed__1; +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; +} +} +lean_object* l_Lean_Parser_Command_optPrio___elambda__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; +x_3 = l_Lean_Parser_Command_optPrio___elambda__1___closed__2; +x_4 = l_Lean_Parser_optionalFn(x_3, x_1, x_2); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Command_optPrio___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_numLit; +x_2 = lean_ctor_get(x_1, 0); +lean_inc(x_2); +x_3 = l_Lean_Parser_Term_structInstArrayRef___closed__2; +x_4 = l_Lean_Parser_andthenInfo(x_2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Command_optPrio___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_structInstArrayRef___closed__1; +x_2 = l_Lean_Parser_Command_optPrio___closed__1; +x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_optPrio___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_optPrio___closed__2; +x_2 = l_Lean_Parser_optionaInfo(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Command_optPrio___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_optPrio___elambda__1), 2, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Parser_Command_optPrio___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_optPrio___closed__3; +x_2 = l_Lean_Parser_Command_optPrio___closed__4; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_optPrio() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Parser_Command_optPrio___closed__5; +return x_1; +} +} static lean_object* _init_l_Lean_Parser_Command_macro___elambda__1___closed__1() { _start: { @@ -15880,7 +15997,7 @@ static lean_object* _init_l_Lean_Parser_Command_macro___elambda__1___closed__11( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_optPrecedence___closed__2; +x_1 = l_Lean_Parser_Command_optPrio___closed__4; x_2 = l_Lean_Parser_Command_macro___elambda__1___closed__10; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -15892,7 +16009,7 @@ static lean_object* _init_l_Lean_Parser_Command_macro___elambda__1___closed__12( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_macro___elambda__1___closed__7; +x_1 = l_Lean_Parser_optPrecedence___closed__2; x_2 = l_Lean_Parser_Command_macro___elambda__1___closed__11; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -15903,31 +16020,43 @@ return x_3; static lean_object* _init_l_Lean_Parser_Command_macro___elambda__1___closed__13() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_macro___elambda__1___closed__12; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_suppressInsideQuotFn), 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_Command_macro___elambda__1___closed__7; +x_2 = l_Lean_Parser_Command_macro___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_Command_macro___elambda__1___closed__14() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_macro___elambda__1___closed__2; -x_2 = l_Lean_Parser_Command_macro___elambda__1___closed__13; -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; +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_macro___elambda__1___closed__13; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_suppressInsideQuotFn), 3, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; } } static lean_object* _init_l_Lean_Parser_Command_macro___elambda__1___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; +x_1 = l_Lean_Parser_Command_macro___elambda__1___closed__2; x_2 = l_Lean_Parser_Command_macro___elambda__1___closed__14; +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_Command_macro___elambda__1___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; +x_2 = l_Lean_Parser_Command_macro___elambda__1___closed__15; 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); @@ -15941,7 +16070,7 @@ lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_3 = l_Lean_Parser_Command_macro___elambda__1___closed__4; x_4 = lean_ctor_get(x_3, 1); lean_inc(x_4); -x_5 = l_Lean_Parser_Command_macro___elambda__1___closed__15; +x_5 = l_Lean_Parser_Command_macro___elambda__1___closed__16; x_6 = 1; x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); return x_7; @@ -15995,7 +16124,7 @@ static lean_object* _init_l_Lean_Parser_Command_macro___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_optPrecedence; +x_1 = l_Lean_Parser_Command_optPrio; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); x_3 = l_Lean_Parser_Command_macro___closed__4; @@ -16006,20 +16135,22 @@ return x_4; static lean_object* _init_l_Lean_Parser_Command_macro___closed__6() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_macro___closed__1; -x_2 = l_Lean_Parser_Command_macro___closed__5; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_optPrecedence; +x_2 = lean_ctor_get(x_1, 0); +lean_inc(x_2); +x_3 = l_Lean_Parser_Command_macro___closed__5; +x_4 = l_Lean_Parser_andthenInfo(x_2, x_3); +return x_4; } } static lean_object* _init_l_Lean_Parser_Command_macro___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_macro___elambda__1___closed__2; +x_1 = l_Lean_Parser_Command_macro___closed__1; x_2 = l_Lean_Parser_Command_macro___closed__6; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); +x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); return x_3; } } @@ -16027,25 +16158,35 @@ static lean_object* _init_l_Lean_Parser_Command_macro___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; +x_1 = l_Lean_Parser_Command_macro___elambda__1___closed__2; x_2 = l_Lean_Parser_Command_macro___closed__7; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); +x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; } } static lean_object* _init_l_Lean_Parser_Command_macro___closed__9() { _start: { +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_epsilonInfo; +x_2 = l_Lean_Parser_Command_macro___closed__8; +x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_macro___closed__10() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Command_macro___elambda__1___closed__4; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); -x_3 = l_Lean_Parser_Command_macro___closed__8; +x_3 = l_Lean_Parser_Command_macro___closed__9; x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Command_macro___closed__10() { +static lean_object* _init_l_Lean_Parser_Command_macro___closed__11() { _start: { lean_object* x_1; @@ -16053,12 +16194,12 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_macro___elambda__1), 2, 0 return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_macro___closed__11() { +static lean_object* _init_l_Lean_Parser_Command_macro___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_macro___closed__9; -x_2 = l_Lean_Parser_Command_macro___closed__10; +x_1 = l_Lean_Parser_Command_macro___closed__10; +x_2 = l_Lean_Parser_Command_macro___closed__11; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); @@ -16069,7 +16210,7 @@ static lean_object* _init_l_Lean_Parser_Command_macro() { _start: { lean_object* x_1; -x_1 = l_Lean_Parser_Command_macro___closed__11; +x_1 = l_Lean_Parser_Command_macro___closed__12; return x_1; } } @@ -16086,6 +16227,39 @@ x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); return x_7; } } +static lean_object* _init_l_Lean_Parser_Command_optPrio_formatter___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_Lean_Parser_numLit_formatter___closed__2; +x_2 = l_Lean_Parser_Term_structInstArrayRef_formatter___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 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_Command_optPrio_formatter___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_structInstArrayRef_formatter___closed__2; +x_2 = l_Lean_Parser_Command_optPrio_formatter___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Command_optPrio_formatter(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; +x_6 = l_Lean_Parser_Command_optPrio_formatter___closed__2; +x_7 = l_Lean_PrettyPrinter_Formatter_visitArgs(x_6, x_1, x_2, x_3, x_4, x_5); +return x_7; +} +} static lean_object* _init_l_Lean_Parser_Command_macroArgSimple_formatter___closed__1() { _start: { @@ -16583,21 +16757,17 @@ return x_3; static lean_object* _init_l_Lean_Parser_Command_macro_formatter___closed__8() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Syntax_cat_formatter___closed__2; -x_2 = l_Lean_Parser_Command_macro_formatter___closed__7; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_optPrio_formatter), 5, 0); +return x_1; } } static lean_object* _init_l_Lean_Parser_Command_macro_formatter___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_macro_formatter___closed__2; -x_2 = l_Lean_Parser_Command_macro_formatter___closed__8; +x_1 = l_Lean_Parser_Command_macro_formatter___closed__8; +x_2 = l_Lean_Parser_Command_macro_formatter___closed__7; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -16607,20 +16777,44 @@ return x_3; static lean_object* _init_l_Lean_Parser_Command_macro_formatter___closed__10() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_macro_formatter___closed__9; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_suppressInsideQuot_formatter), 6, 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_Syntax_cat_formatter___closed__2; +x_2 = l_Lean_Parser_Command_macro_formatter___closed__9; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 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_Command_macro_formatter___closed__11() { _start: { +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_macro_formatter___closed__2; +x_2 = l_Lean_Parser_Command_macro_formatter___closed__10; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 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_Command_macro_formatter___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_macro_formatter___closed__11; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_suppressInsideQuot_formatter), 6, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Command_macro_formatter___closed__13() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Command_macro___elambda__1___closed__2; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Command_macro_formatter___closed__10; +x_3 = l_Lean_Parser_Command_macro_formatter___closed__12; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); lean_closure_set(x_4, 0, x_1); lean_closure_set(x_4, 1, x_2); @@ -16633,7 +16827,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_Command_macro_formatter___closed__1; -x_7 = l_Lean_Parser_Command_macro_formatter___closed__11; +x_7 = l_Lean_Parser_Command_macro_formatter___closed__13; x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -16657,6 +16851,39 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } +static lean_object* _init_l_Lean_Parser_Command_optPrio_parenthesizer___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_Lean_Parser_numLit_parenthesizer___closed__1; +x_2 = l_Lean_Parser_Term_structInstArrayRef_parenthesizer___closed__3; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 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_Command_optPrio_parenthesizer___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_structInstArrayRef_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_optPrio_parenthesizer___closed__1; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_Command_optPrio_parenthesizer(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; +x_6 = l_Lean_Parser_Command_optPrio_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_visitArgs(x_6, x_1, x_2, x_3, x_4, x_5); +return x_7; +} +} static lean_object* _init_l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__1() { _start: { @@ -16802,7 +17029,7 @@ static lean_object* _init_l_Lean_Parser_Command_macroTailTactic_parenthesizer___ _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_identEq_parenthesizer___boxed), 2, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -17190,21 +17417,17 @@ return x_3; static lean_object* _init_l_Lean_Parser_Command_macro_parenthesizer___closed__8() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Syntax_cat_parenthesizer___closed__2; -x_2 = l_Lean_Parser_Command_macro_parenthesizer___closed__7; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_optPrio_parenthesizer), 5, 0); +return x_1; } } static lean_object* _init_l_Lean_Parser_Command_macro_parenthesizer___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_macro_parenthesizer___closed__2; -x_2 = l_Lean_Parser_Command_macro_parenthesizer___closed__8; +x_1 = l_Lean_Parser_Command_macro_parenthesizer___closed__8; +x_2 = l_Lean_Parser_Command_macro_parenthesizer___closed__7; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -17214,20 +17437,44 @@ return x_3; static lean_object* _init_l_Lean_Parser_Command_macro_parenthesizer___closed__10() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_macro_parenthesizer___closed__9; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_suppressInsideQuot_parenthesizer), 6, 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_Syntax_cat_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_macro_parenthesizer___closed__9; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 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_Command_macro_parenthesizer___closed__11() { _start: { +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_macro_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_macro_parenthesizer___closed__10; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 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_Command_macro_parenthesizer___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_macro_parenthesizer___closed__11; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_suppressInsideQuot_parenthesizer), 6, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Command_macro_parenthesizer___closed__13() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Command_macro___elambda__1___closed__2; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Command_macro_parenthesizer___closed__10; +x_3 = l_Lean_Parser_Command_macro_parenthesizer___closed__12; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); lean_closure_set(x_4, 0, x_1); lean_closure_set(x_4, 1, x_2); @@ -17240,7 +17487,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_Command_macro_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Command_macro_parenthesizer___closed__11; +x_7 = l_Lean_Parser_Command_macro_parenthesizer___closed__13; x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -18108,7 +18355,7 @@ static lean_object* _init_l_Lean_Parser_Command_elab___elambda__1___closed__11() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_optPrecedence___closed__2; +x_1 = l_Lean_Parser_Command_optPrio___closed__4; x_2 = l_Lean_Parser_Command_elab___elambda__1___closed__10; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -18120,7 +18367,7 @@ static lean_object* _init_l_Lean_Parser_Command_elab___elambda__1___closed__12() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_elab___elambda__1___closed__7; +x_1 = l_Lean_Parser_optPrecedence___closed__2; x_2 = l_Lean_Parser_Command_elab___elambda__1___closed__11; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -18131,31 +18378,43 @@ return x_3; static lean_object* _init_l_Lean_Parser_Command_elab___elambda__1___closed__13() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_elab___elambda__1___closed__12; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_suppressInsideQuotFn), 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_Command_elab___elambda__1___closed__7; +x_2 = l_Lean_Parser_Command_elab___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_Command_elab___elambda__1___closed__14() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_elab___elambda__1___closed__2; -x_2 = l_Lean_Parser_Command_elab___elambda__1___closed__13; -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; +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_elab___elambda__1___closed__13; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_suppressInsideQuotFn), 3, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; } } static lean_object* _init_l_Lean_Parser_Command_elab___elambda__1___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; +x_1 = l_Lean_Parser_Command_elab___elambda__1___closed__2; x_2 = l_Lean_Parser_Command_elab___elambda__1___closed__14; +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_Command_elab___elambda__1___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; +x_2 = l_Lean_Parser_Command_elab___elambda__1___closed__15; 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); @@ -18169,7 +18428,7 @@ lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_3 = l_Lean_Parser_Command_elab___elambda__1___closed__4; x_4 = lean_ctor_get(x_3, 1); lean_inc(x_4); -x_5 = l_Lean_Parser_Command_elab___elambda__1___closed__15; +x_5 = l_Lean_Parser_Command_elab___elambda__1___closed__16; x_6 = 1; x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); return x_7; @@ -18223,7 +18482,7 @@ static lean_object* _init_l_Lean_Parser_Command_elab___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_optPrecedence; +x_1 = l_Lean_Parser_Command_optPrio; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); x_3 = l_Lean_Parser_Command_elab___closed__4; @@ -18234,20 +18493,22 @@ return x_4; static lean_object* _init_l_Lean_Parser_Command_elab___closed__6() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_elab___closed__1; -x_2 = l_Lean_Parser_Command_elab___closed__5; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_optPrecedence; +x_2 = lean_ctor_get(x_1, 0); +lean_inc(x_2); +x_3 = l_Lean_Parser_Command_elab___closed__5; +x_4 = l_Lean_Parser_andthenInfo(x_2, x_3); +return x_4; } } static lean_object* _init_l_Lean_Parser_Command_elab___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_elab___elambda__1___closed__2; +x_1 = l_Lean_Parser_Command_elab___closed__1; x_2 = l_Lean_Parser_Command_elab___closed__6; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); +x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); return x_3; } } @@ -18255,25 +18516,35 @@ static lean_object* _init_l_Lean_Parser_Command_elab___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; +x_1 = l_Lean_Parser_Command_elab___elambda__1___closed__2; x_2 = l_Lean_Parser_Command_elab___closed__7; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); +x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; } } static lean_object* _init_l_Lean_Parser_Command_elab___closed__9() { _start: { +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_epsilonInfo; +x_2 = l_Lean_Parser_Command_elab___closed__8; +x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_elab___closed__10() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Command_elab___elambda__1___closed__4; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); -x_3 = l_Lean_Parser_Command_elab___closed__8; +x_3 = l_Lean_Parser_Command_elab___closed__9; x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Command_elab___closed__10() { +static lean_object* _init_l_Lean_Parser_Command_elab___closed__11() { _start: { lean_object* x_1; @@ -18281,12 +18552,12 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_elab___elambda__1), 2, 0) return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_elab___closed__11() { +static lean_object* _init_l_Lean_Parser_Command_elab___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_elab___closed__9; -x_2 = l_Lean_Parser_Command_elab___closed__10; +x_1 = l_Lean_Parser_Command_elab___closed__10; +x_2 = l_Lean_Parser_Command_elab___closed__11; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); @@ -18297,7 +18568,7 @@ static lean_object* _init_l_Lean_Parser_Command_elab() { _start: { lean_object* x_1; -x_1 = l_Lean_Parser_Command_elab___closed__11; +x_1 = l_Lean_Parser_Command_elab___closed__12; return x_1; } } @@ -18493,7 +18764,7 @@ static lean_object* _init_l_Lean_Parser_Command_elab_formatter___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Syntax_cat_formatter___closed__2; +x_1 = l_Lean_Parser_Command_macro_formatter___closed__8; x_2 = l_Lean_Parser_Command_elab_formatter___closed__8; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -18505,7 +18776,7 @@ static lean_object* _init_l_Lean_Parser_Command_elab_formatter___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_elab_formatter___closed__2; +x_1 = l_Lean_Parser_Syntax_cat_formatter___closed__2; x_2 = l_Lean_Parser_Command_elab_formatter___closed__9; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -18516,20 +18787,32 @@ return x_3; static lean_object* _init_l_Lean_Parser_Command_elab_formatter___closed__11() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_elab_formatter___closed__10; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_suppressInsideQuot_formatter), 6, 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_Command_elab_formatter___closed__2; +x_2 = l_Lean_Parser_Command_elab_formatter___closed__10; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 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_Command_elab_formatter___closed__12() { _start: { +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_elab_formatter___closed__11; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_suppressInsideQuot_formatter), 6, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Command_elab_formatter___closed__13() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Command_elab___elambda__1___closed__2; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Command_elab_formatter___closed__11; +x_3 = l_Lean_Parser_Command_elab_formatter___closed__12; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); lean_closure_set(x_4, 0, x_1); lean_closure_set(x_4, 1, x_2); @@ -18542,7 +18825,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_Command_elab_formatter___closed__1; -x_7 = l_Lean_Parser_Command_elab_formatter___closed__12; +x_7 = l_Lean_Parser_Command_elab_formatter___closed__13; x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -18745,7 +19028,7 @@ static lean_object* _init_l_Lean_Parser_Command_elab_parenthesizer___closed__9() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Syntax_cat_parenthesizer___closed__2; +x_1 = l_Lean_Parser_Command_macro_parenthesizer___closed__8; x_2 = l_Lean_Parser_Command_elab_parenthesizer___closed__8; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -18757,7 +19040,7 @@ static lean_object* _init_l_Lean_Parser_Command_elab_parenthesizer___closed__10( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_elab_parenthesizer___closed__2; +x_1 = l_Lean_Parser_Syntax_cat_parenthesizer___closed__2; x_2 = l_Lean_Parser_Command_elab_parenthesizer___closed__9; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -18768,20 +19051,32 @@ return x_3; static lean_object* _init_l_Lean_Parser_Command_elab_parenthesizer___closed__11() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_elab_parenthesizer___closed__10; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_suppressInsideQuot_parenthesizer), 6, 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_Command_elab_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_elab_parenthesizer___closed__10; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 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_Command_elab_parenthesizer___closed__12() { _start: { +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_elab_parenthesizer___closed__11; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_suppressInsideQuot_parenthesizer), 6, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Command_elab_parenthesizer___closed__13() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Command_elab___elambda__1___closed__2; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Command_elab_parenthesizer___closed__11; +x_3 = l_Lean_Parser_Command_elab_parenthesizer___closed__12; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); lean_closure_set(x_4, 0, x_1); lean_closure_set(x_4, 1, x_2); @@ -18794,7 +19089,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_Command_elab_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Command_elab_parenthesizer___closed__12; +x_7 = l_Lean_Parser_Command_elab_parenthesizer___closed__13; x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -21174,6 +21469,22 @@ l_Lean_Parser_Command_macroTail___closed__4 = _init_l_Lean_Parser_Command_macroT lean_mark_persistent(l_Lean_Parser_Command_macroTail___closed__4); l_Lean_Parser_Command_macroTail = _init_l_Lean_Parser_Command_macroTail(); lean_mark_persistent(l_Lean_Parser_Command_macroTail); +l_Lean_Parser_Command_optPrio___elambda__1___closed__1 = _init_l_Lean_Parser_Command_optPrio___elambda__1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_optPrio___elambda__1___closed__1); +l_Lean_Parser_Command_optPrio___elambda__1___closed__2 = _init_l_Lean_Parser_Command_optPrio___elambda__1___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_optPrio___elambda__1___closed__2); +l_Lean_Parser_Command_optPrio___closed__1 = _init_l_Lean_Parser_Command_optPrio___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_optPrio___closed__1); +l_Lean_Parser_Command_optPrio___closed__2 = _init_l_Lean_Parser_Command_optPrio___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_optPrio___closed__2); +l_Lean_Parser_Command_optPrio___closed__3 = _init_l_Lean_Parser_Command_optPrio___closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_optPrio___closed__3); +l_Lean_Parser_Command_optPrio___closed__4 = _init_l_Lean_Parser_Command_optPrio___closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_optPrio___closed__4); +l_Lean_Parser_Command_optPrio___closed__5 = _init_l_Lean_Parser_Command_optPrio___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_optPrio___closed__5); +l_Lean_Parser_Command_optPrio = _init_l_Lean_Parser_Command_optPrio(); +lean_mark_persistent(l_Lean_Parser_Command_optPrio); l_Lean_Parser_Command_macro___elambda__1___closed__1 = _init_l_Lean_Parser_Command_macro___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_macro___elambda__1___closed__1); l_Lean_Parser_Command_macro___elambda__1___closed__2 = _init_l_Lean_Parser_Command_macro___elambda__1___closed__2(); @@ -21204,6 +21515,8 @@ l_Lean_Parser_Command_macro___elambda__1___closed__14 = _init_l_Lean_Parser_Comm lean_mark_persistent(l_Lean_Parser_Command_macro___elambda__1___closed__14); l_Lean_Parser_Command_macro___elambda__1___closed__15 = _init_l_Lean_Parser_Command_macro___elambda__1___closed__15(); lean_mark_persistent(l_Lean_Parser_Command_macro___elambda__1___closed__15); +l_Lean_Parser_Command_macro___elambda__1___closed__16 = _init_l_Lean_Parser_Command_macro___elambda__1___closed__16(); +lean_mark_persistent(l_Lean_Parser_Command_macro___elambda__1___closed__16); l_Lean_Parser_Command_macro___closed__1 = _init_l_Lean_Parser_Command_macro___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_macro___closed__1); l_Lean_Parser_Command_macro___closed__2 = _init_l_Lean_Parser_Command_macro___closed__2(); @@ -21226,11 +21539,17 @@ l_Lean_Parser_Command_macro___closed__10 = _init_l_Lean_Parser_Command_macro___c lean_mark_persistent(l_Lean_Parser_Command_macro___closed__10); l_Lean_Parser_Command_macro___closed__11 = _init_l_Lean_Parser_Command_macro___closed__11(); lean_mark_persistent(l_Lean_Parser_Command_macro___closed__11); +l_Lean_Parser_Command_macro___closed__12 = _init_l_Lean_Parser_Command_macro___closed__12(); +lean_mark_persistent(l_Lean_Parser_Command_macro___closed__12); l_Lean_Parser_Command_macro = _init_l_Lean_Parser_Command_macro(); lean_mark_persistent(l_Lean_Parser_Command_macro); res = l___regBuiltinParser_Lean_Parser_Command_macro(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_optPrio_formatter___closed__1 = _init_l_Lean_Parser_Command_optPrio_formatter___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_optPrio_formatter___closed__1); +l_Lean_Parser_Command_optPrio_formatter___closed__2 = _init_l_Lean_Parser_Command_optPrio_formatter___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_optPrio_formatter___closed__2); l_Lean_Parser_Command_macroArgSimple_formatter___closed__1 = _init_l_Lean_Parser_Command_macroArgSimple_formatter___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_macroArgSimple_formatter___closed__1); l_Lean_Parser_Command_macroArgSimple_formatter___closed__2 = _init_l_Lean_Parser_Command_macroArgSimple_formatter___closed__2(); @@ -21317,11 +21636,19 @@ l_Lean_Parser_Command_macro_formatter___closed__10 = _init_l_Lean_Parser_Command lean_mark_persistent(l_Lean_Parser_Command_macro_formatter___closed__10); l_Lean_Parser_Command_macro_formatter___closed__11 = _init_l_Lean_Parser_Command_macro_formatter___closed__11(); lean_mark_persistent(l_Lean_Parser_Command_macro_formatter___closed__11); +l_Lean_Parser_Command_macro_formatter___closed__12 = _init_l_Lean_Parser_Command_macro_formatter___closed__12(); +lean_mark_persistent(l_Lean_Parser_Command_macro_formatter___closed__12); +l_Lean_Parser_Command_macro_formatter___closed__13 = _init_l_Lean_Parser_Command_macro_formatter___closed__13(); +lean_mark_persistent(l_Lean_Parser_Command_macro_formatter___closed__13); l___regBuiltin_Lean_Parser_Command_macro_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_macro_formatter___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_macro_formatter___closed__1); res = l___regBuiltin_Lean_Parser_Command_macro_formatter(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +l_Lean_Parser_Command_optPrio_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_optPrio_parenthesizer___closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_optPrio_parenthesizer___closed__1); +l_Lean_Parser_Command_optPrio_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_optPrio_parenthesizer___closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_optPrio_parenthesizer___closed__2); l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__1); l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__2(); @@ -21414,6 +21741,10 @@ l_Lean_Parser_Command_macro_parenthesizer___closed__10 = _init_l_Lean_Parser_Com lean_mark_persistent(l_Lean_Parser_Command_macro_parenthesizer___closed__10); l_Lean_Parser_Command_macro_parenthesizer___closed__11 = _init_l_Lean_Parser_Command_macro_parenthesizer___closed__11(); lean_mark_persistent(l_Lean_Parser_Command_macro_parenthesizer___closed__11); +l_Lean_Parser_Command_macro_parenthesizer___closed__12 = _init_l_Lean_Parser_Command_macro_parenthesizer___closed__12(); +lean_mark_persistent(l_Lean_Parser_Command_macro_parenthesizer___closed__12); +l_Lean_Parser_Command_macro_parenthesizer___closed__13 = _init_l_Lean_Parser_Command_macro_parenthesizer___closed__13(); +lean_mark_persistent(l_Lean_Parser_Command_macro_parenthesizer___closed__13); l___regBuiltin_Lean_Parser_Command_macro_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_macro_parenthesizer___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_macro_parenthesizer___closed__1); res = l___regBuiltin_Lean_Parser_Command_macro_parenthesizer(lean_io_mk_world()); @@ -21576,6 +21907,8 @@ l_Lean_Parser_Command_elab___elambda__1___closed__14 = _init_l_Lean_Parser_Comma lean_mark_persistent(l_Lean_Parser_Command_elab___elambda__1___closed__14); l_Lean_Parser_Command_elab___elambda__1___closed__15 = _init_l_Lean_Parser_Command_elab___elambda__1___closed__15(); lean_mark_persistent(l_Lean_Parser_Command_elab___elambda__1___closed__15); +l_Lean_Parser_Command_elab___elambda__1___closed__16 = _init_l_Lean_Parser_Command_elab___elambda__1___closed__16(); +lean_mark_persistent(l_Lean_Parser_Command_elab___elambda__1___closed__16); l_Lean_Parser_Command_elab___closed__1 = _init_l_Lean_Parser_Command_elab___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_elab___closed__1); l_Lean_Parser_Command_elab___closed__2 = _init_l_Lean_Parser_Command_elab___closed__2(); @@ -21598,6 +21931,8 @@ l_Lean_Parser_Command_elab___closed__10 = _init_l_Lean_Parser_Command_elab___clo lean_mark_persistent(l_Lean_Parser_Command_elab___closed__10); l_Lean_Parser_Command_elab___closed__11 = _init_l_Lean_Parser_Command_elab___closed__11(); lean_mark_persistent(l_Lean_Parser_Command_elab___closed__11); +l_Lean_Parser_Command_elab___closed__12 = _init_l_Lean_Parser_Command_elab___closed__12(); +lean_mark_persistent(l_Lean_Parser_Command_elab___closed__12); l_Lean_Parser_Command_elab = _init_l_Lean_Parser_Command_elab(); lean_mark_persistent(l_Lean_Parser_Command_elab); res = l___regBuiltinParser_Lean_Parser_Command_elab(lean_io_mk_world()); @@ -21639,6 +21974,8 @@ l_Lean_Parser_Command_elab_formatter___closed__11 = _init_l_Lean_Parser_Command_ lean_mark_persistent(l_Lean_Parser_Command_elab_formatter___closed__11); l_Lean_Parser_Command_elab_formatter___closed__12 = _init_l_Lean_Parser_Command_elab_formatter___closed__12(); lean_mark_persistent(l_Lean_Parser_Command_elab_formatter___closed__12); +l_Lean_Parser_Command_elab_formatter___closed__13 = _init_l_Lean_Parser_Command_elab_formatter___closed__13(); +lean_mark_persistent(l_Lean_Parser_Command_elab_formatter___closed__13); l___regBuiltin_Lean_Parser_Command_elab_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_elab_formatter___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_elab_formatter___closed__1); res = l___regBuiltin_Lean_Parser_Command_elab_formatter(lean_io_mk_world()); @@ -21680,6 +22017,8 @@ l_Lean_Parser_Command_elab_parenthesizer___closed__11 = _init_l_Lean_Parser_Comm lean_mark_persistent(l_Lean_Parser_Command_elab_parenthesizer___closed__11); l_Lean_Parser_Command_elab_parenthesizer___closed__12 = _init_l_Lean_Parser_Command_elab_parenthesizer___closed__12(); lean_mark_persistent(l_Lean_Parser_Command_elab_parenthesizer___closed__12); +l_Lean_Parser_Command_elab_parenthesizer___closed__13 = _init_l_Lean_Parser_Command_elab_parenthesizer___closed__13(); +lean_mark_persistent(l_Lean_Parser_Command_elab_parenthesizer___closed__13); l___regBuiltin_Lean_Parser_Command_elab_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_elab_parenthesizer___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_elab_parenthesizer___closed__1); res = l___regBuiltin_Lean_Parser_Command_elab_parenthesizer(lean_io_mk_world()); diff --git a/stage0/stdlib/Lean/Parser/Tactic.c b/stage0/stdlib/Lean/Parser/Tactic.c index e063aecfd0..b6fb753c38 100644 --- a/stage0/stdlib/Lean/Parser/Tactic.c +++ b/stage0/stdlib/Lean/Parser/Tactic.c @@ -63,7 +63,6 @@ lean_object* l_Lean_Parser_Tactic_injection_parenthesizer___closed__5; lean_object* l___regBuiltin_Lean_Parser_Tactic_match_formatter(lean_object*); lean_object* l_Lean_Parser_Tactic_let___elambda__1___closed__2; lean_object* l_Lean_PrettyPrinter_Formatter_visitArgs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_admit___closed__3; lean_object* l_Lean_Parser_Tactic_location___elambda__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_subst_parenthesizer___closed__2; lean_object* l_Lean_Parser_Tactic_rewrite___elambda__1___closed__7; @@ -71,7 +70,6 @@ lean_object* l_Lean_Parser_Tactic_subst___elambda__1___closed__7; lean_object* l_Lean_Parser_Tactic_withIds___closed__3; lean_object* l___regBuiltin_Lean_Parser_Tactic_skip_formatter___closed__1; lean_object* l_Lean_Parser_Tactic_revert___closed__2; -lean_object* l_Lean_Parser_Tactic_admit___elambda__1___closed__2; lean_object* l_Lean_Parser_Tactic_changeWith_parenthesizer___closed__2; lean_object* l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_let___elambda__1(lean_object*, lean_object*); @@ -101,7 +99,6 @@ lean_object* l_Lean_Parser_Tactic_change_parenthesizer___closed__6; lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__13; lean_object* l_Lean_Parser_Tactic_induction_formatter___closed__10; lean_object* l_Lean_Parser_Tactic_cases_parenthesizer___closed__5; -lean_object* l_Lean_Parser_Tactic_admit_formatter___closed__3; extern lean_object* l_Lean_Parser_Term_explicit___closed__2; lean_object* l_Lean_Parser_Tactic_traceState_parenthesizer___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Tactic_have(lean_object*); @@ -127,7 +124,6 @@ lean_object* l_Lean_Parser_Tactic_traceState_parenthesizer(lean_object*, lean_ob lean_object* l_Lean_Parser_Tactic_intros___elambda__1___closed__5; lean_object* l_Lean_Parser_Tactic_intro___closed__9; extern lean_object* l_Lean_nullKind; -lean_object* l_Lean_Parser_Tactic_admit___closed__5; lean_object* l_Lean_Parser_Tactic_intros___elambda__1___closed__3; lean_object* l_Lean_Parser_Tactic_change___elambda__1___closed__12; lean_object* l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__2; @@ -182,10 +178,8 @@ extern lean_object* l_Lean_Parser_Term_have___closed__2; lean_object* l_Lean_Parser_Tactic_induction___closed__2; lean_object* l_Lean_Parser_Tactic_location___elambda__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Tactic_apply_parenthesizer___closed__1; -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_admit(lean_object*); lean_object* l_Lean_Parser_Tactic_rewriteSeq___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_intro_formatter___closed__5; -lean_object* l_Lean_Parser_Tactic_admit; extern lean_object* l_Lean_Parser_Term_show___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_case_formatter___closed__4; lean_object* l_Lean_Parser_Tactic_generalize_parenthesizer___closed__12; @@ -327,7 +321,6 @@ lean_object* l_Lean_Parser_Tactic_traceState___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_inductionAlt_formatter___closed__5; lean_object* l_Lean_Parser_orelseFn(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_injection___closed__4; -lean_object* l_Lean_Parser_Tactic_admit___elambda__1___closed__4; lean_object* l_Lean_Parser_Tactic_inductionAlt_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_rewrite___elambda__1___closed__5; lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__7; @@ -370,7 +363,6 @@ lean_object* l___regBuiltin_Lean_Parser_Tactic_revert_formatter(lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_location___elambda__1___closed__7; lean_object* l_Lean_Parser_Tactic_induction_formatter___closed__5; -extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; lean_object* l_Lean_Parser_Tactic_matchAlts_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__5; lean_object* l_Lean_Parser_Tactic_suffices___elambda__1___closed__4; @@ -390,7 +382,6 @@ lean_object* l_Lean_Parser_Tactic_induction_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_change___elambda__1___closed__11; lean_object* l_Lean_Parser_Tactic_altRHS___closed__3; lean_object* l___regBuiltin_Lean_Parser_Tactic_revert_parenthesizer(lean_object*); -lean_object* l_Lean_Parser_Tactic_admit___elambda__1___closed__8; lean_object* l_Lean_Parser_Tactic_intros___closed__5; lean_object* l_Lean_Parser_Tactic_injection_formatter___closed__5; lean_object* l_Lean_Parser_Tactic_assumption___elambda__1___closed__2; @@ -439,11 +430,13 @@ lean_object* l_Lean_Parser_Tactic_suffices___closed__4; lean_object* l_Lean_Parser_Tactic_usingRec_formatter___closed__2; lean_object* l_Lean_Parser_Tactic_intro___elambda__1___closed__18; lean_object* l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__6; +extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_refine___elambda__1___closed__8; lean_object* l___regBuiltin_Lean_Parser_Tactic_refine_x21_formatter___closed__1; lean_object* l_Lean_Parser_Tactic_revert___closed__4; lean_object* l_Lean_Parser_Tactic_majorPremise_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__2; lean_object* l_Lean_Parser_Tactic_location___elambda__1___closed__9; lean_object* l_Lean_Parser_Tactic_ident_x27___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_rwRule___closed__6; @@ -506,7 +499,6 @@ lean_object* l_Lean_Parser_Tactic_have___elambda__1___closed__3; lean_object* l_Lean_Parser_Tactic_altRHS_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_clear; lean_object* l___regBuiltin_Lean_Parser_Tactic_cases_parenthesizer___closed__1; -extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__3; lean_object* l_Lean_Parser_Tactic_clear___elambda__1___closed__3; lean_object* l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__3; lean_object* l_Lean_Parser_Tactic_changeWith_parenthesizer___closed__5; @@ -545,9 +537,9 @@ lean_object* l_Lean_Parser_Tactic_refine___elambda__1___closed__6; lean_object* l_Lean_Parser_Tactic_let_x21_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_intro___elambda__1___closed__14; lean_object* l_Lean_Parser_Tactic_usingRec___closed__5; +extern lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__6; lean_object* l_Lean_Parser_Tactic_skip_parenthesizer___closed__3; lean_object* l_Lean_Parser_Tactic_refine_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_admit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_allGoals_formatter___closed__3; lean_object* l_Lean_Parser_Tactic_intro___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__3; @@ -568,7 +560,6 @@ extern lean_object* l___regBuiltin_Lean_Parser_Term_hole_parenthesizer___closed_ extern lean_object* l_Lean_Parser_Term_have___elambda__1___closed__6; lean_object* l_Lean_Parser_Tactic_subst___elambda__1___closed__5; lean_object* l_Lean_Parser_Tactic_induction_parenthesizer___closed__7; -lean_object* l_Lean_Parser_Tactic_admit___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_cases___closed__4; extern lean_object* l_Lean_PrettyPrinter_parenthesizerAttribute; lean_object* l___regBuiltin_Lean_Parser_Tactic_case_formatter___closed__1; @@ -585,7 +576,6 @@ lean_object* l___regBuiltin_Lean_Parser_Tactic_injection_parenthesizer(lean_obje lean_object* l_Lean_Parser_Tactic_refine_x21_formatter___closed__2; lean_object* l_Lean_Parser_Tactic_focus___closed__4; extern lean_object* l_Lean_Parser_Term_hole___closed__4; -lean_object* l_Lean_Parser_Tactic_exact___elambda__1___closed__10; lean_object* l___regBuiltin_Lean_Parser_Tactic_let_formatter___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Tactic_focus(lean_object*); lean_object* l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__3; @@ -608,7 +598,6 @@ lean_object* l_Lean_Parser_Tactic_generalize_parenthesizer___closed__8; lean_object* l_Lean_Parser_Tactic_location_formatter___closed__6; lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__10; lean_object* l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__2; -lean_object* l_Lean_Parser_Tactic_admit_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_location___closed__6; lean_object* l_Lean_Parser_Tactic_clear___closed__3; lean_object* l_Lean_Parser_Tactic_cases___elambda__1___closed__8; @@ -622,7 +611,6 @@ lean_object* l_Lean_Parser_Tactic_allGoals___elambda__1___closed__3; lean_object* l_Lean_Parser_Tactic_paren_formatter___closed__2; lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__12; extern lean_object* l_Lean_Parser_Term_match___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_admit___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_assumption___elambda__1___closed__4; lean_object* l_Lean_Parser_Tactic_skip___elambda__1___closed__3; lean_object* l_Lean_Parser_Tactic_refine_formatter___closed__1; @@ -690,7 +678,6 @@ lean_object* l_Lean_Parser_Tactic_refine___elambda__1___closed__5; lean_object* l_Lean_Parser_Tactic_case___elambda__1___closed__5; lean_object* l_Lean_Parser_nodeInfo(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_allGoals___elambda__1___closed__5; -lean_object* l_Lean_Parser_Tactic_admit___elambda__1___closed__5; lean_object* l_Lean_Parser_Tactic_introMatch___closed__6; lean_object* l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__7; lean_object* l_Lean_Parser_symbolFn___boxed(lean_object*, lean_object*, lean_object*); @@ -769,7 +756,6 @@ lean_object* l_Lean_Parser_Tactic_generalizingVars_formatter___closed__1; lean_object* l_Lean_Parser_Tactic_rewrite___closed__9; lean_object* l_Lean_Parser_Tactic_injection___elambda__1___closed__10; lean_object* l_Lean_Parser_Tactic_match___elambda__1___closed__8; -lean_object* l_Lean_Parser_Tactic_admit___closed__4; lean_object* l_Lean_Parser_Tactic_matchAlts_parenthesizer___closed__4; lean_object* l_Lean_Parser_Tactic_focus; lean_object* l_Lean_Parser_Tactic_rewrite_formatter___closed__7; @@ -804,7 +790,6 @@ lean_object* l_Lean_Parser_Tactic_generalize___elambda__1(lean_object*, lean_obj lean_object* l___regBuiltin_Lean_Parser_Tactic_suffices_parenthesizer(lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Tactic_let_x21(lean_object*); lean_object* l_Lean_Parser_Tactic_changeWith_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_admit___elambda__1___closed__3; extern lean_object* l_Lean_Parser_Tactic_quotSeq_parenthesizer___closed__2; lean_object* l_Lean_Parser_Tactic_assumption___closed__6; extern lean_object* l_Lean_Parser_Term_structInstArrayRef___closed__1; @@ -867,7 +852,6 @@ lean_object* l_Lean_Parser_Tactic_intro___elambda__1(lean_object*, lean_object*) lean_object* l_Lean_Parser_Tactic_revert___closed__6; lean_object* l___regBuiltin_Lean_Parser_Tactic_show_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_exact___elambda__1___closed__1; -lean_object* l_Lean_Parser_Tactic_admit___elambda__1___closed__6; lean_object* l_Lean_Parser_Tactic_let_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_ident_x27_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_generalize___closed__11; @@ -881,10 +865,8 @@ lean_object* l_Lean_Parser_Tactic_have_formatter(lean_object*, lean_object*, lea lean_object* l_Lean_Parser_Tactic_match___closed__6; lean_object* l_Lean_Parser_Tactic_induction_parenthesizer___closed__2; lean_object* l_Lean_Parser_Tactic_cases_formatter___closed__2; -lean_object* l___regBuiltin_Lean_Parser_Tactic_admit_parenthesizer___closed__1; lean_object* l___regBuiltin_Lean_Parser_Tactic_introMatch_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__6; -lean_object* l_Lean_Parser_Tactic_admit_parenthesizer___closed__3; lean_object* l___regBuiltin_Lean_Parser_Tactic_nestedTactic_formatter___closed__1; lean_object* l_Lean_Parser_Tactic_changeWith___closed__4; lean_object* l___regBuiltin_Lean_Parser_Tactic_case_formatter(lean_object*); @@ -896,10 +878,8 @@ lean_object* l_Lean_Parser_Tactic_majorPremise___closed__3; lean_object* l_Lean_Parser_Tactic_introMatch_formatter___closed__3; lean_object* l_Lean_Parser_Tactic_rwRuleSeq_parenthesizer___closed__2; extern lean_object* l___regBuiltin_Lean_Parser_ident_formatter___closed__2; -lean_object* l___regBuiltin_Lean_Parser_Tactic_admit_formatter___closed__1; extern lean_object* l_Lean_Parser_Term_let_parenthesizer___closed__4; extern lean_object* l___regBuiltin_Lean_Parser_Term_syntheticHole_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Tactic_admit___closed__2; lean_object* l_Lean_Parser_Tactic_exact_parenthesizer___closed__3; lean_object* lean_name_mk_string(lean_object*, lean_object*); extern lean_object* l_List_repr___rarg___closed__2; @@ -981,7 +961,6 @@ lean_object* l_Lean_Parser_Tactic_match___closed__8; lean_object* l_Lean_Parser_Tactic_intro___elambda__1___closed__17; lean_object* l_Lean_Parser_Tactic_cases___elambda__1___closed__6; lean_object* l_Lean_Parser_Tactic_clear___elambda__1___closed__4; -extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; lean_object* l_Lean_Parser_Tactic_changeWith___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_skip___elambda__1___closed__2; lean_object* l_Lean_Parser_Tactic_induction___closed__10; @@ -1010,7 +989,6 @@ lean_object* l_Lean_Parser_Tactic_inductionAlt_formatter___closed__3; lean_object* l_Lean_Parser_Tactic_case_parenthesizer___closed__2; lean_object* l_Lean_Parser_Tactic_inductionAlt_parenthesizer___closed__3; lean_object* l_Lean_Parser_Tactic_show; -lean_object* l_Lean_Parser_Tactic_admit___closed__1; lean_object* l_Lean_Parser_tacticParser_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_injection___closed__3; lean_object* l_Lean_Parser_Tactic_change___elambda__1___closed__6; @@ -1039,7 +1017,6 @@ lean_object* l_Lean_Parser_Tactic_paren_formatter___closed__3; lean_object* l_Lean_PrettyPrinter_Parenthesizer_symbol_parenthesizer___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_let_x21_parenthesizer___closed__3; lean_object* l_Lean_Parser_Tactic_focus___elambda__1___closed__4; -lean_object* l___regBuiltin_Lean_Parser_Tactic_admit_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Tactic_refine___elambda__1___closed__7; lean_object* l___regBuiltin_Lean_Parser_Tactic_failIfSuccess_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_failIfSuccess___elambda__1(lean_object*, lean_object*); @@ -1175,7 +1152,6 @@ lean_object* l_Lean_Parser_Tactic_rewrite___elambda__1(lean_object*, lean_object lean_object* l_Lean_Parser_Tactic_matchAlt_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_cases___elambda__1___closed__5; lean_object* l_Lean_PrettyPrinter_Formatter_many1_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_admit_parenthesizer___closed__2; lean_object* l_Lean_Parser_Tactic_change___closed__6; lean_object* l___regBuiltin_Lean_Parser_Tactic_cases_formatter___closed__1; lean_object* l_Lean_Parser_Tactic_refine_x21; @@ -1206,7 +1182,6 @@ lean_object* l_Lean_Parser_Tactic_intros___closed__9; lean_object* l_Lean_Parser_Tactic_withIds___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_location___closed__9; extern lean_object* l_Lean_Parser_Term_let_formatter___closed__4; -lean_object* l_Lean_Parser_Tactic_exact___elambda__1___closed__9; lean_object* l_Lean_Parser_Tactic_case_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_injection___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__7; @@ -1289,7 +1264,6 @@ lean_object* l___regBuiltin_Lean_Parser_Tactic_changeWith_parenthesizer___closed lean_object* l___regBuiltin_Lean_Parser_Tactic_rewrite_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Tactic_suffices___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_induction___closed__6; -lean_object* l_Lean_Parser_Tactic_admit___closed__6; lean_object* l_Lean_Parser_Tactic_subst_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__17; lean_object* l_Lean_Parser_Tactic_orelse_formatter___closed__2; @@ -1422,7 +1396,6 @@ lean_object* l_Lean_Parser_Tactic_generalizingVars___closed__2; lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__11; lean_object* l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__2; lean_object* l___regBuiltinParser_Lean_Parser_Tactic_let(lean_object*); -lean_object* l_Lean_Parser_Tactic_admit___elambda__1___closed__7; lean_object* l_Lean_Parser_Tactic_case_formatter___closed__3; lean_object* l_Lean_Parser_Tactic_traceState_formatter___closed__2; lean_object* l_Lean_Parser_Tactic_generalizingVars___elambda__1___closed__1; @@ -1735,7 +1708,6 @@ lean_object* l_Lean_Parser_symbolFnAux(lean_object*, lean_object*, lean_object*, lean_object* l___regBuiltin_Lean_Parser_Tactic_refine_x21_formatter(lean_object*); lean_object* l_Lean_Parser_Tactic_focus_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__9; -lean_object* l_Lean_Parser_Tactic_admit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_refine_x21_formatter___closed__3; lean_object* l_Lean_Parser_Tactic_revert___elambda__1___closed__2; lean_object* l_Lean_Parser_Tactic_majorPremise___elambda__1___closed__5; @@ -1756,6 +1728,7 @@ lean_object* l_Lean_Parser_Tactic_traceState___elambda__1___closed__2; lean_object* l_Lean_Parser_Tactic_injection___elambda__1___closed__2; lean_object* l_Lean_Parser_Tactic_paren___elambda__1___closed__6; lean_object* l_Lean_Parser_Tactic_generalize_formatter___closed__1; +extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; lean_object* l_Lean_Parser_Tactic_allGoals___closed__1; lean_object* l_Lean_Parser_Tactic_traceState; lean_object* l_Lean_Parser_Tactic_suffices_parenthesizer___closed__2; @@ -1796,6 +1769,7 @@ lean_object* l_Lean_Parser_Tactic_rewrite_parenthesizer___closed__5; lean_object* l_Lean_Parser_Tactic_refine; extern lean_object* l_Lean_Parser_Level_paren___elambda__1___closed__4; lean_object* l_Lean_Parser_Tactic_generalize___closed__14; +extern lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__5; lean_object* l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__6; lean_object* l_Lean_Parser_Tactic_introMatch; lean_object* l_Lean_Parser_Tactic_traceState___elambda__1___closed__8; @@ -1813,7 +1787,6 @@ lean_object* l_Lean_Parser_Tactic_rewrite_formatter___closed__1; lean_object* l_Lean_Parser_Tactic_have_parenthesizer___closed__2; lean_object* l_Lean_Parser_Tactic_intro_parenthesizer___closed__8; lean_object* l_Lean_Parser_Tactic_injection___elambda__1___closed__9; -lean_object* l___regBuiltin_Lean_Parser_Tactic_admit_formatter(lean_object*); lean_object* l_Lean_Parser_Tactic_induction___elambda__1___closed__4; lean_object* l___regBuiltin_Lean_Parser_Tactic_apply_parenthesizer(lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Tactic_refine(lean_object*); @@ -1852,7 +1825,6 @@ extern lean_object* l_Lean_Parser_Term_let_x21___closed__2; lean_object* l_Lean_Parser_Tactic_induction___elambda__1___closed__3; lean_object* l_Lean_Parser_Tactic_case___elambda__1___closed__6; lean_object* l_Lean_Parser_Tactic_generalize___elambda__1___closed__2; -lean_object* l_Lean_Parser_Tactic_admit_formatter___closed__2; lean_object* l_Lean_Parser_Tactic_rewrite___closed__10; lean_object* l_Lean_Parser_Tactic_introMatch___elambda__1___closed__4; lean_object* l_Lean_Parser_Tactic_traceState___elambda__1(lean_object*, lean_object*); @@ -1878,7 +1850,6 @@ lean_object* l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__5; lean_object* l___regBuiltinParser_Lean_Parser_Tactic_injection(lean_object*); lean_object* l_Lean_Parser_Tactic_intro_formatter___closed__7; 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_Tactic_admit_formatter___closed__1; lean_object* l_Lean_Parser_Tactic_introMatch_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_rwRule___elambda__1___closed__3; extern lean_object* l_Lean_Parser_Term_show_parenthesizer___closed__2; @@ -2073,7 +2044,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_intro___elambda__1___closed__2() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_intro___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -2382,7 +2353,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_intro(lean_object* x_1) { _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_3 = l_Lean_Parser_Tactic_intro___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Tactic_intro; @@ -2654,7 +2625,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_intros___elambda__1___closed__2() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_intros___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -2884,7 +2855,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_intros(lean_object* x_1) { _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_3 = l_Lean_Parser_Tactic_intros___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Tactic_intros; @@ -3164,7 +3135,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_revert___elambda__1___closed__2() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_revert___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -3385,7 +3356,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_revert(lean_object* x_1) { _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_3 = l_Lean_Parser_Tactic_revert___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Tactic_revert; @@ -3613,7 +3584,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_clear___elambda__1___closed__2() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_clear___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -3800,7 +3771,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_clear(lean_object* x_1) { _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_3 = l_Lean_Parser_Tactic_clear___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Tactic_clear; @@ -3976,7 +3947,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_subst___elambda__1___closed__1() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Term_subst___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -4163,7 +4134,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_subst(lean_object* x_1) { _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_3 = l_Lean_Parser_Tactic_subst___elambda__1___closed__1; x_4 = 1; x_5 = l_Lean_Parser_Tactic_subst; @@ -4347,7 +4318,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_assumption___elambda__1___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_assumption___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -4504,7 +4475,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_assumption(lean_object* x_1 _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_3 = l_Lean_Parser_Tactic_assumption___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Tactic_assumption; @@ -4664,7 +4635,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_apply___elambda__1___closed__2() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_apply___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -4853,7 +4824,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_apply(lean_object* x_1) { _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_3 = l_Lean_Parser_Tactic_apply___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Tactic_apply; @@ -5028,43 +4999,25 @@ return x_5; static lean_object* _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__1() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("exact"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_exact___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__3() { -_start: -{ lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_exact___elambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__6; 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_Tactic_exact___elambda__1___closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_exact___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_exact___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_exact___elambda__1___closed__3; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__5; +x_2 = l_Lean_Parser_Tactic_exact___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_Tactic_exact___elambda__1___closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__3() { _start: { lean_object* x_1; @@ -5072,30 +5025,30 @@ x_1 = lean_mk_string("exact "); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__6() { +static lean_object* _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_exact___elambda__1___closed__5; +x_1 = l_Lean_Parser_Tactic_exact___elambda__1___closed__3; x_2 = l_String_trim(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__7() { +static lean_object* _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_exact___elambda__1___closed__6; +x_1 = l_Lean_Parser_Tactic_exact___elambda__1___closed__4; x_2 = lean_alloc_closure((void*)(l_Lean_Parser_nonReservedSymbolFn), 3, 1); lean_closure_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__8() { +static lean_object* _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_exact___elambda__1___closed__7; +x_1 = l_Lean_Parser_Tactic_exact___elambda__1___closed__5; x_2 = l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -5103,24 +5056,24 @@ lean_closure_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__9() { +static lean_object* _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_exact___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_exact___elambda__1___closed__8; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__6; +x_2 = l_Lean_Parser_Tactic_exact___elambda__1___closed__6; 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_Tactic_exact___elambda__1___closed__10() { +static lean_object* _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_exact___elambda__1___closed__9; +x_2 = l_Lean_Parser_Tactic_exact___elambda__1___closed__7; 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); @@ -5131,10 +5084,10 @@ lean_object* l_Lean_Parser_Tactic_exact___elambda__1(lean_object* x_1, lean_obje _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_Tactic_exact___elambda__1___closed__4; +x_3 = l_Lean_Parser_Tactic_exact___elambda__1___closed__2; x_4 = lean_ctor_get(x_3, 1); lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_exact___elambda__1___closed__10; +x_5 = l_Lean_Parser_Tactic_exact___elambda__1___closed__8; x_6 = 1; x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); return x_7; @@ -5144,7 +5097,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_exact___closed__1() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_exact___elambda__1___closed__6; +x_1 = l_Lean_Parser_Tactic_exact___elambda__1___closed__4; x_2 = 0; x_3 = l_Lean_Parser_nonReservedSymbolInfo(x_1, x_2); return x_3; @@ -5166,7 +5119,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_exact___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_exact___elambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__6; x_2 = l_Lean_Parser_Tactic_exact___closed__2; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -5186,7 +5139,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_exact___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_exact___elambda__1___closed__4; +x_1 = l_Lean_Parser_Tactic_exact___elambda__1___closed__2; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); x_3 = l_Lean_Parser_Tactic_exact___closed__4; @@ -5226,8 +5179,8 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_exact(lean_object* x_1) { _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; -x_3 = l_Lean_Parser_Tactic_exact___elambda__1___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; +x_3 = l_myMacro____x40_Init_Tactics___hyg_31____closed__6; x_4 = 1; x_5 = l_Lean_Parser_Tactic_exact; x_6 = lean_unsigned_to_nat(0u); @@ -5239,8 +5192,8 @@ static lean_object* _init_l_Lean_Parser_Tactic_exact_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_exact___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_exact___elambda__1___closed__3; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__5; +x_2 = l_Lean_Parser_Tactic_exact___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); @@ -5254,7 +5207,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_exact_formatter___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_exact___elambda__1___closed__5; +x_1 = l_Lean_Parser_Tactic_exact___elambda__1___closed__3; x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_nonReservedSymbol_formatter___boxed), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -5276,7 +5229,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_exact_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_exact___elambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__6; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Tactic_exact_formatter___closed__3; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -5309,7 +5262,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_exact___elambda__1___closed__2; +x_3 = l_myMacro____x40_Init_Tactics___hyg_31____closed__6; x_4 = l___regBuiltin_Lean_Parser_Tactic_exact_formatter___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -5319,8 +5272,8 @@ static lean_object* _init_l_Lean_Parser_Tactic_exact_parenthesizer___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_exact___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_exact___elambda__1___closed__3; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__5; +x_2 = l_Lean_Parser_Tactic_exact___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___boxed), 8, 3); @@ -5334,7 +5287,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_exact_parenthesizer___closed__2() _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_exact___elambda__1___closed__5; +x_1 = l_Lean_Parser_Tactic_exact___elambda__1___closed__3; x_2 = 0; x_3 = lean_box(x_2); x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_nonReservedSymbol_parenthesizer___boxed), 3, 2); @@ -5359,7 +5312,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_exact_parenthesizer___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_exact___elambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__6; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Tactic_exact_parenthesizer___closed__3; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -5392,7 +5345,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_exact___elambda__1___closed__2; +x_3 = l_myMacro____x40_Init_Tactics___hyg_31____closed__6; x_4 = l___regBuiltin_Lean_Parser_Tactic_exact_parenthesizer___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -5410,7 +5363,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_refine___elambda__1___closed__2() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_refine___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -5599,7 +5552,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_refine(lean_object* x_1) { _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_3 = l_Lean_Parser_Tactic_refine___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Tactic_refine; @@ -5783,7 +5736,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_refine_x21___elambda__1___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -5972,7 +5925,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_refine_x21(lean_object* x_1 _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_3 = l_Lean_Parser_Tactic_refine_x21___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Tactic_refine_x21; @@ -6156,7 +6109,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_case___elambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_case___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -6387,7 +6340,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_case(lean_object* x_1) { _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_3 = l_Lean_Parser_Tactic_case___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Tactic_case; @@ -6619,7 +6572,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_allGoals___elambda__1___closed__2 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_allGoals___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -6810,7 +6763,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_allGoals(lean_object* x_1) _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_3 = l_Lean_Parser_Tactic_allGoals___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Tactic_allGoals; @@ -6994,7 +6947,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_focus___elambda__1___closed__2() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_focus___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -7185,7 +7138,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_focus(lean_object* x_1) { _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_3 = l_Lean_Parser_Tactic_focus___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Tactic_focus; @@ -7369,7 +7322,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_skip___elambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_skip___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -7526,7 +7479,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_skip(lean_object* x_1) { _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_3 = l_Lean_Parser_Tactic_skip___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Tactic_skip; @@ -7686,7 +7639,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_done___elambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_done___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -7843,7 +7796,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_done(lean_object* x_1) { _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_3 = l_Lean_Parser_Tactic_done___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Tactic_done; @@ -7991,323 +7944,6 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -static lean_object* _init_l_Lean_Parser_Tactic_admit___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("admit"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_admit___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_admit___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_admit___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_admit___elambda__1___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_Tactic_admit___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_admit___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_admit___elambda__1___closed__3; -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_Tactic_admit___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_admit___elambda__1___closed__1; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_admit___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_admit___elambda__1___closed__5; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_nonReservedSymbolFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_admit___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_admit___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_admit___elambda__1___closed__6; -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_Tactic_admit___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Tactic_admit___elambda__1___closed__7; -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; -} -} -lean_object* l_Lean_Parser_Tactic_admit___elambda__1(lean_object* x_1, lean_object* x_2) { -_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_Tactic_admit___elambda__1___closed__4; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Tactic_admit___elambda__1___closed__8; -x_6 = 1; -x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_admit___closed__1() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_admit___elambda__1___closed__5; -x_2 = 0; -x_3 = l_Lean_Parser_nonReservedSymbolInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_admit___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_admit___elambda__1___closed__2; -x_2 = l_Lean_Parser_Tactic_admit___closed__1; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_admit___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Tactic_admit___closed__2; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_admit___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_admit___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_admit___closed__3; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_admit___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_admit___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_admit___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_admit___closed__4; -x_2 = l_Lean_Parser_Tactic_admit___closed__5; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_admit() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_admit___closed__6; -return x_1; -} -} -lean_object* l___regBuiltinParser_Lean_Parser_Tactic_admit(lean_object* x_1) { -_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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; -x_3 = l_Lean_Parser_Tactic_admit___elambda__1___closed__2; -x_4 = 1; -x_5 = l_Lean_Parser_Tactic_admit; -x_6 = lean_unsigned_to_nat(0u); -x_7 = l_Lean_Parser_addBuiltinParser(x_2, x_3, x_4, x_5, x_6, x_1); -return x_7; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_admit_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_admit___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_admit___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_admit_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_admit___elambda__1___closed__1; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_nonReservedSymbol_formatter___boxed), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_admit_formatter___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_admit___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_admit_formatter___closed__2; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_admit_formatter(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 = l_Lean_Parser_Tactic_admit_formatter___closed__1; -x_7 = l_Lean_Parser_Tactic_admit_formatter___closed__3; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_admit_formatter___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_admit_formatter), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_admit_formatter(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_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_Tactic_admit___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_admit_formatter___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_admit_parenthesizer___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_admit___elambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_admit___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_admit_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_admit___elambda__1___closed__1; -x_2 = 0; -x_3 = lean_box(x_2); -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_nonReservedSymbol_parenthesizer___boxed), 3, 2); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Tactic_admit_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_admit___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Tactic_admit_parenthesizer___closed__2; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -lean_object* l_Lean_Parser_Tactic_admit_parenthesizer(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 = l_Lean_Parser_Tactic_admit_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Tactic_admit_parenthesizer___closed__3; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_admit_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_admit_parenthesizer), 5, 0); -return x_1; -} -} -lean_object* l___regBuiltin_Lean_Parser_Tactic_admit_parenthesizer(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_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_Tactic_admit___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Tactic_admit_parenthesizer___closed__1; -x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); -return x_5; -} -} static lean_object* _init_l_Lean_Parser_Tactic_traceState___elambda__1___closed__1() { _start: { @@ -8320,7 +7956,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_traceState___elambda__1___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_traceState___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -8477,7 +8113,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_traceState(lean_object* x_1 _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_3 = l_Lean_Parser_Tactic_traceState___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Tactic_traceState; @@ -8637,7 +8273,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_failIfSuccess___elambda__1___clos _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -8828,7 +8464,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_failIfSuccess(lean_object* _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_3 = l_Lean_Parser_Tactic_failIfSuccess___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Tactic_failIfSuccess; @@ -9012,7 +8648,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_generalize___elambda__1___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -9372,7 +9008,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_generalize(lean_object* x_1 _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_3 = l_Lean_Parser_Tactic_generalize___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Tactic_generalize; @@ -9722,7 +9358,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_locationWildcard___elambda__1___c _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_locationWildcard___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -9858,7 +9494,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_locationTarget___elambda__1___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_locationTarget___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -10042,7 +9678,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_locationHyp___elambda__1___closed _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_locationHyp___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -10346,7 +9982,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_location___elambda__1___closed__2 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_location___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -10577,7 +10213,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_change___elambda__1___closed__2() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_change___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -10809,7 +10445,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_change(lean_object* x_1) { _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_3 = l_Lean_Parser_Tactic_change___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Tactic_change; @@ -11549,7 +11185,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_changeWith___elambda__1___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_changeWith___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -11745,7 +11381,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_changeWith(lean_object* x_1 _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_3 = l_Lean_Parser_Tactic_changeWith___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Tactic_changeWith; @@ -11954,7 +11590,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_rwRule___elambda__1___closed__2() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_rwRule___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -12189,7 +11825,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_rwRuleSeq___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -12396,7 +12032,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_rewrite___elambda__1___closed__2( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_rewrite___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -12692,7 +12328,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_rewrite(lean_object* x_1) { _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_3 = l_Lean_Parser_Tactic_rewrite___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Tactic_rewrite; @@ -13153,7 +12789,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -13327,7 +12963,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_rewriteSeq(lean_object* x_1 _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_3 = l_Lean_Parser_Tactic_rewriteSeq___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Tactic_rewriteSeq; @@ -13678,7 +13314,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_majorPremise___elambda__1___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_majorPremise___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -13917,7 +13553,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_inductionAlt___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_inductionAlt___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -14621,7 +14257,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_induction___elambda__1___closed__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_induction___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -14882,7 +14518,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_induction(lean_object* x_1) _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_3 = l_Lean_Parser_Tactic_induction___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Tactic_induction; @@ -15795,7 +15431,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_cases___elambda__1___closed__2() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_cases___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -16008,7 +15644,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_cases(lean_object* x_1) { _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_3 = l_Lean_Parser_Tactic_cases___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Tactic_cases; @@ -16208,7 +15844,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_matchAlt___elambda__1___closed__1 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Term_matchAlt___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -16621,7 +16257,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_match___elambda__1___closed__1() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Term_match___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -16861,7 +16497,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_match(lean_object* x_1) { _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_3 = l_Lean_Parser_Tactic_match___elambda__1___closed__1; x_4 = 1; x_5 = l_Lean_Parser_Tactic_match; @@ -17339,7 +16975,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_introMatch___elambda__1___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_introMatch___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -17491,7 +17127,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_introMatch(lean_object* x_1 _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_3 = l_Lean_Parser_Tactic_introMatch___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Tactic_introMatch; @@ -17644,7 +17280,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_withIds___elambda__1___closed__1( _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_ident_x27___closed__2; +x_1 = l_Lean_Parser_Tactic_intros___elambda__1___closed__8; x_2 = lean_alloc_closure((void*)(l_Lean_Parser_many1Fn), 3, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -17674,13 +17310,11 @@ return x_4; static lean_object* _init_l_Lean_Parser_Tactic_withIds___closed__1() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_ident_x27; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Term_structInst___closed__1; -x_4 = l_Lean_Parser_andthenInfo(x_3, x_2); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_structInst___closed__1; +x_2 = l_Lean_Parser_Tactic_intros___closed__2; +x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Parser_Tactic_withIds___closed__2() { @@ -17732,7 +17366,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_injection___elambda__1___closed__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_injection___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -17945,7 +17579,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_injection(lean_object* x_1) _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_3 = l_Lean_Parser_Tactic_injection___elambda__1___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Tactic_injection; @@ -17958,7 +17592,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_withIds_formatter___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_intros_formatter___closed__3; +x_1 = l_Lean_Parser_Tactic_intros_formatter___closed__4; x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_many1_formatter), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -18089,7 +17723,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_withIds_parenthesizer___closed__1 _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_intros_parenthesizer___closed__3; +x_1 = l_Lean_Parser_Tactic_intros_parenthesizer___closed__4; x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_many1_parenthesizer), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -18223,7 +17857,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_paren___elambda__1___closed__1() _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__1; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -18268,7 +17902,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_paren___elambda__1___closed__5() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__1; x_2 = l_Lean_Parser_Tactic_paren___elambda__1___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -18327,7 +17961,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_paren___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__1; x_2 = l_Lean_Parser_Tactic_paren___closed__2; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -18387,8 +18021,8 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_paren(lean_object* x_1) { _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; -x_3 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__3; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; +x_3 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__1; x_4 = 1; x_5 = l_Lean_Parser_Tactic_paren; x_6 = lean_unsigned_to_nat(0u); @@ -18439,7 +18073,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_paren_formatter___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__1; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Tactic_paren_formatter___closed__3; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -18472,7 +18106,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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__3; +x_3 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__1; x_4 = l___regBuiltin_Lean_Parser_Tactic_paren_formatter___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -18521,7 +18155,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_paren_parenthesizer___closed__4() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__1; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Tactic_paren_parenthesizer___closed__3; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -18554,7 +18188,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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__3; +x_3 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__1; x_4 = l___regBuiltin_Lean_Parser_Tactic_paren_parenthesizer___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -18580,7 +18214,7 @@ static lean_object* _init_l___regBuiltinParser_Lean_Parser_Tactic_nestedTactic__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l___regBuiltinParser_Lean_Parser_Tactic_nestedTactic___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -18590,7 +18224,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_nestedTactic(lean_object* x _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_3 = l___regBuiltinParser_Lean_Parser_Tactic_nestedTactic___closed__2; x_4 = 1; x_5 = l_Lean_Parser_Tactic_nestedTactic; @@ -18657,7 +18291,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_orelse___elambda__1___closed__1() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Term_orelse___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -18716,7 +18350,7 @@ lean_inc(x_11); if (lean_obj_tag(x_11) == 0) { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_12 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_12 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_13 = lean_unsigned_to_nat(1u); x_14 = l_Lean_Parser_categoryParser___elambda__1(x_12, x_13, x_1, x_10); x_15 = l_Lean_Parser_Tactic_orelse___elambda__1___closed__1; @@ -18756,7 +18390,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_orelse___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_2 = lean_unsigned_to_nat(1u); x_3 = l_Lean_Parser_categoryParser(x_1, x_2); return x_3; @@ -18826,7 +18460,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_orelse(lean_object* x_1) { _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_3 = l_Lean_Parser_Tactic_orelse___elambda__1___closed__1; x_4 = 0; x_5 = l_Lean_Parser_Tactic_orelse; @@ -18953,7 +18587,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_have___elambda__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Term_have___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -19103,7 +18737,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_have(lean_object* x_1) { _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_3 = l_Lean_Parser_Tactic_have___elambda__1___closed__1; x_4 = 1; x_5 = l_Lean_Parser_Tactic_have; @@ -19232,7 +18866,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_suffices___elambda__1___closed__1 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Term_suffices___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -19382,7 +19016,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_suffices(lean_object* x_1) _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_3 = l_Lean_Parser_Tactic_suffices___elambda__1___closed__1; x_4 = 1; x_5 = l_Lean_Parser_Tactic_suffices; @@ -19511,7 +19145,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_show___elambda__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Term_show___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -19663,7 +19297,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_show(lean_object* x_1) { _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_3 = l_Lean_Parser_Tactic_show___elambda__1___closed__1; x_4 = 1; x_5 = l_Lean_Parser_Tactic_show; @@ -19816,7 +19450,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_let___elambda__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Array_myMacro____x40_Init_Data_Array_Macros___hyg_464____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -19968,7 +19602,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_let(lean_object* x_1) { _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_3 = l_Lean_Parser_Tactic_let___elambda__1___closed__1; x_4 = 1; x_5 = l_Lean_Parser_Tactic_let; @@ -20097,7 +19731,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_let_x21___elambda__1___closed__1( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Term_let_x21___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -20249,7 +19883,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_let_x21(lean_object* x_1) { _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_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_3 = l_Lean_Parser_Tactic_let_x21___elambda__1___closed__1; x_4 = 1; x_5 = l_Lean_Parser_Tactic_let_x21; @@ -20942,10 +20576,6 @@ l_Lean_Parser_Tactic_exact___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic lean_mark_persistent(l_Lean_Parser_Tactic_exact___elambda__1___closed__7); l_Lean_Parser_Tactic_exact___elambda__1___closed__8 = _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__8(); lean_mark_persistent(l_Lean_Parser_Tactic_exact___elambda__1___closed__8); -l_Lean_Parser_Tactic_exact___elambda__1___closed__9 = _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_exact___elambda__1___closed__9); -l_Lean_Parser_Tactic_exact___elambda__1___closed__10 = _init_l_Lean_Parser_Tactic_exact___elambda__1___closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_exact___elambda__1___closed__10); l_Lean_Parser_Tactic_exact___closed__1 = _init_l_Lean_Parser_Tactic_exact___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_exact___closed__1); l_Lean_Parser_Tactic_exact___closed__2 = _init_l_Lean_Parser_Tactic_exact___closed__2(); @@ -21440,61 +21070,6 @@ lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_done_parenthesizer___clos res = l___regBuiltin_Lean_Parser_Tactic_done_parenthesizer(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Parser_Tactic_admit___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_admit___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_admit___elambda__1___closed__1); -l_Lean_Parser_Tactic_admit___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_admit___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_admit___elambda__1___closed__2); -l_Lean_Parser_Tactic_admit___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_admit___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_admit___elambda__1___closed__3); -l_Lean_Parser_Tactic_admit___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_admit___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_admit___elambda__1___closed__4); -l_Lean_Parser_Tactic_admit___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_admit___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_admit___elambda__1___closed__5); -l_Lean_Parser_Tactic_admit___elambda__1___closed__6 = _init_l_Lean_Parser_Tactic_admit___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_admit___elambda__1___closed__6); -l_Lean_Parser_Tactic_admit___elambda__1___closed__7 = _init_l_Lean_Parser_Tactic_admit___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_admit___elambda__1___closed__7); -l_Lean_Parser_Tactic_admit___elambda__1___closed__8 = _init_l_Lean_Parser_Tactic_admit___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_admit___elambda__1___closed__8); -l_Lean_Parser_Tactic_admit___closed__1 = _init_l_Lean_Parser_Tactic_admit___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_admit___closed__1); -l_Lean_Parser_Tactic_admit___closed__2 = _init_l_Lean_Parser_Tactic_admit___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_admit___closed__2); -l_Lean_Parser_Tactic_admit___closed__3 = _init_l_Lean_Parser_Tactic_admit___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_admit___closed__3); -l_Lean_Parser_Tactic_admit___closed__4 = _init_l_Lean_Parser_Tactic_admit___closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_admit___closed__4); -l_Lean_Parser_Tactic_admit___closed__5 = _init_l_Lean_Parser_Tactic_admit___closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_admit___closed__5); -l_Lean_Parser_Tactic_admit___closed__6 = _init_l_Lean_Parser_Tactic_admit___closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_admit___closed__6); -l_Lean_Parser_Tactic_admit = _init_l_Lean_Parser_Tactic_admit(); -lean_mark_persistent(l_Lean_Parser_Tactic_admit); -res = l___regBuiltinParser_Lean_Parser_Tactic_admit(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_admit_formatter___closed__1 = _init_l_Lean_Parser_Tactic_admit_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_admit_formatter___closed__1); -l_Lean_Parser_Tactic_admit_formatter___closed__2 = _init_l_Lean_Parser_Tactic_admit_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_admit_formatter___closed__2); -l_Lean_Parser_Tactic_admit_formatter___closed__3 = _init_l_Lean_Parser_Tactic_admit_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_admit_formatter___closed__3); -l___regBuiltin_Lean_Parser_Tactic_admit_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_admit_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_admit_formatter___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_admit_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Parser_Tactic_admit_parenthesizer___closed__1 = _init_l_Lean_Parser_Tactic_admit_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_admit_parenthesizer___closed__1); -l_Lean_Parser_Tactic_admit_parenthesizer___closed__2 = _init_l_Lean_Parser_Tactic_admit_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_admit_parenthesizer___closed__2); -l_Lean_Parser_Tactic_admit_parenthesizer___closed__3 = _init_l_Lean_Parser_Tactic_admit_parenthesizer___closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_admit_parenthesizer___closed__3); -l___regBuiltin_Lean_Parser_Tactic_admit_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Tactic_admit_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Tactic_admit_parenthesizer___closed__1); -res = l___regBuiltin_Lean_Parser_Tactic_admit_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); l_Lean_Parser_Tactic_traceState___elambda__1___closed__1 = _init_l_Lean_Parser_Tactic_traceState___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_traceState___elambda__1___closed__1); l_Lean_Parser_Tactic_traceState___elambda__1___closed__2 = _init_l_Lean_Parser_Tactic_traceState___elambda__1___closed__2(); diff --git a/stage0/stdlib/Lean/Parser/Term.c b/stage0/stdlib/Lean/Parser/Term.c index c09a24bd0f..eafffc4d39 100644 --- a/stage0/stdlib/Lean/Parser/Term.c +++ b/stage0/stdlib/Lean/Parser/Term.c @@ -391,6 +391,7 @@ lean_object* l_Lean_Parser_Term_stateRefT___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_eq___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_match_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkStackTop_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_myMacro____x40_Init_Tactics___hyg_186____closed__2; lean_object* l_Lean_Parser_Term_listLit___elambda__1___closed__3; lean_object* l___regBuiltin_Lean_Parser_Term_ensureTypeOf_formatter(lean_object*); lean_object* l_Lean_Parser_Term_letEqnsDecl___closed__1; @@ -910,7 +911,6 @@ lean_object* l_Lean_Parser_Term_sorry___closed__2; lean_object* l_Lean_Parser_Term_nomatch___closed__7; lean_object* l_Lean_Parser_Term_if___closed__11; lean_object* l_Lean_Parser_Term_byTactic_formatter___closed__2; -extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; lean_object* l_Lean_Parser_Term_app_parenthesizer___closed__7; lean_object* l_Lean_Parser_Term_emptyC_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__18; @@ -1106,6 +1106,7 @@ lean_object* l_Lean_Parser_Term_nativeRefl_formatter___closed__2; lean_object* l_Lean_Parser_Term_haveDecl_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_not_parenthesizer___closed__3; +extern lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__2; lean_object* l_Lean_Parser_Tactic_tacticSeq_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_checkStackTop_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__11; @@ -1649,7 +1650,6 @@ lean_object* l_Lean_Parser_Term_paren___closed__9; lean_object* l_Lean_Parser_Term_namedArgument___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_mapRev___closed__2; lean_object* l___regBuiltinParser_Lean_Parser_Term_forall(lean_object*); -lean_object* l_Lean_Parser_Term_decide___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_dollar_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_instBinder_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_bor___closed__3; @@ -1688,7 +1688,6 @@ lean_object* l_Lean_Parser_Term_quotedName_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_listLit; lean_object* l_Lean_Parser_noFirstTokenInfo(lean_object*); lean_object* l_Lean_Parser_Term_listLit_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Term_decide___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_ensureTypeOf___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_letDecl; lean_object* l_Lean_Parser_Term_ensureTypeOf___elambda__1(lean_object*, lean_object*); @@ -1700,7 +1699,6 @@ lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_match_formatter___closed__9; lean_object* l_Lean_Parser_Term_letrec_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_haveAssign_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Term_sorry___elambda__1___closed__8; lean_object* l___regBuiltin_Lean_Parser_Term_modN_parenthesizer(lean_object*); lean_object* l___regBuiltin_Lean_Parser_Term_mul_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_explicitUniv___closed__6; @@ -1826,6 +1824,7 @@ lean_object* l_Lean_Parser_Term_show___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_matchAlts_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_structInst_parenthesizer___closed__9; lean_object* l_Lean_Parser_Term_macroDollarArg___elambda__1___closed__2; +extern lean_object* l_myMacro____x40_Init_Tactics___hyg_186____closed__1; lean_object* l_Lean_Parser_Term_type___closed__7; lean_object* l_Lean_Parser_Term_arrayRef; lean_object* l_Lean_Parser_Term_subst___elambda__1___closed__7; @@ -1888,6 +1887,7 @@ lean_object* l_Lean_Parser_Term_ge___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_attrInstance___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_quotedName; lean_object* l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__6; +extern lean_object* l___kind_tactic____x40_Init_Tactics___hyg_157____closed__2; lean_object* l___regBuiltin_Lean_Parser_Term_panic_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_byTactic_formatter___closed__3; lean_object* l_Lean_Parser_Term_mod; @@ -1953,7 +1953,6 @@ lean_object* l_Lean_Parser_Term_subtype; lean_object* l_Lean_PrettyPrinter_Formatter_node_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Term_depArrow_formatter___closed__1; lean_object* l_Lean_Parser_Term_suffices___elambda__1___closed__9; -extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__5; lean_object* l_Lean_Parser_Term_structInstLVal___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_nativeDecide___closed__5; lean_object* l_Lean_Parser_Term_emptyC___elambda__1___closed__9; @@ -2359,7 +2358,6 @@ lean_object* l_Lean_Parser_Term_nomatch_formatter___closed__1; lean_object* l_Lean_Parser_Term_haveDecl___closed__4; lean_object* l_Lean_Parser_Term_unreachable; lean_object* l_Lean_Parser_Term_letPatDecl_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_depArrow___closed__5; lean_object* l_Lean_Parser_Term_binderDefault_formatter___closed__2; lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__1; @@ -2876,6 +2874,7 @@ lean_object* l_Lean_Parser_Term_dollarProj___closed__3; lean_object* l_Lean_Parser_Term_depArrow_parenthesizer___closed__1; lean_object* l___regBuiltin_Lean_Parser_Term_arrayRef_formatter(lean_object*); lean_object* l_Lean_Parser_Term_arrow___elambda__1___closed__1; +extern lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__4; lean_object* l_Lean_Parser_Term_ensureTypeOf_formatter___closed__3; lean_object* l_Lean_Parser_Term_have___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_match__syntax___elambda__1___closed__6; @@ -3051,6 +3050,7 @@ lean_object* l_Lean_Parser_Term_matchAlt___closed__4; lean_object* l_Lean_Parser_Term_pow___closed__2; lean_object* l_Lean_Parser_Term_app; lean_object* l_Lean_Parser_Term_depArrow_parenthesizer___closed__2; +extern lean_object* l_myMacro____x40_Init_Tactics___hyg_338____closed__1; lean_object* l_Lean_Parser_Term_explicit_formatter___closed__4; lean_object* l_Lean_Parser_Term_syntheticHole___closed__4; lean_object* l_Lean_Parser_Tactic_quotSeq___closed__3; @@ -3335,6 +3335,7 @@ lean_object* l_Lean_Parser_Term_type_parenthesizer___closed__9; lean_object* l_Lean_Parser_Term_let_x2a___elambda__1___closed__4; lean_object* l___regBuiltinParser_Lean_Parser_Term_uminus(lean_object*); lean_object* l_Lean_Parser_Term_letrec___elambda__1___closed__1; +extern lean_object* l_myMacro____x40_Init_Tactics___hyg_338____closed__2; lean_object* l___regBuiltin_Lean_Parser_Term_hole_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_ensureTypeOf_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_instBinder___elambda__1___closed__3; @@ -3705,7 +3706,6 @@ lean_object* l_Lean_Parser_Term_funBinder_quot_formatter___closed__5; lean_object* l_Lean_Parser_Term_arrayLit___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_nativeRefl___elambda__1___closed__4; lean_object* l_Lean_Parser_Level_quot___elambda__1___closed__5; -lean_object* l_Lean_Parser_Term_sorry___elambda__1___closed__7; lean_object* l___regBuiltin_Lean_Parser_Term_nomatch_formatter(lean_object*); lean_object* l_Lean_Parser_Term_matchAlt___closed__2; lean_object* l_Lean_Parser_Term_parenSpecial___closed__2; @@ -3891,7 +3891,6 @@ lean_object* l_Lean_Parser_Term_andthen___closed__1; lean_object* l_Lean_Parser_Term_have_formatter___closed__8; lean_object* l_Lean_Parser_Term_nativeRefl_formatter___closed__3; lean_object* l_Lean_Parser_Term_and___elambda__1___closed__3; -lean_object* l_Lean_Parser_Term_decide___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_inaccessible___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_attributes___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_quotSeq_formatter___closed__2; @@ -4310,6 +4309,7 @@ lean_object* l_Lean_Parser_Term_show_parenthesizer___closed__1; lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_4_(lean_object*); lean_object* l_Lean_Parser_Term_parenSpecial_formatter___closed__3; lean_object* l_Lean_Parser_Term_bne___elambda__1___closed__1; +extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_dollar___closed__1; lean_object* l___regBuiltin_Lean_Parser_Term_match_formatter(lean_object*); lean_object* l_Lean_Parser_Term_let_x2a___closed__6; @@ -4666,7 +4666,7 @@ _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_4____closed__2; -x_3 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_3 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_4 = 1; x_5 = l_Lean_Parser_registerBuiltinParserAttribute(x_2, x_3, x_4, x_1); if (lean_obj_tag(x_5) == 0) @@ -4707,7 +4707,7 @@ lean_object* l_Lean_Parser_tacticParser(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_3 = l_Lean_Parser_categoryParser(x_2, x_1); return x_3; } @@ -5138,7 +5138,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -5198,7 +5198,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_closure((void*)(l_Lean_Parser_categoryParser___elambda__1), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -5258,7 +5258,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_2 = l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__6; x_3 = l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__12; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___lambda__1), 5, 3); @@ -5309,7 +5309,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_tacticSeq1Indented___closed__1() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_2 = lean_unsigned_to_nat(0u); x_3 = l_Lean_Parser_categoryParser(x_1, x_2); return x_3; @@ -5447,7 +5447,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_tacticSeqBracketed___elambda__1__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_tacticSeqBracketed___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -5724,7 +5724,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_tacticSeq___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_tacticSeq___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -5826,7 +5826,7 @@ x_5 = 1; x_6 = l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__8; x_7 = l_Lean_Parser_Tactic_seq1___elambda__1___closed__3; x_8 = l_Lean_Parser_sepBy1Fn(x_5, x_6, x_7, x_1, x_2); -x_9 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__5; +x_9 = l_myMacro____x40_Init_Tactics___hyg_31____closed__4; x_10 = l_Lean_Parser_ParserState_mkNode(x_8, x_9, x_4); return x_10; } @@ -5856,7 +5856,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_seq1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__5; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__4; x_2 = l_Lean_Parser_Tactic_seq1___closed__2; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -6485,7 +6485,7 @@ lean_object* l_Lean_Parser_tacticParser_formatter___rarg(lean_object* x_1, lean_ _start: { lean_object* x_6; lean_object* x_7; -x_6 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_6 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_7 = l_Lean_PrettyPrinter_Formatter_categoryParser_formatter(x_6, x_1, x_2, x_3, x_4, x_5); return x_7; } @@ -6864,7 +6864,7 @@ lean_object* l_Lean_Parser_tacticParser_parenthesizer(lean_object* x_1, lean_obj _start: { lean_object* x_7; lean_object* x_8; -x_7 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_8 = l_Lean_PrettyPrinter_Parenthesizer_categoryParser_parenthesizer(x_7, x_1, x_2, x_3, x_4, x_5, x_6); return x_8; } @@ -9712,79 +9712,61 @@ return x_5; static lean_object* _init_l_Lean_Parser_Term_sorry___elambda__1___closed__1() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("sorry"); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_338____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_sorry___elambda__1___closed__2() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_mkAppStx___closed__6; +lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; +x_1 = l_myMacro____x40_Init_Tactics___hyg_338____closed__1; x_2 = l_Lean_Parser_Term_sorry___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; +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_sorry___elambda__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_sorry___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); +x_1 = l_myMacro____x40_Init_Tactics___hyg_338____closed__1; +x_2 = l_String_trim(x_1); return x_2; } } static lean_object* _init_l_Lean_Parser_Term_sorry___elambda__1___closed__4() { _start: { -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_sorry___elambda__1___closed__1; -x_2 = l_Lean_Parser_Term_sorry___elambda__1___closed__3; -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_sorry___elambda__1___closed__5() { -_start: -{ lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_sorry___elambda__1___closed__1; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Term_sorry___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_sorry___elambda__1___closed__5; +x_1 = l_Lean_Parser_Term_sorry___elambda__1___closed__3; 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_sorry___elambda__1___closed__7() { +static lean_object* _init_l_Lean_Parser_Term_sorry___elambda__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_sorry___elambda__1___closed__2; -x_2 = l_Lean_Parser_Term_sorry___elambda__1___closed__6; +x_1 = l_myMacro____x40_Init_Tactics___hyg_338____closed__2; +x_2 = l_Lean_Parser_Term_sorry___elambda__1___closed__4; 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_sorry___elambda__1___closed__8() { +static lean_object* _init_l_Lean_Parser_Term_sorry___elambda__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Term_sorry___elambda__1___closed__7; +x_2 = l_Lean_Parser_Term_sorry___elambda__1___closed__5; 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); @@ -9795,10 +9777,10 @@ lean_object* l_Lean_Parser_Term_sorry___elambda__1(lean_object* x_1, lean_object _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_sorry___elambda__1___closed__4; +x_3 = l_Lean_Parser_Term_sorry___elambda__1___closed__2; x_4 = lean_ctor_get(x_3, 1); lean_inc(x_4); -x_5 = l_Lean_Parser_Term_sorry___elambda__1___closed__8; +x_5 = l_Lean_Parser_Term_sorry___elambda__1___closed__6; x_6 = 1; x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); return x_7; @@ -9808,7 +9790,7 @@ static lean_object* _init_l_Lean_Parser_Term_sorry___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_sorry___elambda__1___closed__5; +x_1 = l_Lean_Parser_Term_sorry___elambda__1___closed__3; x_2 = l_Lean_Parser_symbolInfo(x_1); return x_2; } @@ -9817,7 +9799,7 @@ static lean_object* _init_l_Lean_Parser_Term_sorry___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_sorry___elambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_338____closed__2; x_2 = l_Lean_Parser_Term_sorry___closed__1; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -9837,7 +9819,7 @@ static lean_object* _init_l_Lean_Parser_Term_sorry___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_sorry___elambda__1___closed__4; +x_1 = l_Lean_Parser_Term_sorry___elambda__1___closed__2; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); x_3 = l_Lean_Parser_Term_sorry___closed__3; @@ -9878,7 +9860,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_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__17; -x_3 = l_Lean_Parser_Term_sorry___elambda__1___closed__2; +x_3 = l_myMacro____x40_Init_Tactics___hyg_338____closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_sorry; x_6 = lean_unsigned_to_nat(0u); @@ -9890,8 +9872,8 @@ static lean_object* _init_l_Lean_Parser_Term_sorry_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_Term_sorry___elambda__1___closed__1; -x_2 = l_Lean_Parser_Term_sorry___elambda__1___closed__3; +x_1 = l_myMacro____x40_Init_Tactics___hyg_338____closed__1; +x_2 = l_Lean_Parser_Term_sorry___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); @@ -9905,7 +9887,7 @@ static lean_object* _init_l_Lean_Parser_Term_sorry_formatter___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_sorry___elambda__1___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_338____closed__1; x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_symbol_formatter___boxed), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -9915,7 +9897,7 @@ static lean_object* _init_l_Lean_Parser_Term_sorry_formatter___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_sorry___elambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_338____closed__2; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_sorry_formatter___closed__2; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -9948,7 +9930,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_sorry___elambda__1___closed__2; +x_3 = l_myMacro____x40_Init_Tactics___hyg_338____closed__2; x_4 = l___regBuiltin_Lean_Parser_Term_sorry_formatter___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -9958,8 +9940,8 @@ static lean_object* _init_l_Lean_Parser_Term_sorry_parenthesizer___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_Term_sorry___elambda__1___closed__1; -x_2 = l_Lean_Parser_Term_sorry___elambda__1___closed__3; +x_1 = l_myMacro____x40_Init_Tactics___hyg_338____closed__1; +x_2 = l_Lean_Parser_Term_sorry___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___boxed), 8, 3); @@ -9973,7 +9955,7 @@ static lean_object* _init_l_Lean_Parser_Term_sorry_parenthesizer___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_sorry___elambda__1___closed__1; +x_1 = l_myMacro____x40_Init_Tactics___hyg_338____closed__1; x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_symbol_parenthesizer___boxed), 2, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -9983,7 +9965,7 @@ static lean_object* _init_l_Lean_Parser_Term_sorry_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_Term_sorry___elambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_338____closed__2; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_sorry_parenthesizer___closed__2; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -10016,7 +9998,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_sorry___elambda__1___closed__2; +x_3 = l_myMacro____x40_Init_Tactics___hyg_338____closed__2; x_4 = l___regBuiltin_Lean_Parser_Term_sorry_parenthesizer___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -35387,87 +35369,61 @@ return x_5; static lean_object* _init_l_Lean_Parser_Term_decide___elambda__1___closed__1() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("decide"); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_186____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_decide___elambda__1___closed__2() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_mkAppStx___closed__6; +lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; +x_1 = l_myMacro____x40_Init_Tactics___hyg_186____closed__1; x_2 = l_Lean_Parser_Term_decide___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; +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_decide___elambda__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_decide___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); +x_1 = l___kind_tactic____x40_Init_Tactics___hyg_157____closed__2; +x_2 = l_String_trim(x_1); return x_2; } } static lean_object* _init_l_Lean_Parser_Term_decide___elambda__1___closed__4() { _start: { -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_decide___elambda__1___closed__1; -x_2 = l_Lean_Parser_Term_decide___elambda__1___closed__3; -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_decide___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("decide!"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Term_decide___elambda__1___closed__6() { -_start: -{ lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_decide___elambda__1___closed__5; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Term_decide___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_decide___elambda__1___closed__6; +x_1 = l_Lean_Parser_Term_decide___elambda__1___closed__3; 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_decide___elambda__1___closed__8() { +static lean_object* _init_l_Lean_Parser_Term_decide___elambda__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_decide___elambda__1___closed__2; -x_2 = l_Lean_Parser_Term_decide___elambda__1___closed__7; +x_1 = l_myMacro____x40_Init_Tactics___hyg_186____closed__2; +x_2 = l_Lean_Parser_Term_decide___elambda__1___closed__4; 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_decide___elambda__1___closed__9() { +static lean_object* _init_l_Lean_Parser_Term_decide___elambda__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Term_decide___elambda__1___closed__8; +x_2 = l_Lean_Parser_Term_decide___elambda__1___closed__5; 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); @@ -35478,10 +35434,10 @@ lean_object* l_Lean_Parser_Term_decide___elambda__1(lean_object* x_1, lean_objec _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_decide___elambda__1___closed__4; +x_3 = l_Lean_Parser_Term_decide___elambda__1___closed__2; x_4 = lean_ctor_get(x_3, 1); lean_inc(x_4); -x_5 = l_Lean_Parser_Term_decide___elambda__1___closed__9; +x_5 = l_Lean_Parser_Term_decide___elambda__1___closed__6; x_6 = 1; x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); return x_7; @@ -35491,7 +35447,7 @@ static lean_object* _init_l_Lean_Parser_Term_decide___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_decide___elambda__1___closed__6; +x_1 = l_Lean_Parser_Term_decide___elambda__1___closed__3; x_2 = l_Lean_Parser_symbolInfo(x_1); return x_2; } @@ -35500,7 +35456,7 @@ static lean_object* _init_l_Lean_Parser_Term_decide___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_decide___elambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_186____closed__2; x_2 = l_Lean_Parser_Term_decide___closed__1; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -35520,7 +35476,7 @@ static lean_object* _init_l_Lean_Parser_Term_decide___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_decide___elambda__1___closed__4; +x_1 = l_Lean_Parser_Term_decide___elambda__1___closed__2; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); x_3 = l_Lean_Parser_Term_decide___closed__3; @@ -35561,7 +35517,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_Std_Range___kind_term____x40_Init_Data_Range___hyg_109____closed__17; -x_3 = l_Lean_Parser_Term_decide___elambda__1___closed__2; +x_3 = l_myMacro____x40_Init_Tactics___hyg_186____closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_decide; x_6 = lean_unsigned_to_nat(0u); @@ -35573,8 +35529,8 @@ static lean_object* _init_l_Lean_Parser_Term_decide_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_Term_decide___elambda__1___closed__1; -x_2 = l_Lean_Parser_Term_decide___elambda__1___closed__3; +x_1 = l_myMacro____x40_Init_Tactics___hyg_186____closed__1; +x_2 = l_Lean_Parser_Term_decide___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); @@ -35588,7 +35544,7 @@ static lean_object* _init_l_Lean_Parser_Term_decide_formatter___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_decide___elambda__1___closed__5; +x_1 = l___kind_tactic____x40_Init_Tactics___hyg_157____closed__2; x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_symbol_formatter___boxed), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -35598,7 +35554,7 @@ static lean_object* _init_l_Lean_Parser_Term_decide_formatter___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_decide___elambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_186____closed__2; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_decide_formatter___closed__2; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -35631,7 +35587,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_decide___elambda__1___closed__2; +x_3 = l_myMacro____x40_Init_Tactics___hyg_186____closed__2; x_4 = l___regBuiltin_Lean_Parser_Term_decide_formatter___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -35641,8 +35597,8 @@ static lean_object* _init_l_Lean_Parser_Term_decide_parenthesizer___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_Term_decide___elambda__1___closed__1; -x_2 = l_Lean_Parser_Term_decide___elambda__1___closed__3; +x_1 = l_myMacro____x40_Init_Tactics___hyg_186____closed__1; +x_2 = l_Lean_Parser_Term_decide___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___boxed), 8, 3); @@ -35656,7 +35612,7 @@ static lean_object* _init_l_Lean_Parser_Term_decide_parenthesizer___closed__2() _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_decide___elambda__1___closed__5; +x_1 = l___kind_tactic____x40_Init_Tactics___hyg_157____closed__2; x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_symbol_parenthesizer___boxed), 2, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -35666,7 +35622,7 @@ static lean_object* _init_l_Lean_Parser_Term_decide_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_Term_decide___elambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_186____closed__2; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_decide_parenthesizer___closed__2; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -35699,7 +35655,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_decide___elambda__1___closed__2; +x_3 = l_myMacro____x40_Init_Tactics___hyg_186____closed__2; x_4 = l___regBuiltin_Lean_Parser_Term_decide_parenthesizer___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -53712,7 +53668,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_quot___elambda__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Syntax_isQuot_match__1___rarg___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -54157,7 +54113,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_quotSeq___elambda__1___closed__2( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_Lean_Parser_Tactic_quotSeq___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -54366,7 +54322,7 @@ lean_object* l_Lean_Parser_Tactic_seq1_formatter(lean_object* x_1, lean_object* _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__5; +x_6 = l_myMacro____x40_Init_Tactics___hyg_31____closed__4; x_7 = l_Lean_Parser_Tactic_seq1_formatter___closed__1; x_8 = l_Lean_PrettyPrinter_Formatter_node_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; @@ -54488,7 +54444,7 @@ lean_object* l_Lean_Parser_Tactic_seq1_parenthesizer(lean_object* x_1, lean_obje _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__5; +x_6 = l_myMacro____x40_Init_Tactics___hyg_31____closed__4; x_7 = l_Lean_Parser_Tactic_seq1_parenthesizer___closed__1; x_8 = l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; @@ -55803,10 +55759,6 @@ l_Lean_Parser_Term_sorry___elambda__1___closed__5 = _init_l_Lean_Parser_Term_sor lean_mark_persistent(l_Lean_Parser_Term_sorry___elambda__1___closed__5); l_Lean_Parser_Term_sorry___elambda__1___closed__6 = _init_l_Lean_Parser_Term_sorry___elambda__1___closed__6(); lean_mark_persistent(l_Lean_Parser_Term_sorry___elambda__1___closed__6); -l_Lean_Parser_Term_sorry___elambda__1___closed__7 = _init_l_Lean_Parser_Term_sorry___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Term_sorry___elambda__1___closed__7); -l_Lean_Parser_Term_sorry___elambda__1___closed__8 = _init_l_Lean_Parser_Term_sorry___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Term_sorry___elambda__1___closed__8); l_Lean_Parser_Term_sorry___closed__1 = _init_l_Lean_Parser_Term_sorry___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_sorry___closed__1); l_Lean_Parser_Term_sorry___closed__2 = _init_l_Lean_Parser_Term_sorry___closed__2(); @@ -59858,12 +59810,6 @@ l_Lean_Parser_Term_decide___elambda__1___closed__5 = _init_l_Lean_Parser_Term_de lean_mark_persistent(l_Lean_Parser_Term_decide___elambda__1___closed__5); l_Lean_Parser_Term_decide___elambda__1___closed__6 = _init_l_Lean_Parser_Term_decide___elambda__1___closed__6(); lean_mark_persistent(l_Lean_Parser_Term_decide___elambda__1___closed__6); -l_Lean_Parser_Term_decide___elambda__1___closed__7 = _init_l_Lean_Parser_Term_decide___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Term_decide___elambda__1___closed__7); -l_Lean_Parser_Term_decide___elambda__1___closed__8 = _init_l_Lean_Parser_Term_decide___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Term_decide___elambda__1___closed__8); -l_Lean_Parser_Term_decide___elambda__1___closed__9 = _init_l_Lean_Parser_Term_decide___elambda__1___closed__9(); -lean_mark_persistent(l_Lean_Parser_Term_decide___elambda__1___closed__9); l_Lean_Parser_Term_decide___closed__1 = _init_l_Lean_Parser_Term_decide___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_decide___closed__1); l_Lean_Parser_Term_decide___closed__2 = _init_l_Lean_Parser_Term_decide___closed__2(); diff --git a/stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c b/stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c index 4e56749f4a..11bca7dd93 100644 --- a/stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c +++ b/stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c @@ -107,7 +107,6 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_nameLitNoAntiquot_parenthesizer_ lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); extern lean_object* l_Lean_Parser_leadPrec___closed__1; -lean_object* l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; lean_object* l_List_range(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_toggleInsideQuot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkOutsideQuot_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -138,6 +137,7 @@ lean_object* l_Lean_Syntax_setHeadInfo(lean_object*, lean_object*); lean_object* l_StateRefT_x27_get___at_Lean_PrettyPrinter_Parenthesizer_Lean_PrettyPrinter_Parenthesizer___instance__2___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_visitArgs___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__2; lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___closed__10; lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize_match__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -151,7 +151,6 @@ lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___closed__11; lean_object* l_Lean_PrettyPrinter_Lean_PrettyPrinter_Parenthesizer___instance__1___closed__1; lean_object* l_Lean_Syntax_MonadTraverser_goRight___at_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___spec__5(lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_PrettyPrinter_Parenthesizer_interpolatedStr_parenthesizer___spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__3; lean_object* l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_toStringWithSep(lean_object*, lean_object*); @@ -225,7 +224,6 @@ lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___closed__12; lean_object* l_Lean_PrettyPrinter_Parenthesizer_sepBy1_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_categoryParserOfStack_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__5; lean_object* l_Init_Control_Monad___instance__2___rarg(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize_match__3(lean_object*); @@ -320,6 +318,7 @@ lean_object* l_Lean_PrettyPrinter_mkCombinatorParenthesizerAttribute___closed__3 lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkNoWsBefore_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_map___at_Lean_PrettyPrinter_Parenthesizer_Lean_PrettyPrinter_Parenthesizer___instance__2___spec__2(lean_object*, lean_object*); lean_object* l_ReaderT_pure___at_Lean_PrettyPrinter_Parenthesizer_Lean_PrettyPrinter_Parenthesizer___instance__3___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_myMacro____x40_Init_Tactics___hyg_31____closed__4; lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___closed__9; lean_object* l_Lean_PrettyPrinter_Parenthesizer_identEq_parenthesizer(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_nonReservedSymbol_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -455,7 +454,6 @@ extern lean_object* l_Lean_Format_paren___closed__3; extern lean_object* l_Lean_KeyedDeclsAttribute_Lean_KeyedDeclsAttribute___instance__3___closed__1; lean_object* l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_Lean_PrettyPrinter_Parenthesizer___instance__3___closed__3; -lean_object* l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__3; lean_object* lean_nat_mod(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_withForbidden_parenthesizer___boxed(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize_match__1(lean_object*); @@ -485,9 +483,9 @@ lean_object* l_ReaderT_Init_Control_Reader___instance__4___rarg(lean_object*); lean_object* l_Lean_Syntax_MonadTraverser_getIdx___at_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(lean_object*); extern lean_object* l_Lean_mkAppStx___closed__2; +extern lean_object* l___kind_tactic____x40_Init_Tactics___hyg_2____closed__3; lean_object* l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; lean_object* l_ReaderT_bind___at_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer___spec__1(lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__4; lean_object* l_Lean_Syntax_Traverser_left(lean_object*); lean_object* l_Lean_addTrace___at_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkInsideQuot_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -7244,49 +7242,13 @@ return x_2; static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__1() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("Tactic"); -return x_1; -} -} -static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_mkAppStx___closed__4; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; +x_1 = l_myMacro____x40_Init_Tactics___hyg_31____closed__2; x_2 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("seq1"); -return x_1; -} -} -static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2; -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__4; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} lean_object* l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { @@ -7298,7 +7260,7 @@ x_8 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_8, 0, x_7); lean_ctor_set(x_8, 1, x_6); x_9 = lean_array_push(x_5, x_8); -x_10 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__5; +x_10 = l_myMacro____x40_Init_Tactics___hyg_31____closed__4; x_11 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_11, 0, x_10); lean_ctor_set(x_11, 1, x_9); @@ -7306,7 +7268,7 @@ x_12 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__6; x_13 = lean_array_push(x_12, x_11); x_14 = l_myMacro____x40_Init_Data_ToString_Macro___hyg_39____closed__15; x_15 = lean_array_push(x_13, x_14); -x_16 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__3; +x_16 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__1; x_17 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_17, 0, x_16); lean_ctor_set(x_17, 1, x_15); @@ -7333,22 +7295,14 @@ return x_5; static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("tactic"); -return x_1; -} -} -static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; +x_2 = l___kind_tactic____x40_Init_Tactics___hyg_2____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__3() { +static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2() { _start: { lean_object* x_1; @@ -7360,13 +7314,13 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer(lean_object _start: { lean_object* x_7; lean_object* x_8; uint8_t x_9; lean_object* x_10; lean_object* x_11; -x_7 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; lean_inc(x_1); x_8 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_parenthesizeCategoryCore___boxed), 7, 2); lean_closure_set(x_8, 0, x_7); lean_closure_set(x_8, 1, x_1); x_9 = 0; -x_10 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__3; +x_10 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; x_11 = l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize(x_7, x_9, x_10, x_1, x_8, x_2, x_3, x_4, x_5, x_6); return x_11; } @@ -7394,7 +7348,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_categoryParenthesizerAttribute; -x_3 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2; +x_3 = l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_4 = l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -10518,20 +10472,10 @@ if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__1 = _init_l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__1(); lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__1); -l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2 = _init_l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2(); -lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__2); -l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__3 = _init_l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__3(); -lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__3); -l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__4 = _init_l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__4(); -lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__4); -l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__5 = _init_l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__5(); -lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__1___closed__5); l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1 = _init_l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1(); lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1); l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2 = _init_l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2(); lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__2); -l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__3 = _init_l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__3(); -lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__3); l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1); res = l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer(lean_io_mk_world()); diff --git a/stage0/stdlib/Lean/Server/ServerBin.c b/stage0/stdlib/Lean/Server/ServerBin.c index 24b695bd37..491e9dc47f 100644 --- a/stage0/stdlib/Lean/Server/ServerBin.c +++ b/stage0/stdlib/Lean/Server/ServerBin.c @@ -290,15 +290,15 @@ return lean_io_result_mk_ok(lean_box(0)); } void lean_initialize(); -#if defined(WIN32) || defined(_WIN32) -#include -#endif + #if defined(WIN32) || defined(_WIN32) + #include + #endif -int main(int argc, char ** argv) { -#if defined(WIN32) || defined(_WIN32) -SetErrorMode(SEM_FAILCRITICALERRORS); -#endif -lean_object* in; lean_object* res; + int main(int argc, char ** argv) { + #if defined(WIN32) || defined(_WIN32) + SetErrorMode(SEM_FAILCRITICALERRORS); + #endif + lean_object* in; lean_object* res; lean_initialize(); res = initialize_Lean_Server_ServerBin(lean_io_mk_world()); lean_io_mark_end_initialization(); diff --git a/stage0/stdlib/Lean/Util/Trace.c b/stage0/stdlib/Lean/Util/Trace.c index 7dda8dd23b..6cb79afa0d 100644 --- a/stage0/stdlib/Lean/Util/Trace.c +++ b/stage0/stdlib/Lean/Util/Trace.c @@ -19,13 +19,14 @@ size_t l_USize_add(size_t, size_t); lean_object* l_Std_PersistentArray_foldlM___at_Lean_withNestedTraces___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); -extern lean_object* l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__5; uint8_t l_Lean_MessageData_isNest(lean_object*); lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__7; lean_object* l_Lean_isTracingEnabledFor___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_USize_decEq(size_t, size_t); lean_object* lean_array_uget(lean_object*, size_t); +extern lean_object* l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__3; lean_object* l_Lean_MessageData_format(lean_object*, lean_object*); +extern lean_object* l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__7; lean_object* l_Lean_Format_pretty(lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_printTraces___spec__4___rarg___lambda__1(size_t, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*); lean_object* l_Lean_withNestedTraces___rarg___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -125,7 +126,6 @@ extern lean_object* l_Lean___kind_term____x40_Lean_Exception___hyg_682____closed lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__21; lean_object* l_Std_PersistentArray_forM___at_Lean_printTraces___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_myMacro____x40_Lean_Util_Trace___hyg_953____closed__17; -extern lean_object* l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__1; lean_object* l_Lean_enableTracing___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerTraceClass___closed__2; @@ -2533,7 +2533,7 @@ static lean_object* _init_l_Lean___kind_term____x40_Lean_Util_Trace___hyg_889___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__1; +x_1 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__3; x_2 = l_Lean___kind_term____x40_Lean_Util_Trace___hyg_889____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -3301,7 +3301,7 @@ x_80 = l___private_Init_LeanInit_0__Lean_quoteName(x_79); x_81 = lean_array_push(x_77, x_80); x_82 = l_Lean_myMacro____x40_Lean_Exception___hyg_727____closed__9; x_83 = lean_array_push(x_82, x_17); -x_84 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__5; +x_84 = l_Lean___kind_term____x40_Lean_Message___hyg_1842____closed__7; x_85 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_85, 0, x_84); lean_ctor_set(x_85, 1, x_83);