diff --git a/stage0/src/Init/Prelude.lean b/stage0/src/Init/Prelude.lean index 1f80379d62..70cf2dc202 100644 --- a/stage0/src/Init/Prelude.lean +++ b/stage0/src/Init/Prelude.lean @@ -1138,6 +1138,17 @@ instance {α : Type u} {m : Type u → Type v} [Monad m] : Inhabited (α → m instance {α : Type u} {m : Type u → Type v} [Monad m] [Inhabited α] : Inhabited (m α) where default := pure arbitrary +-- A fusion of Haskell's `sequence` and `map` +def Array.sequenceMap {α : Type u} {β : Type v} {m : Type v → Type w} [Monad m] (as : Array α) (f : α → m β) : m (Array β) := + let rec loop (i : Nat) (j : Nat) (bs : Array β) : m (Array β) := + dite (Less j as.size) + (fun hlt => + match i with + | 0 => pure bs + | Nat.succ i' => Bind.bind (f (as.get ⟨j, hlt⟩)) fun b => loop i' (hAdd j 1) (bs.push b)) + (fun _ => bs) + loop as.size 0 Array.empty + /-- A Function for lifting a computation from an inner Monad to an outer Monad. Like [MonadTrans](https://hackage.haskell.org/package/transformers-0.5.5.0/docs/Control-Monad-Trans-Class.html), but `n` does not have to be a monad transformer. diff --git a/stage0/src/Lean/Elab/Binders.lean b/stage0/src/Lean/Elab/Binders.lean index 218024efeb..42e0daea72 100644 --- a/stage0/src/Lean/Elab/Binders.lean +++ b/stage0/src/Lean/Elab/Binders.lean @@ -4,7 +4,6 @@ Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ import Lean.Elab.Term -import Lean.Elab.Quotation namespace Lean.Elab.Term open Meta @@ -40,15 +39,15 @@ structure BinderView where bi : BinderInfo partial def quoteAutoTactic : Syntax → TermElabM Syntax - | stx@(Syntax.ident _ _ _ _) => throwErrorAt stx "invalic auto tactic, identifier is not allowed" + | stx@(Syntax.ident _ _ _ _) => throwErrorAt stx "invalid auto tactic, identifier is not allowed" | stx@(Syntax.node k args) => do if stx.isAntiquot then - throwErrorAt stx "invalic auto tactic, antiquotation is not allowed" + throwErrorAt stx "invalid auto tactic, antiquotation is not allowed" else let mut quotedArgs ← `(Array.empty) for arg in args do - if k == nullKind && Quotation.isAntiquotSplice arg then - throwErrorAt arg "invalic auto tactic, antiquotation is not allowed" + if k == nullKind && arg.isAntiquotSplice then + throwErrorAt arg "invalid auto tactic, antiquotation is not allowed" else let quotedArg ← quoteAutoTactic arg quotedArgs ← `(Array.push $quotedArgs $quotedArg) diff --git a/stage0/src/Lean/Elab/BuiltinNotation.lean b/stage0/src/Lean/Elab/BuiltinNotation.lean index 9d6bebb511..0c7bbe5a85 100644 --- a/stage0/src/Lean/Elab/BuiltinNotation.lean +++ b/stage0/src/Lean/Elab/BuiltinNotation.lean @@ -7,7 +7,6 @@ import Init.Data.ToString import Lean.Compiler.BorrowedAnnotation import Lean.Meta.KAbstract import Lean.Elab.Term -import Lean.Elab.Quotation import Lean.Elab.SyntheticMVars namespace Lean.Elab.Term diff --git a/stage0/src/Lean/Elab/Do.lean b/stage0/src/Lean/Elab/Do.lean index 821432ae42..28c9601542 100644 --- a/stage0/src/Lean/Elab/Do.lean +++ b/stage0/src/Lean/Elab/Do.lean @@ -5,7 +5,6 @@ Authors: Leonardo de Moura -/ import Lean.Elab.Term import Lean.Elab.Binders -import Lean.Elab.Quotation import Lean.Elab.Match namespace Lean.Elab.Term diff --git a/stage0/src/Lean/Elab/Quotation.lean b/stage0/src/Lean/Elab/Quotation.lean index d999e399a8..8cc0a45796 100644 --- a/stage0/src/Lean/Elab/Quotation.lean +++ b/stage0/src/Lean/Elab/Quotation.lean @@ -12,7 +12,7 @@ import Lean.Elab.Term namespace Lean.Elab.Term.Quotation -open Lean.Syntax (isQuot isAntiquot) +open Lean.Syntax (isQuot isAntiquot isAntiquotSplice) open Meta def mkAntiquotNode (term : Syntax) (nesting := 0) (name : Option String := none) (kind := Name.anonymous) (splice := false) : Syntax := @@ -54,10 +54,6 @@ def antiquotKind? : Syntax → Option SyntaxNodeKind some Name.anonymous | _ => none --- `$e*` is an antiquotation "splice" matching an arbitrary number of syntax nodes -def isAntiquotSplice (stx : Syntax) : Bool := - isAntiquot stx && stx[4].getOptional?.isSome - -- An "antiquotation scope" is something like `$[...]?` or `$[...]*`. Note that the latter could be of kind `many` or -- `sepBy`, which have different implementations. def antiquotScopeKind? : Syntax → Option SyntaxNodeKind @@ -78,6 +74,19 @@ def getAntiquotScopeSuffix (stx : Syntax) : Syntax := def isAntiquotSplicePat (stx : Syntax) : Bool := stx.isOfKind nullKind && stx.getArgs.any fun arg => isAntiquotSplice arg && !isEscapedAntiquot arg +/-- `C[$(e)]` ~> `let a := e; C[$a]`. Used in the implementation of antiquot scopes. -/ +private partial def floatOutAntiquotTerms : Syntax → StateT (Syntax → TermElabM Syntax) TermElabM Syntax + | stx@(Syntax.node k args) => do + if isAntiquot stx && !isEscapedAntiquot stx then + let e := getAntiquotTerm stx + if !e.isIdent then + return ← withFreshMacroScope do + let a ← `(a) + modify (fun cont stx => (`(let $a:ident := $e; $stx) : TermElabM _)) + stx.setArg 2 a + Syntax.node k (← args.mapM floatOutAntiquotTerms) + | stx => pure stx + partial def getAntiquotationIds : Syntax → TermElabM (List Syntax) | stx@(Syntax.node k args) => if isAntiquot stx && !isEscapedAntiquot stx then @@ -116,6 +125,7 @@ private partial def quoteSyntax : Syntax → TermElabM Syntax `(Array.appendCore $args $(getAntiquotTerm arg)) else if k == nullKind && isAntiquotScope arg then do let k := antiquotScopeKind? arg + let (arg, bindLets) ← floatOutAntiquotTerms arg |>.run pure let inner ← (getAntiquotScopeContents arg).mapM quoteSyntax let arr ← match (← getAntiquotationIds arg) with | [] => throwErrorAt stx "antiquotation scope must contain at least one antiquotation" @@ -135,6 +145,7 @@ private partial def quoteSyntax : Syntax → TermElabM Syntax let Syntax.atom _ sep ← (getAntiquotScopeSuffix arg)[0] | unreachable! `(mkSepArray $arr (mkAtom $(Syntax.mkStrLit sep))) else arr + let arr ← bindLets arr `(Array.appendCore $args $arr) else do let arg ← quoteSyntax arg; @@ -186,7 +197,7 @@ private abbrev Alt := List Syntax × Syntax /-- Information on a pattern's head that influences the compilation of a single match step. -/ -structure HeadInfo where +structure BasicHeadInfo where -- Node kind to match, if any kind : Option SyntaxNodeKind := none -- Nested patterns for each argument, if any. In a single match step, we only @@ -197,21 +208,34 @@ structure HeadInfo where -- bind pattern variables. rhsFn : Syntax → TermElabM Syntax := pure -instance : Inhabited HeadInfo := ⟨{}⟩ +inductive HeadInfo where + | basic (bhi : BasicHeadInfo) + | antiquotScope (stx : Syntax) + +open HeadInfo + +instance : Inhabited HeadInfo := ⟨basic {}⟩ /-- `h1.generalizes h2` iff h1 is equal to or more general than h2, i.e. it matches all nodes h2 matches. This induces a partial ordering. -/ def HeadInfo.generalizes : HeadInfo → HeadInfo → Bool - | { kind := none, .. }, _ => true - | { kind := some k1, argPats := none, .. }, - { kind := some k2, .. } => k1 == k2 - | { kind := some k1, argPats := some ps1, .. }, - { kind := some k2, argPats := some ps2, .. } => k1 == k2 && ps1.size == ps2.size - | _, _ => false + | basic { kind := none, .. }, _ => true + | basic { kind := some k1, argPats := none, .. }, + basic { kind := some k2, .. } => k1 == k2 + | basic { kind := some k1, argPats := some ps1, .. }, + basic { kind := some k2, argPats := some ps2, .. } => k1 == k2 && ps1.size == ps2.size + -- roughmost approximation for now + | antiquotScope stx1, antiquotScope stx2 => stx1 == stx2 + | _, _ => false + +def mkTuple : Array Syntax → TermElabM Syntax + | #[] => `(()) + | #[e] => e + | es => `(($(es[0]), $(es.eraseIdx 0)*)) private def getHeadInfo (alt : Alt) : HeadInfo := let pat := alt.fst.head!; - let unconditional (rhsFn) := { rhsFn := rhsFn : HeadInfo }; + let unconditional (rhsFn) := basic { rhsFn := rhsFn }; -- variable pattern if pat.isIdent then unconditional $ fun rhs => `(let $pat := discr; $rhs) -- wildcard pattern @@ -239,18 +263,21 @@ private def getHeadInfo (alt : Alt) : HeadInfo := let anti := getAntiquotTerm quoted -- Splices should only appear inside a nullKind node, see next case if isAntiquotSplice quoted then unconditional $ fun _ => throwErrorAt quoted "unexpected antiquotation splice" - else if anti.isIdent then { kind := kind, rhsFn := fun rhs => `(let $anti := discr; $rhs) } + else if isAntiquotScope quoted then unconditional $ fun _ => throwErrorAt quoted "unexpected antiquotation scope" + else if anti.isIdent then basic { kind := kind, rhsFn := fun rhs => `(let $anti := discr; $rhs) } else unconditional fun _ => throwErrorAt! anti "match_syntax: antiquotation must be variable {anti}" else if isAntiquotSplicePat quoted && quoted.getArgs.size == 1 then -- quotation is a single antiquotation splice => bind args array let anti := getAntiquotTerm quoted[0] unconditional fun rhs => `(let $anti := Syntax.getArgs discr; $rhs) -- TODO: support for more complex antiquotation splices + else if quoted.getArgs.size == 1 && isAntiquotScope quoted[0] then + antiquotScope quoted[0] else -- not an antiquotation or escaped antiquotation: match head shape let quoted := unescapeAntiquot quoted let argPats := quoted.getArgs.map (pat.setArg 1); - { kind := quoted.getKind, argPats := argPats } + basic { kind := quoted.getKind, argPats := argPats } else unconditional $ fun _ => throwErrorAt! pat "match_syntax: unexpected pattern kind {pat}" @@ -259,15 +286,18 @@ private def getHeadInfo (alt : Alt) : HeadInfo := -- Ex: `($a + (- $b)) => `($a), `(+), `(- $b) -- Note: The atom pattern `(+) will be discarded in a later step private def explodeHeadPat (numArgs : Nat) : HeadInfo × Alt → TermElabM Alt - | (info, (pat::pats, rhs)) => do + | (basic info, (pat::pats, rhs)) => do let newPats := match info.argPats with | some argPats => argPats.toList | none => List.replicate numArgs $ Unhygienic.run `(_) let rhs ← info.rhsFn rhs pure (newPats ++ pats, rhs) + | (antiquotScope _, (pat::pats, rhs)) => (pats, rhs) | _ => unreachable! -private partial def compileStxMatch : List Syntax → List Alt → TermElabM Syntax +private partial def compileStxMatch (discrs : List Syntax) (alts : List Alt) : TermElabM Syntax := do + trace[Elab.match_syntax]! "match_syntax {discrs} with {alts}" + match discrs, alts with | [], ([], rhs)::_ => pure rhs -- nothing left to match | _, [] => throwError "non-exhaustive 'match_syntax'" | discr::discrs, alts => do @@ -276,24 +306,65 @@ private partial def compileStxMatch : List Syntax → List Alt → TermElabM Syn -- If there are multiple minimal elements, the choice does not matter. let (info, alt) := alts.tail!.foldl (fun (min : HeadInfo × Alt) (alt : HeadInfo × Alt) => if min.1.generalizes alt.1 then alt else min) alts.head!; -- introduce pattern matches on the discriminant's children if there are any nested patterns - let newDiscrs ← match info.argPats with - | some pats => (List.range pats.size).mapM fun i => `(Syntax.getArg discr $(quote i)) - | none => pure [] + let newDiscrs ← match info with + | basic { argPats := some pats, .. } => (List.range pats.size).mapM fun i => `(Syntax.getArg discr $(quote i)) + | _ => pure [] -- collect matching alternatives and explode them let yesAlts := alts.filter fun (alt : HeadInfo × Alt) => alt.1.generalizes info let yesAlts ← yesAlts.mapM $ explodeHeadPat newDiscrs.length -- NOTE: use fresh macro scopes for recursive call so that different `discr`s introduced by the quotations below do not collide let yes ← withFreshMacroScope $ compileStxMatch (newDiscrs ++ discrs) yesAlts - let some kind ← pure info.kind - -- unconditional match step - | `(let discr := $discr; $yes) + let mkNo := do + let noAlts := (alts.filter $ fun (alt : HeadInfo × Alt) => !info.generalizes alt.1).map (·.2) + withFreshMacroScope $ compileStxMatch (discr::discrs) noAlts + match info with + -- unconditional match step + | basic { kind := none, .. } => `(let discr := $discr; $yes) -- conditional match step - let noAlts := (alts.filter $ fun (alt : HeadInfo × Alt) => !info.generalizes alt.1).map (·.2) - let no ← withFreshMacroScope $ compileStxMatch (discr::discrs) noAlts - let cond ← match info.argPats with - | some pats => `(and (Syntax.isOfKind discr $(quote kind)) (BEq.beq (Array.size (Syntax.getArgs discr)) $(quote pats.size))) - | none => `(Syntax.isOfKind discr $(quote kind)) - `(let discr := $discr; ite (Eq $cond true) $yes $no) + | basic { kind := some kind, argPats := pats, .. } => + let cond ← match pats with + | some pats => `(and (Syntax.isOfKind discr $(quote kind)) (BEq.beq (Array.size (Syntax.getArgs discr)) $(quote pats.size))) + | none => `(Syntax.isOfKind discr $(quote kind)) + let no ← mkNo + `(let discr := $discr; ite (Eq $cond true) $yes $no) + -- terrifying match step + | antiquotScope scope => + let k := antiquotScopeKind? scope + let contents := getAntiquotScopeContents scope + let ids ← getAntiquotationIds scope + let no ← mkNo + match k with + | `optional => + let mut yesMatch := yes + for id in ids do + yesMatch ← `(let $id := some $id; $yesMatch) + let mut yesNoMatch := yes + for id in ids do + yesNoMatch ← `(let $id := none; $yesNoMatch) + `(let discr := $discr; + if discr.isNone then $yesNoMatch + else match_syntax discr with + | `($(mkNullNode contents)) => $yesMatch + | _ => $no) + | _ => + let mut discrs ← `(Syntax.getArgs $discr) + if k == `sepBy then + discrs ← `(Array.getSepElems $discrs) + let ids := ids.toArray + let tuple ← mkTuple ids + let mut yes := yes + let resId ← match ids with + | #[id] => id + | _ => + for i in [:ids.size] do + let idx := Syntax.mkLit fieldIdxKind (toString (i + 1)); + yes ← `(let $(ids[i]) := tuples.map (·.$idx:fieldIdx); $yes) + `(tuples) + `(match ($(discrs).sequenceMap fun discr => match_syntax discr with + | `($(contents[0])) => some $tuple + | _ => none) with + | some $resId => $yes + | none => $no) | _, _ => unreachable! -- Get all pattern vars (as `Syntax.ident`s) in `stx` @@ -341,9 +412,15 @@ def match_syntax.expand (stx : Syntax) : TermElabM Syntax := do let rhs := alt.getArg 2 pure ([pat], rhs) -- letBindRhss (compileStxMatch stx [discr]) alts.toList [] - compileStxMatch [discr] alts.toList + let stx ← compileStxMatch [discr] alts.toList + trace[Elab.match_syntax.result]! "{stx}" + stx @[builtinTermElab «match_syntax»] def elabMatchSyntax : TermElab := adaptExpander match_syntax.expand +builtin_initialize + registerTraceClass `Elab.match_syntax + registerTraceClass `Elab.match_syntax.result + end Lean.Elab.Term.Quotation diff --git a/stage0/src/Lean/Elab/StructInst.lean b/stage0/src/Lean/Elab/StructInst.lean index 53e39195ff..e4512542d7 100644 --- a/stage0/src/Lean/Elab/StructInst.lean +++ b/stage0/src/Lean/Elab/StructInst.lean @@ -6,7 +6,6 @@ Authors: Leonardo de Moura import Lean.Util.FindExpr import Lean.Elab.App import Lean.Elab.Binders -import Lean.Elab.Quotation namespace Lean.Elab.Term.StructInst diff --git a/stage0/src/Lean/Parser/Term.lean b/stage0/src/Lean/Parser/Term.lean index ee87b969a0..14dc5f37f0 100644 --- a/stage0/src/Lean/Parser/Term.lean +++ b/stage0/src/Lean/Parser/Term.lean @@ -115,7 +115,7 @@ def matchAlt : Parser := def matchAlts (optionalFirstBar := true) : Parser := parser! ppDedent $ withPosition $ - ppLine >> (if optionalFirstBar then optional "| " else "| ") >> + ppLine >> (if optionalFirstBar then optional "| " else group "| ") >> sepBy1 (ppIndent matchAlt) (ppLine >> checkColGe "alternatives must be indented" >> "| ") def matchDiscr := parser! optional (atomic (ident >> checkNoWsBefore "no space before ':'" >> ":")) >> termParser diff --git a/stage0/src/Lean/Syntax.lean b/stage0/src/Lean/Syntax.lean index 6d715a940c..85f9b2a97b 100644 --- a/stage0/src/Lean/Syntax.lean +++ b/stage0/src/Lean/Syntax.lean @@ -30,6 +30,10 @@ def Syntax.isAntiquot : Syntax → Bool | Syntax.node (Name.str _ "antiquot" _) _ => true | _ => false +-- `$e*` is an antiquotation "splice" matching an arbitrary number of syntax nodes +def Syntax.isAntiquotSplice (stx : Syntax) : Bool := + stx.isAntiquot && !stx[4].isNone + inductive IsNode : Syntax → Prop where | mk (kind : SyntaxNodeKind) (args : Array Syntax) : IsNode (Syntax.node kind args) diff --git a/stage0/stdlib/CMakeLists.txt b/stage0/stdlib/CMakeLists.txt index 06de9686cb..20794358c1 100644 --- a/stage0/stdlib/CMakeLists.txt +++ b/stage0/stdlib/CMakeLists.txt @@ -1 +1 @@ -add_library (stage0 OBJECT ./Init.c ./Init/Classical.c ./Init/Coe.c ./Init/Control.c ./Init/Control/Basic.c ./Init/Control/EState.c ./Init/Control/Except.c ./Init/Control/Id.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/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/OfScientific.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/Meta.c ./Init/Notation.c ./Init/NotationExtra.c ./Init/Prelude.c ./Init/SizeOf.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.c ./Lean/Data/Format.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/NameTrie.c ./Lean/Data/Occurrences.c ./Lean/Data/OpenDecl.c ./Lean/Data/Options.c ./Lean/Data/Position.c ./Lean/Data/PrefixTree.c ./Lean/Data/SMap.c ./Lean/Data/Trie.c ./Lean/Declaration.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/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/GetConst.c ./Lean/Meta/InferType.c ./Lean/Meta/Instances.c ./Lean/Meta/KAbstract.c ./Lean/Meta/LevelDefEq.c ./Lean/Meta/Match.c ./Lean/Meta/Match/Basic.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/Match/MatcherInfo.c ./Lean/Meta/MatchUtil.c ./Lean/Meta/Offset.c ./Lean/Meta/PPGoal.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/Constructor.c ./Lean/Meta/Tactic/Delta.c ./Lean/Meta/Tactic/ElimInfo.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/Transform.c ./Lean/Meta/TransparencyMode.c ./Lean/Meta/UnificationHint.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/Basic.c ./Lean/PrettyPrinter/Delaborator.c ./Lean/PrettyPrinter/Delaborator/Basic.c ./Lean/PrettyPrinter/Delaborator/Builtins.c ./Lean/PrettyPrinter/Formatter.c ./Lean/PrettyPrinter/Parenthesizer.c ./Lean/ProjFns.c ./Lean/ReducibilityAttrs.c ./Lean/ResolveName.c ./Lean/Runtime.c ./Lean/ScopedEnvExtension.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/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/Classical.c ./Init/Coe.c ./Init/Control.c ./Init/Control/Basic.c ./Init/Control/EState.c ./Init/Control/Except.c ./Init/Control/Id.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/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/OfScientific.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/Meta.c ./Init/Notation.c ./Init/NotationExtra.c ./Init/Prelude.c ./Init/SizeOf.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.c ./Lean/Data/Format.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/NameTrie.c ./Lean/Data/Occurrences.c ./Lean/Data/OpenDecl.c ./Lean/Data/Options.c ./Lean/Data/Position.c ./Lean/Data/PrefixTree.c ./Lean/Data/SMap.c ./Lean/Data/Trie.c ./Lean/Declaration.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/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/GetConst.c ./Lean/Meta/InferType.c ./Lean/Meta/Instances.c ./Lean/Meta/KAbstract.c ./Lean/Meta/LevelDefEq.c ./Lean/Meta/Match.c ./Lean/Meta/Match/Basic.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/Match/MatcherInfo.c ./Lean/Meta/MatchUtil.c ./Lean/Meta/Offset.c ./Lean/Meta/PPGoal.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/Constructor.c ./Lean/Meta/Tactic/Delta.c ./Lean/Meta/Tactic/ElimInfo.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/Transform.c ./Lean/Meta/TransparencyMode.c ./Lean/Meta/UnificationHint.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/ParserCompiler.c ./Lean/ParserCompiler/Attribute.c ./Lean/PrettyPrinter.c ./Lean/PrettyPrinter/Basic.c ./Lean/PrettyPrinter/Delaborator.c ./Lean/PrettyPrinter/Delaborator/Basic.c ./Lean/PrettyPrinter/Delaborator/Builtins.c ./Lean/PrettyPrinter/Formatter.c ./Lean/PrettyPrinter/Parenthesizer.c ./Lean/ProjFns.c ./Lean/ReducibilityAttrs.c ./Lean/ResolveName.c ./Lean/Runtime.c ./Lean/ScopedEnvExtension.c ./Lean/Server.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/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/Prelude.c b/stage0/stdlib/Init/Prelude.c index 379b8c2475..f4d7e0c099 100644 --- a/stage0/stdlib/Init/Prelude.c +++ b/stage0/stdlib/Init/Prelude.c @@ -83,6 +83,7 @@ lean_object* l_List_hasDecEq_match__2(lean_object*, lean_object*, lean_object*, lean_object* l_Lean_instMonadQuotation___rarg___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Nat_beq___boxed(lean_object*, lean_object*); lean_object* l_Array_set___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_sequenceMap_loop___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getKind_match__1(lean_object*); lean_object* l_UInt64_size___closed__1; lean_object* l_idRhs___rarg___boxed(lean_object*); @@ -110,6 +111,7 @@ lean_object* l_Lean_Syntax_getKind_match__1___rarg(lean_object*, lean_object*, l lean_object* l_instHasLessEqUInt32; lean_object* l___private_Init_Prelude_0__Lean_extractMainModule___closed__1; lean_object* l_Monad_seqLeft___default(lean_object*); +lean_object* l_Array_sequenceMap_loop_match__1(lean_object*); lean_object* l_Function_comp(lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Prelude_0__Lean_eraseMacroScopesAux_match__1(lean_object*); lean_object* l_Array_empty___closed__1; @@ -141,6 +143,7 @@ lean_object* l_Lean_withRef___rarg(lean_object*, lean_object*, lean_object*, lea lean_object* l_Nat_pred___boxed(lean_object*); lean_object* l_modifyThe(lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); +lean_object* l_Array_sequenceMap_loop_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_String_toSubstring(lean_object*); lean_object* l_not_match__1___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Prelude_0__Lean_assembleParts_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -557,6 +560,7 @@ lean_object* l_Lean_Name_beq_match__1(lean_object*); lean_object* l_MonadExcept_instOrElse___rarg(lean_object*, lean_object*); lean_object* l_ite___rarg(uint8_t, lean_object*, lean_object*); lean_object* l_Eq_ndrec___rarg___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_sequenceMap_loop_match__1___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_eraseMacroScopes_match__1___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_EStateM_nonBacktrackable(lean_object*); lean_object* l_ReaderT_instMonadReaderT___rarg___lambda__4___boxed(lean_object*, lean_object*, lean_object*); @@ -685,6 +689,7 @@ lean_object* l_List_foldl___at_Lean_MacroScopesView_review___spec__1(lean_object lean_object* l_Lean_Macro_instMonadRefMacroM___lambda__1___boxed(lean_object*, lean_object*, lean_object*); uint8_t l_instDecidableEqUInt16(uint16_t, uint16_t); uint8_t l_instDecidableEqString(lean_object*, lean_object*); +lean_object* l_Array_sequenceMap___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_instInhabitedName; lean_object* l_instHAdd___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Array_appendCore(lean_object*); @@ -693,6 +698,7 @@ lean_object* l_Decidable_decide___rarg___boxed(lean_object*); lean_object* l_USize_size; lean_object* l_UInt32_mk___boxed(lean_object*); lean_object* l_instDecidableEqBool___boxed(lean_object*, lean_object*); +lean_object* l_Array_sequenceMap_loop___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_hasMacroScopes_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_EStateM_orElse(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_cond___rarg___boxed(lean_object*, lean_object*, lean_object*); @@ -731,11 +737,13 @@ lean_object* l_instOfNatNat(lean_object*); size_t lean_usize_mix_hash(size_t, size_t); lean_object* l_UInt32_size; lean_object* l_Lean_instInhabitedMacroScopesView___closed__1; +lean_object* l_Array_sequenceMap_loop(lean_object*, lean_object*, lean_object*); lean_object* l_List_hasDecEq_match__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_USize_ofNatCore___boxed(lean_object*, lean_object*); lean_object* l_ReaderT_instMonadExceptOfReaderT___rarg(lean_object*); lean_object* l_instInhabited(lean_object*, lean_object*); lean_object* l_instDecidableEqFin_match__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_sequenceMap_loop___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_MonadExcept_orelse(lean_object*, lean_object*); lean_object* l_Fin_decLt___boxed(lean_object*); lean_object* l_Lean_instMonadRef___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -747,6 +755,7 @@ lean_object* l_Lean_withRef(lean_object*); lean_object* l_List_concat(lean_object*); lean_object* l_Array_appendCore_loop_match__1(lean_object*); lean_object* l_ReaderT_adapt___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_sequenceMap(lean_object*, lean_object*, lean_object*); uint8_t l_UInt16_decEq(uint16_t, uint16_t); lean_object* l_instAddNat___closed__1; lean_object* l_Lean_Macro_withFreshMacroScope___rarg(lean_object*, lean_object*, lean_object*); @@ -841,6 +850,7 @@ lean_object* l_modify___rarg(lean_object*, lean_object*); lean_object* l_Lean_Syntax_getHeadInfo_loop_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_EStateM_instMonadExceptOfEStateM(lean_object*, lean_object*, lean_object*); lean_object* lean_uint32_to_nat(uint32_t); +lean_object* l_Array_sequenceMap_loop___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_EStateM_run_x27_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_uint32_to_nat(uint32_t); lean_object* l_List_hasDecEq_match__1(lean_object*, lean_object*, lean_object*, lean_object*); @@ -5053,6 +5063,171 @@ x_3 = lean_alloc_closure((void*)(l_instInhabited___rarg), 2, 0); return x_3; } } +lean_object* l_Array_sequenceMap_loop_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = lean_unsigned_to_nat(0u); +x_5 = lean_nat_dec_eq(x_1, x_4); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; +lean_dec(x_2); +x_6 = lean_unsigned_to_nat(1u); +x_7 = lean_nat_sub(x_1, x_6); +x_8 = lean_apply_1(x_3, x_7); +return x_8; +} +else +{ +lean_object* x_9; lean_object* x_10; +lean_dec(x_3); +x_9 = lean_box(0); +x_10 = lean_apply_1(x_2, x_9); +return x_10; +} +} +} +lean_object* l_Array_sequenceMap_loop_match__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Array_sequenceMap_loop_match__1___rarg___boxed), 3, 0); +return x_2; +} +} +lean_object* l_Array_sequenceMap_loop_match__1___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Array_sequenceMap_loop_match__1___rarg(x_1, x_2, x_3); +lean_dec(x_1); +return x_4; +} +} +lean_object* l_Array_sequenceMap_loop___rarg___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_8 = lean_unsigned_to_nat(1u); +x_9 = lean_nat_add(x_1, x_8); +x_10 = lean_array_push(x_2, x_7); +x_11 = l_Array_sequenceMap_loop___rarg(x_3, x_4, x_5, x_6, x_9, x_10); +return x_11; +} +} +lean_object* l_Array_sequenceMap_loop___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; uint8_t x_8; +x_7 = lean_array_get_size(x_2); +x_8 = lean_nat_dec_lt(x_5, x_7); +lean_dec(x_7); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +x_9 = lean_ctor_get(x_1, 0); +lean_inc(x_9); +lean_dec(x_1); +x_10 = lean_ctor_get(x_9, 1); +lean_inc(x_10); +lean_dec(x_9); +x_11 = lean_apply_2(x_10, lean_box(0), x_6); +return x_11; +} +else +{ +lean_object* x_12; uint8_t x_13; +x_12 = lean_unsigned_to_nat(0u); +x_13 = lean_nat_dec_eq(x_4, x_12); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_14 = lean_unsigned_to_nat(1u); +x_15 = lean_nat_sub(x_4, x_14); +x_16 = lean_ctor_get(x_1, 1); +lean_inc(x_16); +x_17 = lean_array_fget(x_2, x_5); +lean_inc(x_3); +x_18 = lean_apply_1(x_3, x_17); +x_19 = lean_alloc_closure((void*)(l_Array_sequenceMap_loop___rarg___lambda__1___boxed), 7, 6); +lean_closure_set(x_19, 0, x_5); +lean_closure_set(x_19, 1, x_6); +lean_closure_set(x_19, 2, x_1); +lean_closure_set(x_19, 3, x_2); +lean_closure_set(x_19, 4, x_3); +lean_closure_set(x_19, 5, x_15); +x_20 = lean_apply_4(x_16, lean_box(0), lean_box(0), x_18, x_19); +return x_20; +} +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +x_21 = lean_ctor_get(x_1, 0); +lean_inc(x_21); +lean_dec(x_1); +x_22 = lean_ctor_get(x_21, 1); +lean_inc(x_22); +lean_dec(x_21); +x_23 = lean_apply_2(x_22, lean_box(0), x_6); +return x_23; +} +} +} +} +lean_object* l_Array_sequenceMap_loop(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = lean_alloc_closure((void*)(l_Array_sequenceMap_loop___rarg___boxed), 6, 0); +return x_4; +} +} +lean_object* l_Array_sequenceMap_loop___rarg___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +x_8 = l_Array_sequenceMap_loop___rarg___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_1); +return x_8; +} +} +lean_object* l_Array_sequenceMap_loop___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +x_7 = l_Array_sequenceMap_loop___rarg(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_4); +return x_7; +} +} +lean_object* l_Array_sequenceMap___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_4 = lean_array_get_size(x_2); +x_5 = lean_unsigned_to_nat(0u); +x_6 = l_Array_empty___closed__1; +x_7 = l_Array_sequenceMap_loop___rarg(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_4); +return x_7; +} +} +lean_object* l_Array_sequenceMap(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = lean_alloc_closure((void*)(l_Array_sequenceMap___rarg), 3, 0); +return x_4; +} +} lean_object* l_liftM___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { diff --git a/stage0/stdlib/Lean/Elab/App.c b/stage0/stdlib/Lean/Elab/App.c index fbe5764277..853006a54e 100644 --- a/stage0/stdlib/Lean/Elab/App.c +++ b/stage0/stdlib/Lean/Elab/App.c @@ -566,6 +566,7 @@ lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_finalize___ lean_object* l_Lean_Elab_Term_elabExplicitUnivs___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_38____closed__1; lean_object* l_Lean_Meta_withoutPostponingUniverseConstraintsImp___at_Lean_Elab_Term_elabBinders___spec__1___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_tryPostponeIfMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Std_Range_forIn_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_addLValArg___spec__4___lambda__1(lean_object*, lean_object*); @@ -694,7 +695,6 @@ uint8_t l_Lean_isStructureLike(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___closed__4; lean_object* l_Lean_Elab_Term_expandApp___closed__2; lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg_match__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_mkBaseProjections___closed__2; lean_object* l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(lean_object*); lean_object* l_Lean_indentExpr(lean_object*); @@ -19849,7 +19849,7 @@ x_42 = l_Std_Range_forIn_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_add x_43 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_43, 0, x_41); lean_ctor_set(x_43, 1, x_42); -x_44 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_43, x_9, x_10, x_11, x_12, x_13, x_14, x_27); +x_44 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_43, x_9, x_10, x_11, x_12, x_13, x_14, x_27); lean_dec(x_11); x_45 = !lean_is_exclusive(x_44); if (x_45 == 0) @@ -21641,7 +21641,7 @@ x_18 = l___private_Lean_Elab_App_0__Lean_Elab_Term_addLValArg___lambda__1___clos x_19 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_19, 0, x_17); lean_ctor_set(x_19, 1, x_18); -x_20 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_19, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_20 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_19, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_20; } } diff --git a/stage0/stdlib/Lean/Elab/Binders.c b/stage0/stdlib/Lean/Elab/Binders.c index 7e7348a18d..c84b01457e 100644 --- a/stage0/stdlib/Lean/Elab/Binders.c +++ b/stage0/stdlib/Lean/Elab/Binders.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Elab.Binders -// Imports: Init Lean.Elab.Term Lean.Elab.Quotation +// Imports: Init Lean.Elab.Term #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -18,10 +18,8 @@ lean_object* l_Lean_Elab_Term_elabLetDeclCore_match__2___rarg(uint8_t, uint8_t, lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandLetEqnsDeclVal_match__1(lean_object*); lean_object* l_Lean_Elab_Term_elabBinder___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabLetDeclCore_match__1(lean_object*); -lean_object* l_Lean_Meta_withLetDecl___at_Lean_Elab_Term_elabLetDeclAux___spec__4(lean_object*); lean_object* l_Lean_Elab_Term_elabBinders(lean_object*); lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__6; -extern lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__4; lean_object* l_Lean_Elab_Term_expandWhereDecls___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_elabForall___spec__1___rarg(lean_object*); size_t l_USize_add(size_t, size_t); @@ -34,11 +32,11 @@ lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__1___closed__3; lean_object* l_Lean_Meta_isExprDefEq___at_Lean_Elab_Term_elabLetDeclAux___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabDepArrow___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__27; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandFunBinders_loop_match__2(lean_object*); extern lean_object* l_Lean_Parser_Tactic_let_x21___closed__1; lean_object* l___regBuiltin_Lean_Elab_Term_elabForall___closed__1; +lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__25; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withoutPostponingUniverseConstraintsImp___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkForallFVarsImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -55,10 +53,10 @@ lean_object* lean_array_uget(lean_object*, size_t); lean_object* l_Lean_Elab_Term_declareTacticSyntax___closed__5; lean_object* l_Lean_Elab_Term_elabLetDeclAux_match__1(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabDepArrow___closed__1; -extern lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__8; +lean_object* l_Lean_Meta_withLetDecl___at_Lean_Elab_Term_elabLetDeclAux___spec__5___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___private_Lean_Elab_Binders_0__Lean_Elab_Term_mkMatch___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_append___rarg(lean_object*, lean_object*); -lean_object* l_Lean_Meta_forallBoundedTelescope___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__29; extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_261____closed__4; lean_object* l_Lean_Meta_withoutPostponingUniverseConstraintsImp___at_Lean_Elab_Term_elabBinders___spec__1___rarg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_mkSep(lean_object*, lean_object*); @@ -81,11 +79,12 @@ extern lean_object* l_Lean_identKind___closed__2; lean_object* l_Lean_Meta_setPostponed___at_Lean_Elab_Term_elabBinders___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandWhereDecls(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_forallTelescope___at___private_Lean_Elab_Term_0__Lean_Elab_Term_tryPureCoe_x3f___spec__3___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__24; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandOptIdent___closed__2; lean_object* l_Lean_Meta_withoutPostponingUniverseConstraintsImp___at_Lean_Elab_Term_elabBinders___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* 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; +lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__37; +lean_object* l_Lean_Meta_forallBoundedTelescope___at_Lean_Elab_Term_elabLetDeclAux___spec__4(lean_object*); lean_object* l_Lean_Elab_Term_declareTacticSyntax___closed__1; extern lean_object* l_Lean_Parser_Tactic_let___closed__2; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier___closed__12; @@ -96,8 +95,8 @@ extern lean_object* l_Lean_Elab_Term_mkExplicitBinder___closed__2; extern lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___closed__7; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_elabBindersAux(lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_38____closed__3; -extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; lean_object* lean_st_ref_get(lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_matchAlts___closed__1; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_getBinderIds___spec__1___closed__2; uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabArrow___closed__1; @@ -106,6 +105,7 @@ extern lean_object* l_Lean_MessageData_nil; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_registerFailedToInferBinderTypeInfo___closed__2; lean_object* l_Lean_Elab_Term_elabFunBinders___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_declareTacticSyntax___closed__2; +lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__22; lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__18; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_elabBinderViews_loop___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*); @@ -121,6 +121,7 @@ lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); lean_object* l_Lean_Elab_Term_expandLetEqnsDecl(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_elabBinderViews_loop___rarg(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* l_Lean_Elab_Term_quoteAutoTactic___closed__42; lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabImplicitLambda___spec__1___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabFun(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabDepArrow___closed__3; @@ -146,7 +147,6 @@ lean_object* l___private_Lean_Meta_LevelDefEq_0__Lean_Meta_processPostponed(uint lean_object* l_Lean_Meta_instantiateMVarsImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandMatchAltsIntoMatchTactic(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandFunBinders_loop(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__11; lean_object* l_Lean_Meta_setPostponed___at___private_Lean_Meta_LevelDefEq_0__Lean_Meta_getResetPostponed___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabTypeWithAutoBoundImplicit___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_elabBinderViews_loop___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -154,12 +154,12 @@ lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_propagateExpectedType___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__2; lean_object* l_Lean_Meta_isExprDefEqImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_elabBindersAux___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getLocalInstances___at_Lean_Elab_Term_elabFunBinders___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwKernelException___at_Lean_Elab_Term_declareTacticSyntax___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_elabFunBinderViews(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_elabArrow(lean_object*); +lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__10; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier___closed__10; lean_object* l_Lean_Meta_isExprDefEq___at_Lean_Elab_Term_elabLetDeclAux___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__2___closed__1; @@ -167,6 +167,7 @@ lean_object* l_Lean_Elab_Term_mkLetRec___boxed(lean_object*, lean_object*, lean_ lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier___closed__2; lean_object* l_Lean_Elab_Term_expandMatchAltsWhereDecls___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_addDiscr(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__11; extern lean_object* l_myMacro____x40_Init_Notation___hyg_9707____closed__13; lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___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*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__4; @@ -192,15 +193,16 @@ lean_object* l___regBuiltin_Lean_Elab_Term_elabLetStarDecl(lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderType(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_registerCustomErrorIfMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__30; lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_declareTacticSyntax(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__33; extern lean_object* l_Lean_Elab_Term_mkExplicitBinder___closed__7; -extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__14; extern lean_object* l_Lean_choiceKind___closed__2; extern lean_object* l_Lean_Elab_Term_MVarErrorInfo_logError___closed__1; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_getBinderIds___spec__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_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__14; +lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__28; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_getBinderIds___spec__1___closed__1; lean_object* l_Lean_Elab_Term_expandMatchAltsWhereDecls_loop(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getLocalInstances___at_Lean_Elab_Term_elabFunBinders___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -211,16 +213,17 @@ lean_object* l___regBuiltin_Lean_Elab_Term_elabFun___closed__1; lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_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_Lean_Elab_Term_elabForall___closed__1; -extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__3; lean_object* l_Lean_Elab_Term_elabForall___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_11515____closed__8; +extern lean_object* l_Lean_Parser_Tactic_matchAlt___closed__1; lean_object* l_Lean_Elab_Term_elabLetDeclAux___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_mkLetIdDeclView___boxed(lean_object*); lean_object* l_Lean_replaceRef(lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getFunBinderIds_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_4916_(lean_object*); +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_4915_(lean_object*); +lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__20; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier___closed__8; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_registerFailedToInferBinderTypeInfo(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_expandLetEqnsDeclVal_match__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -233,6 +236,7 @@ lean_object* l_Lean_Meta_isClass_x3f___at___private_Lean_Elab_Binders_0__Lean_El lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__7; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_elabFunBinderViews_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabLetBangDecl(lean_object*); +lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__4; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier___closed__9; lean_object* l_Lean_Elab_Term_mkLetRec___closed__1; lean_object* l_Lean_Elab_Term_expandMatchAltsWhereDecls(lean_object*, lean_object*, lean_object*, lean_object*); @@ -248,10 +252,11 @@ lean_object* l_Lean_Elab_Term_elabForall___lambda__1(lean_object*, lean_object*, lean_object* l_Lean_Syntax_getId(lean_object*); extern lean_object* l_Lean_Parser_Tactic_letrec___closed__1; lean_object* l_Lean_Elab_Term_expandLetEqnsDecl___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_addMacroStack___at_Lean_Elab_Term_instAddErrorMessageContextTermElabM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabFunBinders(lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__1; lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__2___closed__3; -extern lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__13; +lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__32; lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__10; lean_object* l_Lean_Elab_Term_elabLetDeclCore___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_elabBindersAux___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -263,14 +268,16 @@ lean_object* l_Lean_Elab_Term_getCurrMacroScope(lean_object*, lean_object*, lean lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___boxed(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_matchBinder___closed__2; lean_object* l_Lean_Elab_Term_elabArrow___lambda__1___closed__2; +lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__5; lean_object* l_Lean_Elab_Term_expandOptType(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_registerFailedToInferBinderTypeInfo___closed__3; lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_getFunBinderIds_x3f___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_38____closed__5; lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__3; -extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_261____closed__5; lean_object* l_Lean_Elab_Term_elabForall___closed__2; +lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__24; +lean_object* l_Lean_Meta_forallBoundedTelescope___at_Lean_Elab_Term_elabLetDeclAux___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_11836____closed__8; lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__7; lean_object* l___private_Init_Meta_0__Lean_quoteName(lean_object*); @@ -286,10 +293,12 @@ lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_ extern lean_object* l_Lean_KernelException_toMessageData___closed__15; uint8_t l_Array_isEmpty___rarg(lean_object*); extern lean_object* l_Lean_instInhabitedSyntax; +lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__6; lean_object* l_Lean_Elab_Term_mkFreshIdent(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_match__2(lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_9707____closed__19; lean_object* l_Lean_Meta_withLCtx___at_Lean_Elab_Term_elabSyntheticHole___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_myMacro____x40_Init_Notation___hyg_11167____closed__1; lean_object* l_Lean_compileDecl___at_Lean_Elab_Term_declareTacticSyntax___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_bind___at_Lean_Elab_Term_instMonadLogTermElabM___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentArray_forIn___at___private_Lean_Meta_LevelDefEq_0__Lean_Meta_postponedToMessageData___spec__1(lean_object*, lean_object*); @@ -317,15 +326,17 @@ lean_object* l_Lean_addTrace___at___private_Lean_Elab_Term_0__Lean_Elab_Term_pos lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__2; +lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__13; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_addDiscr___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l___private_Lean_Elab_Util_0__Lean_Elab_evalSyntaxConstantUnsafe___closed__1; -extern lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__22; extern lean_object* l_myMacro____x40_Init_Notation___hyg_38____closed__6; lean_object* l_Lean_Elab_Term_elabBinders___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getFunBinderIds_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Meta_DiscrTree_Trie_format___rarg___closed__1; lean_object* l_Lean_Elab_Term_expandOptType___boxed(lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_12470____closed__8; extern lean_object* l_Lean_nullKind___closed__2; +lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__26; extern lean_object* l_myMacro____x40_Init_Notation___hyg_11836____closed__13; extern lean_object* l_Lean_Elab_Term_termElabAttribute; lean_object* l___regBuiltin_Lean_Elab_Term_elabLetBangDecl___closed__1; @@ -345,6 +356,7 @@ extern lean_object* l_Lean_identKind; lean_object* l_Lean_Elab_Term_expandFunBinders_loop_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandMatchAltsWhereDecls_loop_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_elabFunBinderViews_match__1(lean_object*); +lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__12; extern lean_object* l_Lean_Syntax_mkApp___closed__1; extern lean_object* l_Lean_Parser_Tactic_match___closed__3; lean_object* l_Lean_Elab_Term_elabArrow(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -364,6 +376,7 @@ lean_object* l_Lean_mkHole(lean_object*); lean_object* l_Lean_Elab_Term_elabFunBinders___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_setArg(lean_object*, lean_object*, lean_object*); lean_object* lean_environment_main_module(lean_object*); +extern lean_object* l_Lean_Parser_Tactic_match___closed__5; extern lean_object* l_Lean_Meta_mkArrow___rarg___closed__1; lean_object* l_Lean_Meta_isClass_x3f___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_elabFunBinderViews___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkFreshId___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_elabFunBinderViews___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -378,7 +391,9 @@ lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__6; extern lean_object* l_myMacro____x40_Init_Notation___hyg_12470____closed__1; lean_object* l_Lean_mkApp(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandFunBinders_loop_match__1(lean_object*); +lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__35; lean_object* l_Lean_Meta_mkForallFVars___at_Lean_Elab_Term_elabForall___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__39; extern lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImplicit___spec__1___closed__1; lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l_Lean_Syntax_getKind(lean_object*); @@ -391,6 +406,7 @@ lean_object* lean_panic_fn(lean_object*, lean_object*); lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabImplicitLambda___spec__1___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_11836____closed__11; extern lean_object* l_Std_PersistentHashMap_mkCollisionNode___rarg___closed__1; +lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__31; extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_261____closed__2; lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_appendCore___rarg(lean_object*, lean_object*); @@ -408,25 +424,27 @@ lean_object* l_Lean_Meta_setPostponed___at_Lean_Elab_Term_elabBinders___spec__2( extern lean_object* l_myMacro____x40_Init_Notation___hyg_38____closed__1; lean_object* l_Lean_Meta_withoutPostponingUniverseConstraintsImp___at_Lean_Elab_Term_elabBinders___spec__1___rarg___lambda__1(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_elabFunBinderViews___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Lean_Elab_Term_Quotation_isAntiquotSplice(lean_object*); -extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__4; +lean_object* l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_FunBinders_elabFunBindersAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__41; lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__4; +lean_object* l_Lean_Meta_withLetDecl___at_Lean_Elab_Term_elabLetDeclAux___spec__5(lean_object*); lean_object* l_Lean_Elab_Term_expandFunBinders(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabLetBangDecl(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_expandBinderModifier___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_term_x5b___x2c_x5d___closed__7; -lean_object* l_Lean_Meta_withLetDecl___at_Lean_Elab_Term_elabLetDeclAux___spec__4___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_Lean_Meta_getLocalInstances___at_Lean_Elab_Term_elabFunBinders___spec__1(lean_object*, lean_object*); -lean_object* l_Lean_Meta_forallBoundedTelescope___at_Lean_Elab_Term_elabLetDeclAux___spec__3(lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux_match__1(lean_object*); +lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__23; lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__2; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandOptIdent(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isNone(lean_object*); lean_object* lean_name_mk_numeral(lean_object*, lean_object*); lean_object* l_Lean_setEnv___at_Lean_Elab_Term_declareTacticSyntax___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__7; lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkOptionalNode___closed__1; @@ -456,9 +474,7 @@ lean_object* l_Lean_Elab_Term_mkLetRec(lean_object*, lean_object*, lean_object*) lean_object* l_Lean_setEnv___at_Lean_Elab_Term_declareTacticSyntax___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_expandExplicitBindersAux_loop___closed__8; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); -extern lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__6; lean_object* l_Lean_compileDecl___at_Lean_Elab_Term_declareTacticSyntax___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; extern lean_object* l_myMacro____x40_Init_Notation___hyg_9707____closed__20; extern lean_object* l_Lean_mkOptionalNode___closed__2; lean_object* l_Lean_Elab_Term_declareTacticSyntax___closed__4; @@ -474,28 +490,32 @@ lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabLetDeclAux___closed__3; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_elabForall___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandMatchAltsWhereDecls_loop_match__1___rarg___boxed(lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__16; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandLetEqnsDeclVal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabForall(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderType___boxed(lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLetDeclImp___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__2; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__8; extern lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_919____closed__3; +lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__38; +lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__21; lean_object* l_Lean_Elab_Term_elabLetDeclCore(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabBinder___rarg___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_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_FunBinders_State_fvars___default; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier___closed__7; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_expandWhereDecls___spec__1(size_t, size_t, lean_object*); 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_mkLambdaFVars___at_Lean_Elab_Term_elabLetDeclAux___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__9; lean_object* l_Lean_mkConst(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__40; extern lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2705____closed__10; lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__3; lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__4; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier___closed__1; lean_object* l_Lean_Meta_mkForallFVars___at_Lean_Elab_Term_elabForall___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__34; lean_object* l_Lean_Elab_Term_expandWhereDeclsOpt(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_elabBinderViews___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkFreshId___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_elabFunBinderViews___spec__1___rarg___boxed(lean_object*, lean_object*); @@ -509,14 +529,19 @@ lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_propagat lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__5; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___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* l_Lean_Elab_Term_quoteAutoTactic___closed__13; +lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__27; +lean_object* l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3(lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_elabBinderViews_loop___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_isClassImp_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__9; lean_object* l_Lean_Elab_Term_expandMatchAltsIntoMatch(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandMatchAltsIntoMatch___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabDepArrow(lean_object*); +lean_object* l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandFunBinders_loop___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabLetDeclAux_match__1___rarg(lean_object*, lean_object*); +lean_object* l_Lean_Elab_getBetterRef(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__36; uint8_t lean_string_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__1; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -524,6 +549,7 @@ uint8_t lean_nat_dec_lt(lean_object*, lean_object*); extern lean_object* l_Lean_Meta_mkArrow___rarg___closed__2; lean_object* l_Lean_Elab_Term_elabBinder(lean_object*); lean_object* lean_add_decl(lean_object*, lean_object*); +uint8_t l_Lean_Syntax_isAntiquotSplice(lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderType(lean_object* x_1, lean_object* x_2) { _start: { @@ -956,7 +982,7 @@ static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAuto _start: { lean_object* x_1; -x_1 = lean_mk_string("invalic auto tactic, antiquotation is not allowed"); +x_1 = lean_mk_string("Array.push"); return x_1; } } @@ -965,16 +991,55 @@ _start: { lean_object* x_1; lean_object* x_2; x_1 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__1; -x_2 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_2, 0, x_1); +x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__3() { _start: { +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__1; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__2; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("push"); +return x_1; +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("invalid auto tactic, antiquotation is not allowed"); +return x_1; +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__6() { +_start: +{ lean_object* x_1; lean_object* x_2; -x_1 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__2; +x_1 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__5; +x_2 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__6; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -1019,7 +1084,7 @@ goto block_58; else { uint8_t x_62; -x_62 = l_Lean_Elab_Term_Quotation_isAntiquotSplice(x_26); +x_62 = l_Lean_Syntax_isAntiquotSplice(x_26); if (x_62 == 0) { lean_object* x_63; @@ -1035,7 +1100,7 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_64 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__3; +x_64 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__7; x_65 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(x_26, x_64, x_10, x_11, x_12, x_13, x_14, x_15, x_16); lean_dec(x_15); lean_dec(x_13); @@ -1093,7 +1158,7 @@ lean_inc(x_35); x_36 = lean_ctor_get(x_34, 1); lean_inc(x_36); lean_dec(x_34); -x_37 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__4; +x_37 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__4; lean_inc(x_3); x_38 = lean_name_mk_string(x_3, x_37); lean_inc(x_38); @@ -1106,7 +1171,7 @@ lean_inc(x_5); x_41 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_41, 0, x_40); lean_ctor_set(x_41, 1, x_5); -x_42 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__3; +x_42 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__3; lean_inc(x_2); x_43 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_43, 0, x_2); @@ -1204,7 +1269,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__1; x_2 = l_Lean_Elab_Term_quoteAutoTactic___closed__2; -x_3 = lean_unsigned_to_nat(57u); +x_3 = lean_unsigned_to_nat(56u); x_4 = lean_unsigned_to_nat(28u); x_5 = l_Lean_Syntax_strLitToAtom___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -1214,52 +1279,49 @@ return x_6; static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__4() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_261____closed__5; -x_2 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_3 = lean_array_push(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string("Array.empty"); +return x_1; } } static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__5() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; +lean_object* x_1; lean_object* x_2; x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__4; -x_2 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_3 = lean_array_push(x_1, x_2); -return x_3; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; } } static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__6() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__5; -x_2 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_3 = lean_array_push(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_Elab_Term_quoteAutoTactic___closed__4; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Elab_Term_quoteAutoTactic___closed__5; +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_Lean_Elab_Term_quoteAutoTactic___closed__7() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__6; -x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_261____closed__21; -x_3 = lean_array_push(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string("empty"); +return x_1; } } static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_261____closed__2; +x_1 = l_Array_term_____x5b___x3a___x5d___closed__2; x_2 = l_Lean_Elab_Term_quoteAutoTactic___closed__7; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); +x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } @@ -1267,31 +1329,275 @@ static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_empty___closed__1; +x_1 = lean_box(0); x_2 = l_Lean_Elab_Term_quoteAutoTactic___closed__8; -x_3 = lean_array_push(x_1, x_2); +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); return x_3; } } static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__10() { _start: { +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_quoteAutoTactic___closed__9; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__11() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Syntax.node"); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__11; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__11; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Elab_Term_quoteAutoTactic___closed__12; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_myMacro____x40_Init_Notation___hyg_11167____closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__14; +x_2 = l_Lean_Meta_DiscrTree_Trie_format___rarg___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Util_0__Lean_Elab_evalSyntaxConstantUnsafe___closed__1; +x_2 = l_Lean_Meta_DiscrTree_Trie_format___rarg___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__17() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_quoteAutoTactic___closed__16; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__18() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_quoteAutoTactic___closed__17; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__19() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Syntax.atom"); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__20() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__19; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__21() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__19; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Elab_Term_quoteAutoTactic___closed__20; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__22() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("atom"); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__23() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__14; +x_2 = l_Lean_Elab_Term_quoteAutoTactic___closed__22; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__24() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Util_0__Lean_Elab_evalSyntaxConstantUnsafe___closed__1; +x_2 = l_Lean_Elab_Term_quoteAutoTactic___closed__22; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__25() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_quoteAutoTactic___closed__24; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__26() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_quoteAutoTactic___closed__25; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__27() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_261____closed__5; +x_2 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__28() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__27; +x_2 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__29() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__28; +x_2 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__30() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__29; +x_2 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_261____closed__21; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__31() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_261____closed__2; +x_2 = l_Lean_Elab_Term_quoteAutoTactic___closed__30; +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_Term_quoteAutoTactic___closed__32() { +_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_quoteAutoTactic___closed__31; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__33() { +_start: +{ lean_object* x_1; x_1 = lean_mk_string("emptyC"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__11() { +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__34() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; -x_2 = l_Lean_Elab_Term_quoteAutoTactic___closed__10; +x_2 = l_Lean_Elab_Term_quoteAutoTactic___closed__33; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__12() { +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__35() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -1301,73 +1607,73 @@ x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__13() { +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__36() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__11; -x_2 = l_Lean_Elab_Term_quoteAutoTactic___closed__12; +x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__34; +x_2 = l_Lean_Elab_Term_quoteAutoTactic___closed__35; 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_Term_quoteAutoTactic___closed__14() { +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__37() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__9; -x_2 = l_Lean_Elab_Term_quoteAutoTactic___closed__13; +x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__32; +x_2 = l_Lean_Elab_Term_quoteAutoTactic___closed__36; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__15() { +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__38() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_choiceKind___closed__2; -x_2 = l_Lean_Elab_Term_quoteAutoTactic___closed__14; +x_2 = l_Lean_Elab_Term_quoteAutoTactic___closed__37; 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_Term_quoteAutoTactic___closed__16() { +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__39() { _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_quoteAutoTactic___closed__15; +x_2 = l_Lean_Elab_Term_quoteAutoTactic___closed__38; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__17() { +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__40() { _start: { lean_object* x_1; -x_1 = lean_mk_string("invalic auto tactic, identifier is not allowed"); +x_1 = lean_mk_string("invalid auto tactic, identifier is not allowed"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__18() { +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__41() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__17; +x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__40; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__19() { +static lean_object* _init_l_Lean_Elab_Term_quoteAutoTactic___closed__42() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__18; +x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__41; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -1417,12 +1723,12 @@ lean_inc(x_23); x_24 = lean_ctor_get(x_22, 1); lean_inc(x_24); lean_dec(x_22); -x_25 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__6; +x_25 = l_Lean_Elab_Term_quoteAutoTactic___closed__8; x_26 = l_Lean_addMacroScope(x_23, x_25, x_20); x_27 = lean_box(0); x_28 = l_Lean_instInhabitedSourceInfo___closed__1; -x_29 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__4; -x_30 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__8; +x_29 = l_Lean_Elab_Term_quoteAutoTactic___closed__6; +x_30 = l_Lean_Elab_Term_quoteAutoTactic___closed__10; x_31 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_31, 0, x_28); lean_ctor_set(x_31, 1, x_29); @@ -1467,10 +1773,10 @@ if (x_43 == 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; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; x_44 = lean_ctor_get(x_42, 0); -x_45 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__13; +x_45 = l_Lean_Elab_Term_quoteAutoTactic___closed__15; x_46 = l_Lean_addMacroScope(x_44, x_45, x_40); -x_47 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__11; -x_48 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__16; +x_47 = l_Lean_Elab_Term_quoteAutoTactic___closed__13; +x_48 = l_Lean_Elab_Term_quoteAutoTactic___closed__18; x_49 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_49, 0, x_28); lean_ctor_set(x_49, 1, x_47); @@ -1500,10 +1806,10 @@ x_60 = lean_ctor_get(x_42, 1); lean_inc(x_60); lean_inc(x_59); lean_dec(x_42); -x_61 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__13; +x_61 = l_Lean_Elab_Term_quoteAutoTactic___closed__15; x_62 = l_Lean_addMacroScope(x_59, x_61, x_40); -x_63 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__11; -x_64 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__16; +x_63 = l_Lean_Elab_Term_quoteAutoTactic___closed__13; +x_64 = l_Lean_Elab_Term_quoteAutoTactic___closed__18; x_65 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_65, 0, x_28); lean_ctor_set(x_65, 1, x_63); @@ -1575,12 +1881,12 @@ lean_inc(x_84); x_85 = lean_ctor_get(x_83, 1); lean_inc(x_85); lean_dec(x_83); -x_86 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__6; +x_86 = l_Lean_Elab_Term_quoteAutoTactic___closed__8; x_87 = l_Lean_addMacroScope(x_84, x_86, x_81); x_88 = lean_box(0); x_89 = l_Lean_instInhabitedSourceInfo___closed__1; -x_90 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__4; -x_91 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__8; +x_90 = l_Lean_Elab_Term_quoteAutoTactic___closed__6; +x_91 = l_Lean_Elab_Term_quoteAutoTactic___closed__10; x_92 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_92, 0, x_89); lean_ctor_set(x_92, 1, x_90); @@ -1632,10 +1938,10 @@ if (lean_is_exclusive(x_103)) { lean_dec_ref(x_103); x_106 = lean_box(0); } -x_107 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__13; +x_107 = l_Lean_Elab_Term_quoteAutoTactic___closed__15; x_108 = l_Lean_addMacroScope(x_104, x_107, x_101); -x_109 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__11; -x_110 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__16; +x_109 = l_Lean_Elab_Term_quoteAutoTactic___closed__13; +x_110 = l_Lean_Elab_Term_quoteAutoTactic___closed__18; x_111 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_111, 0, x_89); lean_ctor_set(x_111, 1, x_109); @@ -1702,7 +2008,7 @@ else lean_object* x_127; lean_object* x_128; lean_dec(x_14); lean_dec(x_13); -x_127 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__3; +x_127 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__7; x_128 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(x_1, x_127, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); @@ -1740,11 +2046,11 @@ if (x_136 == 0) { lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; x_137 = lean_ctor_get(x_135, 0); -x_138 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__24; +x_138 = l_Lean_Elab_Term_quoteAutoTactic___closed__23; x_139 = l_Lean_addMacroScope(x_137, x_138, x_133); x_140 = l_Lean_instInhabitedSourceInfo___closed__1; -x_141 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__22; -x_142 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__27; +x_141 = l_Lean_Elab_Term_quoteAutoTactic___closed__21; +x_142 = l_Lean_Elab_Term_quoteAutoTactic___closed__26; x_143 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_143, 0, x_140); lean_ctor_set(x_143, 1, x_141); @@ -1754,7 +2060,7 @@ x_144 = l_Array_empty___closed__1; x_145 = lean_array_push(x_144, x_143); x_146 = l_Lean_Syntax_mkStrLit(x_130, x_140); lean_dec(x_130); -x_147 = l_Lean_Elab_Term_quoteAutoTactic___closed__16; +x_147 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_148 = lean_array_push(x_147, x_146); x_149 = l_Lean_nullKind___closed__2; lean_ctor_set_tag(x_1, 1); @@ -1776,11 +2082,11 @@ x_154 = lean_ctor_get(x_135, 1); lean_inc(x_154); lean_inc(x_153); lean_dec(x_135); -x_155 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__24; +x_155 = l_Lean_Elab_Term_quoteAutoTactic___closed__23; x_156 = l_Lean_addMacroScope(x_153, x_155, x_133); x_157 = l_Lean_instInhabitedSourceInfo___closed__1; -x_158 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__22; -x_159 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__27; +x_158 = l_Lean_Elab_Term_quoteAutoTactic___closed__21; +x_159 = l_Lean_Elab_Term_quoteAutoTactic___closed__26; x_160 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_160, 0, x_157); lean_ctor_set(x_160, 1, x_158); @@ -1790,7 +2096,7 @@ x_161 = l_Array_empty___closed__1; x_162 = lean_array_push(x_161, x_160); x_163 = l_Lean_Syntax_mkStrLit(x_130, x_157); lean_dec(x_130); -x_164 = l_Lean_Elab_Term_quoteAutoTactic___closed__16; +x_164 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_165 = lean_array_push(x_164, x_163); x_166 = l_Lean_nullKind___closed__2; lean_ctor_set_tag(x_1, 1); @@ -1838,11 +2144,11 @@ if (lean_is_exclusive(x_175)) { lean_dec_ref(x_175); x_178 = lean_box(0); } -x_179 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__24; +x_179 = l_Lean_Elab_Term_quoteAutoTactic___closed__23; x_180 = l_Lean_addMacroScope(x_176, x_179, x_173); x_181 = l_Lean_instInhabitedSourceInfo___closed__1; -x_182 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__22; -x_183 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__27; +x_182 = l_Lean_Elab_Term_quoteAutoTactic___closed__21; +x_183 = l_Lean_Elab_Term_quoteAutoTactic___closed__26; x_184 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_184, 0, x_181); lean_ctor_set(x_184, 1, x_182); @@ -1852,7 +2158,7 @@ x_185 = l_Array_empty___closed__1; x_186 = lean_array_push(x_185, x_184); x_187 = l_Lean_Syntax_mkStrLit(x_171, x_181); lean_dec(x_171); -x_188 = l_Lean_Elab_Term_quoteAutoTactic___closed__16; +x_188 = l_Lean_Elab_Term_quoteAutoTactic___closed__39; x_189 = lean_array_push(x_188, x_187); x_190 = l_Lean_nullKind___closed__2; x_191 = lean_alloc_ctor(1, 2, 0); @@ -1876,7 +2182,7 @@ return x_195; default: { lean_object* x_196; lean_object* x_197; -x_196 = l_Lean_Elab_Term_quoteAutoTactic___closed__19; +x_196 = l_Lean_Elab_Term_quoteAutoTactic___closed__42; x_197 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(x_1, x_196, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); @@ -8579,6 +8885,16 @@ static lean_object* _init_l_Lean_Elab_Term_expandFunBinders_loop___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_2 = l_Lean_Parser_Tactic_match___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_expandFunBinders_loop___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_instInhabitedSourceInfo___closed__1; x_2 = l_Lean_Parser_Tactic_match___closed__1; x_3 = lean_alloc_ctor(2, 2, 0); @@ -8587,29 +8903,67 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_expandFunBinders_loop___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_Term_expandFunBinders_loop___closed__1; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} static lean_object* _init_l_Lean_Elab_Term_expandFunBinders_loop___closed__3() { _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_expandFunBinders_loop___closed__2; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_expandFunBinders_loop___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_2 = l_Lean_Parser_Tactic_match___closed__5; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_expandFunBinders_loop___closed__5() { +_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_Notation___hyg_9707____closed__20; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_expandFunBinders_loop___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("with"); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_expandFunBinders_loop___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_instInhabitedSourceInfo___closed__1; -x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__14; +x_2 = l_Lean_Elab_Term_expandFunBinders_loop___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_Lean_Elab_Term_expandFunBinders_loop___closed__4() { +static lean_object* _init_l_Lean_Elab_Term_expandFunBinders_loop___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_2 = l_Lean_Parser_Tactic_matchAlts___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_expandFunBinders_loop___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -8621,38 +8975,48 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_expandFunBinders_loop___closed__5() { +static lean_object* _init_l_Lean_Elab_Term_expandFunBinders_loop___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_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_2 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_expandFunBinders_loop___closed__6() { +static lean_object* _init_l_Lean_Elab_Term_expandFunBinders_loop___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_nullKind___closed__2; -x_2 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_2 = l_Lean_Elab_Term_expandFunBinders_loop___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; } } -static lean_object* _init_l_Lean_Elab_Term_expandFunBinders_loop___closed__7() { +static lean_object* _init_l_Lean_Elab_Term_expandFunBinders_loop___closed__12() { _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_expandFunBinders_loop___closed__6; +x_2 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; x_3 = lean_array_push(x_1, x_2); return x_3; } } +static lean_object* _init_l_Lean_Elab_Term_expandFunBinders_loop___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_2 = l_Lean_Parser_Tactic_matchAlt___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} lean_object* l_Lean_Elab_Term_expandFunBinders_loop(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { @@ -8734,9 +9098,9 @@ if (x_40 == 0) lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; uint8_t x_73; lean_object* x_74; x_41 = lean_ctor_get(x_39, 0); lean_dec(x_41); -x_42 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_42 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_43 = lean_array_push(x_42, x_21); -x_44 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_44 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_45 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_45, 0, x_44); lean_ctor_set(x_45, 1, x_43); @@ -8746,11 +9110,11 @@ x_48 = l_Lean_nullKind___closed__2; x_49 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_49, 0, x_48); lean_ctor_set(x_49, 1, x_47); -x_50 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_50 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_51 = lean_array_push(x_50, x_49); x_52 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_53 = lean_array_push(x_51, x_52); -x_54 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_54 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_55 = lean_array_push(x_53, x_54); x_56 = lean_array_push(x_46, x_19); x_57 = lean_alloc_ctor(1, 2, 0); @@ -8760,7 +9124,7 @@ x_58 = lean_array_push(x_46, x_57); x_59 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_60 = lean_array_push(x_58, x_59); x_61 = lean_array_push(x_60, x_35); -x_62 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_62 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_63 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_63, 0, x_62); lean_ctor_set(x_63, 1, x_61); @@ -8768,14 +9132,14 @@ x_64 = lean_array_push(x_46, x_63); x_65 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_65, 0, x_48); lean_ctor_set(x_65, 1, x_64); -x_66 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_66 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_67 = lean_array_push(x_66, x_65); -x_68 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_68 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_69 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_69, 0, x_68); lean_ctor_set(x_69, 1, x_67); x_70 = lean_array_push(x_55, x_69); -x_71 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_71 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_72 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_72, 0, x_71); lean_ctor_set(x_72, 1, x_70); @@ -8792,9 +9156,9 @@ lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean x_75 = lean_ctor_get(x_39, 1); lean_inc(x_75); lean_dec(x_39); -x_76 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_76 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_77 = lean_array_push(x_76, x_21); -x_78 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_78 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_79 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_79, 0, x_78); lean_ctor_set(x_79, 1, x_77); @@ -8804,11 +9168,11 @@ x_82 = l_Lean_nullKind___closed__2; x_83 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_83, 0, x_82); lean_ctor_set(x_83, 1, x_81); -x_84 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_84 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_85 = lean_array_push(x_84, x_83); x_86 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_87 = lean_array_push(x_85, x_86); -x_88 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_88 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_89 = lean_array_push(x_87, x_88); x_90 = lean_array_push(x_80, x_19); x_91 = lean_alloc_ctor(1, 2, 0); @@ -8818,7 +9182,7 @@ x_92 = lean_array_push(x_80, x_91); x_93 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_94 = lean_array_push(x_92, x_93); x_95 = lean_array_push(x_94, x_35); -x_96 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_96 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_97 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_97, 0, x_96); lean_ctor_set(x_97, 1, x_95); @@ -8826,14 +9190,14 @@ x_98 = lean_array_push(x_80, x_97); x_99 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_99, 0, x_82); lean_ctor_set(x_99, 1, x_98); -x_100 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_100 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_101 = lean_array_push(x_100, x_99); -x_102 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_102 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; 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_89, x_103); -x_105 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_105 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_106 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_106, 0, x_105); lean_ctor_set(x_106, 1, x_104); @@ -8869,9 +9233,9 @@ if (lean_is_exclusive(x_113)) { lean_dec_ref(x_113); x_115 = lean_box(0); } -x_116 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_116 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_117 = lean_array_push(x_116, x_21); -x_118 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_118 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_119 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_119, 0, x_118); lean_ctor_set(x_119, 1, x_117); @@ -8881,11 +9245,11 @@ x_122 = l_Lean_nullKind___closed__2; x_123 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_123, 0, x_122); lean_ctor_set(x_123, 1, x_121); -x_124 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_124 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_125 = lean_array_push(x_124, x_123); x_126 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_127 = lean_array_push(x_125, x_126); -x_128 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_128 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_129 = lean_array_push(x_127, x_128); x_130 = lean_array_push(x_120, x_19); x_131 = lean_alloc_ctor(1, 2, 0); @@ -8895,7 +9259,7 @@ x_132 = lean_array_push(x_120, x_131); x_133 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_134 = lean_array_push(x_132, x_133); x_135 = lean_array_push(x_134, x_110); -x_136 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_136 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_137 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_137, 0, x_136); lean_ctor_set(x_137, 1, x_135); @@ -8903,14 +9267,14 @@ x_138 = lean_array_push(x_120, x_137); x_139 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_139, 0, x_122); lean_ctor_set(x_139, 1, x_138); -x_140 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_140 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_141 = lean_array_push(x_140, x_139); -x_142 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_142 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_143 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_143, 0, x_142); lean_ctor_set(x_143, 1, x_141); x_144 = lean_array_push(x_129, x_143); -x_145 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_145 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_146 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_146, 0, x_145); lean_ctor_set(x_146, 1, x_144); @@ -8962,9 +9326,9 @@ if (lean_is_exclusive(x_156)) { lean_dec_ref(x_156); x_158 = lean_box(0); } -x_159 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_159 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_160 = lean_array_push(x_159, x_21); -x_161 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_161 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_162 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_162, 0, x_161); lean_ctor_set(x_162, 1, x_160); @@ -8974,11 +9338,11 @@ x_165 = l_Lean_nullKind___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 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_167 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_168 = lean_array_push(x_167, x_166); x_169 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_170 = lean_array_push(x_168, x_169); -x_171 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_171 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_172 = lean_array_push(x_170, x_171); x_173 = lean_array_push(x_163, x_19); x_174 = lean_alloc_ctor(1, 2, 0); @@ -8988,7 +9352,7 @@ x_175 = lean_array_push(x_163, x_174); x_176 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_177 = lean_array_push(x_175, x_176); x_178 = lean_array_push(x_177, x_152); -x_179 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_179 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_180 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_180, 0, x_179); lean_ctor_set(x_180, 1, x_178); @@ -8996,14 +9360,14 @@ x_181 = lean_array_push(x_163, x_180); x_182 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_182, 0, x_165); lean_ctor_set(x_182, 1, x_181); -x_183 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_183 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_184 = lean_array_push(x_183, x_182); -x_185 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_185 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_186 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_186, 0, x_185); lean_ctor_set(x_186, 1, x_184); x_187 = lean_array_push(x_172, x_186); -x_188 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_188 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_189 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_189, 0, x_188); lean_ctor_set(x_189, 1, x_187); @@ -9126,9 +9490,9 @@ if (x_226 == 0) 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; uint8_t x_243; x_227 = lean_ctor_get(x_225, 0); lean_dec(x_227); -x_228 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_228 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_229 = lean_array_push(x_228, x_207); -x_230 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_230 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_231 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_231, 0, x_230); lean_ctor_set(x_231, 1, x_229); @@ -9138,11 +9502,11 @@ x_234 = l_Lean_nullKind___closed__2; 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 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_236 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_237 = lean_array_push(x_236, x_235); x_238 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_239 = lean_array_push(x_237, x_238); -x_240 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_240 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_241 = lean_array_push(x_239, x_240); lean_inc(x_19); x_242 = lean_array_push(x_232, x_19); @@ -9160,7 +9524,7 @@ x_246 = lean_array_push(x_232, x_19); x_247 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_248 = lean_array_push(x_246, x_247); x_249 = lean_array_push(x_248, x_221); -x_250 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_250 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_251 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_251, 0, x_250); lean_ctor_set(x_251, 1, x_249); @@ -9168,14 +9532,14 @@ x_252 = lean_array_push(x_232, x_251); x_253 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_253, 0, x_234); lean_ctor_set(x_253, 1, x_252); -x_254 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_254 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_255 = lean_array_push(x_254, x_253); -x_256 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_256 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; 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_241, x_257); -x_259 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_259 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_260 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_260, 0, x_259); lean_ctor_set(x_260, 1, x_258); @@ -9197,7 +9561,7 @@ x_264 = lean_array_push(x_232, x_263); x_265 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_266 = lean_array_push(x_264, x_265); x_267 = lean_array_push(x_266, x_221); -x_268 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_268 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_269 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_269, 0, x_268); lean_ctor_set(x_269, 1, x_267); @@ -9205,14 +9569,14 @@ x_270 = lean_array_push(x_232, x_269); x_271 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_271, 0, x_234); lean_ctor_set(x_271, 1, x_270); -x_272 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_272 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_273 = lean_array_push(x_272, x_271); -x_274 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_274 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; 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_241, x_275); -x_277 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_277 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_278 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_278, 0, x_277); lean_ctor_set(x_278, 1, x_276); @@ -9230,9 +9594,9 @@ lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; x_281 = lean_ctor_get(x_225, 1); lean_inc(x_281); lean_dec(x_225); -x_282 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_282 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_283 = lean_array_push(x_282, x_207); -x_284 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_284 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_285 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_285, 0, x_284); lean_ctor_set(x_285, 1, x_283); @@ -9242,11 +9606,11 @@ x_288 = l_Lean_nullKind___closed__2; x_289 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_289, 0, x_288); lean_ctor_set(x_289, 1, x_287); -x_290 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_290 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_291 = lean_array_push(x_290, x_289); x_292 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_293 = lean_array_push(x_291, x_292); -x_294 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_294 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_295 = lean_array_push(x_293, x_294); lean_inc(x_19); x_296 = lean_array_push(x_286, x_19); @@ -9269,7 +9633,7 @@ x_299 = lean_array_push(x_286, x_298); x_300 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_301 = lean_array_push(x_299, x_300); x_302 = lean_array_push(x_301, x_221); -x_303 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_303 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_304 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_304, 0, x_303); lean_ctor_set(x_304, 1, x_302); @@ -9277,14 +9641,14 @@ x_305 = lean_array_push(x_286, x_304); x_306 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_306, 0, x_288); lean_ctor_set(x_306, 1, x_305); -x_307 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_307 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_308 = lean_array_push(x_307, x_306); -x_309 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_309 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_310 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_310, 0, x_309); lean_ctor_set(x_310, 1, x_308); x_311 = lean_array_push(x_295, x_310); -x_312 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_312 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_313 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_313, 0, x_312); lean_ctor_set(x_313, 1, x_311); @@ -9320,9 +9684,9 @@ if (lean_is_exclusive(x_320)) { lean_dec_ref(x_320); x_322 = lean_box(0); } -x_323 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_323 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_324 = lean_array_push(x_323, x_207); -x_325 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_325 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_326 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_326, 0, x_325); lean_ctor_set(x_326, 1, x_324); @@ -9332,11 +9696,11 @@ x_329 = l_Lean_nullKind___closed__2; x_330 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_330, 0, x_329); lean_ctor_set(x_330, 1, x_328); -x_331 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_331 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_332 = lean_array_push(x_331, x_330); x_333 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_334 = lean_array_push(x_332, x_333); -x_335 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_335 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_336 = lean_array_push(x_334, x_335); lean_inc(x_19); x_337 = lean_array_push(x_327, x_19); @@ -9359,7 +9723,7 @@ x_340 = lean_array_push(x_327, x_339); x_341 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_342 = lean_array_push(x_340, x_341); x_343 = lean_array_push(x_342, x_317); -x_344 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_344 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_345 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_345, 0, x_344); lean_ctor_set(x_345, 1, x_343); @@ -9367,14 +9731,14 @@ x_346 = lean_array_push(x_327, x_345); x_347 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_347, 0, x_329); lean_ctor_set(x_347, 1, x_346); -x_348 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_348 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_349 = lean_array_push(x_348, x_347); -x_350 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_350 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; 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_336, x_351); -x_353 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_353 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_354 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_354, 0, x_353); lean_ctor_set(x_354, 1, x_352); @@ -9426,9 +9790,9 @@ if (lean_is_exclusive(x_364)) { lean_dec_ref(x_364); x_366 = lean_box(0); } -x_367 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_367 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_368 = lean_array_push(x_367, x_207); -x_369 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_369 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_370 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_370, 0, x_369); lean_ctor_set(x_370, 1, x_368); @@ -9438,11 +9802,11 @@ x_373 = l_Lean_nullKind___closed__2; x_374 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_374, 0, x_373); lean_ctor_set(x_374, 1, x_372); -x_375 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_375 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_376 = lean_array_push(x_375, x_374); x_377 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_378 = lean_array_push(x_376, x_377); -x_379 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_379 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_380 = lean_array_push(x_378, x_379); lean_inc(x_19); x_381 = lean_array_push(x_371, x_19); @@ -9465,7 +9829,7 @@ x_384 = lean_array_push(x_371, x_383); x_385 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_386 = lean_array_push(x_384, x_385); x_387 = lean_array_push(x_386, x_360); -x_388 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_388 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_389 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_389, 0, x_388); lean_ctor_set(x_389, 1, x_387); @@ -9473,14 +9837,14 @@ x_390 = lean_array_push(x_371, x_389); x_391 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_391, 0, x_373); lean_ctor_set(x_391, 1, x_390); -x_392 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_392 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_393 = lean_array_push(x_392, x_391); -x_394 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_394 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; 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_380, x_395); -x_397 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_397 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_398 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_398, 0, x_397); lean_ctor_set(x_398, 1, x_396); @@ -9565,9 +9929,9 @@ if (x_426 == 0) lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; uint8_t x_443; x_427 = lean_ctor_get(x_425, 0); lean_dec(x_427); -x_428 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_428 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_429 = lean_array_push(x_428, x_407); -x_430 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_430 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_431 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_431, 0, x_430); lean_ctor_set(x_431, 1, x_429); @@ -9577,11 +9941,11 @@ x_434 = l_Lean_nullKind___closed__2; x_435 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_435, 0, x_434); lean_ctor_set(x_435, 1, x_433); -x_436 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_436 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_437 = lean_array_push(x_436, x_435); x_438 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_439 = lean_array_push(x_437, x_438); -x_440 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_440 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_441 = lean_array_push(x_439, x_440); lean_inc(x_19); x_442 = lean_array_push(x_432, x_19); @@ -9599,7 +9963,7 @@ x_446 = lean_array_push(x_432, x_19); x_447 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_448 = lean_array_push(x_446, x_447); x_449 = lean_array_push(x_448, x_421); -x_450 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_450 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_451 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_451, 0, x_450); lean_ctor_set(x_451, 1, x_449); @@ -9607,14 +9971,14 @@ x_452 = lean_array_push(x_432, x_451); x_453 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_453, 0, x_434); lean_ctor_set(x_453, 1, x_452); -x_454 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_454 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_455 = lean_array_push(x_454, x_453); -x_456 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_456 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_457 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_457, 0, x_456); lean_ctor_set(x_457, 1, x_455); x_458 = lean_array_push(x_441, x_457); -x_459 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_459 = l_Lean_Elab_Term_expandFunBinders_loop___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); @@ -9636,7 +10000,7 @@ x_464 = lean_array_push(x_432, x_463); x_465 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_466 = lean_array_push(x_464, x_465); x_467 = lean_array_push(x_466, x_421); -x_468 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_468 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_469 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_469, 0, x_468); lean_ctor_set(x_469, 1, x_467); @@ -9644,14 +10008,14 @@ x_470 = lean_array_push(x_432, x_469); x_471 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_471, 0, x_434); lean_ctor_set(x_471, 1, x_470); -x_472 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_472 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_473 = lean_array_push(x_472, x_471); -x_474 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_474 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_475 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_475, 0, x_474); lean_ctor_set(x_475, 1, x_473); x_476 = lean_array_push(x_441, x_475); -x_477 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_477 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_478 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_478, 0, x_477); lean_ctor_set(x_478, 1, x_476); @@ -9669,9 +10033,9 @@ lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; x_481 = lean_ctor_get(x_425, 1); lean_inc(x_481); lean_dec(x_425); -x_482 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_482 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_483 = lean_array_push(x_482, x_407); -x_484 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_484 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_485 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_485, 0, x_484); lean_ctor_set(x_485, 1, x_483); @@ -9681,11 +10045,11 @@ x_488 = l_Lean_nullKind___closed__2; x_489 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_489, 0, x_488); lean_ctor_set(x_489, 1, x_487); -x_490 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_490 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_491 = lean_array_push(x_490, x_489); x_492 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_493 = lean_array_push(x_491, x_492); -x_494 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_494 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_495 = lean_array_push(x_493, x_494); lean_inc(x_19); x_496 = lean_array_push(x_486, x_19); @@ -9708,7 +10072,7 @@ x_499 = lean_array_push(x_486, x_498); x_500 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_501 = lean_array_push(x_499, x_500); x_502 = lean_array_push(x_501, x_421); -x_503 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_503 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_504 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_504, 0, x_503); lean_ctor_set(x_504, 1, x_502); @@ -9716,14 +10080,14 @@ x_505 = lean_array_push(x_486, x_504); x_506 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_506, 0, x_488); lean_ctor_set(x_506, 1, x_505); -x_507 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_507 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_508 = lean_array_push(x_507, x_506); -x_509 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_509 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_510 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_510, 0, x_509); lean_ctor_set(x_510, 1, x_508); x_511 = lean_array_push(x_495, x_510); -x_512 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_512 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_513 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_513, 0, x_512); lean_ctor_set(x_513, 1, x_511); @@ -9759,9 +10123,9 @@ if (lean_is_exclusive(x_520)) { lean_dec_ref(x_520); x_522 = lean_box(0); } -x_523 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_523 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_524 = lean_array_push(x_523, x_407); -x_525 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_525 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_526 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_526, 0, x_525); lean_ctor_set(x_526, 1, x_524); @@ -9771,11 +10135,11 @@ x_529 = l_Lean_nullKind___closed__2; x_530 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_530, 0, x_529); lean_ctor_set(x_530, 1, x_528); -x_531 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_531 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_532 = lean_array_push(x_531, x_530); x_533 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_534 = lean_array_push(x_532, x_533); -x_535 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_535 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_536 = lean_array_push(x_534, x_535); lean_inc(x_19); x_537 = lean_array_push(x_527, x_19); @@ -9798,7 +10162,7 @@ x_540 = lean_array_push(x_527, x_539); x_541 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_542 = lean_array_push(x_540, x_541); x_543 = lean_array_push(x_542, x_517); -x_544 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_544 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_545 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_545, 0, x_544); lean_ctor_set(x_545, 1, x_543); @@ -9806,14 +10170,14 @@ x_546 = lean_array_push(x_527, x_545); x_547 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_547, 0, x_529); lean_ctor_set(x_547, 1, x_546); -x_548 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_548 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_549 = lean_array_push(x_548, x_547); -x_550 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_550 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_551 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_551, 0, x_550); lean_ctor_set(x_551, 1, x_549); x_552 = lean_array_push(x_536, x_551); -x_553 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_553 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_554 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_554, 0, x_553); lean_ctor_set(x_554, 1, x_552); @@ -9865,9 +10229,9 @@ if (lean_is_exclusive(x_564)) { lean_dec_ref(x_564); x_566 = lean_box(0); } -x_567 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_567 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_568 = lean_array_push(x_567, x_407); -x_569 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_569 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_570 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_570, 0, x_569); lean_ctor_set(x_570, 1, x_568); @@ -9877,11 +10241,11 @@ x_573 = l_Lean_nullKind___closed__2; x_574 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_574, 0, x_573); lean_ctor_set(x_574, 1, x_572); -x_575 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_575 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_576 = lean_array_push(x_575, x_574); x_577 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_578 = lean_array_push(x_576, x_577); -x_579 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_579 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_580 = lean_array_push(x_578, x_579); lean_inc(x_19); x_581 = lean_array_push(x_571, x_19); @@ -9904,7 +10268,7 @@ x_584 = lean_array_push(x_571, x_583); x_585 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_586 = lean_array_push(x_584, x_585); x_587 = lean_array_push(x_586, x_560); -x_588 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_588 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_589 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_589, 0, x_588); lean_ctor_set(x_589, 1, x_587); @@ -9912,14 +10276,14 @@ x_590 = lean_array_push(x_571, x_589); x_591 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_591, 0, x_573); lean_ctor_set(x_591, 1, x_590); -x_592 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_592 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_593 = lean_array_push(x_592, x_591); -x_594 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_594 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_595 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_595, 0, x_594); lean_ctor_set(x_595, 1, x_593); x_596 = lean_array_push(x_580, x_595); -x_597 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_597 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_598 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_598, 0, x_597); lean_ctor_set(x_598, 1, x_596); @@ -10003,9 +10367,9 @@ if (x_626 == 0) 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; uint8_t x_643; x_627 = lean_ctor_get(x_625, 0); lean_dec(x_627); -x_628 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_628 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_629 = lean_array_push(x_628, x_607); -x_630 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_630 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_631 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_631, 0, x_630); lean_ctor_set(x_631, 1, x_629); @@ -10015,11 +10379,11 @@ x_634 = l_Lean_nullKind___closed__2; x_635 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_635, 0, x_634); lean_ctor_set(x_635, 1, x_633); -x_636 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_636 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_637 = lean_array_push(x_636, x_635); x_638 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_639 = lean_array_push(x_637, x_638); -x_640 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_640 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_641 = lean_array_push(x_639, x_640); lean_inc(x_19); x_642 = lean_array_push(x_632, x_19); @@ -10037,7 +10401,7 @@ x_646 = lean_array_push(x_632, x_19); x_647 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_648 = lean_array_push(x_646, x_647); x_649 = lean_array_push(x_648, x_621); -x_650 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_650 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_651 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_651, 0, x_650); lean_ctor_set(x_651, 1, x_649); @@ -10045,14 +10409,14 @@ x_652 = lean_array_push(x_632, x_651); x_653 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_653, 0, x_634); lean_ctor_set(x_653, 1, x_652); -x_654 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_654 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_655 = lean_array_push(x_654, x_653); -x_656 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_656 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_657 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_657, 0, x_656); lean_ctor_set(x_657, 1, x_655); x_658 = lean_array_push(x_641, x_657); -x_659 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_659 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_660 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_660, 0, x_659); lean_ctor_set(x_660, 1, x_658); @@ -10074,7 +10438,7 @@ x_664 = lean_array_push(x_632, x_663); x_665 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_666 = lean_array_push(x_664, x_665); x_667 = lean_array_push(x_666, x_621); -x_668 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_668 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_669 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_669, 0, x_668); lean_ctor_set(x_669, 1, x_667); @@ -10082,14 +10446,14 @@ x_670 = lean_array_push(x_632, x_669); x_671 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_671, 0, x_634); lean_ctor_set(x_671, 1, x_670); -x_672 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_672 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_673 = lean_array_push(x_672, x_671); -x_674 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_674 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_675 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_675, 0, x_674); lean_ctor_set(x_675, 1, x_673); x_676 = lean_array_push(x_641, x_675); -x_677 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_677 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_678 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_678, 0, x_677); lean_ctor_set(x_678, 1, x_676); @@ -10107,9 +10471,9 @@ lean_object* x_681; lean_object* x_682; lean_object* x_683; lean_object* x_684; x_681 = lean_ctor_get(x_625, 1); lean_inc(x_681); lean_dec(x_625); -x_682 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_682 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_683 = lean_array_push(x_682, x_607); -x_684 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_684 = l_Lean_Elab_Term_expandFunBinders_loop___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); @@ -10119,11 +10483,11 @@ x_688 = l_Lean_nullKind___closed__2; x_689 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_689, 0, x_688); lean_ctor_set(x_689, 1, x_687); -x_690 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_690 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_691 = lean_array_push(x_690, x_689); x_692 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_693 = lean_array_push(x_691, x_692); -x_694 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_694 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_695 = lean_array_push(x_693, x_694); lean_inc(x_19); x_696 = lean_array_push(x_686, x_19); @@ -10146,7 +10510,7 @@ x_699 = lean_array_push(x_686, x_698); x_700 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_701 = lean_array_push(x_699, x_700); x_702 = lean_array_push(x_701, x_621); -x_703 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_703 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_704 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_704, 0, x_703); lean_ctor_set(x_704, 1, x_702); @@ -10154,14 +10518,14 @@ x_705 = lean_array_push(x_686, x_704); x_706 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_706, 0, x_688); lean_ctor_set(x_706, 1, x_705); -x_707 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_707 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_708 = lean_array_push(x_707, x_706); -x_709 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_709 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_710 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_710, 0, x_709); lean_ctor_set(x_710, 1, x_708); x_711 = lean_array_push(x_695, x_710); -x_712 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_712 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_713 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_713, 0, x_712); lean_ctor_set(x_713, 1, x_711); @@ -10197,9 +10561,9 @@ if (lean_is_exclusive(x_720)) { lean_dec_ref(x_720); x_722 = lean_box(0); } -x_723 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_723 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_724 = lean_array_push(x_723, x_607); -x_725 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_725 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_726 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_726, 0, x_725); lean_ctor_set(x_726, 1, x_724); @@ -10209,11 +10573,11 @@ x_729 = l_Lean_nullKind___closed__2; x_730 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_730, 0, x_729); lean_ctor_set(x_730, 1, x_728); -x_731 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_731 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_732 = lean_array_push(x_731, x_730); x_733 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_734 = lean_array_push(x_732, x_733); -x_735 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_735 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_736 = lean_array_push(x_734, x_735); lean_inc(x_19); x_737 = lean_array_push(x_727, x_19); @@ -10236,7 +10600,7 @@ x_740 = lean_array_push(x_727, x_739); x_741 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_742 = lean_array_push(x_740, x_741); x_743 = lean_array_push(x_742, x_717); -x_744 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_744 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_745 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_745, 0, x_744); lean_ctor_set(x_745, 1, x_743); @@ -10244,14 +10608,14 @@ x_746 = lean_array_push(x_727, x_745); x_747 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_747, 0, x_729); lean_ctor_set(x_747, 1, x_746); -x_748 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_748 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_749 = lean_array_push(x_748, x_747); -x_750 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_750 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_751 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_751, 0, x_750); lean_ctor_set(x_751, 1, x_749); x_752 = lean_array_push(x_736, x_751); -x_753 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_753 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_754 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_754, 0, x_753); lean_ctor_set(x_754, 1, x_752); @@ -10303,9 +10667,9 @@ if (lean_is_exclusive(x_764)) { lean_dec_ref(x_764); x_766 = lean_box(0); } -x_767 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_767 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_768 = lean_array_push(x_767, x_607); -x_769 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_769 = l_Lean_Elab_Term_expandFunBinders_loop___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); @@ -10315,11 +10679,11 @@ x_773 = l_Lean_nullKind___closed__2; x_774 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_774, 0, x_773); lean_ctor_set(x_774, 1, x_772); -x_775 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_775 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_776 = lean_array_push(x_775, x_774); x_777 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_778 = lean_array_push(x_776, x_777); -x_779 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_779 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_780 = lean_array_push(x_778, x_779); lean_inc(x_19); x_781 = lean_array_push(x_771, x_19); @@ -10342,7 +10706,7 @@ x_784 = lean_array_push(x_771, x_783); x_785 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_786 = lean_array_push(x_784, x_785); x_787 = lean_array_push(x_786, x_760); -x_788 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_788 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_789 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_789, 0, x_788); lean_ctor_set(x_789, 1, x_787); @@ -10350,14 +10714,14 @@ x_790 = lean_array_push(x_771, x_789); x_791 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_791, 0, x_773); lean_ctor_set(x_791, 1, x_790); -x_792 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_792 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_793 = lean_array_push(x_792, x_791); -x_794 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_794 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_795 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_795, 0, x_794); lean_ctor_set(x_795, 1, x_793); x_796 = lean_array_push(x_780, x_795); -x_797 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_797 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_798 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_798, 0, x_797); lean_ctor_set(x_798, 1, x_796); @@ -10465,9 +10829,9 @@ if (x_836 == 0) 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; uint8_t x_853; x_837 = lean_ctor_get(x_835, 0); lean_dec(x_837); -x_838 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_838 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_839 = lean_array_push(x_838, x_817); -x_840 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_840 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_841 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_841, 0, x_840); lean_ctor_set(x_841, 1, x_839); @@ -10477,11 +10841,11 @@ x_844 = l_Lean_nullKind___closed__2; x_845 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_845, 0, x_844); lean_ctor_set(x_845, 1, x_843); -x_846 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_846 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_847 = lean_array_push(x_846, x_845); x_848 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_849 = lean_array_push(x_847, x_848); -x_850 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_850 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_851 = lean_array_push(x_849, x_850); lean_inc(x_19); x_852 = lean_array_push(x_842, x_19); @@ -10499,7 +10863,7 @@ x_856 = lean_array_push(x_842, x_19); x_857 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_858 = lean_array_push(x_856, x_857); x_859 = lean_array_push(x_858, x_831); -x_860 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_860 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_861 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_861, 0, x_860); lean_ctor_set(x_861, 1, x_859); @@ -10507,14 +10871,14 @@ x_862 = lean_array_push(x_842, x_861); x_863 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_863, 0, x_844); lean_ctor_set(x_863, 1, x_862); -x_864 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_864 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_865 = lean_array_push(x_864, x_863); -x_866 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_866 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_867 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_867, 0, x_866); lean_ctor_set(x_867, 1, x_865); x_868 = lean_array_push(x_851, x_867); -x_869 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_869 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_870 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_870, 0, x_869); lean_ctor_set(x_870, 1, x_868); @@ -10536,7 +10900,7 @@ x_874 = lean_array_push(x_842, x_873); x_875 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_876 = lean_array_push(x_874, x_875); x_877 = lean_array_push(x_876, x_831); -x_878 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_878 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_879 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_879, 0, x_878); lean_ctor_set(x_879, 1, x_877); @@ -10544,14 +10908,14 @@ x_880 = lean_array_push(x_842, x_879); x_881 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_881, 0, x_844); lean_ctor_set(x_881, 1, x_880); -x_882 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_882 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_883 = lean_array_push(x_882, x_881); -x_884 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_884 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_885 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_885, 0, x_884); lean_ctor_set(x_885, 1, x_883); x_886 = lean_array_push(x_851, x_885); -x_887 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_887 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_888 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_888, 0, x_887); lean_ctor_set(x_888, 1, x_886); @@ -10569,9 +10933,9 @@ lean_object* x_891; lean_object* x_892; lean_object* x_893; lean_object* x_894; x_891 = lean_ctor_get(x_835, 1); lean_inc(x_891); lean_dec(x_835); -x_892 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_892 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_893 = lean_array_push(x_892, x_817); -x_894 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_894 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_895 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_895, 0, x_894); lean_ctor_set(x_895, 1, x_893); @@ -10581,11 +10945,11 @@ x_898 = l_Lean_nullKind___closed__2; x_899 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_899, 0, x_898); lean_ctor_set(x_899, 1, x_897); -x_900 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_900 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_901 = lean_array_push(x_900, x_899); x_902 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_903 = lean_array_push(x_901, x_902); -x_904 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_904 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_905 = lean_array_push(x_903, x_904); lean_inc(x_19); x_906 = lean_array_push(x_896, x_19); @@ -10608,7 +10972,7 @@ x_909 = lean_array_push(x_896, x_908); x_910 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_911 = lean_array_push(x_909, x_910); x_912 = lean_array_push(x_911, x_831); -x_913 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_913 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_914 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_914, 0, x_913); lean_ctor_set(x_914, 1, x_912); @@ -10616,14 +10980,14 @@ x_915 = lean_array_push(x_896, x_914); x_916 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_916, 0, x_898); lean_ctor_set(x_916, 1, x_915); -x_917 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_917 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_918 = lean_array_push(x_917, x_916); -x_919 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_919 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_920 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_920, 0, x_919); lean_ctor_set(x_920, 1, x_918); x_921 = lean_array_push(x_905, x_920); -x_922 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_922 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_923 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_923, 0, x_922); lean_ctor_set(x_923, 1, x_921); @@ -10659,9 +11023,9 @@ if (lean_is_exclusive(x_930)) { lean_dec_ref(x_930); x_932 = lean_box(0); } -x_933 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_933 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_934 = lean_array_push(x_933, x_817); -x_935 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_935 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_936 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_936, 0, x_935); lean_ctor_set(x_936, 1, x_934); @@ -10671,11 +11035,11 @@ x_939 = l_Lean_nullKind___closed__2; x_940 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_940, 0, x_939); lean_ctor_set(x_940, 1, x_938); -x_941 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_941 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_942 = lean_array_push(x_941, x_940); x_943 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_944 = lean_array_push(x_942, x_943); -x_945 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_945 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_946 = lean_array_push(x_944, x_945); lean_inc(x_19); x_947 = lean_array_push(x_937, x_19); @@ -10698,7 +11062,7 @@ x_950 = lean_array_push(x_937, x_949); x_951 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_952 = lean_array_push(x_950, x_951); x_953 = lean_array_push(x_952, x_927); -x_954 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_954 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_955 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_955, 0, x_954); lean_ctor_set(x_955, 1, x_953); @@ -10706,14 +11070,14 @@ x_956 = lean_array_push(x_937, x_955); x_957 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_957, 0, x_939); lean_ctor_set(x_957, 1, x_956); -x_958 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_958 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_959 = lean_array_push(x_958, x_957); -x_960 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_960 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_961 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_961, 0, x_960); lean_ctor_set(x_961, 1, x_959); x_962 = lean_array_push(x_946, x_961); -x_963 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_963 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_964 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_964, 0, x_963); lean_ctor_set(x_964, 1, x_962); @@ -10765,9 +11129,9 @@ if (lean_is_exclusive(x_974)) { lean_dec_ref(x_974); x_976 = lean_box(0); } -x_977 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_977 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_978 = lean_array_push(x_977, x_817); -x_979 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_979 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_980 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_980, 0, x_979); lean_ctor_set(x_980, 1, x_978); @@ -10777,11 +11141,11 @@ x_983 = l_Lean_nullKind___closed__2; x_984 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_984, 0, x_983); lean_ctor_set(x_984, 1, x_982); -x_985 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_985 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_986 = lean_array_push(x_985, x_984); x_987 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_988 = lean_array_push(x_986, x_987); -x_989 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_989 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_990 = lean_array_push(x_988, x_989); lean_inc(x_19); x_991 = lean_array_push(x_981, x_19); @@ -10804,7 +11168,7 @@ x_994 = lean_array_push(x_981, x_993); x_995 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_996 = lean_array_push(x_994, x_995); x_997 = lean_array_push(x_996, x_970); -x_998 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_998 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_999 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_999, 0, x_998); lean_ctor_set(x_999, 1, x_997); @@ -10812,14 +11176,14 @@ x_1000 = lean_array_push(x_981, x_999); x_1001 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1001, 0, x_983); lean_ctor_set(x_1001, 1, x_1000); -x_1002 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1002 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_1003 = lean_array_push(x_1002, x_1001); -x_1004 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1004 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_1005 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1005, 0, x_1004); lean_ctor_set(x_1005, 1, x_1003); x_1006 = lean_array_push(x_990, x_1005); -x_1007 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_1007 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_1008 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1008, 0, x_1007); lean_ctor_set(x_1008, 1, x_1006); @@ -10921,9 +11285,9 @@ if (x_1044 == 0) 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; uint8_t x_1061; x_1045 = lean_ctor_get(x_1043, 0); lean_dec(x_1045); -x_1046 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1046 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_1047 = lean_array_push(x_1046, x_1026); -x_1048 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_1048 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_1049 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1049, 0, x_1048); lean_ctor_set(x_1049, 1, x_1047); @@ -10933,11 +11297,11 @@ x_1052 = l_Lean_nullKind___closed__2; x_1053 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1053, 0, x_1052); lean_ctor_set(x_1053, 1, x_1051); -x_1054 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1054 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_1055 = lean_array_push(x_1054, x_1053); x_1056 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_1057 = lean_array_push(x_1055, x_1056); -x_1058 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1058 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_1059 = lean_array_push(x_1057, x_1058); lean_inc(x_19); x_1060 = lean_array_push(x_1050, x_19); @@ -10955,7 +11319,7 @@ x_1064 = lean_array_push(x_1050, x_19); x_1065 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_1066 = lean_array_push(x_1064, x_1065); x_1067 = lean_array_push(x_1066, x_1039); -x_1068 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1068 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_1069 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1069, 0, x_1068); lean_ctor_set(x_1069, 1, x_1067); @@ -10963,14 +11327,14 @@ x_1070 = lean_array_push(x_1050, x_1069); x_1071 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1071, 0, x_1052); lean_ctor_set(x_1071, 1, x_1070); -x_1072 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1072 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_1073 = lean_array_push(x_1072, x_1071); -x_1074 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1074 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; 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_1059, x_1075); -x_1077 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_1077 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_1078 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1078, 0, x_1077); lean_ctor_set(x_1078, 1, x_1076); @@ -10992,7 +11356,7 @@ x_1082 = lean_array_push(x_1050, x_1081); x_1083 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_1084 = lean_array_push(x_1082, x_1083); x_1085 = lean_array_push(x_1084, x_1039); -x_1086 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1086 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_1087 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1087, 0, x_1086); lean_ctor_set(x_1087, 1, x_1085); @@ -11000,14 +11364,14 @@ x_1088 = lean_array_push(x_1050, x_1087); x_1089 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1089, 0, x_1052); lean_ctor_set(x_1089, 1, x_1088); -x_1090 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1090 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_1091 = lean_array_push(x_1090, x_1089); -x_1092 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1092 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_1093 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1093, 0, x_1092); lean_ctor_set(x_1093, 1, x_1091); x_1094 = lean_array_push(x_1059, x_1093); -x_1095 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_1095 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_1096 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1096, 0, x_1095); lean_ctor_set(x_1096, 1, x_1094); @@ -11025,9 +11389,9 @@ lean_object* x_1099; lean_object* x_1100; lean_object* x_1101; lean_object* x_11 x_1099 = lean_ctor_get(x_1043, 1); lean_inc(x_1099); lean_dec(x_1043); -x_1100 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1100 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_1101 = lean_array_push(x_1100, x_1026); -x_1102 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_1102 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_1103 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1103, 0, x_1102); lean_ctor_set(x_1103, 1, x_1101); @@ -11037,11 +11401,11 @@ x_1106 = l_Lean_nullKind___closed__2; x_1107 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1107, 0, x_1106); lean_ctor_set(x_1107, 1, x_1105); -x_1108 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1108 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_1109 = lean_array_push(x_1108, x_1107); x_1110 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_1111 = lean_array_push(x_1109, x_1110); -x_1112 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1112 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_1113 = lean_array_push(x_1111, x_1112); lean_inc(x_19); x_1114 = lean_array_push(x_1104, x_19); @@ -11064,7 +11428,7 @@ x_1117 = lean_array_push(x_1104, x_1116); x_1118 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_1119 = lean_array_push(x_1117, x_1118); x_1120 = lean_array_push(x_1119, x_1039); -x_1121 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1121 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_1122 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1122, 0, x_1121); lean_ctor_set(x_1122, 1, x_1120); @@ -11072,14 +11436,14 @@ x_1123 = lean_array_push(x_1104, x_1122); x_1124 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1124, 0, x_1106); lean_ctor_set(x_1124, 1, x_1123); -x_1125 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1125 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_1126 = lean_array_push(x_1125, x_1124); -x_1127 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1127 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_1128 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1128, 0, x_1127); lean_ctor_set(x_1128, 1, x_1126); x_1129 = lean_array_push(x_1113, x_1128); -x_1130 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_1130 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_1131 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1131, 0, x_1130); lean_ctor_set(x_1131, 1, x_1129); @@ -11115,9 +11479,9 @@ if (lean_is_exclusive(x_1138)) { lean_dec_ref(x_1138); x_1140 = lean_box(0); } -x_1141 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1141 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_1142 = lean_array_push(x_1141, x_1026); -x_1143 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_1143 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_1144 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1144, 0, x_1143); lean_ctor_set(x_1144, 1, x_1142); @@ -11127,11 +11491,11 @@ x_1147 = l_Lean_nullKind___closed__2; x_1148 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1148, 0, x_1147); lean_ctor_set(x_1148, 1, x_1146); -x_1149 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1149 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_1150 = lean_array_push(x_1149, x_1148); x_1151 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_1152 = lean_array_push(x_1150, x_1151); -x_1153 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1153 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_1154 = lean_array_push(x_1152, x_1153); lean_inc(x_19); x_1155 = lean_array_push(x_1145, x_19); @@ -11154,7 +11518,7 @@ x_1158 = lean_array_push(x_1145, x_1157); x_1159 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_1160 = lean_array_push(x_1158, x_1159); x_1161 = lean_array_push(x_1160, x_1135); -x_1162 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1162 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_1163 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1163, 0, x_1162); lean_ctor_set(x_1163, 1, x_1161); @@ -11162,14 +11526,14 @@ x_1164 = lean_array_push(x_1145, x_1163); x_1165 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1165, 0, x_1147); lean_ctor_set(x_1165, 1, x_1164); -x_1166 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1166 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_1167 = lean_array_push(x_1166, x_1165); -x_1168 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1168 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_1169 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1169, 0, x_1168); lean_ctor_set(x_1169, 1, x_1167); x_1170 = lean_array_push(x_1154, x_1169); -x_1171 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_1171 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_1172 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1172, 0, x_1171); lean_ctor_set(x_1172, 1, x_1170); @@ -11221,9 +11585,9 @@ if (lean_is_exclusive(x_1182)) { lean_dec_ref(x_1182); x_1184 = lean_box(0); } -x_1185 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1185 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_1186 = lean_array_push(x_1185, x_1026); -x_1187 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_1187 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_1188 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1188, 0, x_1187); lean_ctor_set(x_1188, 1, x_1186); @@ -11233,11 +11597,11 @@ x_1191 = l_Lean_nullKind___closed__2; x_1192 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1192, 0, x_1191); lean_ctor_set(x_1192, 1, x_1190); -x_1193 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1193 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_1194 = lean_array_push(x_1193, x_1192); x_1195 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_1196 = lean_array_push(x_1194, x_1195); -x_1197 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1197 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_1198 = lean_array_push(x_1196, x_1197); lean_inc(x_19); x_1199 = lean_array_push(x_1189, x_19); @@ -11260,7 +11624,7 @@ x_1202 = lean_array_push(x_1189, x_1201); x_1203 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_1204 = lean_array_push(x_1202, x_1203); x_1205 = lean_array_push(x_1204, x_1178); -x_1206 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1206 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_1207 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1207, 0, x_1206); lean_ctor_set(x_1207, 1, x_1205); @@ -11268,14 +11632,14 @@ x_1208 = lean_array_push(x_1189, x_1207); x_1209 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1209, 0, x_1191); lean_ctor_set(x_1209, 1, x_1208); -x_1210 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1210 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_1211 = lean_array_push(x_1210, x_1209); -x_1212 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1212 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_1213 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1213, 0, x_1212); lean_ctor_set(x_1213, 1, x_1211); x_1214 = lean_array_push(x_1198, x_1213); -x_1215 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_1215 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_1216 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1216, 0, x_1215); lean_ctor_set(x_1216, 1, x_1214); @@ -11364,9 +11728,9 @@ if (x_1245 == 0) 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; uint8_t x_1262; x_1246 = lean_ctor_get(x_1244, 0); lean_dec(x_1246); -x_1247 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1247 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_1248 = lean_array_push(x_1247, x_1227); -x_1249 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_1249 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_1250 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1250, 0, x_1249); lean_ctor_set(x_1250, 1, x_1248); @@ -11376,11 +11740,11 @@ x_1253 = l_Lean_nullKind___closed__2; 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 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1255 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_1256 = lean_array_push(x_1255, x_1254); x_1257 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_1258 = lean_array_push(x_1256, x_1257); -x_1259 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1259 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_1260 = lean_array_push(x_1258, x_1259); lean_inc(x_19); x_1261 = lean_array_push(x_1251, x_19); @@ -11398,7 +11762,7 @@ x_1265 = lean_array_push(x_1251, x_19); x_1266 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_1267 = lean_array_push(x_1265, x_1266); x_1268 = lean_array_push(x_1267, x_1240); -x_1269 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1269 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_1270 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1270, 0, x_1269); lean_ctor_set(x_1270, 1, x_1268); @@ -11406,14 +11770,14 @@ x_1271 = lean_array_push(x_1251, x_1270); x_1272 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1272, 0, x_1253); lean_ctor_set(x_1272, 1, x_1271); -x_1273 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1273 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_1274 = lean_array_push(x_1273, x_1272); -x_1275 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1275 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_1276 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1276, 0, x_1275); lean_ctor_set(x_1276, 1, x_1274); x_1277 = lean_array_push(x_1260, x_1276); -x_1278 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_1278 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_1279 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1279, 0, x_1278); lean_ctor_set(x_1279, 1, x_1277); @@ -11435,7 +11799,7 @@ x_1283 = lean_array_push(x_1251, x_1282); x_1284 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_1285 = lean_array_push(x_1283, x_1284); x_1286 = lean_array_push(x_1285, x_1240); -x_1287 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1287 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_1288 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1288, 0, x_1287); lean_ctor_set(x_1288, 1, x_1286); @@ -11443,14 +11807,14 @@ x_1289 = lean_array_push(x_1251, x_1288); x_1290 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1290, 0, x_1253); lean_ctor_set(x_1290, 1, x_1289); -x_1291 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1291 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_1292 = lean_array_push(x_1291, x_1290); -x_1293 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1293 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; 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_1260, x_1294); -x_1296 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_1296 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_1297 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1297, 0, x_1296); lean_ctor_set(x_1297, 1, x_1295); @@ -11468,9 +11832,9 @@ lean_object* x_1300; lean_object* x_1301; lean_object* x_1302; lean_object* x_13 x_1300 = lean_ctor_get(x_1244, 1); lean_inc(x_1300); lean_dec(x_1244); -x_1301 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1301 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_1302 = lean_array_push(x_1301, x_1227); -x_1303 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_1303 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_1304 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1304, 0, x_1303); lean_ctor_set(x_1304, 1, x_1302); @@ -11480,11 +11844,11 @@ x_1307 = l_Lean_nullKind___closed__2; x_1308 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1308, 0, x_1307); lean_ctor_set(x_1308, 1, x_1306); -x_1309 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1309 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_1310 = lean_array_push(x_1309, x_1308); x_1311 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_1312 = lean_array_push(x_1310, x_1311); -x_1313 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1313 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_1314 = lean_array_push(x_1312, x_1313); lean_inc(x_19); x_1315 = lean_array_push(x_1305, x_19); @@ -11507,7 +11871,7 @@ x_1318 = lean_array_push(x_1305, x_1317); x_1319 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_1320 = lean_array_push(x_1318, x_1319); x_1321 = lean_array_push(x_1320, x_1240); -x_1322 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1322 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_1323 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1323, 0, x_1322); lean_ctor_set(x_1323, 1, x_1321); @@ -11515,14 +11879,14 @@ x_1324 = lean_array_push(x_1305, x_1323); x_1325 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1325, 0, x_1307); lean_ctor_set(x_1325, 1, x_1324); -x_1326 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1326 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_1327 = lean_array_push(x_1326, x_1325); -x_1328 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1328 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_1329 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1329, 0, x_1328); lean_ctor_set(x_1329, 1, x_1327); x_1330 = lean_array_push(x_1314, x_1329); -x_1331 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_1331 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_1332 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1332, 0, x_1331); lean_ctor_set(x_1332, 1, x_1330); @@ -11558,9 +11922,9 @@ if (lean_is_exclusive(x_1339)) { lean_dec_ref(x_1339); x_1341 = lean_box(0); } -x_1342 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1342 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_1343 = lean_array_push(x_1342, x_1227); -x_1344 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_1344 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_1345 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1345, 0, x_1344); lean_ctor_set(x_1345, 1, x_1343); @@ -11570,11 +11934,11 @@ x_1348 = l_Lean_nullKind___closed__2; x_1349 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1349, 0, x_1348); lean_ctor_set(x_1349, 1, x_1347); -x_1350 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1350 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_1351 = lean_array_push(x_1350, x_1349); x_1352 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_1353 = lean_array_push(x_1351, x_1352); -x_1354 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1354 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_1355 = lean_array_push(x_1353, x_1354); lean_inc(x_19); x_1356 = lean_array_push(x_1346, x_19); @@ -11597,7 +11961,7 @@ x_1359 = lean_array_push(x_1346, x_1358); x_1360 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_1361 = lean_array_push(x_1359, x_1360); x_1362 = lean_array_push(x_1361, x_1336); -x_1363 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1363 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_1364 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1364, 0, x_1363); lean_ctor_set(x_1364, 1, x_1362); @@ -11605,14 +11969,14 @@ x_1365 = lean_array_push(x_1346, x_1364); x_1366 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1366, 0, x_1348); lean_ctor_set(x_1366, 1, x_1365); -x_1367 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1367 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_1368 = lean_array_push(x_1367, x_1366); -x_1369 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1369 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_1370 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1370, 0, x_1369); lean_ctor_set(x_1370, 1, x_1368); x_1371 = lean_array_push(x_1355, x_1370); -x_1372 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_1372 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_1373 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1373, 0, x_1372); lean_ctor_set(x_1373, 1, x_1371); @@ -11664,9 +12028,9 @@ if (lean_is_exclusive(x_1383)) { lean_dec_ref(x_1383); x_1385 = lean_box(0); } -x_1386 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1386 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_1387 = lean_array_push(x_1386, x_1227); -x_1388 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_1388 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_1389 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1389, 0, x_1388); lean_ctor_set(x_1389, 1, x_1387); @@ -11676,11 +12040,11 @@ x_1392 = l_Lean_nullKind___closed__2; x_1393 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1393, 0, x_1392); lean_ctor_set(x_1393, 1, x_1391); -x_1394 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1394 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_1395 = lean_array_push(x_1394, x_1393); x_1396 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_1397 = lean_array_push(x_1395, x_1396); -x_1398 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1398 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_1399 = lean_array_push(x_1397, x_1398); lean_inc(x_19); x_1400 = lean_array_push(x_1390, x_19); @@ -11703,7 +12067,7 @@ x_1403 = lean_array_push(x_1390, x_1402); x_1404 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_1405 = lean_array_push(x_1403, x_1404); x_1406 = lean_array_push(x_1405, x_1379); -x_1407 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1407 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_1408 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1408, 0, x_1407); lean_ctor_set(x_1408, 1, x_1406); @@ -11711,14 +12075,14 @@ x_1409 = lean_array_push(x_1390, x_1408); x_1410 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1410, 0, x_1392); lean_ctor_set(x_1410, 1, x_1409); -x_1411 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1411 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_1412 = lean_array_push(x_1411, x_1410); -x_1413 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1413 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_1414 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1414, 0, x_1413); lean_ctor_set(x_1414, 1, x_1412); x_1415 = lean_array_push(x_1399, x_1414); -x_1416 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_1416 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_1417 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1417, 0, x_1416); lean_ctor_set(x_1417, 1, x_1415); @@ -11824,9 +12188,9 @@ if (x_1453 == 0) lean_object* x_1454; lean_object* x_1455; lean_object* x_1456; lean_object* x_1457; lean_object* x_1458; lean_object* x_1459; lean_object* x_1460; lean_object* x_1461; lean_object* x_1462; lean_object* x_1463; lean_object* x_1464; lean_object* x_1465; lean_object* x_1466; lean_object* x_1467; lean_object* x_1468; lean_object* x_1469; uint8_t x_1470; x_1454 = lean_ctor_get(x_1452, 0); lean_dec(x_1454); -x_1455 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1455 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_1456 = lean_array_push(x_1455, x_1435); -x_1457 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_1457 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_1458 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1458, 0, x_1457); lean_ctor_set(x_1458, 1, x_1456); @@ -11836,11 +12200,11 @@ x_1461 = l_Lean_nullKind___closed__2; x_1462 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1462, 0, x_1461); lean_ctor_set(x_1462, 1, x_1460); -x_1463 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1463 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_1464 = lean_array_push(x_1463, x_1462); x_1465 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_1466 = lean_array_push(x_1464, x_1465); -x_1467 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1467 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_1468 = lean_array_push(x_1466, x_1467); lean_inc(x_19); x_1469 = lean_array_push(x_1459, x_19); @@ -11858,7 +12222,7 @@ x_1473 = lean_array_push(x_1459, x_19); x_1474 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_1475 = lean_array_push(x_1473, x_1474); x_1476 = lean_array_push(x_1475, x_1448); -x_1477 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1477 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_1478 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1478, 0, x_1477); lean_ctor_set(x_1478, 1, x_1476); @@ -11866,14 +12230,14 @@ x_1479 = lean_array_push(x_1459, x_1478); x_1480 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1480, 0, x_1461); lean_ctor_set(x_1480, 1, x_1479); -x_1481 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1481 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_1482 = lean_array_push(x_1481, x_1480); -x_1483 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1483 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_1484 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1484, 0, x_1483); lean_ctor_set(x_1484, 1, x_1482); x_1485 = lean_array_push(x_1468, x_1484); -x_1486 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_1486 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_1487 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1487, 0, x_1486); lean_ctor_set(x_1487, 1, x_1485); @@ -11895,7 +12259,7 @@ x_1491 = lean_array_push(x_1459, x_1490); x_1492 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_1493 = lean_array_push(x_1491, x_1492); x_1494 = lean_array_push(x_1493, x_1448); -x_1495 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1495 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_1496 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1496, 0, x_1495); lean_ctor_set(x_1496, 1, x_1494); @@ -11903,14 +12267,14 @@ x_1497 = lean_array_push(x_1459, x_1496); x_1498 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1498, 0, x_1461); lean_ctor_set(x_1498, 1, x_1497); -x_1499 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1499 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_1500 = lean_array_push(x_1499, x_1498); -x_1501 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1501 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_1502 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1502, 0, x_1501); lean_ctor_set(x_1502, 1, x_1500); x_1503 = lean_array_push(x_1468, x_1502); -x_1504 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_1504 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_1505 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1505, 0, x_1504); lean_ctor_set(x_1505, 1, x_1503); @@ -11928,9 +12292,9 @@ lean_object* x_1508; lean_object* x_1509; lean_object* x_1510; lean_object* x_15 x_1508 = lean_ctor_get(x_1452, 1); lean_inc(x_1508); lean_dec(x_1452); -x_1509 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1509 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_1510 = lean_array_push(x_1509, x_1435); -x_1511 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_1511 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_1512 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1512, 0, x_1511); lean_ctor_set(x_1512, 1, x_1510); @@ -11940,11 +12304,11 @@ x_1515 = l_Lean_nullKind___closed__2; x_1516 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1516, 0, x_1515); lean_ctor_set(x_1516, 1, x_1514); -x_1517 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1517 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_1518 = lean_array_push(x_1517, x_1516); x_1519 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_1520 = lean_array_push(x_1518, x_1519); -x_1521 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1521 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_1522 = lean_array_push(x_1520, x_1521); lean_inc(x_19); x_1523 = lean_array_push(x_1513, x_19); @@ -11967,7 +12331,7 @@ x_1526 = lean_array_push(x_1513, x_1525); x_1527 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_1528 = lean_array_push(x_1526, x_1527); x_1529 = lean_array_push(x_1528, x_1448); -x_1530 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1530 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_1531 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1531, 0, x_1530); lean_ctor_set(x_1531, 1, x_1529); @@ -11975,14 +12339,14 @@ x_1532 = lean_array_push(x_1513, x_1531); x_1533 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1533, 0, x_1515); lean_ctor_set(x_1533, 1, x_1532); -x_1534 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1534 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_1535 = lean_array_push(x_1534, x_1533); -x_1536 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1536 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_1537 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1537, 0, x_1536); lean_ctor_set(x_1537, 1, x_1535); x_1538 = lean_array_push(x_1522, x_1537); -x_1539 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_1539 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_1540 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1540, 0, x_1539); lean_ctor_set(x_1540, 1, x_1538); @@ -12018,9 +12382,9 @@ if (lean_is_exclusive(x_1547)) { lean_dec_ref(x_1547); x_1549 = lean_box(0); } -x_1550 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1550 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_1551 = lean_array_push(x_1550, x_1435); -x_1552 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_1552 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_1553 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1553, 0, x_1552); lean_ctor_set(x_1553, 1, x_1551); @@ -12030,11 +12394,11 @@ x_1556 = l_Lean_nullKind___closed__2; x_1557 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1557, 0, x_1556); lean_ctor_set(x_1557, 1, x_1555); -x_1558 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1558 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_1559 = lean_array_push(x_1558, x_1557); x_1560 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_1561 = lean_array_push(x_1559, x_1560); -x_1562 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1562 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_1563 = lean_array_push(x_1561, x_1562); lean_inc(x_19); x_1564 = lean_array_push(x_1554, x_19); @@ -12057,7 +12421,7 @@ x_1567 = lean_array_push(x_1554, x_1566); x_1568 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_1569 = lean_array_push(x_1567, x_1568); x_1570 = lean_array_push(x_1569, x_1544); -x_1571 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1571 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_1572 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1572, 0, x_1571); lean_ctor_set(x_1572, 1, x_1570); @@ -12065,14 +12429,14 @@ x_1573 = lean_array_push(x_1554, x_1572); x_1574 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1574, 0, x_1556); lean_ctor_set(x_1574, 1, x_1573); -x_1575 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1575 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_1576 = lean_array_push(x_1575, x_1574); -x_1577 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1577 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_1578 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1578, 0, x_1577); lean_ctor_set(x_1578, 1, x_1576); x_1579 = lean_array_push(x_1563, x_1578); -x_1580 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_1580 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_1581 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1581, 0, x_1580); lean_ctor_set(x_1581, 1, x_1579); @@ -12124,9 +12488,9 @@ if (lean_is_exclusive(x_1591)) { lean_dec_ref(x_1591); x_1593 = lean_box(0); } -x_1594 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1594 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_1595 = lean_array_push(x_1594, x_1435); -x_1596 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_1596 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_1597 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1597, 0, x_1596); lean_ctor_set(x_1597, 1, x_1595); @@ -12136,11 +12500,11 @@ x_1600 = l_Lean_nullKind___closed__2; x_1601 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1601, 0, x_1600); lean_ctor_set(x_1601, 1, x_1599); -x_1602 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1602 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_1603 = lean_array_push(x_1602, x_1601); x_1604 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_1605 = lean_array_push(x_1603, x_1604); -x_1606 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1606 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_1607 = lean_array_push(x_1605, x_1606); lean_inc(x_19); x_1608 = lean_array_push(x_1598, x_19); @@ -12163,7 +12527,7 @@ x_1611 = lean_array_push(x_1598, x_1610); x_1612 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_1613 = lean_array_push(x_1611, x_1612); x_1614 = lean_array_push(x_1613, x_1587); -x_1615 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1615 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_1616 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1616, 0, x_1615); lean_ctor_set(x_1616, 1, x_1614); @@ -12171,14 +12535,14 @@ x_1617 = lean_array_push(x_1598, x_1616); x_1618 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1618, 0, x_1600); lean_ctor_set(x_1618, 1, x_1617); -x_1619 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1619 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_1620 = lean_array_push(x_1619, x_1618); -x_1621 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1621 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_1622 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1622, 0, x_1621); lean_ctor_set(x_1622, 1, x_1620); x_1623 = lean_array_push(x_1607, x_1622); -x_1624 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_1624 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_1625 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1625, 0, x_1624); lean_ctor_set(x_1625, 1, x_1623); @@ -12256,9 +12620,9 @@ if (x_1650 == 0) lean_object* x_1651; lean_object* x_1652; lean_object* x_1653; lean_object* x_1654; lean_object* x_1655; lean_object* x_1656; lean_object* x_1657; lean_object* x_1658; lean_object* x_1659; lean_object* x_1660; lean_object* x_1661; lean_object* x_1662; lean_object* x_1663; lean_object* x_1664; lean_object* x_1665; lean_object* x_1666; uint8_t x_1667; x_1651 = lean_ctor_get(x_1649, 0); lean_dec(x_1651); -x_1652 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1652 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_1653 = lean_array_push(x_1652, x_1632); -x_1654 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_1654 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_1655 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1655, 0, x_1654); lean_ctor_set(x_1655, 1, x_1653); @@ -12268,11 +12632,11 @@ x_1658 = l_Lean_nullKind___closed__2; x_1659 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1659, 0, x_1658); lean_ctor_set(x_1659, 1, x_1657); -x_1660 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1660 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_1661 = lean_array_push(x_1660, x_1659); x_1662 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_1663 = lean_array_push(x_1661, x_1662); -x_1664 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1664 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_1665 = lean_array_push(x_1663, x_1664); lean_inc(x_19); x_1666 = lean_array_push(x_1656, x_19); @@ -12290,7 +12654,7 @@ x_1670 = lean_array_push(x_1656, x_19); x_1671 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_1672 = lean_array_push(x_1670, x_1671); x_1673 = lean_array_push(x_1672, x_1645); -x_1674 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1674 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_1675 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1675, 0, x_1674); lean_ctor_set(x_1675, 1, x_1673); @@ -12298,14 +12662,14 @@ x_1676 = lean_array_push(x_1656, x_1675); x_1677 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1677, 0, x_1658); lean_ctor_set(x_1677, 1, x_1676); -x_1678 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1678 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_1679 = lean_array_push(x_1678, x_1677); -x_1680 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1680 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_1681 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1681, 0, x_1680); lean_ctor_set(x_1681, 1, x_1679); x_1682 = lean_array_push(x_1665, x_1681); -x_1683 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_1683 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_1684 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1684, 0, x_1683); lean_ctor_set(x_1684, 1, x_1682); @@ -12327,7 +12691,7 @@ x_1688 = lean_array_push(x_1656, x_1687); x_1689 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_1690 = lean_array_push(x_1688, x_1689); x_1691 = lean_array_push(x_1690, x_1645); -x_1692 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1692 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_1693 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1693, 0, x_1692); lean_ctor_set(x_1693, 1, x_1691); @@ -12335,14 +12699,14 @@ x_1694 = lean_array_push(x_1656, x_1693); x_1695 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1695, 0, x_1658); lean_ctor_set(x_1695, 1, x_1694); -x_1696 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1696 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_1697 = lean_array_push(x_1696, x_1695); -x_1698 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1698 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_1699 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1699, 0, x_1698); lean_ctor_set(x_1699, 1, x_1697); x_1700 = lean_array_push(x_1665, x_1699); -x_1701 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_1701 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_1702 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1702, 0, x_1701); lean_ctor_set(x_1702, 1, x_1700); @@ -12360,9 +12724,9 @@ lean_object* x_1705; lean_object* x_1706; lean_object* x_1707; lean_object* x_17 x_1705 = lean_ctor_get(x_1649, 1); lean_inc(x_1705); lean_dec(x_1649); -x_1706 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1706 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_1707 = lean_array_push(x_1706, x_1632); -x_1708 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_1708 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_1709 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1709, 0, x_1708); lean_ctor_set(x_1709, 1, x_1707); @@ -12372,11 +12736,11 @@ x_1712 = l_Lean_nullKind___closed__2; x_1713 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1713, 0, x_1712); lean_ctor_set(x_1713, 1, x_1711); -x_1714 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1714 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_1715 = lean_array_push(x_1714, x_1713); x_1716 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_1717 = lean_array_push(x_1715, x_1716); -x_1718 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1718 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_1719 = lean_array_push(x_1717, x_1718); lean_inc(x_19); x_1720 = lean_array_push(x_1710, x_19); @@ -12399,7 +12763,7 @@ x_1723 = lean_array_push(x_1710, x_1722); x_1724 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_1725 = lean_array_push(x_1723, x_1724); x_1726 = lean_array_push(x_1725, x_1645); -x_1727 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1727 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_1728 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1728, 0, x_1727); lean_ctor_set(x_1728, 1, x_1726); @@ -12407,14 +12771,14 @@ x_1729 = lean_array_push(x_1710, x_1728); x_1730 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1730, 0, x_1712); lean_ctor_set(x_1730, 1, x_1729); -x_1731 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1731 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_1732 = lean_array_push(x_1731, x_1730); -x_1733 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1733 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_1734 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1734, 0, x_1733); lean_ctor_set(x_1734, 1, x_1732); x_1735 = lean_array_push(x_1719, x_1734); -x_1736 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_1736 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_1737 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1737, 0, x_1736); lean_ctor_set(x_1737, 1, x_1735); @@ -12450,9 +12814,9 @@ if (lean_is_exclusive(x_1744)) { lean_dec_ref(x_1744); x_1746 = lean_box(0); } -x_1747 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1747 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_1748 = lean_array_push(x_1747, x_1632); -x_1749 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_1749 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_1750 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1750, 0, x_1749); lean_ctor_set(x_1750, 1, x_1748); @@ -12462,11 +12826,11 @@ x_1753 = l_Lean_nullKind___closed__2; x_1754 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1754, 0, x_1753); lean_ctor_set(x_1754, 1, x_1752); -x_1755 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1755 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_1756 = lean_array_push(x_1755, x_1754); x_1757 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_1758 = lean_array_push(x_1756, x_1757); -x_1759 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1759 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_1760 = lean_array_push(x_1758, x_1759); lean_inc(x_19); x_1761 = lean_array_push(x_1751, x_19); @@ -12489,7 +12853,7 @@ x_1764 = lean_array_push(x_1751, x_1763); x_1765 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_1766 = lean_array_push(x_1764, x_1765); x_1767 = lean_array_push(x_1766, x_1741); -x_1768 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1768 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_1769 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1769, 0, x_1768); lean_ctor_set(x_1769, 1, x_1767); @@ -12497,14 +12861,14 @@ x_1770 = lean_array_push(x_1751, x_1769); x_1771 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1771, 0, x_1753); lean_ctor_set(x_1771, 1, x_1770); -x_1772 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1772 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_1773 = lean_array_push(x_1772, x_1771); -x_1774 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1774 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_1775 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1775, 0, x_1774); lean_ctor_set(x_1775, 1, x_1773); x_1776 = lean_array_push(x_1760, x_1775); -x_1777 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_1777 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_1778 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1778, 0, x_1777); lean_ctor_set(x_1778, 1, x_1776); @@ -12556,9 +12920,9 @@ if (lean_is_exclusive(x_1788)) { lean_dec_ref(x_1788); x_1790 = lean_box(0); } -x_1791 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1791 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_1792 = lean_array_push(x_1791, x_1632); -x_1793 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_1793 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_1794 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1794, 0, x_1793); lean_ctor_set(x_1794, 1, x_1792); @@ -12568,11 +12932,11 @@ x_1797 = l_Lean_nullKind___closed__2; x_1798 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1798, 0, x_1797); lean_ctor_set(x_1798, 1, x_1796); -x_1799 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1799 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_1800 = lean_array_push(x_1799, x_1798); x_1801 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_1802 = lean_array_push(x_1800, x_1801); -x_1803 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1803 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_1804 = lean_array_push(x_1802, x_1803); lean_inc(x_19); x_1805 = lean_array_push(x_1795, x_19); @@ -12595,7 +12959,7 @@ x_1808 = lean_array_push(x_1795, x_1807); x_1809 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_1810 = lean_array_push(x_1808, x_1809); x_1811 = lean_array_push(x_1810, x_1784); -x_1812 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1812 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_1813 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1813, 0, x_1812); lean_ctor_set(x_1813, 1, x_1811); @@ -12603,14 +12967,14 @@ x_1814 = lean_array_push(x_1795, x_1813); x_1815 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1815, 0, x_1797); lean_ctor_set(x_1815, 1, x_1814); -x_1816 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1816 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_1817 = lean_array_push(x_1816, x_1815); -x_1818 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1818 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_1819 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1819, 0, x_1818); lean_ctor_set(x_1819, 1, x_1817); x_1820 = lean_array_push(x_1804, x_1819); -x_1821 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_1821 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_1822 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1822, 0, x_1821); lean_ctor_set(x_1822, 1, x_1820); @@ -12771,9 +13135,9 @@ if (x_1872 == 0) lean_object* x_1873; lean_object* x_1874; lean_object* x_1875; lean_object* x_1876; lean_object* x_1877; lean_object* x_1878; lean_object* x_1879; lean_object* x_1880; lean_object* x_1881; lean_object* x_1882; lean_object* x_1883; lean_object* x_1884; lean_object* x_1885; lean_object* x_1886; lean_object* x_1887; lean_object* x_1888; uint8_t x_1889; x_1873 = lean_ctor_get(x_1871, 0); lean_dec(x_1873); -x_1874 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1874 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_1875 = lean_array_push(x_1874, x_1853); -x_1876 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_1876 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_1877 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1877, 0, x_1876); lean_ctor_set(x_1877, 1, x_1875); @@ -12783,11 +13147,11 @@ x_1880 = l_Lean_nullKind___closed__2; x_1881 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1881, 0, x_1880); lean_ctor_set(x_1881, 1, x_1879); -x_1882 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1882 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_1883 = lean_array_push(x_1882, x_1881); x_1884 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_1885 = lean_array_push(x_1883, x_1884); -x_1886 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1886 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_1887 = lean_array_push(x_1885, x_1886); lean_inc(x_19); x_1888 = lean_array_push(x_1878, x_19); @@ -12805,7 +13169,7 @@ x_1892 = lean_array_push(x_1878, x_19); x_1893 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_1894 = lean_array_push(x_1892, x_1893); x_1895 = lean_array_push(x_1894, x_1867); -x_1896 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1896 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_1897 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1897, 0, x_1896); lean_ctor_set(x_1897, 1, x_1895); @@ -12813,14 +13177,14 @@ x_1898 = lean_array_push(x_1878, x_1897); x_1899 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1899, 0, x_1880); lean_ctor_set(x_1899, 1, x_1898); -x_1900 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1900 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_1901 = lean_array_push(x_1900, x_1899); -x_1902 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1902 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_1903 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1903, 0, x_1902); lean_ctor_set(x_1903, 1, x_1901); x_1904 = lean_array_push(x_1887, x_1903); -x_1905 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_1905 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_1906 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1906, 0, x_1905); lean_ctor_set(x_1906, 1, x_1904); @@ -12842,7 +13206,7 @@ x_1910 = lean_array_push(x_1878, x_1909); x_1911 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_1912 = lean_array_push(x_1910, x_1911); x_1913 = lean_array_push(x_1912, x_1867); -x_1914 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1914 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_1915 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1915, 0, x_1914); lean_ctor_set(x_1915, 1, x_1913); @@ -12850,14 +13214,14 @@ x_1916 = lean_array_push(x_1878, x_1915); x_1917 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1917, 0, x_1880); lean_ctor_set(x_1917, 1, x_1916); -x_1918 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1918 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_1919 = lean_array_push(x_1918, x_1917); -x_1920 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1920 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_1921 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1921, 0, x_1920); lean_ctor_set(x_1921, 1, x_1919); x_1922 = lean_array_push(x_1887, x_1921); -x_1923 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_1923 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_1924 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1924, 0, x_1923); lean_ctor_set(x_1924, 1, x_1922); @@ -12875,9 +13239,9 @@ lean_object* x_1927; lean_object* x_1928; lean_object* x_1929; lean_object* x_19 x_1927 = lean_ctor_get(x_1871, 1); lean_inc(x_1927); lean_dec(x_1871); -x_1928 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1928 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_1929 = lean_array_push(x_1928, x_1853); -x_1930 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_1930 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_1931 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1931, 0, x_1930); lean_ctor_set(x_1931, 1, x_1929); @@ -12887,11 +13251,11 @@ x_1934 = l_Lean_nullKind___closed__2; x_1935 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1935, 0, x_1934); lean_ctor_set(x_1935, 1, x_1933); -x_1936 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1936 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_1937 = lean_array_push(x_1936, x_1935); x_1938 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_1939 = lean_array_push(x_1937, x_1938); -x_1940 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1940 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_1941 = lean_array_push(x_1939, x_1940); lean_inc(x_19); x_1942 = lean_array_push(x_1932, x_19); @@ -12914,7 +13278,7 @@ x_1945 = lean_array_push(x_1932, x_1944); x_1946 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_1947 = lean_array_push(x_1945, x_1946); x_1948 = lean_array_push(x_1947, x_1867); -x_1949 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1949 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_1950 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1950, 0, x_1949); lean_ctor_set(x_1950, 1, x_1948); @@ -12922,14 +13286,14 @@ x_1951 = lean_array_push(x_1932, x_1950); x_1952 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1952, 0, x_1934); lean_ctor_set(x_1952, 1, x_1951); -x_1953 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1953 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_1954 = lean_array_push(x_1953, x_1952); -x_1955 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1955 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_1956 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1956, 0, x_1955); lean_ctor_set(x_1956, 1, x_1954); x_1957 = lean_array_push(x_1941, x_1956); -x_1958 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_1958 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_1959 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1959, 0, x_1958); lean_ctor_set(x_1959, 1, x_1957); @@ -12965,9 +13329,9 @@ if (lean_is_exclusive(x_1966)) { lean_dec_ref(x_1966); x_1968 = lean_box(0); } -x_1969 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1969 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_1970 = lean_array_push(x_1969, x_1853); -x_1971 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_1971 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_1972 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1972, 0, x_1971); lean_ctor_set(x_1972, 1, x_1970); @@ -12977,11 +13341,11 @@ x_1975 = l_Lean_nullKind___closed__2; x_1976 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1976, 0, x_1975); lean_ctor_set(x_1976, 1, x_1974); -x_1977 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1977 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_1978 = lean_array_push(x_1977, x_1976); x_1979 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_1980 = lean_array_push(x_1978, x_1979); -x_1981 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1981 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_1982 = lean_array_push(x_1980, x_1981); lean_inc(x_19); x_1983 = lean_array_push(x_1973, x_19); @@ -13004,7 +13368,7 @@ x_1986 = lean_array_push(x_1973, x_1985); x_1987 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_1988 = lean_array_push(x_1986, x_1987); x_1989 = lean_array_push(x_1988, x_1963); -x_1990 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1990 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_1991 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1991, 0, x_1990); lean_ctor_set(x_1991, 1, x_1989); @@ -13012,14 +13376,14 @@ x_1992 = lean_array_push(x_1973, x_1991); x_1993 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1993, 0, x_1975); lean_ctor_set(x_1993, 1, x_1992); -x_1994 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1994 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_1995 = lean_array_push(x_1994, x_1993); -x_1996 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1996 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_1997 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1997, 0, x_1996); lean_ctor_set(x_1997, 1, x_1995); x_1998 = lean_array_push(x_1982, x_1997); -x_1999 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_1999 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_2000 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2000, 0, x_1999); lean_ctor_set(x_2000, 1, x_1998); @@ -13071,9 +13435,9 @@ if (lean_is_exclusive(x_2010)) { lean_dec_ref(x_2010); x_2012 = lean_box(0); } -x_2013 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_2013 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_2014 = lean_array_push(x_2013, x_1853); -x_2015 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_2015 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_2016 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2016, 0, x_2015); lean_ctor_set(x_2016, 1, x_2014); @@ -13083,11 +13447,11 @@ x_2019 = l_Lean_nullKind___closed__2; x_2020 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2020, 0, x_2019); lean_ctor_set(x_2020, 1, x_2018); -x_2021 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2021 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_2022 = lean_array_push(x_2021, x_2020); x_2023 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_2024 = lean_array_push(x_2022, x_2023); -x_2025 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2025 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_2026 = lean_array_push(x_2024, x_2025); lean_inc(x_19); x_2027 = lean_array_push(x_2017, x_19); @@ -13110,7 +13474,7 @@ x_2030 = lean_array_push(x_2017, x_2029); x_2031 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_2032 = lean_array_push(x_2030, x_2031); x_2033 = lean_array_push(x_2032, x_2006); -x_2034 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_2034 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_2035 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2035, 0, x_2034); lean_ctor_set(x_2035, 1, x_2033); @@ -13118,14 +13482,14 @@ x_2036 = lean_array_push(x_2017, x_2035); x_2037 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2037, 0, x_2019); lean_ctor_set(x_2037, 1, x_2036); -x_2038 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2038 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_2039 = lean_array_push(x_2038, x_2037); -x_2040 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_2040 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_2041 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2041, 0, x_2040); lean_ctor_set(x_2041, 1, x_2039); x_2042 = lean_array_push(x_2026, x_2041); -x_2043 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_2043 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_2044 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2044, 0, x_2043); lean_ctor_set(x_2044, 1, x_2042); @@ -13207,9 +13571,9 @@ if (x_2070 == 0) lean_object* x_2071; lean_object* x_2072; lean_object* x_2073; lean_object* x_2074; lean_object* x_2075; lean_object* x_2076; lean_object* x_2077; lean_object* x_2078; lean_object* x_2079; lean_object* x_2080; lean_object* x_2081; lean_object* x_2082; lean_object* x_2083; lean_object* x_2084; lean_object* x_2085; lean_object* x_2086; uint8_t x_2087; x_2071 = lean_ctor_get(x_2069, 0); lean_dec(x_2071); -x_2072 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_2072 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_2073 = lean_array_push(x_2072, x_2051); -x_2074 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_2074 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_2075 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2075, 0, x_2074); lean_ctor_set(x_2075, 1, x_2073); @@ -13219,11 +13583,11 @@ x_2078 = l_Lean_nullKind___closed__2; x_2079 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2079, 0, x_2078); lean_ctor_set(x_2079, 1, x_2077); -x_2080 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2080 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_2081 = lean_array_push(x_2080, x_2079); x_2082 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_2083 = lean_array_push(x_2081, x_2082); -x_2084 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2084 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_2085 = lean_array_push(x_2083, x_2084); lean_inc(x_19); x_2086 = lean_array_push(x_2076, x_19); @@ -13241,7 +13605,7 @@ x_2090 = lean_array_push(x_2076, x_19); x_2091 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_2092 = lean_array_push(x_2090, x_2091); x_2093 = lean_array_push(x_2092, x_2065); -x_2094 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_2094 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_2095 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2095, 0, x_2094); lean_ctor_set(x_2095, 1, x_2093); @@ -13249,14 +13613,14 @@ x_2096 = lean_array_push(x_2076, x_2095); x_2097 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2097, 0, x_2078); lean_ctor_set(x_2097, 1, x_2096); -x_2098 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2098 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_2099 = lean_array_push(x_2098, x_2097); -x_2100 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_2100 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_2101 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2101, 0, x_2100); lean_ctor_set(x_2101, 1, x_2099); x_2102 = lean_array_push(x_2085, x_2101); -x_2103 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_2103 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_2104 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2104, 0, x_2103); lean_ctor_set(x_2104, 1, x_2102); @@ -13278,7 +13642,7 @@ x_2108 = lean_array_push(x_2076, x_2107); x_2109 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_2110 = lean_array_push(x_2108, x_2109); x_2111 = lean_array_push(x_2110, x_2065); -x_2112 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_2112 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_2113 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2113, 0, x_2112); lean_ctor_set(x_2113, 1, x_2111); @@ -13286,14 +13650,14 @@ x_2114 = lean_array_push(x_2076, x_2113); x_2115 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2115, 0, x_2078); lean_ctor_set(x_2115, 1, x_2114); -x_2116 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2116 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_2117 = lean_array_push(x_2116, x_2115); -x_2118 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_2118 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_2119 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2119, 0, x_2118); lean_ctor_set(x_2119, 1, x_2117); x_2120 = lean_array_push(x_2085, x_2119); -x_2121 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_2121 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_2122 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2122, 0, x_2121); lean_ctor_set(x_2122, 1, x_2120); @@ -13311,9 +13675,9 @@ lean_object* x_2125; lean_object* x_2126; lean_object* x_2127; lean_object* x_21 x_2125 = lean_ctor_get(x_2069, 1); lean_inc(x_2125); lean_dec(x_2069); -x_2126 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_2126 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_2127 = lean_array_push(x_2126, x_2051); -x_2128 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_2128 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_2129 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2129, 0, x_2128); lean_ctor_set(x_2129, 1, x_2127); @@ -13323,11 +13687,11 @@ x_2132 = l_Lean_nullKind___closed__2; x_2133 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2133, 0, x_2132); lean_ctor_set(x_2133, 1, x_2131); -x_2134 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2134 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_2135 = lean_array_push(x_2134, x_2133); x_2136 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_2137 = lean_array_push(x_2135, x_2136); -x_2138 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2138 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_2139 = lean_array_push(x_2137, x_2138); lean_inc(x_19); x_2140 = lean_array_push(x_2130, x_19); @@ -13350,7 +13714,7 @@ x_2143 = lean_array_push(x_2130, x_2142); x_2144 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_2145 = lean_array_push(x_2143, x_2144); x_2146 = lean_array_push(x_2145, x_2065); -x_2147 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_2147 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_2148 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2148, 0, x_2147); lean_ctor_set(x_2148, 1, x_2146); @@ -13358,14 +13722,14 @@ x_2149 = lean_array_push(x_2130, x_2148); x_2150 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2150, 0, x_2132); lean_ctor_set(x_2150, 1, x_2149); -x_2151 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2151 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_2152 = lean_array_push(x_2151, x_2150); -x_2153 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_2153 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_2154 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2154, 0, x_2153); lean_ctor_set(x_2154, 1, x_2152); x_2155 = lean_array_push(x_2139, x_2154); -x_2156 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_2156 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_2157 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2157, 0, x_2156); lean_ctor_set(x_2157, 1, x_2155); @@ -13401,9 +13765,9 @@ if (lean_is_exclusive(x_2164)) { lean_dec_ref(x_2164); x_2166 = lean_box(0); } -x_2167 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_2167 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_2168 = lean_array_push(x_2167, x_2051); -x_2169 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_2169 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_2170 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2170, 0, x_2169); lean_ctor_set(x_2170, 1, x_2168); @@ -13413,11 +13777,11 @@ x_2173 = l_Lean_nullKind___closed__2; x_2174 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2174, 0, x_2173); lean_ctor_set(x_2174, 1, x_2172); -x_2175 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2175 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_2176 = lean_array_push(x_2175, x_2174); x_2177 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_2178 = lean_array_push(x_2176, x_2177); -x_2179 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2179 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_2180 = lean_array_push(x_2178, x_2179); lean_inc(x_19); x_2181 = lean_array_push(x_2171, x_19); @@ -13440,7 +13804,7 @@ x_2184 = lean_array_push(x_2171, x_2183); x_2185 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_2186 = lean_array_push(x_2184, x_2185); x_2187 = lean_array_push(x_2186, x_2161); -x_2188 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_2188 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_2189 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2189, 0, x_2188); lean_ctor_set(x_2189, 1, x_2187); @@ -13448,14 +13812,14 @@ x_2190 = lean_array_push(x_2171, x_2189); x_2191 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2191, 0, x_2173); lean_ctor_set(x_2191, 1, x_2190); -x_2192 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2192 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_2193 = lean_array_push(x_2192, x_2191); -x_2194 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_2194 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_2195 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2195, 0, x_2194); lean_ctor_set(x_2195, 1, x_2193); x_2196 = lean_array_push(x_2180, x_2195); -x_2197 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_2197 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_2198 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2198, 0, x_2197); lean_ctor_set(x_2198, 1, x_2196); @@ -13507,9 +13871,9 @@ if (lean_is_exclusive(x_2208)) { lean_dec_ref(x_2208); x_2210 = lean_box(0); } -x_2211 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_2211 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_2212 = lean_array_push(x_2211, x_2051); -x_2213 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_2213 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_2214 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2214, 0, x_2213); lean_ctor_set(x_2214, 1, x_2212); @@ -13519,11 +13883,11 @@ x_2217 = l_Lean_nullKind___closed__2; x_2218 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2218, 0, x_2217); lean_ctor_set(x_2218, 1, x_2216); -x_2219 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2219 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_2220 = lean_array_push(x_2219, x_2218); x_2221 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_2222 = lean_array_push(x_2220, x_2221); -x_2223 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2223 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_2224 = lean_array_push(x_2222, x_2223); lean_inc(x_19); x_2225 = lean_array_push(x_2215, x_19); @@ -13546,7 +13910,7 @@ x_2228 = lean_array_push(x_2215, x_2227); x_2229 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_2230 = lean_array_push(x_2228, x_2229); x_2231 = lean_array_push(x_2230, x_2204); -x_2232 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_2232 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_2233 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2233, 0, x_2232); lean_ctor_set(x_2233, 1, x_2231); @@ -13554,14 +13918,14 @@ x_2234 = lean_array_push(x_2215, x_2233); x_2235 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2235, 0, x_2217); lean_ctor_set(x_2235, 1, x_2234); -x_2236 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2236 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_2237 = lean_array_push(x_2236, x_2235); -x_2238 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_2238 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_2239 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2239, 0, x_2238); lean_ctor_set(x_2239, 1, x_2237); x_2240 = lean_array_push(x_2224, x_2239); -x_2241 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_2241 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_2242 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2242, 0, x_2241); lean_ctor_set(x_2242, 1, x_2240); @@ -13642,9 +14006,9 @@ if (x_2268 == 0) lean_object* x_2269; lean_object* x_2270; lean_object* x_2271; lean_object* x_2272; lean_object* x_2273; lean_object* x_2274; lean_object* x_2275; lean_object* x_2276; lean_object* x_2277; lean_object* x_2278; lean_object* x_2279; lean_object* x_2280; lean_object* x_2281; lean_object* x_2282; lean_object* x_2283; lean_object* x_2284; uint8_t x_2285; x_2269 = lean_ctor_get(x_2267, 0); lean_dec(x_2269); -x_2270 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_2270 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_2271 = lean_array_push(x_2270, x_2249); -x_2272 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_2272 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_2273 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2273, 0, x_2272); lean_ctor_set(x_2273, 1, x_2271); @@ -13654,11 +14018,11 @@ x_2276 = l_Lean_nullKind___closed__2; x_2277 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2277, 0, x_2276); lean_ctor_set(x_2277, 1, x_2275); -x_2278 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2278 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_2279 = lean_array_push(x_2278, x_2277); x_2280 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_2281 = lean_array_push(x_2279, x_2280); -x_2282 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2282 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_2283 = lean_array_push(x_2281, x_2282); lean_inc(x_19); x_2284 = lean_array_push(x_2274, x_19); @@ -13676,7 +14040,7 @@ x_2288 = lean_array_push(x_2274, x_19); x_2289 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_2290 = lean_array_push(x_2288, x_2289); x_2291 = lean_array_push(x_2290, x_2263); -x_2292 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_2292 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_2293 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2293, 0, x_2292); lean_ctor_set(x_2293, 1, x_2291); @@ -13684,14 +14048,14 @@ x_2294 = lean_array_push(x_2274, x_2293); x_2295 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2295, 0, x_2276); lean_ctor_set(x_2295, 1, x_2294); -x_2296 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2296 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_2297 = lean_array_push(x_2296, x_2295); -x_2298 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_2298 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_2299 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2299, 0, x_2298); lean_ctor_set(x_2299, 1, x_2297); x_2300 = lean_array_push(x_2283, x_2299); -x_2301 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_2301 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_2302 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2302, 0, x_2301); lean_ctor_set(x_2302, 1, x_2300); @@ -13713,7 +14077,7 @@ x_2306 = lean_array_push(x_2274, x_2305); x_2307 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_2308 = lean_array_push(x_2306, x_2307); x_2309 = lean_array_push(x_2308, x_2263); -x_2310 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_2310 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_2311 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2311, 0, x_2310); lean_ctor_set(x_2311, 1, x_2309); @@ -13721,14 +14085,14 @@ x_2312 = lean_array_push(x_2274, x_2311); x_2313 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2313, 0, x_2276); lean_ctor_set(x_2313, 1, x_2312); -x_2314 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2314 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_2315 = lean_array_push(x_2314, x_2313); -x_2316 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_2316 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_2317 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2317, 0, x_2316); lean_ctor_set(x_2317, 1, x_2315); x_2318 = lean_array_push(x_2283, x_2317); -x_2319 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_2319 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_2320 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2320, 0, x_2319); lean_ctor_set(x_2320, 1, x_2318); @@ -13746,9 +14110,9 @@ lean_object* x_2323; lean_object* x_2324; lean_object* x_2325; lean_object* x_23 x_2323 = lean_ctor_get(x_2267, 1); lean_inc(x_2323); lean_dec(x_2267); -x_2324 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_2324 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_2325 = lean_array_push(x_2324, x_2249); -x_2326 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_2326 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_2327 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2327, 0, x_2326); lean_ctor_set(x_2327, 1, x_2325); @@ -13758,11 +14122,11 @@ x_2330 = l_Lean_nullKind___closed__2; x_2331 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2331, 0, x_2330); lean_ctor_set(x_2331, 1, x_2329); -x_2332 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2332 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_2333 = lean_array_push(x_2332, x_2331); x_2334 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_2335 = lean_array_push(x_2333, x_2334); -x_2336 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2336 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_2337 = lean_array_push(x_2335, x_2336); lean_inc(x_19); x_2338 = lean_array_push(x_2328, x_19); @@ -13785,7 +14149,7 @@ x_2341 = lean_array_push(x_2328, x_2340); x_2342 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_2343 = lean_array_push(x_2341, x_2342); x_2344 = lean_array_push(x_2343, x_2263); -x_2345 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_2345 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_2346 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2346, 0, x_2345); lean_ctor_set(x_2346, 1, x_2344); @@ -13793,14 +14157,14 @@ x_2347 = lean_array_push(x_2328, x_2346); x_2348 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2348, 0, x_2330); lean_ctor_set(x_2348, 1, x_2347); -x_2349 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2349 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_2350 = lean_array_push(x_2349, x_2348); -x_2351 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_2351 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_2352 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2352, 0, x_2351); lean_ctor_set(x_2352, 1, x_2350); x_2353 = lean_array_push(x_2337, x_2352); -x_2354 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_2354 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_2355 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2355, 0, x_2354); lean_ctor_set(x_2355, 1, x_2353); @@ -13836,9 +14200,9 @@ if (lean_is_exclusive(x_2362)) { lean_dec_ref(x_2362); x_2364 = lean_box(0); } -x_2365 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_2365 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_2366 = lean_array_push(x_2365, x_2249); -x_2367 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_2367 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_2368 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2368, 0, x_2367); lean_ctor_set(x_2368, 1, x_2366); @@ -13848,11 +14212,11 @@ x_2371 = l_Lean_nullKind___closed__2; x_2372 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2372, 0, x_2371); lean_ctor_set(x_2372, 1, x_2370); -x_2373 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2373 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_2374 = lean_array_push(x_2373, x_2372); x_2375 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_2376 = lean_array_push(x_2374, x_2375); -x_2377 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2377 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_2378 = lean_array_push(x_2376, x_2377); lean_inc(x_19); x_2379 = lean_array_push(x_2369, x_19); @@ -13875,7 +14239,7 @@ x_2382 = lean_array_push(x_2369, x_2381); x_2383 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_2384 = lean_array_push(x_2382, x_2383); x_2385 = lean_array_push(x_2384, x_2359); -x_2386 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_2386 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_2387 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2387, 0, x_2386); lean_ctor_set(x_2387, 1, x_2385); @@ -13883,14 +14247,14 @@ x_2388 = lean_array_push(x_2369, x_2387); x_2389 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2389, 0, x_2371); lean_ctor_set(x_2389, 1, x_2388); -x_2390 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2390 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_2391 = lean_array_push(x_2390, x_2389); -x_2392 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_2392 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_2393 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2393, 0, x_2392); lean_ctor_set(x_2393, 1, x_2391); x_2394 = lean_array_push(x_2378, x_2393); -x_2395 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_2395 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_2396 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2396, 0, x_2395); lean_ctor_set(x_2396, 1, x_2394); @@ -13942,9 +14306,9 @@ if (lean_is_exclusive(x_2406)) { lean_dec_ref(x_2406); x_2408 = lean_box(0); } -x_2409 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_2409 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_2410 = lean_array_push(x_2409, x_2249); -x_2411 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_2411 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_2412 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2412, 0, x_2411); lean_ctor_set(x_2412, 1, x_2410); @@ -13954,11 +14318,11 @@ x_2415 = l_Lean_nullKind___closed__2; x_2416 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2416, 0, x_2415); lean_ctor_set(x_2416, 1, x_2414); -x_2417 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2417 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_2418 = lean_array_push(x_2417, x_2416); x_2419 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_2420 = lean_array_push(x_2418, x_2419); -x_2421 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2421 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_2422 = lean_array_push(x_2420, x_2421); lean_inc(x_19); x_2423 = lean_array_push(x_2413, x_19); @@ -13981,7 +14345,7 @@ x_2426 = lean_array_push(x_2413, x_2425); x_2427 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_2428 = lean_array_push(x_2426, x_2427); x_2429 = lean_array_push(x_2428, x_2402); -x_2430 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_2430 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_2431 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2431, 0, x_2430); lean_ctor_set(x_2431, 1, x_2429); @@ -13989,14 +14353,14 @@ x_2432 = lean_array_push(x_2413, x_2431); x_2433 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2433, 0, x_2415); lean_ctor_set(x_2433, 1, x_2432); -x_2434 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2434 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_2435 = lean_array_push(x_2434, x_2433); -x_2436 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_2436 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_2437 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2437, 0, x_2436); lean_ctor_set(x_2437, 1, x_2435); x_2438 = lean_array_push(x_2422, x_2437); -x_2439 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_2439 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_2440 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2440, 0, x_2439); lean_ctor_set(x_2440, 1, x_2438); @@ -14076,9 +14440,9 @@ if (x_2466 == 0) lean_object* x_2467; lean_object* x_2468; lean_object* x_2469; lean_object* x_2470; lean_object* x_2471; lean_object* x_2472; lean_object* x_2473; lean_object* x_2474; lean_object* x_2475; lean_object* x_2476; lean_object* x_2477; lean_object* x_2478; lean_object* x_2479; lean_object* x_2480; lean_object* x_2481; lean_object* x_2482; uint8_t x_2483; x_2467 = lean_ctor_get(x_2465, 0); lean_dec(x_2467); -x_2468 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_2468 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_2469 = lean_array_push(x_2468, x_2447); -x_2470 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_2470 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_2471 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2471, 0, x_2470); lean_ctor_set(x_2471, 1, x_2469); @@ -14088,11 +14452,11 @@ x_2474 = l_Lean_nullKind___closed__2; x_2475 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2475, 0, x_2474); lean_ctor_set(x_2475, 1, x_2473); -x_2476 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2476 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_2477 = lean_array_push(x_2476, x_2475); x_2478 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_2479 = lean_array_push(x_2477, x_2478); -x_2480 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2480 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_2481 = lean_array_push(x_2479, x_2480); lean_inc(x_19); x_2482 = lean_array_push(x_2472, x_19); @@ -14110,7 +14474,7 @@ x_2486 = lean_array_push(x_2472, x_19); x_2487 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_2488 = lean_array_push(x_2486, x_2487); x_2489 = lean_array_push(x_2488, x_2461); -x_2490 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_2490 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_2491 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2491, 0, x_2490); lean_ctor_set(x_2491, 1, x_2489); @@ -14118,14 +14482,14 @@ x_2492 = lean_array_push(x_2472, x_2491); x_2493 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2493, 0, x_2474); lean_ctor_set(x_2493, 1, x_2492); -x_2494 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2494 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_2495 = lean_array_push(x_2494, x_2493); -x_2496 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_2496 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_2497 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2497, 0, x_2496); lean_ctor_set(x_2497, 1, x_2495); x_2498 = lean_array_push(x_2481, x_2497); -x_2499 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_2499 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_2500 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2500, 0, x_2499); lean_ctor_set(x_2500, 1, x_2498); @@ -14147,7 +14511,7 @@ x_2504 = lean_array_push(x_2472, x_2503); x_2505 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_2506 = lean_array_push(x_2504, x_2505); x_2507 = lean_array_push(x_2506, x_2461); -x_2508 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_2508 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_2509 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2509, 0, x_2508); lean_ctor_set(x_2509, 1, x_2507); @@ -14155,14 +14519,14 @@ x_2510 = lean_array_push(x_2472, x_2509); x_2511 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2511, 0, x_2474); lean_ctor_set(x_2511, 1, x_2510); -x_2512 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2512 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_2513 = lean_array_push(x_2512, x_2511); -x_2514 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_2514 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_2515 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2515, 0, x_2514); lean_ctor_set(x_2515, 1, x_2513); x_2516 = lean_array_push(x_2481, x_2515); -x_2517 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_2517 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_2518 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2518, 0, x_2517); lean_ctor_set(x_2518, 1, x_2516); @@ -14180,9 +14544,9 @@ lean_object* x_2521; lean_object* x_2522; lean_object* x_2523; lean_object* x_25 x_2521 = lean_ctor_get(x_2465, 1); lean_inc(x_2521); lean_dec(x_2465); -x_2522 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_2522 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_2523 = lean_array_push(x_2522, x_2447); -x_2524 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_2524 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_2525 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2525, 0, x_2524); lean_ctor_set(x_2525, 1, x_2523); @@ -14192,11 +14556,11 @@ x_2528 = l_Lean_nullKind___closed__2; x_2529 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2529, 0, x_2528); lean_ctor_set(x_2529, 1, x_2527); -x_2530 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2530 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_2531 = lean_array_push(x_2530, x_2529); x_2532 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_2533 = lean_array_push(x_2531, x_2532); -x_2534 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2534 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_2535 = lean_array_push(x_2533, x_2534); lean_inc(x_19); x_2536 = lean_array_push(x_2526, x_19); @@ -14219,7 +14583,7 @@ x_2539 = lean_array_push(x_2526, x_2538); x_2540 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_2541 = lean_array_push(x_2539, x_2540); x_2542 = lean_array_push(x_2541, x_2461); -x_2543 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_2543 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_2544 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2544, 0, x_2543); lean_ctor_set(x_2544, 1, x_2542); @@ -14227,14 +14591,14 @@ x_2545 = lean_array_push(x_2526, x_2544); x_2546 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2546, 0, x_2528); lean_ctor_set(x_2546, 1, x_2545); -x_2547 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2547 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_2548 = lean_array_push(x_2547, x_2546); -x_2549 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_2549 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_2550 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2550, 0, x_2549); lean_ctor_set(x_2550, 1, x_2548); x_2551 = lean_array_push(x_2535, x_2550); -x_2552 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_2552 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_2553 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2553, 0, x_2552); lean_ctor_set(x_2553, 1, x_2551); @@ -14270,9 +14634,9 @@ if (lean_is_exclusive(x_2560)) { lean_dec_ref(x_2560); x_2562 = lean_box(0); } -x_2563 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_2563 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_2564 = lean_array_push(x_2563, x_2447); -x_2565 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_2565 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_2566 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2566, 0, x_2565); lean_ctor_set(x_2566, 1, x_2564); @@ -14282,11 +14646,11 @@ x_2569 = l_Lean_nullKind___closed__2; x_2570 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2570, 0, x_2569); lean_ctor_set(x_2570, 1, x_2568); -x_2571 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2571 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_2572 = lean_array_push(x_2571, x_2570); x_2573 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_2574 = lean_array_push(x_2572, x_2573); -x_2575 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2575 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_2576 = lean_array_push(x_2574, x_2575); lean_inc(x_19); x_2577 = lean_array_push(x_2567, x_19); @@ -14309,7 +14673,7 @@ x_2580 = lean_array_push(x_2567, x_2579); x_2581 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_2582 = lean_array_push(x_2580, x_2581); x_2583 = lean_array_push(x_2582, x_2557); -x_2584 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_2584 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_2585 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2585, 0, x_2584); lean_ctor_set(x_2585, 1, x_2583); @@ -14317,14 +14681,14 @@ x_2586 = lean_array_push(x_2567, x_2585); x_2587 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2587, 0, x_2569); lean_ctor_set(x_2587, 1, x_2586); -x_2588 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2588 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_2589 = lean_array_push(x_2588, x_2587); -x_2590 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_2590 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_2591 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2591, 0, x_2590); lean_ctor_set(x_2591, 1, x_2589); x_2592 = lean_array_push(x_2576, x_2591); -x_2593 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_2593 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_2594 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2594, 0, x_2593); lean_ctor_set(x_2594, 1, x_2592); @@ -14376,9 +14740,9 @@ if (lean_is_exclusive(x_2604)) { lean_dec_ref(x_2604); x_2606 = lean_box(0); } -x_2607 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_2607 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_2608 = lean_array_push(x_2607, x_2447); -x_2609 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_2609 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_2610 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2610, 0, x_2609); lean_ctor_set(x_2610, 1, x_2608); @@ -14388,11 +14752,11 @@ x_2613 = l_Lean_nullKind___closed__2; x_2614 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2614, 0, x_2613); lean_ctor_set(x_2614, 1, x_2612); -x_2615 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2615 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_2616 = lean_array_push(x_2615, x_2614); x_2617 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_2618 = lean_array_push(x_2616, x_2617); -x_2619 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2619 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_2620 = lean_array_push(x_2618, x_2619); lean_inc(x_19); x_2621 = lean_array_push(x_2611, x_19); @@ -14415,7 +14779,7 @@ x_2624 = lean_array_push(x_2611, x_2623); x_2625 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_2626 = lean_array_push(x_2624, x_2625); x_2627 = lean_array_push(x_2626, x_2600); -x_2628 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_2628 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_2629 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2629, 0, x_2628); lean_ctor_set(x_2629, 1, x_2627); @@ -14423,14 +14787,14 @@ x_2630 = lean_array_push(x_2611, x_2629); x_2631 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2631, 0, x_2613); lean_ctor_set(x_2631, 1, x_2630); -x_2632 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2632 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_2633 = lean_array_push(x_2632, x_2631); -x_2634 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_2634 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_2635 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2635, 0, x_2634); lean_ctor_set(x_2635, 1, x_2633); x_2636 = lean_array_push(x_2620, x_2635); -x_2637 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_2637 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_2638 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2638, 0, x_2637); lean_ctor_set(x_2638, 1, x_2636); @@ -14509,9 +14873,9 @@ if (x_2664 == 0) lean_object* x_2665; lean_object* x_2666; lean_object* x_2667; lean_object* x_2668; lean_object* x_2669; lean_object* x_2670; lean_object* x_2671; lean_object* x_2672; lean_object* x_2673; lean_object* x_2674; lean_object* x_2675; lean_object* x_2676; lean_object* x_2677; lean_object* x_2678; lean_object* x_2679; lean_object* x_2680; uint8_t x_2681; x_2665 = lean_ctor_get(x_2663, 0); lean_dec(x_2665); -x_2666 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_2666 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_2667 = lean_array_push(x_2666, x_2645); -x_2668 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_2668 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_2669 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2669, 0, x_2668); lean_ctor_set(x_2669, 1, x_2667); @@ -14521,11 +14885,11 @@ x_2672 = l_Lean_nullKind___closed__2; x_2673 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2673, 0, x_2672); lean_ctor_set(x_2673, 1, x_2671); -x_2674 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2674 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_2675 = lean_array_push(x_2674, x_2673); x_2676 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_2677 = lean_array_push(x_2675, x_2676); -x_2678 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2678 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_2679 = lean_array_push(x_2677, x_2678); lean_inc(x_19); x_2680 = lean_array_push(x_2670, x_19); @@ -14543,7 +14907,7 @@ x_2684 = lean_array_push(x_2670, x_19); x_2685 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_2686 = lean_array_push(x_2684, x_2685); x_2687 = lean_array_push(x_2686, x_2659); -x_2688 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_2688 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_2689 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2689, 0, x_2688); lean_ctor_set(x_2689, 1, x_2687); @@ -14551,14 +14915,14 @@ x_2690 = lean_array_push(x_2670, x_2689); x_2691 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2691, 0, x_2672); lean_ctor_set(x_2691, 1, x_2690); -x_2692 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2692 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_2693 = lean_array_push(x_2692, x_2691); -x_2694 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_2694 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_2695 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2695, 0, x_2694); lean_ctor_set(x_2695, 1, x_2693); x_2696 = lean_array_push(x_2679, x_2695); -x_2697 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_2697 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_2698 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2698, 0, x_2697); lean_ctor_set(x_2698, 1, x_2696); @@ -14580,7 +14944,7 @@ x_2702 = lean_array_push(x_2670, x_2701); x_2703 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_2704 = lean_array_push(x_2702, x_2703); x_2705 = lean_array_push(x_2704, x_2659); -x_2706 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_2706 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_2707 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2707, 0, x_2706); lean_ctor_set(x_2707, 1, x_2705); @@ -14588,14 +14952,14 @@ x_2708 = lean_array_push(x_2670, x_2707); x_2709 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2709, 0, x_2672); lean_ctor_set(x_2709, 1, x_2708); -x_2710 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2710 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_2711 = lean_array_push(x_2710, x_2709); -x_2712 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_2712 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_2713 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2713, 0, x_2712); lean_ctor_set(x_2713, 1, x_2711); x_2714 = lean_array_push(x_2679, x_2713); -x_2715 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_2715 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_2716 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2716, 0, x_2715); lean_ctor_set(x_2716, 1, x_2714); @@ -14613,9 +14977,9 @@ lean_object* x_2719; lean_object* x_2720; lean_object* x_2721; lean_object* x_27 x_2719 = lean_ctor_get(x_2663, 1); lean_inc(x_2719); lean_dec(x_2663); -x_2720 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_2720 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_2721 = lean_array_push(x_2720, x_2645); -x_2722 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_2722 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_2723 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2723, 0, x_2722); lean_ctor_set(x_2723, 1, x_2721); @@ -14625,11 +14989,11 @@ x_2726 = l_Lean_nullKind___closed__2; x_2727 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2727, 0, x_2726); lean_ctor_set(x_2727, 1, x_2725); -x_2728 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2728 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_2729 = lean_array_push(x_2728, x_2727); x_2730 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_2731 = lean_array_push(x_2729, x_2730); -x_2732 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2732 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_2733 = lean_array_push(x_2731, x_2732); lean_inc(x_19); x_2734 = lean_array_push(x_2724, x_19); @@ -14652,7 +15016,7 @@ x_2737 = lean_array_push(x_2724, x_2736); x_2738 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_2739 = lean_array_push(x_2737, x_2738); x_2740 = lean_array_push(x_2739, x_2659); -x_2741 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_2741 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_2742 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2742, 0, x_2741); lean_ctor_set(x_2742, 1, x_2740); @@ -14660,14 +15024,14 @@ x_2743 = lean_array_push(x_2724, x_2742); x_2744 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2744, 0, x_2726); lean_ctor_set(x_2744, 1, x_2743); -x_2745 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2745 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_2746 = lean_array_push(x_2745, x_2744); -x_2747 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_2747 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_2748 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2748, 0, x_2747); lean_ctor_set(x_2748, 1, x_2746); x_2749 = lean_array_push(x_2733, x_2748); -x_2750 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_2750 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_2751 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2751, 0, x_2750); lean_ctor_set(x_2751, 1, x_2749); @@ -14703,9 +15067,9 @@ if (lean_is_exclusive(x_2758)) { lean_dec_ref(x_2758); x_2760 = lean_box(0); } -x_2761 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_2761 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_2762 = lean_array_push(x_2761, x_2645); -x_2763 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_2763 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_2764 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2764, 0, x_2763); lean_ctor_set(x_2764, 1, x_2762); @@ -14715,11 +15079,11 @@ x_2767 = l_Lean_nullKind___closed__2; x_2768 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2768, 0, x_2767); lean_ctor_set(x_2768, 1, x_2766); -x_2769 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2769 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_2770 = lean_array_push(x_2769, x_2768); x_2771 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_2772 = lean_array_push(x_2770, x_2771); -x_2773 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2773 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_2774 = lean_array_push(x_2772, x_2773); lean_inc(x_19); x_2775 = lean_array_push(x_2765, x_19); @@ -14742,7 +15106,7 @@ x_2778 = lean_array_push(x_2765, x_2777); x_2779 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_2780 = lean_array_push(x_2778, x_2779); x_2781 = lean_array_push(x_2780, x_2755); -x_2782 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_2782 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_2783 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2783, 0, x_2782); lean_ctor_set(x_2783, 1, x_2781); @@ -14750,14 +15114,14 @@ x_2784 = lean_array_push(x_2765, x_2783); x_2785 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2785, 0, x_2767); lean_ctor_set(x_2785, 1, x_2784); -x_2786 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2786 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_2787 = lean_array_push(x_2786, x_2785); -x_2788 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_2788 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_2789 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2789, 0, x_2788); lean_ctor_set(x_2789, 1, x_2787); x_2790 = lean_array_push(x_2774, x_2789); -x_2791 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_2791 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_2792 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2792, 0, x_2791); lean_ctor_set(x_2792, 1, x_2790); @@ -14809,9 +15173,9 @@ if (lean_is_exclusive(x_2802)) { lean_dec_ref(x_2802); x_2804 = lean_box(0); } -x_2805 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_2805 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_2806 = lean_array_push(x_2805, x_2645); -x_2807 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_2807 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_2808 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2808, 0, x_2807); lean_ctor_set(x_2808, 1, x_2806); @@ -14821,11 +15185,11 @@ x_2811 = l_Lean_nullKind___closed__2; x_2812 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2812, 0, x_2811); lean_ctor_set(x_2812, 1, x_2810); -x_2813 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2813 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_2814 = lean_array_push(x_2813, x_2812); x_2815 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_2816 = lean_array_push(x_2814, x_2815); -x_2817 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2817 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_2818 = lean_array_push(x_2816, x_2817); lean_inc(x_19); x_2819 = lean_array_push(x_2809, x_19); @@ -14848,7 +15212,7 @@ x_2822 = lean_array_push(x_2809, x_2821); x_2823 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_2824 = lean_array_push(x_2822, x_2823); x_2825 = lean_array_push(x_2824, x_2798); -x_2826 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_2826 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_2827 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2827, 0, x_2826); lean_ctor_set(x_2827, 1, x_2825); @@ -14856,14 +15220,14 @@ x_2828 = lean_array_push(x_2809, x_2827); x_2829 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2829, 0, x_2811); lean_ctor_set(x_2829, 1, x_2828); -x_2830 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2830 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_2831 = lean_array_push(x_2830, x_2829); -x_2832 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_2832 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_2833 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2833, 0, x_2832); lean_ctor_set(x_2833, 1, x_2831); x_2834 = lean_array_push(x_2818, x_2833); -x_2835 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_2835 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_2836 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2836, 0, x_2835); lean_ctor_set(x_2836, 1, x_2834); @@ -14941,9 +15305,9 @@ if (x_2862 == 0) lean_object* x_2863; lean_object* x_2864; lean_object* x_2865; lean_object* x_2866; lean_object* x_2867; lean_object* x_2868; lean_object* x_2869; lean_object* x_2870; lean_object* x_2871; lean_object* x_2872; lean_object* x_2873; lean_object* x_2874; lean_object* x_2875; lean_object* x_2876; lean_object* x_2877; lean_object* x_2878; uint8_t x_2879; x_2863 = lean_ctor_get(x_2861, 0); lean_dec(x_2863); -x_2864 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_2864 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_2865 = lean_array_push(x_2864, x_2843); -x_2866 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_2866 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_2867 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2867, 0, x_2866); lean_ctor_set(x_2867, 1, x_2865); @@ -14953,11 +15317,11 @@ x_2870 = l_Lean_nullKind___closed__2; x_2871 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2871, 0, x_2870); lean_ctor_set(x_2871, 1, x_2869); -x_2872 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2872 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_2873 = lean_array_push(x_2872, x_2871); x_2874 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_2875 = lean_array_push(x_2873, x_2874); -x_2876 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2876 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_2877 = lean_array_push(x_2875, x_2876); lean_inc(x_19); x_2878 = lean_array_push(x_2868, x_19); @@ -14976,7 +15340,7 @@ x_2882 = lean_array_push(x_2868, x_19); x_2883 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_2884 = lean_array_push(x_2882, x_2883); x_2885 = lean_array_push(x_2884, x_2857); -x_2886 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_2886 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_2887 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2887, 0, x_2886); lean_ctor_set(x_2887, 1, x_2885); @@ -14984,14 +15348,14 @@ x_2888 = lean_array_push(x_2868, x_2887); x_2889 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2889, 0, x_2870); lean_ctor_set(x_2889, 1, x_2888); -x_2890 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2890 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_2891 = lean_array_push(x_2890, x_2889); -x_2892 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_2892 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_2893 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2893, 0, x_2892); lean_ctor_set(x_2893, 1, x_2891); x_2894 = lean_array_push(x_2877, x_2893); -x_2895 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_2895 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_2896 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2896, 0, x_2895); lean_ctor_set(x_2896, 1, x_2894); @@ -15013,7 +15377,7 @@ x_2900 = lean_array_push(x_2868, x_2899); x_2901 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_2902 = lean_array_push(x_2900, x_2901); x_2903 = lean_array_push(x_2902, x_2857); -x_2904 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_2904 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_2905 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2905, 0, x_2904); lean_ctor_set(x_2905, 1, x_2903); @@ -15021,14 +15385,14 @@ x_2906 = lean_array_push(x_2868, x_2905); x_2907 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2907, 0, x_2870); lean_ctor_set(x_2907, 1, x_2906); -x_2908 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2908 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_2909 = lean_array_push(x_2908, x_2907); -x_2910 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_2910 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_2911 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2911, 0, x_2910); lean_ctor_set(x_2911, 1, x_2909); x_2912 = lean_array_push(x_2877, x_2911); -x_2913 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_2913 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_2914 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2914, 0, x_2913); lean_ctor_set(x_2914, 1, x_2912); @@ -15046,9 +15410,9 @@ lean_object* x_2917; lean_object* x_2918; lean_object* x_2919; lean_object* x_29 x_2917 = lean_ctor_get(x_2861, 1); lean_inc(x_2917); lean_dec(x_2861); -x_2918 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_2918 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_2919 = lean_array_push(x_2918, x_2843); -x_2920 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_2920 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_2921 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2921, 0, x_2920); lean_ctor_set(x_2921, 1, x_2919); @@ -15058,11 +15422,11 @@ x_2924 = l_Lean_nullKind___closed__2; x_2925 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2925, 0, x_2924); lean_ctor_set(x_2925, 1, x_2923); -x_2926 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2926 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_2927 = lean_array_push(x_2926, x_2925); x_2928 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_2929 = lean_array_push(x_2927, x_2928); -x_2930 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2930 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_2931 = lean_array_push(x_2929, x_2930); lean_inc(x_19); x_2932 = lean_array_push(x_2922, x_19); @@ -15086,7 +15450,7 @@ x_2935 = lean_array_push(x_2922, x_2934); x_2936 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_2937 = lean_array_push(x_2935, x_2936); x_2938 = lean_array_push(x_2937, x_2857); -x_2939 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_2939 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_2940 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2940, 0, x_2939); lean_ctor_set(x_2940, 1, x_2938); @@ -15094,14 +15458,14 @@ x_2941 = lean_array_push(x_2922, x_2940); x_2942 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2942, 0, x_2924); lean_ctor_set(x_2942, 1, x_2941); -x_2943 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2943 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_2944 = lean_array_push(x_2943, x_2942); -x_2945 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_2945 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_2946 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2946, 0, x_2945); lean_ctor_set(x_2946, 1, x_2944); x_2947 = lean_array_push(x_2931, x_2946); -x_2948 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_2948 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_2949 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2949, 0, x_2948); lean_ctor_set(x_2949, 1, x_2947); @@ -15137,9 +15501,9 @@ if (lean_is_exclusive(x_2956)) { lean_dec_ref(x_2956); x_2958 = lean_box(0); } -x_2959 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_2959 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_2960 = lean_array_push(x_2959, x_2843); -x_2961 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_2961 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_2962 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2962, 0, x_2961); lean_ctor_set(x_2962, 1, x_2960); @@ -15149,11 +15513,11 @@ x_2965 = l_Lean_nullKind___closed__2; x_2966 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2966, 0, x_2965); lean_ctor_set(x_2966, 1, x_2964); -x_2967 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2967 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_2968 = lean_array_push(x_2967, x_2966); x_2969 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_2970 = lean_array_push(x_2968, x_2969); -x_2971 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2971 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_2972 = lean_array_push(x_2970, x_2971); lean_inc(x_19); x_2973 = lean_array_push(x_2963, x_19); @@ -15177,7 +15541,7 @@ x_2976 = lean_array_push(x_2963, x_2975); x_2977 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_2978 = lean_array_push(x_2976, x_2977); x_2979 = lean_array_push(x_2978, x_2953); -x_2980 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_2980 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_2981 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2981, 0, x_2980); lean_ctor_set(x_2981, 1, x_2979); @@ -15185,14 +15549,14 @@ x_2982 = lean_array_push(x_2963, x_2981); x_2983 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2983, 0, x_2965); lean_ctor_set(x_2983, 1, x_2982); -x_2984 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2984 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_2985 = lean_array_push(x_2984, x_2983); -x_2986 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_2986 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_2987 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2987, 0, x_2986); lean_ctor_set(x_2987, 1, x_2985); x_2988 = lean_array_push(x_2972, x_2987); -x_2989 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_2989 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_2990 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2990, 0, x_2989); lean_ctor_set(x_2990, 1, x_2988); @@ -15244,9 +15608,9 @@ if (lean_is_exclusive(x_3000)) { lean_dec_ref(x_3000); x_3002 = lean_box(0); } -x_3003 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_3003 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_3004 = lean_array_push(x_3003, x_2843); -x_3005 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_3005 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_3006 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3006, 0, x_3005); lean_ctor_set(x_3006, 1, x_3004); @@ -15256,11 +15620,11 @@ x_3009 = l_Lean_nullKind___closed__2; x_3010 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3010, 0, x_3009); lean_ctor_set(x_3010, 1, x_3008); -x_3011 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_3011 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_3012 = lean_array_push(x_3011, x_3010); x_3013 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_3014 = lean_array_push(x_3012, x_3013); -x_3015 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_3015 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_3016 = lean_array_push(x_3014, x_3015); lean_inc(x_19); x_3017 = lean_array_push(x_3007, x_19); @@ -15284,7 +15648,7 @@ x_3020 = lean_array_push(x_3007, x_3019); x_3021 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_3022 = lean_array_push(x_3020, x_3021); x_3023 = lean_array_push(x_3022, x_2996); -x_3024 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_3024 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_3025 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3025, 0, x_3024); lean_ctor_set(x_3025, 1, x_3023); @@ -15292,14 +15656,14 @@ x_3026 = lean_array_push(x_3007, x_3025); x_3027 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3027, 0, x_3009); lean_ctor_set(x_3027, 1, x_3026); -x_3028 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_3028 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_3029 = lean_array_push(x_3028, x_3027); -x_3030 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_3030 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_3031 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3031, 0, x_3030); lean_ctor_set(x_3031, 1, x_3029); x_3032 = lean_array_push(x_3016, x_3031); -x_3033 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_3033 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_3034 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3034, 0, x_3033); lean_ctor_set(x_3034, 1, x_3032); @@ -17278,7 +17642,7 @@ x_17 = lean_array_push(x_16, x_3); if (x_4 == 0) { lean_object* x_18; lean_object* x_19; -x_18 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_18 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_19 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_19, 0, x_18); lean_ctor_set(x_19, 1, x_17); @@ -17323,7 +17687,7 @@ uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_4 = l_Array_isEmpty___rarg(x_2); x_5 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_addDiscr___closed__1; x_6 = lean_array_push(x_5, x_3); -x_7 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_7 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_8 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_8, 0, x_7); lean_ctor_set(x_8, 1, x_6); @@ -18590,7 +18954,7 @@ block_82: { lean_object* x_44; uint8_t x_45; lean_dec(x_43); -x_44 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_44 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; lean_inc(x_42); x_45 = l_Lean_Syntax_isOfKind(x_42, x_44); if (x_45 == 0) @@ -18832,7 +19196,63 @@ x_10 = l_Lean_Meta_isExprDefEqImp(x_1, x_2, x_5, x_6, x_7, x_8, x_9); return x_10; } } -lean_object* l_Lean_Meta_forallBoundedTelescope___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +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; uint8_t x_16; +x_9 = lean_ctor_get(x_6, 3); +x_10 = lean_ctor_get(x_2, 3); +lean_inc(x_10); +lean_inc(x_10); +x_11 = l_Lean_Elab_getBetterRef(x_9, x_10); +x_12 = l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(x_1, x_4, x_5, x_6, x_7, x_8); +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +x_14 = lean_ctor_get(x_12, 1); +lean_inc(x_14); +lean_dec(x_12); +x_15 = l_Lean_Elab_addMacroStack___at_Lean_Elab_Term_instAddErrorMessageContextTermElabM___spec__1(x_13, x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_14); +lean_dec(x_2); +lean_dec(x_10); +x_16 = !lean_is_exclusive(x_15); +if (x_16 == 0) +{ +lean_object* x_17; lean_object* x_18; +x_17 = lean_ctor_get(x_15, 0); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_11); +lean_ctor_set(x_18, 1, x_17); +lean_ctor_set_tag(x_15, 1); +lean_ctor_set(x_15, 0, x_18); +return x_15; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_19 = lean_ctor_get(x_15, 0); +x_20 = lean_ctor_get(x_15, 1); +lean_inc(x_20); +lean_inc(x_19); +lean_dec(x_15); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_11); +lean_ctor_set(x_21, 1, x_19); +x_22 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_22, 0, x_21); +lean_ctor_set(x_22, 1, x_20); +return x_22; +} +} +} +lean_object* l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg___boxed), 8, 0); +return x_2; +} +} +lean_object* l_Lean_Meta_forallBoundedTelescope___at_Lean_Elab_Term_elabLetDeclAux___spec__4___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; lean_object* x_12; @@ -18887,15 +19307,15 @@ return x_20; } } } -lean_object* l_Lean_Meta_forallBoundedTelescope___at_Lean_Elab_Term_elabLetDeclAux___spec__3(lean_object* x_1) { +lean_object* l_Lean_Meta_forallBoundedTelescope___at_Lean_Elab_Term_elabLetDeclAux___spec__4(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Meta_forallBoundedTelescope___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg), 10, 0); +x_2 = lean_alloc_closure((void*)(l_Lean_Meta_forallBoundedTelescope___at_Lean_Elab_Term_elabLetDeclAux___spec__4___rarg), 10, 0); return x_2; } } -lean_object* l_Lean_Meta_withLetDecl___at_Lean_Elab_Term_elabLetDeclAux___spec__4___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Lean_Meta_withLetDecl___at_Lean_Elab_Term_elabLetDeclAux___spec__5___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; @@ -18950,11 +19370,11 @@ return x_21; } } } -lean_object* l_Lean_Meta_withLetDecl___at_Lean_Elab_Term_elabLetDeclAux___spec__4(lean_object* x_1) { +lean_object* l_Lean_Meta_withLetDecl___at_Lean_Elab_Term_elabLetDeclAux___spec__5(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Meta_withLetDecl___at_Lean_Elab_Term_elabLetDeclAux___spec__4___rarg), 11, 0); +x_2 = lean_alloc_closure((void*)(l_Lean_Meta_withLetDecl___at_Lean_Elab_Term_elabLetDeclAux___spec__5___rarg), 11, 0); return x_2; } } @@ -19381,7 +19801,7 @@ x_24 = lean_ctor_get(x_21, 1); lean_inc(x_24); lean_dec(x_21); x_25 = l_Lean_Elab_Term_elabLetDeclAux___lambda__2___closed__3; -x_26 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_25, x_5, x_6, x_7, x_8, x_9, x_10, x_24); +x_26 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_25, x_5, x_6, x_7, x_8, x_9, x_10, x_24); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -19542,7 +19962,7 @@ lean_ctor_set(x_15, 0, x_2); x_16 = lean_alloc_closure((void*)(l_Lean_Elab_Term_elabLetDeclAux___lambda__2), 11, 2); lean_closure_set(x_16, 0, x_3); lean_closure_set(x_16, 1, x_4); -x_17 = l_Lean_Meta_forallBoundedTelescope___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_5, x_15, x_16, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_17 = l_Lean_Meta_forallBoundedTelescope___at_Lean_Elab_Term_elabLetDeclAux___spec__4___rarg(x_5, x_15, x_16, x_7, x_8, x_9, x_10, x_11, x_12, x_13); if (lean_obj_tag(x_17) == 0) { uint8_t x_18; @@ -19867,7 +20287,7 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_24); lean_inc(x_23); -x_39 = l_Lean_Meta_withLetDecl___at_Lean_Elab_Term_elabLetDeclAux___spec__4___rarg(x_1, x_23, x_24, x_38, x_9, x_10, x_11, x_12, x_13, x_14, x_26); +x_39 = l_Lean_Meta_withLetDecl___at_Lean_Elab_Term_elabLetDeclAux___spec__5___rarg(x_1, x_23, x_24, x_38, x_9, x_10, x_11, x_12, x_13, x_14, x_26); if (lean_obj_tag(x_39) == 0) { lean_object* x_40; lean_object* x_41; lean_object* x_42; @@ -20020,6 +20440,19 @@ lean_dec(x_3); return x_10; } } +lean_object* l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_9; +} +} lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { @@ -20164,7 +20597,7 @@ x_21 = l_Array_isEmpty___rarg(x_4); x_22 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_addDiscr___closed__1; lean_inc(x_20); x_23 = lean_array_push(x_22, x_20); -x_24 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_24 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_25 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_23); @@ -20288,7 +20721,7 @@ x_78 = l_Array_isEmpty___rarg(x_4); x_79 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_addDiscr___closed__1; lean_inc(x_77); x_80 = lean_array_push(x_79, x_77); -x_81 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_81 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_82 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_82, 0, x_81); lean_ctor_set(x_82, 1, x_80); @@ -20374,7 +20807,7 @@ x_117 = l_Lean_mkOptionalNode___closed__1; x_118 = lean_array_push(x_116, x_117); x_119 = lean_array_push(x_118, x_113); x_120 = lean_array_push(x_119, x_2); -x_121 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_121 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_122 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_122, 0, x_121); lean_ctor_set(x_122, 1, x_120); @@ -20613,7 +21046,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Elab_Term_quoteAutoTactic___closed__1; x_2 = l_Lean_Elab_Term_elabLetDeclCore___closed__5; -x_3 = lean_unsigned_to_nat(591u); +x_3 = lean_unsigned_to_nat(590u); x_4 = lean_unsigned_to_nat(24u); x_5 = l_Lean_Syntax_strLitToAtom___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -20855,9 +21288,9 @@ x_123 = l_myMacro____x40_Init_Notation___hyg_12470____closed__4; x_124 = lean_array_push(x_123, x_122); x_125 = l_myMacro____x40_Init_Notation___hyg_12470____closed__18; x_126 = lean_array_push(x_124, x_125); -x_127 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_127 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_128 = lean_array_push(x_127, x_103); -x_129 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_129 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_130 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_130, 0, x_129); lean_ctor_set(x_130, 1, x_128); @@ -20865,10 +21298,10 @@ x_131 = lean_array_push(x_104, x_130); x_132 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_132, 0, x_113); lean_ctor_set(x_132, 1, x_131); -x_133 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_133 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_134 = lean_array_push(x_133, x_132); x_135 = lean_array_push(x_134, x_106); -x_136 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_136 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_137 = lean_array_push(x_135, x_136); x_138 = lean_array_push(x_104, x_86); x_139 = lean_alloc_ctor(1, 2, 0); @@ -20878,7 +21311,7 @@ x_140 = lean_array_push(x_104, x_139); x_141 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_142 = lean_array_push(x_140, x_141); x_143 = lean_array_push(x_142, x_43); -x_144 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_144 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_145 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_145, 0, x_144); lean_ctor_set(x_145, 1, x_143); @@ -20886,14 +21319,14 @@ x_146 = lean_array_push(x_104, x_145); x_147 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_147, 0, x_113); lean_ctor_set(x_147, 1, x_146); -x_148 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_148 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_149 = lean_array_push(x_148, x_147); -x_150 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_150 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_151 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_151, 0, x_150); lean_ctor_set(x_151, 1, x_149); x_152 = lean_array_push(x_137, x_151); -x_153 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_153 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_154 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_154, 0, x_153); lean_ctor_set(x_154, 1, x_152); @@ -21353,7 +21786,7 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_4916_(lean_object* x_1) { +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_4915_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -21364,7 +21797,6 @@ return x_3; } lean_object* initialize_Init(lean_object*); lean_object* initialize_Lean_Elab_Term(lean_object*); -lean_object* initialize_Lean_Elab_Quotation(lean_object*); static bool _G_initialized = false; lean_object* initialize_Lean_Elab_Binders(lean_object* w) { lean_object * res; @@ -21376,9 +21808,6 @@ lean_dec_ref(res); res = initialize_Lean_Elab_Term(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Lean_Elab_Quotation(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandOptIdent___closed__1 = _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandOptIdent___closed__1(); lean_mark_persistent(l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandOptIdent___closed__1); l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandOptIdent___closed__2 = _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandOptIdent___closed__2(); @@ -21389,6 +21818,14 @@ l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed_ lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__2); l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__3 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__3(); lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__3); +l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__4 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__4(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__4); +l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__5 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__5(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__5); +l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__6 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__6(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__6); +l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__7 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__7(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__7); l_Lean_Elab_Term_quoteAutoTactic___closed__1 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__1); l_Lean_Elab_Term_quoteAutoTactic___closed__2 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__2(); @@ -21427,6 +21864,52 @@ l_Lean_Elab_Term_quoteAutoTactic___closed__18 = _init_l_Lean_Elab_Term_quoteAuto lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__18); l_Lean_Elab_Term_quoteAutoTactic___closed__19 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__19(); lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__19); +l_Lean_Elab_Term_quoteAutoTactic___closed__20 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__20(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__20); +l_Lean_Elab_Term_quoteAutoTactic___closed__21 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__21(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__21); +l_Lean_Elab_Term_quoteAutoTactic___closed__22 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__22(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__22); +l_Lean_Elab_Term_quoteAutoTactic___closed__23 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__23(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__23); +l_Lean_Elab_Term_quoteAutoTactic___closed__24 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__24(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__24); +l_Lean_Elab_Term_quoteAutoTactic___closed__25 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__25(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__25); +l_Lean_Elab_Term_quoteAutoTactic___closed__26 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__26(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__26); +l_Lean_Elab_Term_quoteAutoTactic___closed__27 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__27(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__27); +l_Lean_Elab_Term_quoteAutoTactic___closed__28 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__28(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__28); +l_Lean_Elab_Term_quoteAutoTactic___closed__29 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__29(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__29); +l_Lean_Elab_Term_quoteAutoTactic___closed__30 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__30(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__30); +l_Lean_Elab_Term_quoteAutoTactic___closed__31 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__31(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__31); +l_Lean_Elab_Term_quoteAutoTactic___closed__32 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__32(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__32); +l_Lean_Elab_Term_quoteAutoTactic___closed__33 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__33(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__33); +l_Lean_Elab_Term_quoteAutoTactic___closed__34 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__34(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__34); +l_Lean_Elab_Term_quoteAutoTactic___closed__35 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__35(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__35); +l_Lean_Elab_Term_quoteAutoTactic___closed__36 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__36(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__36); +l_Lean_Elab_Term_quoteAutoTactic___closed__37 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__37(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__37); +l_Lean_Elab_Term_quoteAutoTactic___closed__38 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__38(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__38); +l_Lean_Elab_Term_quoteAutoTactic___closed__39 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__39(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__39); +l_Lean_Elab_Term_quoteAutoTactic___closed__40 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__40(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__40); +l_Lean_Elab_Term_quoteAutoTactic___closed__41 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__41(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__41); +l_Lean_Elab_Term_quoteAutoTactic___closed__42 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__42(); +lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__42); l_Lean_Elab_Term_declareTacticSyntax___closed__1 = _init_l_Lean_Elab_Term_declareTacticSyntax___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_declareTacticSyntax___closed__1); l_Lean_Elab_Term_declareTacticSyntax___closed__2 = _init_l_Lean_Elab_Term_declareTacticSyntax___closed__2(); @@ -21524,6 +22007,18 @@ l_Lean_Elab_Term_expandFunBinders_loop___closed__6 = _init_l_Lean_Elab_Term_expa lean_mark_persistent(l_Lean_Elab_Term_expandFunBinders_loop___closed__6); l_Lean_Elab_Term_expandFunBinders_loop___closed__7 = _init_l_Lean_Elab_Term_expandFunBinders_loop___closed__7(); lean_mark_persistent(l_Lean_Elab_Term_expandFunBinders_loop___closed__7); +l_Lean_Elab_Term_expandFunBinders_loop___closed__8 = _init_l_Lean_Elab_Term_expandFunBinders_loop___closed__8(); +lean_mark_persistent(l_Lean_Elab_Term_expandFunBinders_loop___closed__8); +l_Lean_Elab_Term_expandFunBinders_loop___closed__9 = _init_l_Lean_Elab_Term_expandFunBinders_loop___closed__9(); +lean_mark_persistent(l_Lean_Elab_Term_expandFunBinders_loop___closed__9); +l_Lean_Elab_Term_expandFunBinders_loop___closed__10 = _init_l_Lean_Elab_Term_expandFunBinders_loop___closed__10(); +lean_mark_persistent(l_Lean_Elab_Term_expandFunBinders_loop___closed__10); +l_Lean_Elab_Term_expandFunBinders_loop___closed__11 = _init_l_Lean_Elab_Term_expandFunBinders_loop___closed__11(); +lean_mark_persistent(l_Lean_Elab_Term_expandFunBinders_loop___closed__11); +l_Lean_Elab_Term_expandFunBinders_loop___closed__12 = _init_l_Lean_Elab_Term_expandFunBinders_loop___closed__12(); +lean_mark_persistent(l_Lean_Elab_Term_expandFunBinders_loop___closed__12); +l_Lean_Elab_Term_expandFunBinders_loop___closed__13 = _init_l_Lean_Elab_Term_expandFunBinders_loop___closed__13(); +lean_mark_persistent(l_Lean_Elab_Term_expandFunBinders_loop___closed__13); l_Lean_Elab_Term_FunBinders_State_fvars___default = _init_l_Lean_Elab_Term_FunBinders_State_fvars___default(); lean_mark_persistent(l_Lean_Elab_Term_FunBinders_State_fvars___default); l_Lean_Elab_Term_FunBinders_State_expectedType_x3f___default = _init_l_Lean_Elab_Term_FunBinders_State_expectedType_x3f___default(); @@ -21596,7 +22091,7 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabLetStarDecl___closed__1); res = l___regBuiltin_Lean_Elab_Term_elabLetStarDecl(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_4916_(lean_io_mk_world()); +res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_4915_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Elab/BuiltinNotation.c b/stage0/stdlib/Lean/Elab/BuiltinNotation.c index 496cbed1f9..58e6ebe74c 100644 --- a/stage0/stdlib/Lean/Elab/BuiltinNotation.c +++ b/stage0/stdlib/Lean/Elab/BuiltinNotation.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Elab.BuiltinNotation -// Imports: Init Init.Data.ToString Lean.Compiler.BorrowedAnnotation Lean.Meta.KAbstract Lean.Elab.Term Lean.Elab.Quotation Lean.Elab.SyntheticMVars +// Imports: Init Init.Data.ToString Lean.Compiler.BorrowedAnnotation Lean.Meta.KAbstract Lean.Elab.Term Lean.Elab.SyntheticMVars #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -28,6 +28,7 @@ lean_object* l_Lean_Meta_mkExpectedTypeHint___at_Lean_Elab_Term_elabNativeDecide extern lean_object* l___regBuiltin_Lean_Elab_Term_elabBadCDot___closed__2; lean_object* l_Lean_Elab_Term_mkPairs_loop___closed__5; lean_object* l_Lean_stringToMessageData(lean_object*); +extern lean_object* l_instReprOption___rarg___closed__1; lean_object* l___private_Lean_Meta_AppBuilder_0__Lean_Meta_mkEqImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_getRefPos___at_Lean_Elab_Term_elabPanic___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkSort(lean_object*); @@ -39,6 +40,7 @@ lean_object* l_Lean_Elab_Term_expandHave___closed__2; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_expandCDot_match__1(lean_object*); extern lean_object* l_Lean_withIncRecDepth___rarg___lambda__2___closed__2; lean_object* l_Lean_Elab_Term_expandDbgTrace___closed__4; +lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__36; lean_object* l_Lean_addDecl___at_Lean_Elab_Term_declareTacticSyntax___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_nullKind; lean_object* l_Lean_Elab_Term_expandAssert___closed__10; @@ -83,13 +85,14 @@ extern lean_object* l_Array_empty___closed__1; lean_object* l_Lean_Elab_Term_expandAssert___closed__12; lean_object* l_Lean_Elab_Term_expandAssert_match__1(lean_object*); lean_object* lean_environment_find(lean_object*, lean_object*); -extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__21; lean_object* l_Lean_Elab_Term_expandEmptyC___closed__8; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__19; lean_object* l_Lean_Elab_Term_elabTermAndSynthesize(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_markBorrowed___closed__1; +extern lean_object* l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__5; lean_object* l___private_Lean_Meta_AppBuilder_0__Lean_Meta_mkEqSymmImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_get(lean_object*, lean_object*); +extern lean_object* l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__3; lean_object* l_Lean_Meta_mkDecide___at_Lean_Elab_Term_elabNativeDecide___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabNativeDecide___rarg___closed__1; @@ -103,7 +106,6 @@ lean_object* l___regBuiltin_Lean_Elab_Term_expandAssert___closed__2; extern lean_object* l_Lean_Meta_mkAppM___rarg___closed__2; lean_object* l_Lean_Elab_Term_expandEmptyC___closed__1; lean_object* l_Lean_Elab_Term_elabParen___closed__3; -extern lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; lean_object* l_Lean_Meta_mkLambdaFVarsImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_instantiate1(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux_match__1___rarg(lean_object*, lean_object*, lean_object*); @@ -136,6 +138,7 @@ lean_object* l_Lean_Elab_Term_expandAssert___closed__11; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabClosedTerm___lambda__1___closed__2; lean_object* l_Lean_Meta_mkEqRefl___at_Lean_Elab_Term_elabNativeDecide___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandDbgTrace___closed__1; +lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__39; lean_object* l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1019____spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabAnonymousCtor_match__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_appArg_x21(lean_object*); @@ -143,6 +146,7 @@ lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__2; lean_object* lean_string_utf8_byte_size(lean_object*); lean_object* l_Lean_Elab_Term_elabNativeRefl___closed__2; lean_object* l___private_Lean_Meta_AppBuilder_0__Lean_Meta_mkEqReflImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__35; lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getMainModule___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabAnonymousCtor___closed__6; @@ -203,6 +207,7 @@ lean_object* l_Lean_Elab_Term_elabParen___closed__4; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabTParserMacroAux___closed__3; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__10; lean_object* l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__32; uint8_t l_Lean_Occurrences_beq(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13592____closed__2; lean_object* l_Lean_Elab_Term_expandAssert___closed__24; @@ -241,7 +246,6 @@ lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabTParser lean_object* l_Lean_Meta_mkDecide___at_Lean_Elab_Term_elabNativeDecide___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_9707____closed__22; extern lean_object* l_Lean_Meta_mkDecide___rarg___closed__1; -extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__18; lean_object* l_Lean_Elab_Term_elabNativeRefl___lambda__1___closed__5; lean_object* l___regBuiltin_Lean_Elab_Term_elabStateRefT___closed__1; 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*); @@ -305,11 +309,11 @@ lean_object* l_Lean_Elab_Term_expandAssert___closed__16; lean_object* l_Lean_Elab_Term_elabStateRefT___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_hasCDot___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabAnonymousCtor___closed__9; -extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__22; extern lean_object* l_myMacro____x40_Init_Notation___hyg_11836____closed__8; lean_object* l_Lean_Elab_Term_expandShow(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabStateRefT___lambda__2___closed__1; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__21; +lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__38; lean_object* l_Lean_Elab_Term_elabAnonymousCtor___closed__3; lean_object* l___private_Init_Meta_0__Lean_quoteName(lean_object*); lean_object* l_Lean_Syntax_mkStrLit(lean_object*, lean_object*); @@ -438,6 +442,7 @@ lean_object* l_Lean_Elab_Term_elabStateRefT___lambda__1___boxed(lean_object*, le lean_object* l___regBuiltin_Lean_Elab_Term_elabNativeDecide___closed__3; lean_object* l_Lean_Elab_Term_expandShow___closed__10; extern lean_object* l_myMacro____x40_Init_Data_ToString_Macro___hyg_23____closed__8; +lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__37; lean_object* l___regBuiltin_Lean_Elab_Term_elabSubst(lean_object*); lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_expandCDot___boxed__const__1; lean_object* l___regBuiltin_Lean_Elab_Term_expandSorry(lean_object*); @@ -451,6 +456,7 @@ uint8_t l_Array_anyMUnsafe_any___at___private_Lean_Elab_BuiltinNotation_0__Lean_ lean_object* l_Lean_Elab_Term_adaptExpander(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Elab_Term_elabSubst___spec__3(lean_object*); lean_object* l_Lean_Elab_Term_elabDecide(lean_object*); +lean_object* l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandAssert___closed__18; lean_object* l_Lean_Elab_Term_expandShow___closed__8; lean_object* l_Lean_Syntax_getPos(lean_object*); @@ -536,7 +542,6 @@ lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Builtin lean_object* l_Lean_Elab_Term_expandAssert___closed__15; lean_object* l_Lean_Elab_Term_elabSubst___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_beq___at___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___spec__1___boxed(lean_object*, lean_object*); -extern lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__11; lean_object* l_Lean_Meta_mkEqSymm___at_Lean_Elab_Term_elabSubst___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkEqSymm___at_Lean_Elab_Term_elabSubst___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppFn(lean_object*); @@ -554,7 +559,6 @@ lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_expandSuffices___closed__1; lean_object* l_Lean_Elab_Term_expandEmptyC(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabTParserMacroAux___closed__1; -extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__19; lean_object* l_Lean_Meta_mkAppM___at_Lean_Elab_Term_elabStateRefT___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_tryPostponeIfHasMVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabTParserMacro___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -569,7 +573,6 @@ lean_object* l_Lean_Elab_Term_elabTParserMacro___lambda__1___closed__1; lean_object* l_Lean_Elab_Term_expandAssert___closed__17; uint8_t l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_hasCDot(lean_object*); lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabTParserMacroAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabSubst___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_expandAssert(lean_object*); lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabCDot_match__1(lean_object*); @@ -586,6 +589,7 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_11836____closed__10; lean_object* l_Lean_Elab_getRefPosition___at_Lean_Elab_Term_elabPanic___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_expandCDot_match__1___rarg(lean_object*, lean_object*, lean_object*); 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___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__33; lean_object* l___regBuiltin_Lean_Elab_Term_elabBorrowed___closed__1; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabClosedTerm___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabTParserMacro___closed__1; @@ -603,11 +607,13 @@ extern lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryCoe___closed lean_object* l_Lean_Elab_Term_elabSubst___closed__6; lean_object* l_Lean_Elab_Term_expandUnreachable___rarg___closed__8; lean_object* l___regBuiltin_Lean_Elab_Term_elabAnonymousCtor___closed__1; +extern lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__34; lean_object* l_Lean_Elab_Term_expandUnreachable___rarg___closed__4; lean_object* l_Lean_Elab_Term_elabTParserMacro___lambda__1___closed__2; extern lean_object* l_Lean_Meta_throwLetTypeMismatchMessage___rarg___closed__8; lean_object* l___regBuiltin_Lean_Elab_Term_expandUnreachable___closed__2; extern lean_object* l_myMacro____x40_Init_Notation___hyg_12470____closed__6; +lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__34; lean_object* l_Lean_Syntax_reprint(lean_object*); lean_object* l_Lean_Elab_Term_expandCDot_x3f_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkAppOptM___at___private_Lean_Elab_Term_0__Lean_Elab_Term_tryPureCoe_x3f___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -3861,6 +3867,96 @@ return x_3; static lean_object* _init_l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__30() { _start: { +lean_object* x_1; lean_object* x_2; +x_1 = l_instReprOption___rarg___closed__1; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__31() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_instReprOption___rarg___closed__1; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__30; +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___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__32() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_instReprOption___rarg___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__33() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__3; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__34() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__33; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__35() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__5; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__36() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__5; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__35; +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___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__37() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__5; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__38() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); x_2 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__6; @@ -3870,12 +3966,12 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__31() { +static lean_object* _init_l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__39() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__30; +x_2 = l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__38; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); @@ -4008,10 +4104,10 @@ lean_ctor_set(x_63, 2, x_60); lean_ctor_set(x_63, 3, x_62); x_64 = lean_array_push(x_36, x_63); x_65 = lean_array_push(x_36, x_23); -x_66 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__22; +x_66 = l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__32; x_67 = l_Lean_addMacroScope(x_52, x_66, x_48); -x_68 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__21; -x_69 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; +x_68 = l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__31; +x_69 = l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__34; x_70 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_70, 0, x_22); lean_ctor_set(x_70, 1, x_68); @@ -4084,10 +4180,10 @@ lean_ctor_set(x_102, 2, x_99); lean_ctor_set(x_102, 3, x_101); x_103 = lean_array_push(x_36, x_102); x_104 = lean_array_push(x_36, x_23); -x_105 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__22; +x_105 = l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__32; x_106 = l_Lean_addMacroScope(x_90, x_105, x_48); -x_107 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__21; -x_108 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; +x_107 = l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__31; +x_108 = l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__34; x_109 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_109, 0, x_22); lean_ctor_set(x_109, 1, x_107); @@ -4171,10 +4267,10 @@ lean_ctor_set(x_146, 2, x_143); lean_ctor_set(x_146, 3, x_145); x_147 = lean_array_push(x_36, x_146); x_148 = lean_array_push(x_36, x_23); -x_149 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__19; +x_149 = l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__37; x_150 = l_Lean_addMacroScope(x_135, x_149, x_131); -x_151 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__18; -x_152 = l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__31; +x_151 = l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__36; +x_152 = l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__39; x_153 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_153, 0, x_22); lean_ctor_set(x_153, 1, x_151); @@ -4265,10 +4361,10 @@ lean_ctor_set(x_195, 2, x_192); lean_ctor_set(x_195, 3, x_194); x_196 = lean_array_push(x_36, x_195); x_197 = lean_array_push(x_36, x_23); -x_198 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__19; +x_198 = l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__37; x_199 = l_Lean_addMacroScope(x_183, x_198, x_131); -x_200 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__18; -x_201 = l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__31; +x_200 = l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__36; +x_201 = l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__39; x_202 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_202, 0, x_22); lean_ctor_set(x_202, 1, x_200); @@ -5244,7 +5340,7 @@ x_15 = l_Lean_KernelException_toMessageData___closed__15; x_16 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_16, 0, x_14); lean_ctor_set(x_16, 1, x_15); -x_17 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_16, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_17 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_16, x_3, x_4, x_5, x_6, x_7, x_8, x_9); x_18 = !lean_is_exclusive(x_17); if (x_18 == 0) { @@ -5666,7 +5762,7 @@ x_24 = l_Lean_KernelException_toMessageData___closed__15; x_25 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_25, 0, x_23); lean_ctor_set(x_25, 1, x_24); -x_26 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_25, x_4, x_5, x_6, x_7, x_8, x_9, x_20); +x_26 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_25, x_4, x_5, x_6, x_7, x_8, x_9, x_20); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -8768,7 +8864,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Term_termElabAttribute; -x_3 = l_Lean_Elab_Term_quoteAutoTactic___closed__11; +x_3 = l_Lean_Elab_Term_quoteAutoTactic___closed__34; x_4 = l___regBuiltin_Lean_Elab_Term_expandEmptyC___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -14647,7 +14743,6 @@ lean_object* initialize_Init_Data_ToString(lean_object*); lean_object* initialize_Lean_Compiler_BorrowedAnnotation(lean_object*); lean_object* initialize_Lean_Meta_KAbstract(lean_object*); lean_object* initialize_Lean_Elab_Term(lean_object*); -lean_object* initialize_Lean_Elab_Quotation(lean_object*); lean_object* initialize_Lean_Elab_SyntheticMVars(lean_object*); static bool _G_initialized = false; lean_object* initialize_Lean_Elab_BuiltinNotation(lean_object* w) { @@ -14669,9 +14764,6 @@ lean_dec_ref(res); res = initialize_Lean_Elab_Term(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Lean_Elab_Quotation(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -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); @@ -14822,6 +14914,22 @@ l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___clo lean_mark_persistent(l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__30); l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__31 = _init_l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__31(); lean_mark_persistent(l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__31); +l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__32 = _init_l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__32(); +lean_mark_persistent(l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__32); +l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__33 = _init_l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__33(); +lean_mark_persistent(l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__33); +l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__34 = _init_l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__34(); +lean_mark_persistent(l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__34); +l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__35 = _init_l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__35(); +lean_mark_persistent(l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__35); +l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__36 = _init_l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__36(); +lean_mark_persistent(l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__36); +l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__37 = _init_l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__37(); +lean_mark_persistent(l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__37); +l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__38 = _init_l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__38(); +lean_mark_persistent(l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__38); +l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__39 = _init_l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__39(); +lean_mark_persistent(l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__39); l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__1 = _init_l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__1); l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__2 = _init_l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__2(); diff --git a/stage0/stdlib/Lean/Elab/Command.c b/stage0/stdlib/Lean/Elab/Command.c index 1d1d303014..1975db0892 100644 --- a/stage0/stdlib/Lean/Elab/Command.c +++ b/stage0/stdlib/Lean/Elab/Command.c @@ -665,6 +665,7 @@ lean_object* l___regBuiltin_Lean_Elab_Command_elabUniverses___closed__3; lean_object* l_Lean_Elab_Command_elabEnd___lambda__1___closed__6; extern lean_object* l_Lean_Elab_throwAlreadyDeclaredUniverseLevel___rarg___closed__2; lean_object* l_Lean_Elab_Command_logUnknownDecl___closed__1; +lean_object* l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_instInhabitedCommandElabM___closed__1; lean_object* l_Lean_Elab_Command_elabEvalUnsafe___lambda__7___closed__3; lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Command_expandDeclId___spec__6(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); @@ -798,7 +799,6 @@ lean_object* l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__6; lean_object* l_Lean_Elab_Command_instMonadLogCommandElabM___closed__3; lean_object* l_Lean_Elab_Command_elabVariable___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabBinder___rarg___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_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Command_0__Lean_Elab_Command_mkTermContext(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_elabUniverse(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_elabVariable___closed__3; @@ -20040,7 +20040,7 @@ x_24 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_24, 0, x_23); x_25 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_25, 0, x_24); -x_26 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_25, x_2, x_3, x_4, x_5, x_6, x_7, x_21); +x_26 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_25, x_2, x_3, x_4, x_5, x_6, x_7, x_21); return x_26; } else @@ -20698,7 +20698,7 @@ x_26 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_26, 0, x_25); x_27 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_27, 0, x_26); -x_28 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_27, x_4, x_5, x_6, x_7, x_8, x_9, x_23); +x_28 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_27, x_4, x_5, x_6, x_7, x_8, x_9, x_23); return x_28; } else diff --git a/stage0/stdlib/Lean/Elab/Declaration.c b/stage0/stdlib/Lean/Elab/Declaration.c index 40969c1887..ce1c75c3b5 100644 --- a/stage0/stdlib/Lean/Elab/Declaration.c +++ b/stage0/stdlib/Lean/Elab/Declaration.c @@ -72,7 +72,6 @@ lean_object* l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_inductiveSyn lean_object* l_Lean_Elab_Command_elabAxiom_match__3(lean_object*); lean_object* l_Lean_Elab_Command_elabDeclaration_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Declaration_0__Lean_Elab_Command_inductiveSyntaxToView___spec__5___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; lean_object* lean_st_ref_get(lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Declaration_0__Lean_Elab_Command_inductiveSyntaxToView___spec__5(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_instInhabitedParserDescr___closed__1; @@ -312,6 +311,7 @@ lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at___private_Lean_Elab lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at___private_Lean_Elab_Declaration_0__Lean_Elab_Command_inductiveSyntaxToView___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Macro_expandMacro_x3fImp(lean_object*, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Command_elabAttr___spec__4(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__5; lean_object* l_Lean_Elab_Command_expandInitCmd___closed__6; lean_object* l_Lean_Elab_Command_expandMutualNamespace(lean_object*, lean_object*, lean_object*); extern lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabStructureView___lambda__1___closed__1; @@ -7490,7 +7490,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__1; -x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_2 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); @@ -7735,7 +7735,7 @@ x_130 = lean_array_push(x_120, x_129); x_131 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_131, 0, x_122); lean_ctor_set(x_131, 1, x_130); -x_132 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_132 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_133 = lean_array_push(x_132, x_131); x_134 = lean_array_push(x_133, x_116); x_135 = lean_array_push(x_134, x_116); diff --git a/stage0/stdlib/Lean/Elab/Do.c b/stage0/stdlib/Lean/Elab/Do.c index c8b2df85c2..b86ea3f96c 100644 --- a/stage0/stdlib/Lean/Elab/Do.c +++ b/stage0/stdlib/Lean/Elab/Do.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Elab.Do -// Imports: Init Lean.Elab.Term Lean.Elab.Binders Lean.Elab.Quotation Lean.Elab.Match +// Imports: Init Lean.Elab.Term Lean.Elab.Binders Lean.Elab.Match #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -40,7 +40,6 @@ lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLif lean_object* l_Lean_Elab_Term_Do_ToTerm_declToTermCore___closed__4; 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*); -extern lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; lean_object* l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult_match__1(lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___closed__9; lean_object* l___regBuiltin_Lean_Elab_Term_expandTermUnless___closed__1; @@ -53,10 +52,13 @@ extern lean_object* l_Lean_Syntax_strLitToAtom___closed__3; lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___closed__1; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___lambda__4___closed__5; +lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_Do_concat___spec__1(lean_object*); lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_extractBind___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__21; lean_object* l_Lean_stringToMessageData(lean_object*); +extern lean_object* l_instReprOption___rarg___closed__1; lean_object* l_Lean_Elab_Term_Do_ToTerm_declToTermCore___closed__2; +extern lean_object* l_Lean_Syntax_isQuot_match__1___rarg___closed__1; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___closed__8; lean_object* l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__13; lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTermCore_match__1___rarg(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -73,15 +75,18 @@ lean_object* l_Lean_Elab_Term_Do_getLetIdDeclVar(lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___lambda__5___closed__1; lean_object* l_Lean_Elab_Term_Do_getLetPatDeclVars___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doForToCode___closed__8; +lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__46; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Do_ToTerm_mkUVarTuple___spec__1(lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode_match__3___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_mkJmp(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__34; extern lean_object* l_Lean_nullKind; lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__21; lean_object* l_Lean_Elab_Term_Do_ToTerm_seqToTermCore(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_convertTerminalActionIntoJmp_loop___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_919____closed__4; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_run(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__36; extern lean_object* l_myMacro____x40_Init_Notation___hyg_9707____closed__15; lean_object* l_Lean_Meta_whnf___at___private_Lean_Elab_Term_0__Lean_Elab_Term_isTypeApp_x3f___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__38; @@ -113,6 +118,7 @@ lean_object* l_Lean_throwError___at_Lean_Elab_Term_Do_mkJmp___spec__4(lean_objec lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_withFor___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_mkPureUnitAction___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__2; +lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_Do_concat___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_throwUnsupportedSyntax___rarg___closed__1; lean_object* l_Lean_Elab_Term_Do_concat___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_myMacro____x40_Init_Notation___hyg_11836____closed__12; @@ -122,6 +128,7 @@ lean_object* l_Lean_throwError___at_Lean_Elab_Term_Do_ToCodeBlock_checkReassigna lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__6___closed__7; lean_object* l_Lean_Elab_Term_Do_convertTerminalActionIntoJmp_loop___boxed__const__1; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___lambda__3___closed__1; +lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__47; lean_object* l_Lean_Elab_Term_Do_mkMatch___boxed__const__1; lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__1; lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkUnit___closed__5; @@ -146,6 +153,7 @@ lean_object* l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__23; lean_object* l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__39; uint8_t l_Lean_Elab_Term_Do_hasTerminalAction(lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__19; lean_object* l_Array_extract___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_mkSimpleJmp___closed__4; lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__34; @@ -167,19 +175,18 @@ lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_Do_CodeBlocl_toMessag lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkDoIfView___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__21; extern lean_object* l_Lean_Parser_Tactic_let___closed__2; -extern lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3; lean_object* l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__11; lean_object* l_Lean_Elab_Term_expandTermFor(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doForToCode(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkUnit___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_mkExplicitBinder___closed__2; -extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +extern lean_object* l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__5; lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__8; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doForToCode_match__1(lean_object*); lean_object* l_Lean_Elab_Term_Do_mkJmp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_get(lean_object*, lean_object*); +extern lean_object* l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__3; lean_object* l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__51; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_ToCodeBlock_mkForInBody___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__5___closed__1; @@ -201,10 +208,10 @@ uint8_t l_Lean_Elab_Term_Do_hasExitPointPred_loop___at_Lean_Elab_Term_Do_hasRetu lean_object* l_Lean_Elab_Term_Do_ToTerm_mkNestedKind___closed__2; lean_object* l_Lean_Elab_Term_Do_ToTerm_breakToTermCore___closed__14; lean_object* l_Lean_Elab_Term_Do_concat___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__6; lean_object* l_Lean_Elab_Term_Do_ToTerm_breakToTermCore___closed__5; extern lean_object* l_Lean_Meta_mkAppM___rarg___closed__2; lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__27; -extern lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; lean_object* l_Lean_Elab_Term_Do_isMutableLet___boxed(lean_object*); extern lean_object* l_instReprPUnit___closed__1; lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_extractBind(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -252,6 +259,7 @@ lean_object* l_Lean_Elab_Term_Do_ToTerm_mkNestedKind_match__1___rarg(uint8_t, ui lean_object* l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__6; extern lean_object* l_Lean_Meta_assert___closed__1; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___closed__6; +lean_object* l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__35; lean_object* l_Lean_Elab_Term_Do_mkSimpleJmp___closed__1; lean_object* lean_string_utf8_byte_size(lean_object*); lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_extractBind___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -275,9 +283,11 @@ lean_object* l_Lean_Elab_Term_Do_eraseVars(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_continueToTermCore_match__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__6___boxed(lean_object**); lean_object* l_Lean_Elab_Term_expandTermReturn___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; lean_object* l_Lean_Elab_Term_Do_mkFreshJP___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethod(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___lambda__3___closed__3; +lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__3; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_ensureInsideFor___closed__3; lean_object* l_Lean_Elab_Term_elabLiftMethod___closed__1; lean_object* l_Lean_Elab_Term_Do_ToTerm_run___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -289,11 +299,11 @@ uint8_t l_Lean_Elab_Term_Do_isMutableLet(lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__6___closed__12; extern lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__2; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__1___closed__9; +lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_concat___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Do_ToTerm_mkJoinPointCore___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__49; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_mkFreshJP(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkTuple___spec__1___closed__5; lean_object* l_Lean_throwError___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__3(lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_mkNestedTerm___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -339,6 +349,7 @@ lean_object* l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__7; lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__7; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Do_mkSimpleJmp___spec__1(lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_Syntax_mkApp(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__4; lean_object* l_Lean_throwError___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__1___rarg(lean_object*); lean_object* l_Lean_Meta_assignExprMVar___at_Lean_Elab_Term_synthesizeInstMVarCore___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -350,7 +361,6 @@ lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCo lean_object* l_Lean_Elab_Term_Do_ToTerm_mkJoinPoint(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__24; lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__18; -extern lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___closed__11; lean_object* l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__13; lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__3; @@ -359,6 +369,7 @@ lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___boxe lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___lambda__4___closed__1; lean_object* l_Lean_Elab_Term_Do_getLetDeclVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_expandTermReturn(lean_object*); +lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__1; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_checkLetArrowRHS___closed__5; lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__7; lean_object* l_List_map___at___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_CtorApp_processExplicitArg___spec__2(lean_object*); @@ -367,6 +378,7 @@ lean_object* l_Lean_throwError___at_Lean_Elab_Term_Do_ToCodeBlock_checkReassigna lean_object* l_Lean_Elab_Term_Do_concat_match__2___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_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* l_Lean_Elab_Term_Do_CodeBlocl_toMessageData_loop___closed__9; +lean_object* l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__4; lean_object* l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___lambda__4___closed__6; lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkMonadAlias(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -417,7 +429,6 @@ lean_object* l_Lean_Elab_Term_Do_ToTerm_Kind_isRegular_match__1___rarg___boxed(l lean_object* l_Lean_Elab_Term_Do_eraseVars___boxed(lean_object*, lean_object*); lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_Term_Do_extendUpdatedVarsAux_update___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_expandTermTry___closed__1; -extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__14; lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__42; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___closed__1; @@ -434,7 +445,6 @@ lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doReassignArrowToCode___closed__4; lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_Do_ToCodeBlock_getTryCatchUpdatedVars___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_hasReturn_match__1___rarg(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; lean_object* l___regBuiltin_Lean_Elab_Term_elabLiftMethod___closed__1; lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at___private_Lean_Meta_LevelDefEq_0__Lean_Meta_processPostponedStep___spec__6___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__24; @@ -443,11 +453,9 @@ lean_object* l_Lean_Meta_getDecLevel___at___private_Lean_Elab_Term_0__Lean_Elab_ lean_object* l_Lean_Elab_Term_Do_addFreshJP___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_breakToTermCore___closed__20; lean_object* l_Lean_Elab_Term_Do_ToTerm_mkIte___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; lean_object* l_Lean_Elab_Term_Do_mkSimpleJmp___closed__2; extern lean_object* l_myMacro____x40_Init_Notation___hyg_9707____closed__22; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Do_ToTerm_mkUVarTuple___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__18; extern lean_object* l_stx___x3f___closed__3; lean_object* l_Lean_Elab_Term_Do_ToTerm_breakToTermCore___closed__10; extern lean_object* l_myMacro____x40_Init_Notation___hyg_10078____closed__6; @@ -478,6 +486,7 @@ lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Elab_Term_Do_attachJPs___spec__ lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_checkLetArrowRHS___closed__3; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_concatWith_match__1(lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__8; +lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__2; lean_object* l_Lean_Elab_Term_Do_getDoIdDeclVar(lean_object*); lean_object* l_Lean_Elab_Term_Do_pullExitPointsAux_match__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*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doReassignArrowToCode___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -497,11 +506,11 @@ lean_object* l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__31; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Do_ToTerm_mkJoinPointCore___spec__1___closed__1; lean_object* l_Lean_Elab_Term_Do_attachJPs___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__28; +lean_object* l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__5; lean_object* l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__3; uint8_t l_Array_anyMUnsafe_any___at_Lean_Elab_Term_Do_hasExitPoint___spec__2(lean_object*, size_t, size_t); lean_object* l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__43; -lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_concat___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_getLetPatDeclVars_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_ensureInsideFor___closed__2; lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_extractBind___closed__3; @@ -580,13 +589,11 @@ lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_ToCodeBlo lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Do_ToCodeBlock_doMatchToCode___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_Term_Do_hasBreakContinueReturn___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandOptType(lean_object*, lean_object*); -extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; lean_object* l_Lean_Elab_Term_Do_CodeBlocl_toMessageData_loop___closed__6; lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkTuple___spec__1___closed__1; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Do_ToTerm_mkJoinPointCore___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Core_mkFreshUserName___at_Lean_Elab_Term_Do_mkFreshJP___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode_match__2___rarg(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__22; lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_extractBind___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_mkAuxDeclFor___at_Lean_Elab_Term_Do_pullExitPointsAux___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_11836____closed__8; @@ -595,6 +602,7 @@ lean_object* l_Lean_Elab_Term_Do_convertTerminalActionIntoJmp_loop_match__1(lean uint8_t l___private_Lean_Elab_Do_0__Lean_Elab_Term_hasLiftMethod(lean_object*); lean_object* l_Lean_Elab_Term_expandTermFor___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_mkStrLit(lean_object*, lean_object*); +lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_concat___spec__2___rarg(lean_object*); lean_object* l_Lean_Elab_Term_Do_hasExitPointPred_loop(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_getDoReassignVars___closed__3; extern lean_object* l_instMonadEST___closed__1; @@ -678,11 +686,11 @@ lean_object* l_Lean_addTrace___at___private_Lean_Elab_Term_0__Lean_Elab_Term_pos lean_object* l_Lean_Elab_Term_Do_ToTerm_breakToTermCore___closed__18; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_getDoLetArrowVars___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_concat___spec__1___rarg(lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__32; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Do_mkJmp___spec__1(lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__10; extern lean_object* l_Lean_instToExprUnit___lambda__1___closed__2; +extern lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__13; extern lean_object* l_myMacro____x40_Init_Notation___hyg_38____closed__6; lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__6___closed__8; lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkTuple___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -754,6 +762,7 @@ lean_object* l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__5___closed__7; lean_object* l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__18; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__1___closed__5; lean_object* l___regBuiltin_Lean_Elab_Term_elabLiftMethod(lean_object*); +extern lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__12; lean_object* l_Lean_Elab_Term_Do_ToTerm_mkJmp___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__5; lean_object* l_Lean_Elab_Term_Do_hasExitPointPred_loop___at_Lean_Elab_Term_Do_hasBreakContinue___spec__1___boxed(lean_object*); @@ -766,6 +775,7 @@ lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_mkIdBindFor___boxed(lean lean_object* l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__10; lean_object* l_Lean_Elab_Term_Do_ToTerm_seqToTermCore___closed__9; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Do_extendUpdatedVarsAux_update___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__32; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_ToCodeBlock_doIfToCode___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_anyMUnsafe_any___at_Lean_Elab_Term_Do_extendUpdatedVarsAux_update___spec__1(lean_object*, lean_object*, size_t, size_t); lean_object* l_Lean_Elab_Term_Do_ToTerm_seqToTermCore___closed__8; @@ -909,12 +919,14 @@ lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doForToCode___boxed(lean_object*, l lean_object* l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__28; lean_object* l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__29; +lean_object* l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__6___closed__2; lean_object* l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__9; lean_object* l___regBuiltin_Lean_Elab_Term_expandTermReturn___closed__1; lean_object* l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__40; lean_object* l_Lean_Elab_Term_Do_mkFreshJP___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__2; +lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_concat___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doForToCode___closed__5; lean_object* l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult_match__1___rarg(uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_mkMatch(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -940,7 +952,6 @@ lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTermCore_match__1___rarg___boxed lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_extractBind_match__1(lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_withNewMutableVars___rarg(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___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__2; lean_object* l_List_toArrayAux___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_mkAuxDeclFor___at_Lean_Elab_Term_Do_convertTerminalActionIntoJmp_loop___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isNone(lean_object*); @@ -961,16 +972,17 @@ lean_object* l_Lean_Macro_expandMacro_x3fImp(lean_object*, lean_object*, lean_ob lean_object* l_Lean_Elab_Term_Do_getLetDeclVars___closed__2; lean_object* l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__5; lean_object* l_Lean_Elab_Term_Do_mkJmp___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__5; lean_object* l_Lean_Elab_Term_Do_extendUpdatedVarsAux_update_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__2___rarg(lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___boxed__const__1; +lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__45; lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__6___closed__4; lean_object* l_Lean_Core_mkFreshUserName___at_Lean_Elab_Term_Do_mkFreshJP___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_mkContinue(lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_Kind_isRegular___boxed(lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doMatchToCode(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_getLetPatDeclVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__6___closed__1; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_ToCodeBlock_mkForInBody___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_expandTermFor(lean_object*); @@ -1014,7 +1026,6 @@ lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___cl lean_object* l_Lean_Elab_Term_Do_getPatternVarNames___boxed(lean_object*); lean_object* l_Lean_Elab_Term_Do_convertTerminalActionIntoJmp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__36; -lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_concat___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkTuple___spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_indentD(lean_object*); extern lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__9; @@ -1043,7 +1054,6 @@ lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_ToCodeBlo lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__8; -extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; lean_object* l_Lean_Elab_Term_Do_ToTerm_continueToTermCore_match__1___rarg(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_insertVars___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__3; @@ -1084,7 +1094,6 @@ lean_object* l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__23; uint8_t l_List_isEmpty___rarg(lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_mkUVarTuple___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__14; -extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__19; lean_object* l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__28; lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_Do_ToCodeBlock_checkReassignable___spec__2___closed__1; lean_object* l_Lean_Elab_Term_Do_ToTerm_breakToTermCore___closed__1; @@ -1094,6 +1103,7 @@ lean_object* l_Lean_Core_mkFreshUserName___at_Lean_Elab_Term_Do_mkJmp___spec__2_ lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___lambda__4___closed__4; lean_object* l_Lean_Elab_Term_Do_ToTerm_breakToTermCore___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTermCore_match__1(lean_object*); +extern lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__8; lean_object* l_Lean_Elab_Term_Do_hasExitPointPred_loop_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_919____closed__3; lean_object* l_Lean_Elab_Term_Do_getDoLetArrowVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1111,7 +1121,9 @@ lean_object* l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__11; lean_object* l_Lean_throwError___at_Lean_Elab_Term_Do_mkJmp___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__22; +lean_object* l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__33; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode_match__2(lean_object*); +lean_object* l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__20; lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkTuple___spec__1___closed__7; extern lean_object* l_List_foldl___at_Lean_Meta_Match_Pattern_toMessageData___spec__1___closed__1; lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_Do_ToCodeBlock_checkReassignable___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1119,6 +1131,7 @@ lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_ToCodeBlo 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_Term_Do_ToTerm_actionTerminalToTermCore___closed__16; lean_object* l_Lean_Elab_Term_Do_mkTerminalAction(lean_object*); +extern lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__9; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___lambda__3___closed__2; lean_object* l_Lean_Elab_Term_Do_ToTerm_breakToTermCore___closed__6; lean_object* l_Lean_Elab_Term_Do_ToTerm_reassignToTermCore___closed__5; @@ -1140,6 +1153,7 @@ lean_object* l_Lean_Elab_Term_Do_hasBreakContinueReturn___boxed(lean_object*); lean_object* l_Lean_Elab_Term_getPatternsVars(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__4; uint8_t l_Lean_Elab_Term_Do_hasBreakContinue(lean_object*); +lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__11; lean_object* l_Lean_Elab_Term_Do_mkSimpleJmp___closed__3; lean_object* l_Lean_Elab_Term_Do_isDoExpr_x3f(lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_getTryCatchUpdatedVars___boxed(lean_object*, lean_object*, lean_object*); @@ -1154,6 +1168,7 @@ lean_object* l_Lean_Elab_Term_Do_pullExitPoints_match__1(lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___lambda__2___closed__3; lean_object* l_Lean_Elab_Term_Do_getDoLetVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_mkJoinPointCore(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_Do_concat___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_mkForInBody___boxed(lean_object*); lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkTuple(lean_object*, lean_object*, lean_object*, lean_object*); @@ -1175,7 +1190,7 @@ extern lean_object* l_Lean_Meta_Match_Alt_toMessageData___closed__3; lean_object* l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__16; lean_object* l_Lean_Elab_Term_Do_CodeBlocl_toMessageData_loop_match__1(lean_object*); lean_object* l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__1___closed__3; -extern lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; +extern lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__1; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_continueToTerm___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__41; @@ -1447,22 +1462,32 @@ return x_3; static lean_object* _init_l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__3() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("termReturn"); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +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___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__4() { _start: { +lean_object* x_1; +x_1 = lean_mk_string("termReturn"); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__5() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; -x_2 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__3; +x_2 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__5() { +static lean_object* _init_l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__6() { _start: { lean_object* x_1; @@ -1470,17 +1495,17 @@ x_1 = lean_mk_string("termUnless"); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__6() { +static lean_object* _init_l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; -x_2 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__5; +x_2 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__7() { +static lean_object* _init_l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__8() { _start: { lean_object* x_1; @@ -1488,17 +1513,17 @@ x_1 = lean_mk_string("termTry"); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__8() { +static lean_object* _init_l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; -x_2 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__7; +x_2 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__8; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__9() { +static lean_object* _init_l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__10() { _start: { lean_object* x_1; @@ -1506,12 +1531,12 @@ x_1 = lean_mk_string("termFor"); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__10() { +static lean_object* _init_l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; -x_2 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__9; +x_2 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__10; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -1535,18 +1560,18 @@ x_7 = lean_name_eq(x_1, x_6); if (x_7 == 0) { lean_object* x_8; uint8_t x_9; -x_8 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_8 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__3; x_9 = lean_name_eq(x_1, x_8); if (x_9 == 0) { lean_object* x_10; uint8_t x_11; lean_object* x_12; uint8_t x_13; lean_object* x_14; uint8_t x_15; lean_object* x_16; uint8_t x_17; -x_10 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__4; +x_10 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__5; x_11 = lean_name_eq(x_1, x_10); -x_12 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__6; +x_12 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__7; x_13 = lean_name_eq(x_1, x_12); -x_14 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__8; +x_14 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__9; x_15 = lean_name_eq(x_1, x_14); -x_16 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__10; +x_16 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__11; x_17 = lean_name_eq(x_1, x_16); if (x_11 == 0) { @@ -10297,6 +10322,37 @@ return x_55; static lean_object* _init_l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__1() { _start: { +lean_object* x_1; +x_1 = lean_mk_string("Pure.pure"); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__1; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__1; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__4() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); x_2 = l_Lean_Meta_mkPure___rarg___closed__4; @@ -10306,12 +10362,12 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2() { +static lean_object* _init_l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__1; +x_2 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__4; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); @@ -10330,8 +10386,8 @@ lean_dec(x_2); x_6 = l_Lean_Meta_mkPure___rarg___closed__4; x_7 = l_Lean_addMacroScope(x_5, x_6, x_4); x_8 = l_Lean_instInhabitedSourceInfo___closed__1; -x_9 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_10 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_9 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_10 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_11 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_11, 0, x_8); lean_ctor_set(x_11, 1, x_9); @@ -15250,8 +15306,8 @@ lean_dec(x_2); x_9 = l_Lean_Meta_mkPure___rarg___closed__4; x_10 = l_Lean_addMacroScope(x_8, x_9, x_7); x_11 = l_Lean_instInhabitedSourceInfo___closed__1; -x_12 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_13 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_12 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_13 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_14 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_14, 0, x_11); lean_ctor_set(x_14, 1, x_12); @@ -15290,8 +15346,8 @@ lean_dec(x_2); x_29 = l_Lean_Meta_mkPure___rarg___closed__4; x_30 = l_Lean_addMacroScope(x_28, x_29, x_27); x_31 = l_Lean_instInhabitedSourceInfo___closed__1; -x_32 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_33 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_32 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_33 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_34 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_34, 0, x_31); lean_ctor_set(x_34, 1, x_32); @@ -15890,7 +15946,62 @@ x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Do_concat_match__2___rarg), 2, return x_2; } } -lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_concat___spec__1___rarg(lean_object* x_1) { +lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_Do_concat___spec__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +uint8_t x_10; +x_10 = !lean_is_exclusive(x_7); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_11 = lean_ctor_get(x_7, 3); +x_12 = l_Lean_replaceRef(x_1, x_11); +lean_dec(x_11); +lean_ctor_set(x_7, 3, x_12); +x_13 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_7); +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; +x_14 = lean_ctor_get(x_7, 0); +x_15 = lean_ctor_get(x_7, 1); +x_16 = lean_ctor_get(x_7, 2); +x_17 = lean_ctor_get(x_7, 3); +x_18 = lean_ctor_get(x_7, 4); +x_19 = lean_ctor_get(x_7, 5); +lean_inc(x_19); +lean_inc(x_18); +lean_inc(x_17); +lean_inc(x_16); +lean_inc(x_15); +lean_inc(x_14); +lean_dec(x_7); +x_20 = l_Lean_replaceRef(x_1, x_17); +lean_dec(x_17); +x_21 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_21, 0, x_14); +lean_ctor_set(x_21, 1, x_15); +lean_ctor_set(x_21, 2, x_16); +lean_ctor_set(x_21, 3, x_20); +lean_ctor_set(x_21, 4, x_18); +lean_ctor_set(x_21, 5, x_19); +x_22 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_2, x_3, x_4, x_5, x_6, x_21, x_8, x_9); +lean_dec(x_21); +return x_22; +} +} +} +lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_Do_concat___spec__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_throwErrorAt___at_Lean_Elab_Term_Do_concat___spec__1___rarg___boxed), 9, 0); +return x_2; +} +} +lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_concat___spec__2___rarg(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -15901,11 +16012,11 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_concat___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* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_concat___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = lean_alloc_closure((void*)(l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_concat___spec__1___rarg), 1, 0); +x_7 = lean_alloc_closure((void*)(l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_concat___spec__2___rarg), 1, 0); return x_7; } } @@ -16100,7 +16211,7 @@ x_77 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_77, 0, x_76); x_78 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_78, 0, x_77); -x_79 = l_Lean_throwErrorAt___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1___rarg(x_75, x_78, x_6, x_7, x_8, x_9, x_10, x_11, x_41); +x_79 = l_Lean_throwErrorAt___at_Lean_Elab_Term_Do_concat___spec__1___rarg(x_75, x_78, x_6, x_7, x_8, x_9, x_10, x_11, x_41); lean_dec(x_75); x_80 = !lean_is_exclusive(x_79); if (x_80 == 0) @@ -16126,7 +16237,7 @@ else lean_object* x_84; uint8_t x_85; lean_dec(x_10); lean_dec(x_6); -x_84 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_concat___spec__1___rarg(x_41); +x_84 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_concat___spec__2___rarg(x_41); x_85 = !lean_is_exclusive(x_84); if (x_85 == 0) { @@ -16315,11 +16426,24 @@ return x_21; } } } -lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_concat___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_Do_concat___spec__1___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_throwErrorAt___at_Lean_Elab_Term_Do_concat___spec__1___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +return x_10; +} +} +lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_concat___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_concat___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Do_concat___spec__2(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); @@ -18444,6 +18568,39 @@ return x_3; static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__11() { _start: { +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__5; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__5; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__11; +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_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__5; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__14() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); x_2 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__6; @@ -18453,19 +18610,19 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__12() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__11; +x_2 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__14; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__13() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -18475,27 +18632,27 @@ x_3 = l_instInhabited___rarg(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__14() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__17() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__13; +x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__16; x_2 = lean_alloc_closure((void*)(l_instInhabitedReaderT___rarg___boxed), 2, 1); lean_closure_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__15() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__18() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__14; +x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__17; x_2 = lean_alloc_closure((void*)(l_instInhabitedReaderT___rarg___boxed), 2, 1); lean_closure_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__16() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__19() { _start: { lean_object* x_1; @@ -18503,7 +18660,7 @@ x_1 = lean_mk_string("Lean.Elab.Do"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__17() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__20() { _start: { lean_object* x_1; @@ -18511,20 +18668,20 @@ x_1 = lean_mk_string("Lean.Elab.Term.Do.ToTerm.returnToTermCore"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__18() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__16; -x_2 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__17; -x_3 = lean_unsigned_to_nat(823u); +x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__19; +x_2 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__20; +x_3 = lean_unsigned_to_nat(822u); x_4 = lean_unsigned_to_nat(28u); x_5 = l_Lean_Syntax_strLitToAtom___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); return x_6; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__19() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__22() { _start: { lean_object* x_1; @@ -18532,22 +18689,22 @@ x_1 = lean_mk_string("DoResultPR.«return»"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__20() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__23() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__19; +x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__22; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__21() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__24() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__19; +x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__22; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__20; +x_3 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__23; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -18555,7 +18712,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__22() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__25() { _start: { lean_object* x_1; @@ -18563,59 +18720,59 @@ x_1 = lean_mk_string("DoResultPR"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__23() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__22; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__24() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("return"); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__25() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__23; -x_2 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__24; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__26() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); x_2 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__25; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); +x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__27() { _start: { +lean_object* x_1; +x_1 = lean_mk_string("return"); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__28() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__26; +x_2 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__27; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__29() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__26; +x_2 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__28; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__30() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__29; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__28() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__31() { _start: { lean_object* x_1; @@ -18623,22 +18780,22 @@ x_1 = lean_mk_string("DoResultSBC.«pureReturn»"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__29() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__32() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__28; +x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__31; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__30() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__33() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__28; +x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__31; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__29; +x_3 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__32; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -18646,7 +18803,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__31() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__34() { _start: { lean_object* x_1; @@ -18654,59 +18811,59 @@ x_1 = lean_mk_string("DoResultSBC"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__32() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__31; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__33() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("pureReturn"); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__34() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__32; -x_2 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__33; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__35() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); x_2 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__34; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); +x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__36() { _start: { +lean_object* x_1; +x_1 = lean_mk_string("pureReturn"); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__37() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__35; +x_2 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__36; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__38() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__35; +x_2 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__37; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__39() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__38; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__37() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__40() { _start: { lean_object* x_1; @@ -18714,22 +18871,22 @@ x_1 = lean_mk_string("DoResultPRBC.«return»"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__38() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__41() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__37; +x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__40; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__39() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__42() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__37; +x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__40; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__38; +x_3 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__41; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -18737,7 +18894,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__40() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__43() { _start: { lean_object* x_1; @@ -18745,44 +18902,44 @@ x_1 = lean_mk_string("DoResultPRBC"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__41() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__40; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__42() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__41; -x_2 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__24; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__43() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__42; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__44() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); x_2 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__43; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__45() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__44; +x_2 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__27; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__46() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__45; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__47() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__46; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); @@ -18824,8 +18981,8 @@ lean_inc(x_12); lean_inc(x_13); x_15 = l_Lean_addMacroScope(x_13, x_14, x_12); x_16 = l_Lean_instInhabitedSourceInfo___closed__1; -x_17 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_18 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_17 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_18 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_19 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_19, 0, x_16); lean_ctor_set(x_19, 1, x_17); @@ -18891,8 +19048,8 @@ lean_dec(x_4); x_51 = l_Lean_Meta_mkPure___rarg___closed__4; x_52 = l_Lean_addMacroScope(x_50, x_51, x_49); x_53 = l_Lean_instInhabitedSourceInfo___closed__1; -x_54 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_55 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_54 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_55 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_56 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_56, 0, x_53); lean_ctor_set(x_56, 1, x_54); @@ -18940,8 +19097,8 @@ lean_inc(x_69); lean_inc(x_70); x_72 = l_Lean_addMacroScope(x_70, x_71, x_69); x_73 = l_Lean_instInhabitedSourceInfo___closed__1; -x_74 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_75 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_74 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_75 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_76 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_76, 0, x_73); lean_ctor_set(x_76, 1, x_74); @@ -19009,8 +19166,8 @@ lean_dec(x_4); x_109 = l_Lean_Meta_mkPure___rarg___closed__4; x_110 = l_Lean_addMacroScope(x_108, x_109, x_107); x_111 = l_Lean_instInhabitedSourceInfo___closed__1; -x_112 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_113 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_112 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_113 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_114 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_114, 0, x_111); lean_ctor_set(x_114, 1, x_112); @@ -19055,8 +19212,8 @@ lean_inc(x_126); lean_inc(x_127); x_129 = l_Lean_addMacroScope(x_127, x_128, x_126); x_130 = l_Lean_instInhabitedSourceInfo___closed__1; -x_131 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_132 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_131 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_132 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_133 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_133, 0, x_130); lean_ctor_set(x_133, 1, x_131); @@ -19127,8 +19284,8 @@ lean_inc(x_164); lean_inc(x_165); x_167 = l_Lean_addMacroScope(x_165, x_166, x_164); x_168 = l_Lean_instInhabitedSourceInfo___closed__1; -x_169 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_170 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_169 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_170 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_171 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_171, 0, x_168); lean_ctor_set(x_171, 1, x_169); @@ -19203,8 +19360,8 @@ lean_inc(x_203); lean_inc(x_204); x_206 = l_Lean_addMacroScope(x_204, x_205, x_203); x_207 = l_Lean_instInhabitedSourceInfo___closed__1; -x_208 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_209 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_208 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_209 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_210 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_210, 0, x_207); lean_ctor_set(x_210, 1, x_208); @@ -19236,10 +19393,10 @@ lean_ctor_set(x_223, 1, x_221); lean_ctor_set(x_223, 2, x_220); lean_ctor_set(x_223, 3, x_222); x_224 = lean_array_push(x_211, x_223); -x_225 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__19; +x_225 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__13; x_226 = l_Lean_addMacroScope(x_204, x_225, x_203); -x_227 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__18; -x_228 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__12; +x_227 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__12; +x_228 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__15; x_229 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_229, 0, x_207); lean_ctor_set(x_229, 1, x_227); @@ -19336,8 +19493,8 @@ lean_inc(x_274); lean_inc(x_275); x_277 = l_Lean_addMacroScope(x_275, x_276, x_274); x_278 = l_Lean_instInhabitedSourceInfo___closed__1; -x_279 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_280 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_279 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_280 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_281 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_281, 0, x_278); lean_ctor_set(x_281, 1, x_279); @@ -19369,10 +19526,10 @@ lean_ctor_set(x_294, 1, x_292); lean_ctor_set(x_294, 2, x_291); lean_ctor_set(x_294, 3, x_293); x_295 = lean_array_push(x_282, x_294); -x_296 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__19; +x_296 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__13; x_297 = l_Lean_addMacroScope(x_275, x_296, x_274); -x_298 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__18; -x_299 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__12; +x_298 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__12; +x_299 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__15; x_300 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_300, 0, x_278); lean_ctor_set(x_300, 1, x_298); @@ -19461,8 +19618,8 @@ lean_dec(x_2); x_344 = lean_ctor_get(x_6, 1); lean_inc(x_344); lean_dec(x_6); -x_345 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__15; -x_346 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__18; +x_345 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__18; +x_346 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__21; x_347 = lean_panic_fn(x_345, x_346); x_348 = lean_apply_3(x_347, x_3, x_4, x_344); return x_348; @@ -19486,8 +19643,8 @@ lean_inc(x_351); lean_inc(x_352); x_354 = l_Lean_addMacroScope(x_352, x_353, x_351); x_355 = l_Lean_instInhabitedSourceInfo___closed__1; -x_356 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_357 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_356 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_357 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_358 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_358, 0, x_355); lean_ctor_set(x_358, 1, x_356); @@ -19495,10 +19652,10 @@ lean_ctor_set(x_358, 2, x_354); lean_ctor_set(x_358, 3, x_357); x_359 = l_Array_empty___closed__1; x_360 = lean_array_push(x_359, x_358); -x_361 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__25; +x_361 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__28; x_362 = l_Lean_addMacroScope(x_352, x_361, x_351); -x_363 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__21; -x_364 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__27; +x_363 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__24; +x_364 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__30; x_365 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_365, 0, x_355); lean_ctor_set(x_365, 1, x_363); @@ -19559,8 +19716,8 @@ lean_inc(x_390); lean_inc(x_391); x_393 = l_Lean_addMacroScope(x_391, x_392, x_390); x_394 = l_Lean_instInhabitedSourceInfo___closed__1; -x_395 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_396 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_395 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_396 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_397 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_397, 0, x_394); lean_ctor_set(x_397, 1, x_395); @@ -19568,10 +19725,10 @@ lean_ctor_set(x_397, 2, x_393); lean_ctor_set(x_397, 3, x_396); x_398 = l_Array_empty___closed__1; x_399 = lean_array_push(x_398, x_397); -x_400 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__25; +x_400 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__28; x_401 = l_Lean_addMacroScope(x_391, x_400, x_390); -x_402 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__21; -x_403 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__27; +x_402 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__24; +x_403 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__30; x_404 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_404, 0, x_394); lean_ctor_set(x_404, 1, x_402); @@ -19636,8 +19793,8 @@ lean_inc(x_430); lean_inc(x_431); x_433 = l_Lean_addMacroScope(x_431, x_432, x_430); x_434 = l_Lean_instInhabitedSourceInfo___closed__1; -x_435 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_436 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_435 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_436 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_437 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_437, 0, x_434); lean_ctor_set(x_437, 1, x_435); @@ -19645,10 +19802,10 @@ lean_ctor_set(x_437, 2, x_433); lean_ctor_set(x_437, 3, x_436); x_438 = l_Array_empty___closed__1; x_439 = lean_array_push(x_438, x_437); -x_440 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__34; +x_440 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__37; x_441 = l_Lean_addMacroScope(x_431, x_440, x_430); -x_442 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__30; -x_443 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__36; +x_442 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__33; +x_443 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__39; x_444 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_444, 0, x_434); lean_ctor_set(x_444, 1, x_442); @@ -19709,8 +19866,8 @@ lean_inc(x_469); lean_inc(x_470); x_472 = l_Lean_addMacroScope(x_470, x_471, x_469); x_473 = l_Lean_instInhabitedSourceInfo___closed__1; -x_474 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_475 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_474 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_475 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_476 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_476, 0, x_473); lean_ctor_set(x_476, 1, x_474); @@ -19718,10 +19875,10 @@ lean_ctor_set(x_476, 2, x_472); lean_ctor_set(x_476, 3, x_475); x_477 = l_Array_empty___closed__1; x_478 = lean_array_push(x_477, x_476); -x_479 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__34; +x_479 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__37; x_480 = l_Lean_addMacroScope(x_470, x_479, x_469); -x_481 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__30; -x_482 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__36; +x_481 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__33; +x_482 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__39; x_483 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_483, 0, x_473); lean_ctor_set(x_483, 1, x_481); @@ -19786,8 +19943,8 @@ lean_inc(x_509); lean_inc(x_510); x_512 = l_Lean_addMacroScope(x_510, x_511, x_509); x_513 = l_Lean_instInhabitedSourceInfo___closed__1; -x_514 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_515 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_514 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_515 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_516 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_516, 0, x_513); lean_ctor_set(x_516, 1, x_514); @@ -19795,10 +19952,10 @@ lean_ctor_set(x_516, 2, x_512); lean_ctor_set(x_516, 3, x_515); x_517 = l_Array_empty___closed__1; x_518 = lean_array_push(x_517, x_516); -x_519 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__42; +x_519 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__45; x_520 = l_Lean_addMacroScope(x_510, x_519, x_509); -x_521 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__39; -x_522 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__44; +x_521 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__42; +x_522 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__47; x_523 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_523, 0, x_513); lean_ctor_set(x_523, 1, x_521); @@ -19859,8 +20016,8 @@ lean_inc(x_548); lean_inc(x_549); x_551 = l_Lean_addMacroScope(x_549, x_550, x_548); x_552 = l_Lean_instInhabitedSourceInfo___closed__1; -x_553 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_554 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_553 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_554 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_555 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_555, 0, x_552); lean_ctor_set(x_555, 1, x_553); @@ -19868,10 +20025,10 @@ lean_ctor_set(x_555, 2, x_551); lean_ctor_set(x_555, 3, x_554); x_556 = l_Array_empty___closed__1; x_557 = lean_array_push(x_556, x_555); -x_558 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__42; +x_558 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__45; x_559 = l_Lean_addMacroScope(x_549, x_558, x_548); -x_560 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__39; -x_561 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__44; +x_560 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__42; +x_561 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__47; x_562 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_562, 0, x_552); lean_ctor_set(x_562, 1, x_560); @@ -20122,9 +20279,9 @@ static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__16; +x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__19; x_2 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__1; -x_3 = lean_unsigned_to_nat(836u); +x_3 = lean_unsigned_to_nat(835u); x_4 = lean_unsigned_to_nat(28u); x_5 = l_Lean_Syntax_strLitToAtom___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -20207,27 +20364,19 @@ return x_3; static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__10() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("DoResultBC.«continue»"); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l_instReprOption___rarg___closed__1; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; } } static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__11() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__10; -x_2 = lean_string_utf8_byte_size(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__12() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__10; +x_1 = l_instReprOption___rarg___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__11; +x_3 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__10; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -20235,12 +20384,26 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_instReprOption___rarg___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__13() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("DoResultBC"); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__3; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; } } static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__14() { @@ -20249,7 +20412,9 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); x_2 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__13; -x_3 = lean_name_mk_string(x_1, x_2); +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; } } @@ -20257,58 +20422,107 @@ static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed _start: { lean_object* x_1; -x_1 = lean_mk_string("continue"); +x_1 = lean_mk_string("DoResultBC.«continue»"); return x_1; } } static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__16() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__14; -x_2 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__15; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__15; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; } } static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__17() { _start: { +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__15; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__16; +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_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__18() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("DoResultBC"); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__19() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__16; +x_2 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__18; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__20() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("continue"); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__21() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__19; +x_2 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__20; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__22() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__21; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__18() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__23() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__17; +x_2 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__22; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__19() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__24() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__16; +x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__19; x_2 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__1; -x_3 = lean_unsigned_to_nat(840u); +x_3 = lean_unsigned_to_nat(839u); x_4 = lean_unsigned_to_nat(28u); x_5 = l_Lean_Syntax_strLitToAtom___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); return x_6; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__20() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__25() { _start: { lean_object* x_1; @@ -20316,87 +20530,22 @@ x_1 = lean_mk_string("DoResultSBC.«continue»"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__21() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__20; -x_2 = lean_string_utf8_byte_size(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__22() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__20; -x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__21; -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_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__23() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__32; -x_2 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__15; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__24() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__23; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__25() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__24; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__26() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("DoResultPRBC.«continue»"); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__25; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; } } static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__27() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__26; -x_2 = lean_string_utf8_byte_size(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__28() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__26; +x_1 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__25; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__27; +x_3 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__26; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -20404,13 +20553,25 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__28() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__35; +x_2 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__20; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__29() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__41; -x_2 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__15; -x_3 = lean_name_mk_string(x_1, x_2); +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__28; +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; } } @@ -20420,7 +20581,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); x_2 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__29; -x_3 = lean_alloc_ctor(0, 2, 0); +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; @@ -20429,9 +20590,62 @@ return x_3; static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__31() { _start: { +lean_object* x_1; +x_1 = lean_mk_string("DoResultPRBC.«continue»"); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__32() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__31; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__33() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__31; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__32; +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_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__34() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__44; +x_2 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__20; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__35() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__30; +x_2 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__34; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__36() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__35; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); @@ -20453,7 +20667,7 @@ lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_ob x_7 = lean_ctor_get(x_5, 1); lean_inc(x_7); lean_dec(x_5); -x_8 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__15; +x_8 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__18; x_9 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__2; x_10 = lean_panic_fn(x_8, x_9); x_11 = lean_apply_3(x_10, x_2, x_3, x_7); @@ -20478,8 +20692,8 @@ lean_inc(x_14); lean_inc(x_15); x_17 = l_Lean_addMacroScope(x_15, x_16, x_14); x_18 = l_Lean_instInhabitedSourceInfo___closed__1; -x_19 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_20 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_19 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_20 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_18); lean_ctor_set(x_21, 1, x_19); @@ -20550,8 +20764,8 @@ lean_inc(x_52); lean_inc(x_53); x_55 = l_Lean_addMacroScope(x_53, x_54, x_52); x_56 = l_Lean_instInhabitedSourceInfo___closed__1; -x_57 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_58 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_57 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_58 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_59 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_59, 0, x_56); lean_ctor_set(x_59, 1, x_57); @@ -20626,8 +20840,8 @@ lean_inc(x_91); lean_inc(x_92); x_94 = l_Lean_addMacroScope(x_92, x_93, x_91); x_95 = l_Lean_instInhabitedSourceInfo___closed__1; -x_96 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_97 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_96 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_97 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_98 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_98, 0, x_95); lean_ctor_set(x_98, 1, x_96); @@ -20659,10 +20873,10 @@ lean_ctor_set(x_111, 1, x_109); lean_ctor_set(x_111, 2, x_108); lean_ctor_set(x_111, 3, x_110); x_112 = lean_array_push(x_99, x_111); -x_113 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__22; +x_113 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__12; x_114 = l_Lean_addMacroScope(x_92, x_113, x_91); -x_115 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__21; -x_116 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; +x_115 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__11; +x_116 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__14; x_117 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_117, 0, x_95); lean_ctor_set(x_117, 1, x_115); @@ -20740,8 +20954,8 @@ lean_inc(x_151); lean_inc(x_152); x_154 = l_Lean_addMacroScope(x_152, x_153, x_151); x_155 = l_Lean_instInhabitedSourceInfo___closed__1; -x_156 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_157 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_156 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_157 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_158 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_158, 0, x_155); lean_ctor_set(x_158, 1, x_156); @@ -20773,10 +20987,10 @@ lean_ctor_set(x_171, 1, x_169); lean_ctor_set(x_171, 2, x_168); lean_ctor_set(x_171, 3, x_170); x_172 = lean_array_push(x_159, x_171); -x_173 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__22; +x_173 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__12; x_174 = l_Lean_addMacroScope(x_152, x_173, x_151); -x_175 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__21; -x_176 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; +x_175 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__11; +x_176 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__14; x_177 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_177, 0, x_155); lean_ctor_set(x_177, 1, x_175); @@ -20858,8 +21072,8 @@ lean_inc(x_212); lean_inc(x_213); x_215 = l_Lean_addMacroScope(x_213, x_214, x_212); x_216 = l_Lean_instInhabitedSourceInfo___closed__1; -x_217 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_218 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_217 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_218 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_219 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_219, 0, x_216); lean_ctor_set(x_219, 1, x_217); @@ -20867,10 +21081,10 @@ lean_ctor_set(x_219, 2, x_215); lean_ctor_set(x_219, 3, x_218); x_220 = l_Array_empty___closed__1; x_221 = lean_array_push(x_220, x_219); -x_222 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__16; +x_222 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__21; x_223 = l_Lean_addMacroScope(x_213, x_222, x_212); -x_224 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__12; -x_225 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__18; +x_224 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__17; +x_225 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__23; x_226 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_226, 0, x_216); lean_ctor_set(x_226, 1, x_224); @@ -20930,8 +21144,8 @@ lean_inc(x_250); lean_inc(x_251); x_253 = l_Lean_addMacroScope(x_251, x_252, x_250); x_254 = l_Lean_instInhabitedSourceInfo___closed__1; -x_255 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_256 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_255 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_256 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_257 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_257, 0, x_254); lean_ctor_set(x_257, 1, x_255); @@ -20939,10 +21153,10 @@ lean_ctor_set(x_257, 2, x_253); lean_ctor_set(x_257, 3, x_256); x_258 = l_Array_empty___closed__1; x_259 = lean_array_push(x_258, x_257); -x_260 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__16; +x_260 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__21; x_261 = l_Lean_addMacroScope(x_251, x_260, x_250); -x_262 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__12; -x_263 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__18; +x_262 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__17; +x_263 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__23; x_264 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_264, 0, x_254); lean_ctor_set(x_264, 1, x_262); @@ -20993,8 +21207,8 @@ lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; x_287 = lean_ctor_get(x_5, 1); lean_inc(x_287); lean_dec(x_5); -x_288 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__15; -x_289 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__19; +x_288 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__18; +x_289 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__24; x_290 = lean_panic_fn(x_288, x_289); x_291 = lean_apply_3(x_290, x_2, x_3, x_287); return x_291; @@ -21018,8 +21232,8 @@ lean_inc(x_294); lean_inc(x_295); x_297 = l_Lean_addMacroScope(x_295, x_296, x_294); x_298 = l_Lean_instInhabitedSourceInfo___closed__1; -x_299 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_300 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_299 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_300 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_301 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_301, 0, x_298); lean_ctor_set(x_301, 1, x_299); @@ -21027,10 +21241,10 @@ lean_ctor_set(x_301, 2, x_297); lean_ctor_set(x_301, 3, x_300); x_302 = l_Array_empty___closed__1; x_303 = lean_array_push(x_302, x_301); -x_304 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__23; +x_304 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__28; x_305 = l_Lean_addMacroScope(x_295, x_304, x_294); -x_306 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__22; -x_307 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__25; +x_306 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__27; +x_307 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__30; x_308 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_308, 0, x_298); lean_ctor_set(x_308, 1, x_306); @@ -21090,8 +21304,8 @@ lean_inc(x_332); lean_inc(x_333); x_335 = l_Lean_addMacroScope(x_333, x_334, x_332); x_336 = l_Lean_instInhabitedSourceInfo___closed__1; -x_337 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_338 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_337 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_338 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_339 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_339, 0, x_336); lean_ctor_set(x_339, 1, x_337); @@ -21099,10 +21313,10 @@ lean_ctor_set(x_339, 2, x_335); lean_ctor_set(x_339, 3, x_338); x_340 = l_Array_empty___closed__1; x_341 = lean_array_push(x_340, x_339); -x_342 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__23; +x_342 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__28; x_343 = l_Lean_addMacroScope(x_333, x_342, x_332); -x_344 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__22; -x_345 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__25; +x_344 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__27; +x_345 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__30; x_346 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_346, 0, x_336); lean_ctor_set(x_346, 1, x_344); @@ -21166,8 +21380,8 @@ lean_inc(x_371); lean_inc(x_372); x_374 = l_Lean_addMacroScope(x_372, x_373, x_371); x_375 = l_Lean_instInhabitedSourceInfo___closed__1; -x_376 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_377 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_376 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_377 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_378 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_378, 0, x_375); lean_ctor_set(x_378, 1, x_376); @@ -21175,10 +21389,10 @@ lean_ctor_set(x_378, 2, x_374); lean_ctor_set(x_378, 3, x_377); x_379 = l_Array_empty___closed__1; x_380 = lean_array_push(x_379, x_378); -x_381 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__29; +x_381 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__34; x_382 = l_Lean_addMacroScope(x_372, x_381, x_371); -x_383 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__28; -x_384 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__31; +x_383 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__33; +x_384 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__36; x_385 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_385, 0, x_375); lean_ctor_set(x_385, 1, x_383); @@ -21238,8 +21452,8 @@ lean_inc(x_409); lean_inc(x_410); x_412 = l_Lean_addMacroScope(x_410, x_411, x_409); x_413 = l_Lean_instInhabitedSourceInfo___closed__1; -x_414 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_415 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_414 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_415 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_416 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_416, 0, x_413); lean_ctor_set(x_416, 1, x_414); @@ -21247,10 +21461,10 @@ lean_ctor_set(x_416, 2, x_412); lean_ctor_set(x_416, 3, x_415); x_417 = l_Array_empty___closed__1; x_418 = lean_array_push(x_417, x_416); -x_419 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__29; +x_419 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__34; x_420 = l_Lean_addMacroScope(x_410, x_419, x_409); -x_421 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__28; -x_422 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__31; +x_421 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__33; +x_422 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__36; x_423 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_423, 0, x_413); lean_ctor_set(x_423, 1, x_421); @@ -21500,9 +21714,9 @@ static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_breakToTermCore___closed__2 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__16; +x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__19; x_2 = l_Lean_Elab_Term_Do_ToTerm_breakToTermCore___closed__1; -x_3 = lean_unsigned_to_nat(852u); +x_3 = lean_unsigned_to_nat(851u); x_4 = lean_unsigned_to_nat(28u); x_5 = l_Lean_Syntax_strLitToAtom___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -21552,7 +21766,7 @@ static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_breakToTermCore___closed__7 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__14; +x_1 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__19; x_2 = l_Lean_Elab_Term_Do_ToTerm_breakToTermCore___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -21586,9 +21800,9 @@ static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_breakToTermCore___closed__1 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__16; +x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__19; x_2 = l_Lean_Elab_Term_Do_ToTerm_breakToTermCore___closed__1; -x_3 = lean_unsigned_to_nat(856u); +x_3 = lean_unsigned_to_nat(855u); x_4 = lean_unsigned_to_nat(28u); x_5 = l_Lean_Syntax_strLitToAtom___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -21630,7 +21844,7 @@ static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_breakToTermCore___closed__1 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__32; +x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__35; x_2 = l_Lean_Elab_Term_Do_ToTerm_breakToTermCore___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -21695,7 +21909,7 @@ static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_breakToTermCore___closed__2 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__41; +x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__44; x_2 = l_Lean_Elab_Term_Do_ToTerm_breakToTermCore___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -21740,7 +21954,7 @@ lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_ob x_7 = lean_ctor_get(x_5, 1); lean_inc(x_7); lean_dec(x_5); -x_8 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__15; +x_8 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__18; x_9 = l_Lean_Elab_Term_Do_ToTerm_breakToTermCore___closed__2; x_10 = lean_panic_fn(x_8, x_9); x_11 = lean_apply_3(x_10, x_2, x_3, x_7); @@ -21765,8 +21979,8 @@ lean_inc(x_14); lean_inc(x_15); x_17 = l_Lean_addMacroScope(x_15, x_16, x_14); x_18 = l_Lean_instInhabitedSourceInfo___closed__1; -x_19 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_20 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_19 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_20 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_21 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_21, 0, x_18); lean_ctor_set(x_21, 1, x_19); @@ -21837,8 +22051,8 @@ lean_inc(x_52); lean_inc(x_53); x_55 = l_Lean_addMacroScope(x_53, x_54, x_52); x_56 = l_Lean_instInhabitedSourceInfo___closed__1; -x_57 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_58 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_57 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_58 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_59 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_59, 0, x_56); lean_ctor_set(x_59, 1, x_57); @@ -21913,8 +22127,8 @@ lean_inc(x_91); lean_inc(x_92); x_94 = l_Lean_addMacroScope(x_92, x_93, x_91); x_95 = l_Lean_instInhabitedSourceInfo___closed__1; -x_96 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_97 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_96 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_97 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_98 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_98, 0, x_95); lean_ctor_set(x_98, 1, x_96); @@ -21946,10 +22160,10 @@ lean_ctor_set(x_111, 1, x_109); lean_ctor_set(x_111, 2, x_108); lean_ctor_set(x_111, 3, x_110); x_112 = lean_array_push(x_99, x_111); -x_113 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__22; +x_113 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__12; x_114 = l_Lean_addMacroScope(x_92, x_113, x_91); -x_115 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__21; -x_116 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; +x_115 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__11; +x_116 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__14; x_117 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_117, 0, x_95); lean_ctor_set(x_117, 1, x_115); @@ -22027,8 +22241,8 @@ lean_inc(x_151); lean_inc(x_152); x_154 = l_Lean_addMacroScope(x_152, x_153, x_151); x_155 = l_Lean_instInhabitedSourceInfo___closed__1; -x_156 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_157 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_156 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_157 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_158 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_158, 0, x_155); lean_ctor_set(x_158, 1, x_156); @@ -22060,10 +22274,10 @@ lean_ctor_set(x_171, 1, x_169); lean_ctor_set(x_171, 2, x_168); lean_ctor_set(x_171, 3, x_170); x_172 = lean_array_push(x_159, x_171); -x_173 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__22; +x_173 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__12; x_174 = l_Lean_addMacroScope(x_152, x_173, x_151); -x_175 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__21; -x_176 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; +x_175 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__11; +x_176 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__14; x_177 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_177, 0, x_155); lean_ctor_set(x_177, 1, x_175); @@ -22145,8 +22359,8 @@ lean_inc(x_212); lean_inc(x_213); x_215 = l_Lean_addMacroScope(x_213, x_214, x_212); x_216 = l_Lean_instInhabitedSourceInfo___closed__1; -x_217 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_218 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_217 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_218 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_219 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_219, 0, x_216); lean_ctor_set(x_219, 1, x_217); @@ -22217,8 +22431,8 @@ lean_inc(x_250); lean_inc(x_251); x_253 = l_Lean_addMacroScope(x_251, x_252, x_250); x_254 = l_Lean_instInhabitedSourceInfo___closed__1; -x_255 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_256 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_255 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_256 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_257 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_257, 0, x_254); lean_ctor_set(x_257, 1, x_255); @@ -22280,7 +22494,7 @@ lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; x_287 = lean_ctor_get(x_5, 1); lean_inc(x_287); lean_dec(x_5); -x_288 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__15; +x_288 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__18; x_289 = l_Lean_Elab_Term_Do_ToTerm_breakToTermCore___closed__10; x_290 = lean_panic_fn(x_288, x_289); x_291 = lean_apply_3(x_290, x_2, x_3, x_287); @@ -22305,8 +22519,8 @@ lean_inc(x_294); lean_inc(x_295); x_297 = l_Lean_addMacroScope(x_295, x_296, x_294); x_298 = l_Lean_instInhabitedSourceInfo___closed__1; -x_299 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_300 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_299 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_300 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_301 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_301, 0, x_298); lean_ctor_set(x_301, 1, x_299); @@ -22377,8 +22591,8 @@ lean_inc(x_332); lean_inc(x_333); x_335 = l_Lean_addMacroScope(x_333, x_334, x_332); x_336 = l_Lean_instInhabitedSourceInfo___closed__1; -x_337 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_338 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_337 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_338 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_339 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_339, 0, x_336); lean_ctor_set(x_339, 1, x_337); @@ -22453,8 +22667,8 @@ lean_inc(x_371); lean_inc(x_372); x_374 = l_Lean_addMacroScope(x_372, x_373, x_371); x_375 = l_Lean_instInhabitedSourceInfo___closed__1; -x_376 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_377 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_376 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_377 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_378 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_378, 0, x_375); lean_ctor_set(x_378, 1, x_376); @@ -22525,8 +22739,8 @@ lean_inc(x_409); lean_inc(x_410); x_412 = l_Lean_addMacroScope(x_410, x_411, x_409); x_413 = l_Lean_instInhabitedSourceInfo___closed__1; -x_414 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_415 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2; +x_414 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_415 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5; x_416 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_416, 0, x_413); lean_ctor_set(x_416, 1, x_414); @@ -22778,19 +22992,43 @@ return x_10; static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__1() { _start: { +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Meta_mkPure___rarg___closed__4; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__1; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__3() { +_start: +{ lean_object* x_1; lean_object* x_2; x_1 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkUnit___closed__3; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkUnit___closed__3; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__1; +x_3 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__3; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -22798,7 +23036,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__3() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -22810,19 +23048,19 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__4() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__3; +x_2 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__5; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__5() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__7() { _start: { lean_object* x_1; @@ -22830,20 +23068,20 @@ x_1 = lean_mk_string("Lean.Elab.Term.Do.ToTerm.actionTerminalToTermCore"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__6() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__16; -x_2 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__5; -x_3 = lean_unsigned_to_nat(872u); +x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__19; +x_2 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__7; +x_3 = lean_unsigned_to_nat(871u); x_4 = lean_unsigned_to_nat(28u); x_5 = l_Lean_Syntax_strLitToAtom___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); return x_6; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__7() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__9() { _start: { lean_object* x_1; @@ -22851,22 +23089,22 @@ x_1 = lean_mk_string("DoResultPR.«pure»"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__8() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__7; +x_1 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__9; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__9() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__7; +x_1 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__9; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__8; +x_3 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__10; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -22874,41 +23112,41 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__10() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__23; +x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__26; x_2 = l_Lean_Meta_mkPure___rarg___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__11() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__10; +x_2 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__12; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__12() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__11; +x_2 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__13; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__13() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__15() { _start: { lean_object* x_1; @@ -22916,22 +23154,22 @@ x_1 = lean_mk_string("DoResultPRBC.«pure»"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__14() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__16() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__13; +x_1 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__15; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__15() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__13; +x_1 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__15; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__14; +x_3 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__16; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -22939,34 +23177,34 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__16() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__18() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__41; +x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__44; x_2 = l_Lean_Meta_mkPure___rarg___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__17() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__16; +x_2 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__18; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__18() { +static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__20() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__17; +x_2 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__19; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); @@ -23050,8 +23288,8 @@ x_36 = l_Lean_Meta_mkPure___rarg___closed__4; lean_inc(x_4); lean_inc(x_8); x_37 = l_Lean_addMacroScope(x_8, x_36, x_4); -x_38 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_39 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; +x_38 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_39 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; x_40 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_40, 0, x_19); lean_ctor_set(x_40, 1, x_38); @@ -23185,8 +23423,8 @@ x_102 = l_Lean_Meta_mkPure___rarg___closed__4; lean_inc(x_4); lean_inc(x_8); x_103 = l_Lean_addMacroScope(x_8, x_102, x_4); -x_104 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_105 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; +x_104 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_105 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; x_106 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_106, 0, x_85); lean_ctor_set(x_106, 1, x_104); @@ -23300,8 +23538,8 @@ x_157 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkUnit___closed__4; lean_inc(x_4); lean_inc(x_8); x_158 = l_Lean_addMacroScope(x_8, x_157, x_4); -x_159 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; -x_160 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__4; +x_159 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__4; +x_160 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__6; x_161 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_161, 0, x_150); lean_ctor_set(x_161, 1, x_159); @@ -23342,8 +23580,8 @@ x_183 = l_Lean_Meta_mkPure___rarg___closed__4; lean_inc(x_4); lean_inc(x_8); x_184 = l_Lean_addMacroScope(x_8, x_183, x_4); -x_185 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_186 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; +x_185 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_186 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; x_187 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_187, 0, x_150); lean_ctor_set(x_187, 1, x_185); @@ -23437,8 +23675,8 @@ x_233 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkUnit___closed__4; lean_inc(x_4); lean_inc(x_8); x_234 = l_Lean_addMacroScope(x_8, x_233, x_4); -x_235 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; -x_236 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__4; +x_235 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__4; +x_236 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__6; x_237 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_237, 0, x_226); lean_ctor_set(x_237, 1, x_235); @@ -23479,8 +23717,8 @@ x_259 = l_Lean_Meta_mkPure___rarg___closed__4; lean_inc(x_4); lean_inc(x_8); x_260 = l_Lean_addMacroScope(x_8, x_259, x_4); -x_261 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_262 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; +x_261 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_262 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; x_263 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_263, 0, x_226); lean_ctor_set(x_263, 1, x_261); @@ -23579,8 +23817,8 @@ x_310 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkUnit___closed__4; lean_inc(x_4); lean_inc(x_8); x_311 = l_Lean_addMacroScope(x_8, x_310, x_4); -x_312 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; -x_313 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__4; +x_312 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__4; +x_313 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__6; x_314 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_314, 0, x_303); lean_ctor_set(x_314, 1, x_312); @@ -23621,8 +23859,8 @@ x_336 = l_Lean_Meta_mkPure___rarg___closed__4; lean_inc(x_4); lean_inc(x_8); x_337 = l_Lean_addMacroScope(x_8, x_336, x_4); -x_338 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_339 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; +x_338 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_339 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; x_340 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_340, 0, x_303); lean_ctor_set(x_340, 1, x_338); @@ -23653,10 +23891,10 @@ lean_ctor_set(x_352, 1, x_350); lean_ctor_set(x_352, 2, x_349); lean_ctor_set(x_352, 3, x_351); x_353 = lean_array_push(x_307, x_352); -x_354 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__22; +x_354 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__12; x_355 = l_Lean_addMacroScope(x_8, x_354, x_4); -x_356 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__21; -x_357 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; +x_356 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__11; +x_357 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__14; x_358 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_358, 0, x_303); lean_ctor_set(x_358, 1, x_356); @@ -23758,8 +23996,8 @@ x_408 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkUnit___closed__4; lean_inc(x_4); lean_inc(x_8); x_409 = l_Lean_addMacroScope(x_8, x_408, x_4); -x_410 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; -x_411 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__4; +x_410 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__4; +x_411 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__6; x_412 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_412, 0, x_401); lean_ctor_set(x_412, 1, x_410); @@ -23800,8 +24038,8 @@ x_434 = l_Lean_Meta_mkPure___rarg___closed__4; lean_inc(x_4); lean_inc(x_8); x_435 = l_Lean_addMacroScope(x_8, x_434, x_4); -x_436 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_437 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; +x_436 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_437 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; x_438 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_438, 0, x_401); lean_ctor_set(x_438, 1, x_436); @@ -23832,10 +24070,10 @@ 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 = lean_array_push(x_405, x_450); -x_452 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__22; +x_452 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__12; x_453 = l_Lean_addMacroScope(x_8, x_452, x_4); -x_454 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__21; -x_455 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; +x_454 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__11; +x_455 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__14; x_456 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_456, 0, x_401); lean_ctor_set(x_456, 1, x_454); @@ -23922,8 +24160,8 @@ lean_dec(x_1); x_496 = lean_ctor_get(x_10, 1); lean_inc(x_496); lean_dec(x_10); -x_497 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__15; -x_498 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__6; +x_497 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__18; +x_498 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__8; x_499 = lean_panic_fn(x_497, x_498); x_500 = lean_apply_3(x_499, x_2, x_3, x_496); return x_500; @@ -23977,18 +24215,18 @@ x_523 = l_Lean_Meta_mkPure___rarg___closed__4; lean_inc(x_4); lean_inc(x_8); x_524 = l_Lean_addMacroScope(x_8, x_523, x_4); -x_525 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_526 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; +x_525 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_526 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; x_527 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_527, 0, x_506); lean_ctor_set(x_527, 1, x_525); lean_ctor_set(x_527, 2, x_524); lean_ctor_set(x_527, 3, x_526); x_528 = lean_array_push(x_510, x_527); -x_529 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__10; +x_529 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__12; x_530 = l_Lean_addMacroScope(x_8, x_529, x_4); -x_531 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__9; -x_532 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__12; +x_531 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__11; +x_532 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__14; x_533 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_533, 0, x_506); lean_ctor_set(x_533, 1, x_531); @@ -24105,18 +24343,18 @@ x_593 = l_Lean_Meta_mkPure___rarg___closed__4; lean_inc(x_4); lean_inc(x_8); x_594 = l_Lean_addMacroScope(x_8, x_593, x_4); -x_595 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_596 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; +x_595 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_596 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; x_597 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_597, 0, x_576); lean_ctor_set(x_597, 1, x_595); lean_ctor_set(x_597, 2, x_594); lean_ctor_set(x_597, 3, x_596); x_598 = lean_array_push(x_580, x_597); -x_599 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__10; +x_599 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__12; x_600 = l_Lean_addMacroScope(x_8, x_599, x_4); -x_601 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__9; -x_602 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__12; +x_601 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__11; +x_602 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__14; x_603 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_603, 0, x_576); lean_ctor_set(x_603, 1, x_601); @@ -24238,18 +24476,18 @@ x_664 = l_Lean_Meta_mkPure___rarg___closed__4; lean_inc(x_4); lean_inc(x_8); x_665 = l_Lean_addMacroScope(x_8, x_664, x_4); -x_666 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_667 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; +x_666 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_667 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; x_668 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_668, 0, x_647); lean_ctor_set(x_668, 1, x_666); lean_ctor_set(x_668, 2, x_665); lean_ctor_set(x_668, 3, x_667); x_669 = lean_array_push(x_651, x_668); -x_670 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__34; +x_670 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__37; x_671 = l_Lean_addMacroScope(x_8, x_670, x_4); -x_672 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__30; -x_673 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__36; +x_672 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__33; +x_673 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__39; x_674 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_674, 0, x_647); lean_ctor_set(x_674, 1, x_672); @@ -24366,18 +24604,18 @@ x_734 = l_Lean_Meta_mkPure___rarg___closed__4; lean_inc(x_4); lean_inc(x_8); x_735 = l_Lean_addMacroScope(x_8, x_734, x_4); -x_736 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_737 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; +x_736 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_737 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; x_738 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_738, 0, x_717); lean_ctor_set(x_738, 1, x_736); lean_ctor_set(x_738, 2, x_735); lean_ctor_set(x_738, 3, x_737); x_739 = lean_array_push(x_721, x_738); -x_740 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__34; +x_740 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__37; x_741 = l_Lean_addMacroScope(x_8, x_740, x_4); -x_742 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__30; -x_743 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__36; +x_742 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__33; +x_743 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__39; x_744 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_744, 0, x_717); lean_ctor_set(x_744, 1, x_742); @@ -24499,18 +24737,18 @@ x_805 = l_Lean_Meta_mkPure___rarg___closed__4; lean_inc(x_4); lean_inc(x_8); x_806 = l_Lean_addMacroScope(x_8, x_805, x_4); -x_807 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_808 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; +x_807 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_808 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; x_809 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_809, 0, x_788); lean_ctor_set(x_809, 1, x_807); lean_ctor_set(x_809, 2, x_806); lean_ctor_set(x_809, 3, x_808); x_810 = lean_array_push(x_792, x_809); -x_811 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__16; +x_811 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__18; x_812 = l_Lean_addMacroScope(x_8, x_811, x_4); -x_813 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__15; -x_814 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__18; +x_813 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__17; +x_814 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__20; x_815 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_815, 0, x_788); lean_ctor_set(x_815, 1, x_813); @@ -24627,18 +24865,18 @@ x_875 = l_Lean_Meta_mkPure___rarg___closed__4; lean_inc(x_4); lean_inc(x_8); x_876 = l_Lean_addMacroScope(x_8, x_875, x_4); -x_877 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_878 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; +x_877 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_878 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; x_879 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_879, 0, x_858); lean_ctor_set(x_879, 1, x_877); lean_ctor_set(x_879, 2, x_876); lean_ctor_set(x_879, 3, x_878); x_880 = lean_array_push(x_862, x_879); -x_881 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__16; +x_881 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__18; x_882 = l_Lean_addMacroScope(x_8, x_881, x_4); -x_883 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__15; -x_884 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__18; +x_883 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__17; +x_884 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__20; x_885 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_885, 0, x_858); lean_ctor_set(x_885, 1, x_883); @@ -24804,8 +25042,8 @@ x_957 = l_Lean_Meta_mkPure___rarg___closed__4; lean_inc(x_4); lean_inc(x_925); x_958 = l_Lean_addMacroScope(x_925, x_957, x_4); -x_959 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_960 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; +x_959 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_960 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; x_961 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_961, 0, x_940); lean_ctor_set(x_961, 1, x_959); @@ -24933,8 +25171,8 @@ x_1013 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkUnit___closed__4; lean_inc(x_4); lean_inc(x_925); x_1014 = l_Lean_addMacroScope(x_925, x_1013, x_4); -x_1015 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; -x_1016 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__4; +x_1015 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__4; +x_1016 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__6; x_1017 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1017, 0, x_1006); lean_ctor_set(x_1017, 1, x_1015); @@ -24975,8 +25213,8 @@ x_1039 = l_Lean_Meta_mkPure___rarg___closed__4; lean_inc(x_4); lean_inc(x_925); x_1040 = l_Lean_addMacroScope(x_925, x_1039, x_4); -x_1041 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_1042 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; +x_1041 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_1042 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; x_1043 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1043, 0, x_1006); lean_ctor_set(x_1043, 1, x_1041); @@ -25085,8 +25323,8 @@ x_1091 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkUnit___closed__4; lean_inc(x_4); lean_inc(x_925); x_1092 = l_Lean_addMacroScope(x_925, x_1091, x_4); -x_1093 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; -x_1094 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__4; +x_1093 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__4; +x_1094 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__6; x_1095 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1095, 0, x_1084); lean_ctor_set(x_1095, 1, x_1093); @@ -25127,8 +25365,8 @@ x_1117 = l_Lean_Meta_mkPure___rarg___closed__4; lean_inc(x_4); lean_inc(x_925); x_1118 = l_Lean_addMacroScope(x_925, x_1117, x_4); -x_1119 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_1120 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; +x_1119 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_1120 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; x_1121 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1121, 0, x_1084); lean_ctor_set(x_1121, 1, x_1119); @@ -25159,10 +25397,10 @@ lean_ctor_set(x_1133, 1, x_1131); lean_ctor_set(x_1133, 2, x_1130); lean_ctor_set(x_1133, 3, x_1132); x_1134 = lean_array_push(x_1088, x_1133); -x_1135 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__22; +x_1135 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__12; x_1136 = l_Lean_addMacroScope(x_925, x_1135, x_4); -x_1137 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__21; -x_1138 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; +x_1137 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__11; +x_1138 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__14; x_1139 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1139, 0, x_1084); lean_ctor_set(x_1139, 1, x_1137); @@ -25252,8 +25490,8 @@ lean_dec(x_1); x_1179 = lean_ctor_get(x_930, 1); lean_inc(x_1179); lean_dec(x_930); -x_1180 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__15; -x_1181 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__6; +x_1180 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__18; +x_1181 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__8; x_1182 = lean_panic_fn(x_1180, x_1181); x_1183 = lean_apply_3(x_1182, x_2, x_929, x_1179); return x_1183; @@ -25314,18 +25552,18 @@ x_1207 = l_Lean_Meta_mkPure___rarg___closed__4; lean_inc(x_4); lean_inc(x_925); x_1208 = l_Lean_addMacroScope(x_925, x_1207, x_4); -x_1209 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_1210 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; +x_1209 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_1210 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; x_1211 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1211, 0, x_1190); lean_ctor_set(x_1211, 1, x_1209); lean_ctor_set(x_1211, 2, x_1208); lean_ctor_set(x_1211, 3, x_1210); x_1212 = lean_array_push(x_1194, x_1211); -x_1213 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__10; +x_1213 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__12; x_1214 = l_Lean_addMacroScope(x_925, x_1213, x_4); -x_1215 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__9; -x_1216 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__12; +x_1215 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__11; +x_1216 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__14; x_1217 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1217, 0, x_1190); lean_ctor_set(x_1217, 1, x_1215); @@ -25457,18 +25695,18 @@ x_1279 = l_Lean_Meta_mkPure___rarg___closed__4; lean_inc(x_4); lean_inc(x_925); x_1280 = l_Lean_addMacroScope(x_925, x_1279, x_4); -x_1281 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_1282 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; +x_1281 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_1282 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; x_1283 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1283, 0, x_1262); lean_ctor_set(x_1283, 1, x_1281); lean_ctor_set(x_1283, 2, x_1280); lean_ctor_set(x_1283, 3, x_1282); x_1284 = lean_array_push(x_1266, x_1283); -x_1285 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__34; +x_1285 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__37; x_1286 = l_Lean_addMacroScope(x_925, x_1285, x_4); -x_1287 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__30; -x_1288 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__36; +x_1287 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__33; +x_1288 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__39; x_1289 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1289, 0, x_1262); lean_ctor_set(x_1289, 1, x_1287); @@ -25600,18 +25838,18 @@ x_1351 = l_Lean_Meta_mkPure___rarg___closed__4; lean_inc(x_4); lean_inc(x_925); x_1352 = l_Lean_addMacroScope(x_925, x_1351, x_4); -x_1353 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_1354 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; +x_1353 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_1354 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; x_1355 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1355, 0, x_1334); lean_ctor_set(x_1355, 1, x_1353); lean_ctor_set(x_1355, 2, x_1352); lean_ctor_set(x_1355, 3, x_1354); x_1356 = lean_array_push(x_1338, x_1355); -x_1357 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__16; +x_1357 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__18; x_1358 = l_Lean_addMacroScope(x_925, x_1357, x_4); -x_1359 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__15; -x_1360 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__18; +x_1359 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__17; +x_1360 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__20; x_1361 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1361, 0, x_1334); lean_ctor_set(x_1361, 1, x_1359); @@ -25914,8 +26152,8 @@ x_20 = lean_array_push(x_19, x_18); x_21 = lean_array_push(x_19, x_1); x_22 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkUnit___closed__4; x_23 = l_Lean_addMacroScope(x_10, x_22, x_4); -x_24 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; -x_25 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__4; +x_24 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__4; +x_25 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__6; x_26 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_26, 0, x_15); lean_ctor_set(x_26, 1, x_24); @@ -28085,7 +28323,7 @@ x_22 = l___private_Lean_Meta_Match_CaseArraySizes_0__Lean_Meta_introArrayLit_loo x_23 = lean_array_push(x_22, x_19); x_24 = lean_array_push(x_23, x_21); x_25 = lean_array_push(x_24, x_17); -x_26 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_26 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_27 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_27, 0, x_26); lean_ctor_set(x_27, 1, x_25); @@ -28550,13 +28788,13 @@ lean_ctor_set(x_105, 1, x_104); x_106 = l_Lean_Syntax_mkApp___closed__1; x_107 = lean_array_push(x_106, x_105); x_108 = lean_array_push(x_107, x_102); -x_109 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_109 = l_Lean_Elab_Term_expandFunBinders_loop___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 = l_Lean_Parser_Tactic_match___closed__1; x_112 = l_Lean_mkAtomFrom(x_83, x_111); -x_113 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__14; +x_113 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; x_114 = l_Lean_mkAtomFrom(x_83, x_113); lean_dec(x_83); x_115 = l_Lean_Meta_caseValueAux___lambda__3___closed__4; @@ -28565,7 +28803,7 @@ x_117 = lean_array_push(x_116, x_84); x_118 = lean_array_push(x_117, x_85); x_119 = lean_array_push(x_118, x_114); x_120 = lean_array_push(x_119, x_110); -x_121 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_121 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_122 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_122, 0, x_121); lean_ctor_set(x_122, 1, x_120); @@ -28600,13 +28838,13 @@ lean_ctor_set(x_136, 1, x_135); x_137 = l_Lean_Syntax_mkApp___closed__1; x_138 = lean_array_push(x_137, x_136); x_139 = lean_array_push(x_138, x_133); -x_140 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_140 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; 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 = l_Lean_Parser_Tactic_match___closed__1; x_143 = l_Lean_mkAtomFrom(x_83, x_142); -x_144 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__14; +x_144 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; x_145 = l_Lean_mkAtomFrom(x_83, x_144); lean_dec(x_83); x_146 = l_Lean_Meta_caseValueAux___lambda__3___closed__4; @@ -28615,7 +28853,7 @@ x_148 = lean_array_push(x_147, x_84); x_149 = lean_array_push(x_148, x_85); x_150 = lean_array_push(x_149, x_145); x_151 = lean_array_push(x_150, x_141); -x_152 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_152 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_153 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_153, 0, x_152); lean_ctor_set(x_153, 1, x_151); @@ -28888,9 +29126,9 @@ static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_mkNestedKind___closed__2() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__16; +x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__19; x_2 = l_Lean_Elab_Term_Do_ToTerm_mkNestedKind___closed__1; -x_3 = lean_unsigned_to_nat(1047u); +x_3 = lean_unsigned_to_nat(1046u); x_4 = lean_unsigned_to_nat(27u); x_5 = l_Lean_Syntax_strLitToAtom___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -29197,9 +29435,9 @@ static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__16; +x_1 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__19; x_2 = l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__3; -x_3 = lean_unsigned_to_nat(1103u); +x_3 = lean_unsigned_to_nat(1102u); x_4 = lean_unsigned_to_nat(27u); x_5 = l_Lean_Syntax_strLitToAtom___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -29463,7 +29701,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_instInhabitedSourceInfo___closed__1; -x_2 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__15; +x_2 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__20; x_3 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); @@ -29589,7 +29827,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_instInhabitedSourceInfo___closed__1; -x_2 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__24; +x_2 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__27; x_3 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); @@ -29802,9 +30040,9 @@ x_51 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_51, 0, x_50); lean_ctor_set(x_51, 1, x_49); x_52 = lean_array_push(x_31, x_51); -x_53 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_53 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_54 = lean_array_push(x_53, x_30); -x_55 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_55 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_56 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_56, 0, x_55); lean_ctor_set(x_56, 1, x_54); @@ -29813,10 +30051,10 @@ 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_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_60 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_61 = lean_array_push(x_60, x_59); x_62 = lean_array_push(x_61, x_33); -x_63 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_63 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_64 = lean_array_push(x_62, x_63); x_65 = l_Lean_Elab_Term_Do_ToTerm_breakToTermCore___closed__7; lean_inc(x_23); @@ -29896,12 +30134,12 @@ x_108 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_108, 0, x_107); lean_ctor_set(x_108, 1, x_106); x_109 = lean_array_push(x_31, x_108); -x_110 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_110 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; x_111 = lean_array_push(x_109, x_110); -x_112 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__16; +x_112 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__21; x_113 = l_Lean_addMacroScope(x_24, x_112, x_23); -x_114 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__12; -x_115 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__18; +x_114 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__17; +x_115 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__23; x_116 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_116, 0, x_28); lean_ctor_set(x_116, 1, x_114); @@ -29935,7 +30173,7 @@ x_131 = lean_array_push(x_111, x_130); x_132 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_132, 0, x_58); lean_ctor_set(x_132, 1, x_131); -x_133 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_133 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_134 = lean_array_push(x_133, x_132); x_135 = l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__15; x_136 = lean_alloc_ctor(1, 2, 0); @@ -30028,9 +30266,9 @@ x_184 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_184, 0, x_183); lean_ctor_set(x_184, 1, x_182); x_185 = lean_array_push(x_164, x_184); -x_186 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_186 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_187 = lean_array_push(x_186, x_163); -x_188 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_188 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_189 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_189, 0, x_188); lean_ctor_set(x_189, 1, x_187); @@ -30039,10 +30277,10 @@ x_191 = l_Lean_nullKind___closed__2; x_192 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_192, 0, x_191); lean_ctor_set(x_192, 1, x_190); -x_193 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_193 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_194 = lean_array_push(x_193, x_192); x_195 = lean_array_push(x_194, x_166); -x_196 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_196 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_197 = lean_array_push(x_195, x_196); x_198 = l_Lean_Elab_Term_Do_ToTerm_breakToTermCore___closed__7; lean_inc(x_156); @@ -30122,12 +30360,12 @@ x_241 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_241, 0, x_240); lean_ctor_set(x_241, 1, x_239); x_242 = lean_array_push(x_164, x_241); -x_243 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_243 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; x_244 = lean_array_push(x_242, x_243); -x_245 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__16; +x_245 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__21; x_246 = l_Lean_addMacroScope(x_157, x_245, x_156); -x_247 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__12; -x_248 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__18; +x_247 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__17; +x_248 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__23; x_249 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_249, 0, x_161); lean_ctor_set(x_249, 1, x_247); @@ -30161,7 +30399,7 @@ x_264 = lean_array_push(x_244, x_263); x_265 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_265, 0, x_191); lean_ctor_set(x_265, 1, x_264); -x_266 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_266 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_267 = lean_array_push(x_266, x_265); x_268 = l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__15; x_269 = lean_alloc_ctor(1, 2, 0); @@ -30706,9 +30944,9 @@ 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 = lean_array_push(x_560, x_580); -x_582 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_582 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_583 = lean_array_push(x_582, x_559); -x_584 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_584 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_585 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_585, 0, x_584); lean_ctor_set(x_585, 1, x_583); @@ -30717,17 +30955,17 @@ x_587 = l_Lean_nullKind___closed__2; x_588 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_588, 0, x_587); lean_ctor_set(x_588, 1, x_586); -x_589 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_589 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_590 = lean_array_push(x_589, x_588); x_591 = lean_array_push(x_590, x_562); -x_592 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_592 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_593 = lean_array_push(x_591, x_592); -x_594 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__34; +x_594 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__37; lean_inc(x_552); lean_inc(x_553); x_595 = l_Lean_addMacroScope(x_553, x_594, x_552); -x_596 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__30; -x_597 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__36; +x_596 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__33; +x_597 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__39; x_598 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_598, 0, x_557); lean_ctor_set(x_598, 1, x_596); @@ -30825,7 +31063,7 @@ x_649 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_649, 0, x_648); lean_ctor_set(x_649, 1, x_647); x_650 = lean_array_push(x_560, x_649); -x_651 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_651 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; x_652 = lean_array_push(x_650, x_651); x_653 = l_Lean_Elab_Term_Do_ToTerm_breakToTermCore___closed__14; lean_inc(x_552); @@ -30870,10 +31108,10 @@ lean_ctor_set(x_673, 0, x_648); lean_ctor_set(x_673, 1, x_672); x_674 = lean_array_push(x_652, x_673); x_675 = lean_array_push(x_674, x_651); -x_676 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__23; +x_676 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__28; x_677 = l_Lean_addMacroScope(x_553, x_676, x_552); -x_678 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__22; -x_679 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__25; +x_678 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__27; +x_679 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__30; x_680 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_680, 0, x_557); lean_ctor_set(x_680, 1, x_678); @@ -30907,7 +31145,7 @@ x_695 = lean_array_push(x_675, x_694); x_696 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_696, 0, x_587); lean_ctor_set(x_696, 1, x_695); -x_697 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_697 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_698 = lean_array_push(x_697, x_696); x_699 = l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__15; x_700 = lean_alloc_ctor(1, 2, 0); @@ -31000,9 +31238,9 @@ x_748 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_748, 0, x_747); lean_ctor_set(x_748, 1, x_746); x_749 = lean_array_push(x_728, x_748); -x_750 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_750 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_751 = lean_array_push(x_750, x_727); -x_752 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_752 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_753 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_753, 0, x_752); lean_ctor_set(x_753, 1, x_751); @@ -31011,17 +31249,17 @@ x_755 = l_Lean_nullKind___closed__2; x_756 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_756, 0, x_755); lean_ctor_set(x_756, 1, x_754); -x_757 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_757 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_758 = lean_array_push(x_757, x_756); x_759 = lean_array_push(x_758, x_730); -x_760 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_760 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_761 = lean_array_push(x_759, x_760); -x_762 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__34; +x_762 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__37; lean_inc(x_720); lean_inc(x_721); x_763 = l_Lean_addMacroScope(x_721, x_762, x_720); -x_764 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__30; -x_765 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__36; +x_764 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__33; +x_765 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__39; x_766 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_766, 0, x_725); lean_ctor_set(x_766, 1, x_764); @@ -31119,7 +31357,7 @@ x_817 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_817, 0, x_816); lean_ctor_set(x_817, 1, x_815); x_818 = lean_array_push(x_728, x_817); -x_819 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_819 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; x_820 = lean_array_push(x_818, x_819); x_821 = l_Lean_Elab_Term_Do_ToTerm_breakToTermCore___closed__14; lean_inc(x_720); @@ -31164,10 +31402,10 @@ lean_ctor_set(x_841, 0, x_816); lean_ctor_set(x_841, 1, x_840); x_842 = lean_array_push(x_820, x_841); x_843 = lean_array_push(x_842, x_819); -x_844 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__23; +x_844 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__28; x_845 = l_Lean_addMacroScope(x_721, x_844, x_720); -x_846 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__22; -x_847 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__25; +x_846 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__27; +x_847 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__30; x_848 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_848, 0, x_725); lean_ctor_set(x_848, 1, x_846); @@ -31201,7 +31439,7 @@ x_863 = lean_array_push(x_843, x_862); x_864 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_864, 0, x_755); lean_ctor_set(x_864, 1, x_863); -x_865 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_865 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_866 = lean_array_push(x_865, x_864); x_867 = l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__15; x_868 = lean_alloc_ctor(1, 2, 0); @@ -31341,7 +31579,7 @@ x_940 = lean_array_push(x_919, x_939); x_941 = l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__50; x_942 = l_Lean_addMacroScope(x_891, x_941, x_890); x_943 = l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__49; -x_944 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; +x_944 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; x_945 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_945, 0, x_895); lean_ctor_set(x_945, 1, x_943); @@ -31530,7 +31768,7 @@ x_1048 = lean_array_push(x_1027, x_1047); x_1049 = l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__50; x_1050 = l_Lean_addMacroScope(x_999, x_1049, x_998); x_1051 = l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__49; -x_1052 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; +x_1052 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; x_1053 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1053, 0, x_1003); lean_ctor_set(x_1053, 1, x_1051); @@ -31687,9 +31925,9 @@ x_1135 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1135, 0, x_1134); lean_ctor_set(x_1135, 1, x_1133); x_1136 = lean_array_push(x_1115, x_1135); -x_1137 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1137 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_1138 = lean_array_push(x_1137, x_1114); -x_1139 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_1139 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_1140 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1140, 0, x_1139); lean_ctor_set(x_1140, 1, x_1138); @@ -31698,17 +31936,17 @@ x_1142 = l_Lean_nullKind___closed__2; 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 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1144 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_1145 = lean_array_push(x_1144, x_1143); x_1146 = lean_array_push(x_1145, x_1117); -x_1147 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1147 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_1148 = lean_array_push(x_1146, x_1147); -x_1149 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__34; +x_1149 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__37; lean_inc(x_1107); lean_inc(x_1108); x_1150 = l_Lean_addMacroScope(x_1108, x_1149, x_1107); -x_1151 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__30; -x_1152 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__36; +x_1151 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__33; +x_1152 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__39; x_1153 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1153, 0, x_1112); lean_ctor_set(x_1153, 1, x_1151); @@ -31781,7 +32019,7 @@ lean_inc(x_1107); lean_inc(x_1108); x_1190 = l_Lean_addMacroScope(x_1108, x_1189, x_1107); x_1191 = l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__49; -x_1192 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; +x_1192 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; x_1193 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1193, 0, x_1112); lean_ctor_set(x_1193, 1, x_1191); @@ -31820,7 +32058,7 @@ 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 = lean_array_push(x_1115, x_1210); -x_1212 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1212 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; x_1213 = lean_array_push(x_1211, x_1212); x_1214 = l_Lean_Elab_Term_Do_ToTerm_breakToTermCore___closed__14; lean_inc(x_1107); @@ -31865,10 +32103,10 @@ lean_ctor_set(x_1234, 0, x_1209); lean_ctor_set(x_1234, 1, x_1233); x_1235 = lean_array_push(x_1213, x_1234); x_1236 = lean_array_push(x_1235, x_1212); -x_1237 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__23; +x_1237 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__28; x_1238 = l_Lean_addMacroScope(x_1108, x_1237, x_1107); -x_1239 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__22; -x_1240 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__25; +x_1239 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__27; +x_1240 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__30; x_1241 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1241, 0, x_1112); lean_ctor_set(x_1241, 1, x_1239); @@ -31902,7 +32140,7 @@ x_1256 = lean_array_push(x_1236, x_1255); x_1257 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1257, 0, x_1142); lean_ctor_set(x_1257, 1, x_1256); -x_1258 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1258 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_1259 = lean_array_push(x_1258, x_1257); x_1260 = l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__15; x_1261 = lean_alloc_ctor(1, 2, 0); @@ -31995,9 +32233,9 @@ x_1309 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1309, 0, x_1308); lean_ctor_set(x_1309, 1, x_1307); x_1310 = lean_array_push(x_1289, x_1309); -x_1311 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1311 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_1312 = lean_array_push(x_1311, x_1288); -x_1313 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_1313 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_1314 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1314, 0, x_1313); lean_ctor_set(x_1314, 1, x_1312); @@ -32006,17 +32244,17 @@ x_1316 = l_Lean_nullKind___closed__2; x_1317 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1317, 0, x_1316); lean_ctor_set(x_1317, 1, x_1315); -x_1318 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1318 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_1319 = lean_array_push(x_1318, x_1317); x_1320 = lean_array_push(x_1319, x_1291); -x_1321 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1321 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_1322 = lean_array_push(x_1320, x_1321); -x_1323 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__34; +x_1323 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__37; lean_inc(x_1281); lean_inc(x_1282); x_1324 = l_Lean_addMacroScope(x_1282, x_1323, x_1281); -x_1325 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__30; -x_1326 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__36; +x_1325 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__33; +x_1326 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__39; x_1327 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1327, 0, x_1286); lean_ctor_set(x_1327, 1, x_1325); @@ -32089,7 +32327,7 @@ lean_inc(x_1281); lean_inc(x_1282); x_1364 = l_Lean_addMacroScope(x_1282, x_1363, x_1281); x_1365 = l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__49; -x_1366 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; +x_1366 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; x_1367 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1367, 0, x_1286); lean_ctor_set(x_1367, 1, x_1365); @@ -32128,7 +32366,7 @@ x_1384 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1384, 0, x_1383); lean_ctor_set(x_1384, 1, x_1382); x_1385 = lean_array_push(x_1289, x_1384); -x_1386 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1386 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; x_1387 = lean_array_push(x_1385, x_1386); x_1388 = l_Lean_Elab_Term_Do_ToTerm_breakToTermCore___closed__14; lean_inc(x_1281); @@ -32173,10 +32411,10 @@ lean_ctor_set(x_1408, 0, x_1383); lean_ctor_set(x_1408, 1, x_1407); x_1409 = lean_array_push(x_1387, x_1408); x_1410 = lean_array_push(x_1409, x_1386); -x_1411 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__23; +x_1411 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__28; x_1412 = l_Lean_addMacroScope(x_1282, x_1411, x_1281); -x_1413 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__22; -x_1414 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__25; +x_1413 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__27; +x_1414 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__30; x_1415 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1415, 0, x_1286); lean_ctor_set(x_1415, 1, x_1413); @@ -32210,7 +32448,7 @@ x_1430 = lean_array_push(x_1410, x_1429); x_1431 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1431, 0, x_1316); lean_ctor_set(x_1431, 1, x_1430); -x_1432 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1432 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_1433 = lean_array_push(x_1432, x_1431); x_1434 = l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__15; x_1435 = lean_alloc_ctor(1, 2, 0); @@ -32310,9 +32548,9 @@ x_1484 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1484, 0, x_1483); lean_ctor_set(x_1484, 1, x_1482); x_1485 = lean_array_push(x_1464, x_1484); -x_1486 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1486 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_1487 = lean_array_push(x_1486, x_1463); -x_1488 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_1488 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_1489 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1489, 0, x_1488); lean_ctor_set(x_1489, 1, x_1487); @@ -32321,17 +32559,17 @@ x_1491 = l_Lean_nullKind___closed__2; x_1492 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1492, 0, x_1491); lean_ctor_set(x_1492, 1, x_1490); -x_1493 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1493 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_1494 = lean_array_push(x_1493, x_1492); x_1495 = lean_array_push(x_1494, x_1466); -x_1496 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1496 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_1497 = lean_array_push(x_1495, x_1496); -x_1498 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__10; +x_1498 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__12; lean_inc(x_1456); lean_inc(x_1457); x_1499 = l_Lean_addMacroScope(x_1457, x_1498, x_1456); -x_1500 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__9; -x_1501 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__12; +x_1500 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__11; +x_1501 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__14; x_1502 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1502, 0, x_1461); lean_ctor_set(x_1502, 1, x_1500); @@ -32404,7 +32642,7 @@ lean_inc(x_1456); lean_inc(x_1457); x_1539 = l_Lean_addMacroScope(x_1457, x_1538, x_1456); x_1540 = l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__49; -x_1541 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; +x_1541 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; x_1542 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1542, 0, x_1461); lean_ctor_set(x_1542, 1, x_1540); @@ -32443,14 +32681,14 @@ x_1559 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1559, 0, x_1558); lean_ctor_set(x_1559, 1, x_1557); x_1560 = lean_array_push(x_1464, x_1559); -x_1561 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1561 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; x_1562 = lean_array_push(x_1560, x_1561); -x_1563 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__25; +x_1563 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__28; lean_inc(x_1456); lean_inc(x_1457); x_1564 = l_Lean_addMacroScope(x_1457, x_1563, x_1456); -x_1565 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__21; -x_1566 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__27; +x_1565 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__24; +x_1566 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__30; x_1567 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1567, 0, x_1461); lean_ctor_set(x_1567, 1, x_1565); @@ -32511,7 +32749,7 @@ x_1596 = lean_array_push(x_1562, x_1595); x_1597 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1597, 0, x_1491); lean_ctor_set(x_1597, 1, x_1596); -x_1598 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1598 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_1599 = lean_array_push(x_1598, x_1597); x_1600 = l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__15; x_1601 = lean_alloc_ctor(1, 2, 0); @@ -32604,9 +32842,9 @@ x_1649 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1649, 0, x_1648); lean_ctor_set(x_1649, 1, x_1647); x_1650 = lean_array_push(x_1629, x_1649); -x_1651 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1651 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_1652 = lean_array_push(x_1651, x_1628); -x_1653 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_1653 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_1654 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1654, 0, x_1653); lean_ctor_set(x_1654, 1, x_1652); @@ -32615,17 +32853,17 @@ x_1656 = l_Lean_nullKind___closed__2; x_1657 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1657, 0, x_1656); lean_ctor_set(x_1657, 1, x_1655); -x_1658 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1658 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_1659 = lean_array_push(x_1658, x_1657); x_1660 = lean_array_push(x_1659, x_1631); -x_1661 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1661 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_1662 = lean_array_push(x_1660, x_1661); -x_1663 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__10; +x_1663 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__12; lean_inc(x_1621); lean_inc(x_1622); x_1664 = l_Lean_addMacroScope(x_1622, x_1663, x_1621); -x_1665 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__9; -x_1666 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__12; +x_1665 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__11; +x_1666 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__14; x_1667 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1667, 0, x_1626); lean_ctor_set(x_1667, 1, x_1665); @@ -32698,7 +32936,7 @@ lean_inc(x_1621); lean_inc(x_1622); x_1704 = l_Lean_addMacroScope(x_1622, x_1703, x_1621); x_1705 = l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__49; -x_1706 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; +x_1706 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; x_1707 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1707, 0, x_1626); lean_ctor_set(x_1707, 1, x_1705); @@ -32737,14 +32975,14 @@ x_1724 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1724, 0, x_1723); lean_ctor_set(x_1724, 1, x_1722); x_1725 = lean_array_push(x_1629, x_1724); -x_1726 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1726 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; x_1727 = lean_array_push(x_1725, x_1726); -x_1728 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__25; +x_1728 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__28; lean_inc(x_1621); lean_inc(x_1622); x_1729 = l_Lean_addMacroScope(x_1622, x_1728, x_1621); -x_1730 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__21; -x_1731 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__27; +x_1730 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__24; +x_1731 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__30; x_1732 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1732, 0, x_1626); lean_ctor_set(x_1732, 1, x_1730); @@ -32805,7 +33043,7 @@ x_1761 = lean_array_push(x_1727, x_1760); x_1762 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1762, 0, x_1656); lean_ctor_set(x_1762, 1, x_1761); -x_1763 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1763 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_1764 = lean_array_push(x_1763, x_1762); x_1765 = l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__15; x_1766 = lean_alloc_ctor(1, 2, 0); @@ -32901,9 +33139,9 @@ x_1815 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1815, 0, x_1814); lean_ctor_set(x_1815, 1, x_1813); x_1816 = lean_array_push(x_1795, x_1815); -x_1817 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1817 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_1818 = lean_array_push(x_1817, x_1794); -x_1819 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_1819 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_1820 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1820, 0, x_1819); lean_ctor_set(x_1820, 1, x_1818); @@ -32912,17 +33150,17 @@ x_1822 = l_Lean_nullKind___closed__2; x_1823 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1823, 0, x_1822); lean_ctor_set(x_1823, 1, x_1821); -x_1824 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_1824 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_1825 = lean_array_push(x_1824, x_1823); x_1826 = lean_array_push(x_1825, x_1797); -x_1827 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1827 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_1828 = lean_array_push(x_1826, x_1827); -x_1829 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__16; +x_1829 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__18; lean_inc(x_1787); lean_inc(x_1788); x_1830 = l_Lean_addMacroScope(x_1788, x_1829, x_1787); -x_1831 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__15; -x_1832 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__18; +x_1831 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__17; +x_1832 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__20; x_1833 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1833, 0, x_1792); lean_ctor_set(x_1833, 1, x_1831); @@ -32996,7 +33234,7 @@ lean_inc(x_1787); lean_inc(x_1788); x_1870 = l_Lean_addMacroScope(x_1788, x_1869, x_1787); x_1871 = l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__49; -x_1872 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; +x_1872 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; x_1873 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1873, 0, x_1792); lean_ctor_set(x_1873, 1, x_1871); @@ -33036,14 +33274,14 @@ x_1890 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1890, 0, x_1889); lean_ctor_set(x_1890, 1, x_1888); x_1891 = lean_array_push(x_1795, x_1890); -x_1892 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1892 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; x_1893 = lean_array_push(x_1891, x_1892); -x_1894 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__42; +x_1894 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__45; lean_inc(x_1787); lean_inc(x_1788); x_1895 = l_Lean_addMacroScope(x_1788, x_1894, x_1787); -x_1896 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__39; -x_1897 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__44; +x_1896 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__42; +x_1897 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__47; x_1898 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1898, 0, x_1792); lean_ctor_set(x_1898, 1, x_1896); @@ -33129,10 +33367,10 @@ lean_ctor_set(x_1941, 0, x_1889); lean_ctor_set(x_1941, 1, x_1940); x_1942 = lean_array_push(x_1920, x_1941); x_1943 = lean_array_push(x_1942, x_1892); -x_1944 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__29; +x_1944 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__34; x_1945 = l_Lean_addMacroScope(x_1788, x_1944, x_1787); -x_1946 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__28; -x_1947 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__31; +x_1946 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__33; +x_1947 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__36; x_1948 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1948, 0, x_1792); lean_ctor_set(x_1948, 1, x_1946); @@ -33166,7 +33404,7 @@ x_1963 = lean_array_push(x_1943, x_1962); x_1964 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1964, 0, x_1822); lean_ctor_set(x_1964, 1, x_1963); -x_1965 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1965 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_1966 = lean_array_push(x_1965, x_1964); x_1967 = l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__15; x_1968 = lean_alloc_ctor(1, 2, 0); @@ -33259,9 +33497,9 @@ x_2016 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2016, 0, x_2015); lean_ctor_set(x_2016, 1, x_2014); x_2017 = lean_array_push(x_1996, x_2016); -x_2018 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_2018 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_2019 = lean_array_push(x_2018, x_1995); -x_2020 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_2020 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_2021 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2021, 0, x_2020); lean_ctor_set(x_2021, 1, x_2019); @@ -33270,17 +33508,17 @@ x_2023 = l_Lean_nullKind___closed__2; x_2024 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2024, 0, x_2023); lean_ctor_set(x_2024, 1, x_2022); -x_2025 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_2025 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_2026 = lean_array_push(x_2025, x_2024); x_2027 = lean_array_push(x_2026, x_1998); -x_2028 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_2028 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_2029 = lean_array_push(x_2027, x_2028); -x_2030 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__16; +x_2030 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__18; lean_inc(x_1988); lean_inc(x_1989); x_2031 = l_Lean_addMacroScope(x_1989, x_2030, x_1988); -x_2032 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__15; -x_2033 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__18; +x_2032 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__17; +x_2033 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__20; x_2034 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_2034, 0, x_1993); lean_ctor_set(x_2034, 1, x_2032); @@ -33354,7 +33592,7 @@ lean_inc(x_1988); lean_inc(x_1989); x_2071 = l_Lean_addMacroScope(x_1989, x_2070, x_1988); x_2072 = l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__49; -x_2073 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; +x_2073 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; x_2074 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_2074, 0, x_1993); lean_ctor_set(x_2074, 1, x_2072); @@ -33394,14 +33632,14 @@ x_2091 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2091, 0, x_2090); lean_ctor_set(x_2091, 1, x_2089); x_2092 = lean_array_push(x_1996, x_2091); -x_2093 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_2093 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; x_2094 = lean_array_push(x_2092, x_2093); -x_2095 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__42; +x_2095 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__45; lean_inc(x_1988); lean_inc(x_1989); x_2096 = l_Lean_addMacroScope(x_1989, x_2095, x_1988); -x_2097 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__39; -x_2098 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__44; +x_2097 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__42; +x_2098 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__47; x_2099 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_2099, 0, x_1993); lean_ctor_set(x_2099, 1, x_2097); @@ -33487,10 +33725,10 @@ lean_ctor_set(x_2142, 0, x_2090); lean_ctor_set(x_2142, 1, x_2141); x_2143 = lean_array_push(x_2121, x_2142); x_2144 = lean_array_push(x_2143, x_2093); -x_2145 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__29; +x_2145 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__34; x_2146 = l_Lean_addMacroScope(x_1989, x_2145, x_1988); -x_2147 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__28; -x_2148 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__31; +x_2147 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__33; +x_2148 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__36; x_2149 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_2149, 0, x_1993); lean_ctor_set(x_2149, 1, x_2147); @@ -33524,7 +33762,7 @@ x_2164 = lean_array_push(x_2144, x_2163); x_2165 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_2165, 0, x_2023); lean_ctor_set(x_2165, 1, x_2164); -x_2166 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_2166 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_2167 = lean_array_push(x_2166, x_2165); x_2168 = l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__15; x_2169 = lean_alloc_ctor(1, 2, 0); @@ -35889,6 +36127,47 @@ x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCod return x_2; } } +static lean_object* _init_l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("discr"); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__1; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__1; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__2; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { @@ -35925,11 +36204,11 @@ x_35 = lean_name_mk_string(x_3, x_34); x_36 = l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__1; lean_inc(x_3); x_37 = lean_name_mk_string(x_3, x_36); -x_38 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; +x_38 = l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__4; x_39 = l_Lean_addMacroScope(x_28, x_38, x_25); x_40 = lean_box(0); x_41 = l_Lean_instInhabitedSourceInfo___closed__1; -x_42 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3; +x_42 = l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__3; x_43 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_43, 0, x_41); lean_ctor_set(x_43, 1, x_42); @@ -35965,7 +36244,7 @@ x_61 = lean_name_mk_string(x_3, x_60); x_62 = l_Lean_Parser_Tactic_match___closed__5; lean_inc(x_3); x_63 = lean_name_mk_string(x_3, x_62); -x_64 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_64 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_65 = lean_array_push(x_64, x_43); x_66 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_66, 0, x_63); @@ -35975,10 +36254,10 @@ x_68 = l_Lean_nullKind___closed__2; x_69 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_69, 0, x_68); lean_ctor_set(x_69, 1, x_67); -x_70 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_70 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_71 = lean_array_push(x_70, x_69); x_72 = lean_array_push(x_71, x_46); -x_73 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_73 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_74 = lean_array_push(x_72, x_73); x_75 = l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__14; lean_inc(x_3); @@ -35999,7 +36278,7 @@ x_85 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_85, 0, x_78); lean_ctor_set(x_85, 1, x_84); x_86 = lean_array_push(x_44, x_85); -x_87 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_87 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; x_88 = lean_array_push(x_86, x_87); x_89 = l_myMacro____x40_Init_Notation___hyg_11836____closed__12; x_90 = lean_name_mk_string(x_3, x_89); @@ -36021,7 +36300,7 @@ x_99 = lean_array_push(x_88, x_98); x_100 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_100, 0, x_68); lean_ctor_set(x_100, 1, x_99); -x_101 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_101 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_102 = lean_array_push(x_101, x_100); x_103 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_103, 0, x_76); @@ -36292,11 +36571,11 @@ lean_inc(x_54); x_55 = lean_ctor_get(x_53, 1); lean_inc(x_55); lean_dec(x_53); -x_56 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; +x_56 = l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__4; x_57 = l_Lean_addMacroScope(x_54, x_56, x_51); x_58 = lean_box(0); x_59 = l_Lean_instInhabitedSourceInfo___closed__1; -x_60 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3; +x_60 = l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__3; x_61 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_61, 0, x_59); lean_ctor_set(x_61, 1, x_60); @@ -36387,11 +36666,11 @@ lean_inc(x_112); x_113 = lean_ctor_get(x_111, 1); lean_inc(x_113); lean_dec(x_111); -x_114 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; +x_114 = l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__4; x_115 = l_Lean_addMacroScope(x_112, x_114, x_109); x_116 = lean_box(0); x_117 = l_Lean_instInhabitedSourceInfo___closed__1; -x_118 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3; +x_118 = l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__3; x_119 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_119, 0, x_117); lean_ctor_set(x_119, 1, x_118); @@ -36511,11 +36790,11 @@ lean_inc(x_180); x_181 = lean_ctor_get(x_179, 1); lean_inc(x_181); lean_dec(x_179); -x_182 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; +x_182 = l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__4; x_183 = l_Lean_addMacroScope(x_180, x_182, x_177); x_184 = lean_box(0); x_185 = l_Lean_instInhabitedSourceInfo___closed__1; -x_186 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3; +x_186 = l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__3; x_187 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_187, 0, x_185); lean_ctor_set(x_187, 1, x_186); @@ -36606,11 +36885,11 @@ lean_inc(x_238); x_239 = lean_ctor_get(x_237, 1); lean_inc(x_239); lean_dec(x_237); -x_240 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; +x_240 = l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__4; x_241 = l_Lean_addMacroScope(x_238, x_240, x_235); x_242 = lean_box(0); x_243 = l_Lean_instInhabitedSourceInfo___closed__1; -x_244 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3; +x_244 = l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__3; x_245 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_245, 0, x_243); lean_ctor_set(x_245, 1, x_244); @@ -36766,11 +37045,11 @@ lean_inc(x_316); x_317 = lean_ctor_get(x_315, 1); lean_inc(x_317); lean_dec(x_315); -x_318 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; +x_318 = l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__4; x_319 = l_Lean_addMacroScope(x_316, x_318, x_313); x_320 = lean_box(0); x_321 = l_Lean_instInhabitedSourceInfo___closed__1; -x_322 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3; +x_322 = l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__3; x_323 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_323, 0, x_321); lean_ctor_set(x_323, 1, x_322); @@ -36861,11 +37140,11 @@ lean_inc(x_374); x_375 = lean_ctor_get(x_373, 1); lean_inc(x_375); lean_dec(x_373); -x_376 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; +x_376 = l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__4; x_377 = l_Lean_addMacroScope(x_374, x_376, x_371); x_378 = lean_box(0); x_379 = l_Lean_instInhabitedSourceInfo___closed__1; -x_380 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3; +x_380 = l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__3; x_381 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_381, 0, x_379); lean_ctor_set(x_381, 1, x_380); @@ -37955,11 +38234,11 @@ lean_inc(x_44); x_45 = lean_ctor_get(x_43, 1); lean_inc(x_45); lean_dec(x_43); -x_46 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; +x_46 = l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__4; x_47 = l_Lean_addMacroScope(x_44, x_46, x_41); x_48 = lean_box(0); x_49 = l_Lean_instInhabitedSourceInfo___closed__1; -x_50 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3; +x_50 = l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__3; x_51 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_51, 0, x_49); lean_ctor_set(x_51, 1, x_50); @@ -38072,11 +38351,11 @@ lean_inc(x_111); x_112 = lean_ctor_get(x_110, 1); lean_inc(x_112); lean_dec(x_110); -x_113 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; +x_113 = l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__4; x_114 = l_Lean_addMacroScope(x_111, x_113, x_108); x_115 = lean_box(0); x_116 = l_Lean_instInhabitedSourceInfo___closed__1; -x_117 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3; +x_117 = l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__3; x_118 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_118, 0, x_116); lean_ctor_set(x_118, 1, x_117); @@ -38225,11 +38504,11 @@ lean_inc(x_188); x_189 = lean_ctor_get(x_187, 1); lean_inc(x_189); lean_dec(x_187); -x_190 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; +x_190 = l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__4; x_191 = l_Lean_addMacroScope(x_188, x_190, x_185); x_192 = lean_box(0); x_193 = l_Lean_instInhabitedSourceInfo___closed__1; -x_194 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3; +x_194 = l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__3; x_195 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_195, 0, x_193); lean_ctor_set(x_195, 1, x_194); @@ -39484,8 +39763,8 @@ x_179 = l_Lean_Meta_mkPure___rarg___closed__4; lean_inc(x_135); lean_inc(x_138); x_180 = l_Lean_addMacroScope(x_138, x_179, x_135); -x_181 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_182 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; +x_181 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_182 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; x_183 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_183, 0, x_49); lean_ctor_set(x_183, 1, x_181); @@ -39608,10 +39887,10 @@ lean_ctor_set(x_248, 1, x_246); lean_ctor_set(x_248, 2, x_245); lean_ctor_set(x_248, 3, x_247); x_249 = lean_array_push(x_230, x_248); -x_250 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__22; +x_250 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__12; x_251 = l_Lean_addMacroScope(x_228, x_250, x_225); -x_252 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__21; -x_253 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; +x_252 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__11; +x_253 = l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__14; x_254 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_254, 0, x_237); lean_ctor_set(x_254, 1, x_252); @@ -39776,9 +40055,9 @@ x_351 = lean_array_push(x_336, x_350); x_352 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_352, 0, x_241); lean_ctor_set(x_352, 1, x_351); -x_353 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_353 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_354 = lean_array_push(x_353, x_352); -x_355 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_355 = l_Lean_Elab_Term_expandFunBinders_loop___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); @@ -39786,10 +40065,10 @@ x_357 = lean_array_push(x_230, x_356); x_358 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_358, 0, x_257); lean_ctor_set(x_358, 1, x_357); -x_359 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_359 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_360 = lean_array_push(x_359, x_358); x_361 = lean_array_push(x_360, x_263); -x_362 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_362 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_363 = lean_array_push(x_361, x_362); lean_inc(x_302); lean_inc(x_305); @@ -39809,8 +40088,8 @@ x_370 = l_Lean_Meta_mkPure___rarg___closed__4; lean_inc(x_302); lean_inc(x_305); x_371 = l_Lean_addMacroScope(x_305, x_370, x_302); -x_372 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; -x_373 = l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; +x_372 = l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3; +x_373 = l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__2; x_374 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_374, 0, x_237); lean_ctor_set(x_374, 1, x_372); @@ -39876,14 +40155,14 @@ x_407 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_407, 0, x_406); lean_ctor_set(x_407, 1, x_405); x_408 = lean_array_push(x_230, x_407); -x_409 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_409 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; x_410 = lean_array_push(x_408, x_409); -x_411 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__19; +x_411 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__13; lean_inc(x_302); lean_inc(x_305); x_412 = l_Lean_addMacroScope(x_305, x_411, x_302); -x_413 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__18; -x_414 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__12; +x_413 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__12; +x_414 = l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__15; x_415 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_415, 0, x_237); lean_ctor_set(x_415, 1, x_413); @@ -39948,7 +40227,7 @@ x_446 = lean_array_push(x_410, x_445); x_447 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_447, 0, x_257); lean_ctor_set(x_447, 1, x_446); -x_448 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_448 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; x_449 = lean_array_push(x_448, x_447); x_450 = l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__15; x_451 = lean_alloc_ctor(1, 2, 0); @@ -41044,9 +41323,9 @@ lean_ctor_set(x_60, 0, x_50); lean_ctor_set(x_60, 1, x_51); lean_ctor_set(x_60, 2, x_59); lean_ctor_set(x_60, 3, x_49); -x_61 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_61 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_62 = lean_array_push(x_61, x_60); -x_63 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_63 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_64 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_64, 0, x_63); lean_ctor_set(x_64, 1, x_62); @@ -41056,11 +41335,11 @@ x_67 = l_Lean_nullKind___closed__2; x_68 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_68, 0, x_67); lean_ctor_set(x_68, 1, x_66); -x_69 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_69 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_70 = lean_array_push(x_69, x_68); x_71 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_72 = lean_array_push(x_70, x_71); -x_73 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_73 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_74 = lean_array_push(x_72, x_73); x_75 = lean_array_push(x_74, x_40); x_76 = l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__13; @@ -48640,7 +48919,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_macroAttribute; -x_3 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__10; +x_3 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__11; x_4 = l___regBuiltin_Lean_Elab_Term_expandTermFor___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -48677,7 +48956,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_macroAttribute; -x_3 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__8; +x_3 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__9; x_4 = l___regBuiltin_Lean_Elab_Term_expandTermTry___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -48714,7 +48993,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_macroAttribute; -x_3 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__6; +x_3 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__7; x_4 = l___regBuiltin_Lean_Elab_Term_expandTermUnless___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -48751,7 +49030,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_macroAttribute; -x_3 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__4; +x_3 = l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__5; x_4 = l___regBuiltin_Lean_Elab_Term_expandTermReturn___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -48760,7 +49039,6 @@ return x_5; lean_object* initialize_Init(lean_object*); lean_object* initialize_Lean_Elab_Term(lean_object*); lean_object* initialize_Lean_Elab_Binders(lean_object*); -lean_object* initialize_Lean_Elab_Quotation(lean_object*); lean_object* initialize_Lean_Elab_Match(lean_object*); static bool _G_initialized = false; lean_object* initialize_Lean_Elab_Do(lean_object* w) { @@ -48776,9 +49054,6 @@ lean_dec_ref(res); res = initialize_Lean_Elab_Binders(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Lean_Elab_Quotation(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); res = initialize_Lean_Elab_Match(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); @@ -48825,6 +49100,8 @@ l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__9 = _in lean_mark_persistent(l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__9); l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__10 = _init_l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__10(); lean_mark_persistent(l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__10); +l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__11 = _init_l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__11(); +lean_mark_persistent(l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__11); l___private_Lean_Elab_Do_0__Lean_Elab_Term_mkIdBindFor___closed__1 = _init_l___private_Lean_Elab_Do_0__Lean_Elab_Term_mkIdBindFor___closed__1(); lean_mark_persistent(l___private_Lean_Elab_Do_0__Lean_Elab_Term_mkIdBindFor___closed__1); l___private_Lean_Elab_Do_0__Lean_Elab_Term_mkIdBindFor___closed__2 = _init_l___private_Lean_Elab_Do_0__Lean_Elab_Term_mkIdBindFor___closed__2(); @@ -48951,6 +49228,12 @@ l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__1 = _init_l_Lean_Ela lean_mark_persistent(l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__1); l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2 = _init_l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2(); lean_mark_persistent(l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__2); +l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3 = _init_l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3(); +lean_mark_persistent(l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__3); +l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__4 = _init_l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__4(); +lean_mark_persistent(l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__4); +l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5 = _init_l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5(); +lean_mark_persistent(l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__5); l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__2___closed__1 = _init_l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__2___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__2___closed__1); l_Lean_Elab_Term_Do_pullExitPointsAux___boxed__const__1 = _init_l_Lean_Elab_Term_Do_pullExitPointsAux___boxed__const__1(); @@ -49116,6 +49399,12 @@ l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__43 = _init_l_Lean_Elab_Ter lean_mark_persistent(l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__43); l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__44 = _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__44(); lean_mark_persistent(l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__44); +l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__45 = _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__45(); +lean_mark_persistent(l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__45); +l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__46 = _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__46(); +lean_mark_persistent(l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__46); +l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__47 = _init_l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__47(); +lean_mark_persistent(l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__47); l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__1 = _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__1); l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__2 = _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__2(); @@ -49178,6 +49467,16 @@ l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__30 = _init_l_Lean_Elab_T lean_mark_persistent(l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__30); l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__31 = _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__31(); lean_mark_persistent(l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__31); +l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__32 = _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__32(); +lean_mark_persistent(l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__32); +l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__33 = _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__33(); +lean_mark_persistent(l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__33); +l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__34 = _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__34(); +lean_mark_persistent(l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__34); +l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__35 = _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__35(); +lean_mark_persistent(l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__35); +l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__36 = _init_l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__36(); +lean_mark_persistent(l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__36); l_Lean_Elab_Term_Do_ToTerm_breakToTermCore___closed__1 = _init_l_Lean_Elab_Term_Do_ToTerm_breakToTermCore___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_Do_ToTerm_breakToTermCore___closed__1); l_Lean_Elab_Term_Do_ToTerm_breakToTermCore___closed__2 = _init_l_Lean_Elab_Term_Do_ToTerm_breakToTermCore___closed__2(); @@ -49258,6 +49557,10 @@ l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__17 = _init_l_Lean_ lean_mark_persistent(l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__17); l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__18 = _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__18(); lean_mark_persistent(l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__18); +l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__19 = _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__19(); +lean_mark_persistent(l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__19); +l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__20 = _init_l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__20(); +lean_mark_persistent(l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore___closed__20); l_Lean_Elab_Term_Do_ToTerm_seqToTermCore___closed__1 = _init_l_Lean_Elab_Term_Do_ToTerm_seqToTermCore___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_Do_ToTerm_seqToTermCore___closed__1); l_Lean_Elab_Term_Do_ToTerm_seqToTermCore___closed__2 = _init_l_Lean_Elab_Term_Do_ToTerm_seqToTermCore___closed__2(); @@ -49469,6 +49772,14 @@ l_Lean_Elab_Term_Do_ToCodeBlock_checkLetArrowRHS___closed__5 = _init_l_Lean_Elab lean_mark_persistent(l_Lean_Elab_Term_Do_ToCodeBlock_checkLetArrowRHS___closed__5); l_Lean_Elab_Term_Do_ToCodeBlock_checkLetArrowRHS___closed__6 = _init_l_Lean_Elab_Term_Do_ToCodeBlock_checkLetArrowRHS___closed__6(); lean_mark_persistent(l_Lean_Elab_Term_Do_ToCodeBlock_checkLetArrowRHS___closed__6); +l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__1 = _init_l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__1); +l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__2 = _init_l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__2); +l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__3 = _init_l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__3(); +lean_mark_persistent(l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__3); +l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__4 = _init_l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__4(); +lean_mark_persistent(l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___lambda__1___closed__4); l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___closed__1 = _init_l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___closed__1); l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___closed__2 = _init_l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___closed__2(); diff --git a/stage0/stdlib/Lean/Elab/Inductive.c b/stage0/stdlib/Lean/Elab/Inductive.c index 6739a406f0..86da8f710a 100644 --- a/stage0/stdlib/Lean/Elab/Inductive.c +++ b/stage0/stdlib/Lean/Elab/Inductive.c @@ -419,6 +419,7 @@ lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_collectUnivers lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_getResultingType___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Inductive_0__Lean_Elab_Command_checkNumParams___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_getResultingUniverse___closed__4; +lean_object* l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkCasesOn___at___private_Lean_Elab_Inductive_0__Lean_Elab_Command_mkAuxConstructions___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_checkValidInductiveModifier___rarg___lambda__2___closed__3; @@ -508,7 +509,6 @@ lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Inductive_0__Lean_E uint8_t lean_level_eq(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_checkValidCtorModifier___rarg___lambda__1___closed__1; uint8_t l_List_beq___at_Lean_OpenDecl_instToStringOpenDecl___spec__1(lean_object*, lean_object*); -lean_object* l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_ReplaceImpl_replaceUnsafeM_visit___at___private_Lean_Elab_Inductive_0__Lean_Elab_Command_replaceIndFVarsWithConsts___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_updateResultingUniverse___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*); uint8_t l_Array_contains___at_Lean_Elab_Command_accLevelAtCtor___spec__1(lean_object*, lean_object*); @@ -4573,7 +4573,7 @@ x_34 = l_Lean_KernelException_toMessageData___closed__15; x_35 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_35, 0, x_33); lean_ctor_set(x_35, 1, x_34); -x_36 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_35, x_7, x_8, x_9, x_10, x_11, x_12, x_26); +x_36 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_35, x_7, x_8, x_9, x_10, x_11, x_12, x_26); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -4909,7 +4909,7 @@ x_21 = l_Lean_KernelException_toMessageData___closed__15; x_22 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_22, 0, x_20); lean_ctor_set(x_22, 1, x_21); -x_23 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_22, x_7, x_8, x_9, x_10, x_11, x_12, x_17); +x_23 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_22, x_7, x_8, x_9, x_10, x_11, x_12, x_17); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -13365,7 +13365,7 @@ lean_object* x_9; lean_object* x_10; lean_object* x_11; x_9 = lean_ctor_get(x_6, 0); lean_inc(x_9); x_10 = l_Lean_KernelException_toMessageData(x_1, x_9); -x_11 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_11 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_6); return x_11; } @@ -15430,7 +15430,7 @@ x_20 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_20, 0, x_19); x_21 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_21, 0, x_20); -x_22 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_21, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_22 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_21, x_10, x_11, x_12, x_13, x_14, x_15, x_16); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); diff --git a/stage0/stdlib/Lean/Elab/LetRec.c b/stage0/stdlib/Lean/Elab/LetRec.c index 2fabe2add0..df6f165c0a 100644 --- a/stage0/stdlib/Lean/Elab/LetRec.c +++ b/stage0/stdlib/Lean/Elab/LetRec.c @@ -16,17 +16,18 @@ extern "C" { lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapIdxM_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabLetRec(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__3___closed__1; size_t l_USize_add(size_t, size_t); -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_mvarId_x21(lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); extern lean_object* l_Lean_Elab_checkNotAlreadyDeclared___rarg___lambda__3___closed__2; +lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkForallFVarsImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); -lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__7___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_uget(lean_object*, size_t); lean_object* l_Lean_Elab_Term_elabLetRec___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__3___closed__2; lean_object* l_Lean_Elab_Term_getDeclName_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_throwUnsupportedSyntax___rarg___closed__1; @@ -40,149 +41,150 @@ extern lean_object* l_Array_empty___closed__1; lean_object* lean_st_ref_get(lean_object*, lean_object*); lean_object* l_Lean_Meta_mkFreshExprMVar___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_append___rarg(lean_object*, lean_object*); -lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__7___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*); uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* lean_private_to_user_name(lean_object*); -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___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_mkLambdaFVarsImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_withoutPostponingUniverseConstraintsImp___rarg___closed__3; extern lean_object* l_Lean_Elab_throwAlreadyDeclaredUniverseLevel___rarg___closed__3; lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_applyAttributesAt(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_elabAttrs___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_hasSyntheticSorry(lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_USize_decLt(size_t, size_t); -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_instantiateMVarsImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_elabAttrs___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_withAuxLocalDecls(lean_object*); -lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__4(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__2; lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_withAuxLocalDecls_loop(lean_object*); -lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__7___lambda__1(uint8_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_Term_elabLetRec___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_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getLocalInstances___at_Lean_Elab_Term_elabFunBinders___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_List_foldr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift___spec__1(lean_object*, uint8_t, lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues___spec__2___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkAppN(lean_object*, lean_object*); +lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__3(lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__3___closed__3; +lean_object* l_Lean_Elab_elabAttrs___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_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_array_fget(lean_object*, lean_object*); -lean_object* l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___closed__1; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_elabLetRec___spec__1___boxed(lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__5___rarg(lean_object*); lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_registerCustomErrorIfMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_abortIfContainsSyntheticSorry___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__9(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_elabDeclAttrs___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__1___closed__1; lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_withAuxLocalDecls___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___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* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__3___rarg(lean_object*); -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_replaceRef(lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__9___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_Expr_fvarId_x21(lean_object*); +lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__3___closed__1; lean_object* l_Lean_Meta_mkFreshExprMVar___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_withAuxLocalDecls_loop___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__5(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_forallBoundedTelescope___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_mkLetRec___closed__1; -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__1___closed__2; lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getId(lean_object*); +lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_withAuxLocalDecls_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* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___boxed__const__1; extern lean_object* l_Lean_Meta_withoutPostponingUniverseConstraintsImp___rarg___closed__2; lean_object* l_Lean_Elab_Term_getCurrMacroScope(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_to_list(lean_object*, lean_object*); +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Environment_contains(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandOptType(lean_object*, lean_object*); -lean_object* l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__1___closed__3; -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__1___closed__1; -lean_object* l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__9___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__3___closed__3; +lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_elabDeclAttrs___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues___boxed__const__1; lean_object* l_ReaderT_bind___at_Lean_Elab_Term_instMonadLogTermElabM___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabTermEnsuringType___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__7___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_KernelException_toMessageData___closed__3; size_t lean_usize_of_nat(lean_object*); +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__9___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_withAuxLocalDecls_loop___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_12470____closed__8; +lean_object* l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_termElabAttribute; lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___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*); +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___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*); extern lean_object* l_Lean_Elab_elabAttr___rarg___lambda__3___closed__3; lean_object* l_Lean_Syntax_isIdOrAtom_x3f(lean_object*); extern lean_object* l_Lean_Expr_instInhabitedExpr; lean_object* l_Lean_Syntax_getSepArgs(lean_object*); uint8_t l_Lean_isAttribute(lean_object*, lean_object*); +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__1___closed__2; lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getNumArgs(lean_object*); lean_object* lean_environment_main_module(lean_object*); +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabLetRec(lean_object*); lean_object* l_Lean_mkPrivateName(lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues___spec__2(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_elabAttrs___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l_Lean_Name_append(lean_object*, lean_object*); lean_object* l_Lean_Syntax_getKind(lean_object*); +lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___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*); uint8_t l_Lean_Name_isAnonymous(lean_object*); lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabImplicitLambda___spec__1___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__7___lambda__2(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_Elab_toAttributeKind___rarg___closed__1; lean_object* l_Lean_Elab_Term_withDeclName___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__3___closed__2; lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView_match__1(lean_object*); +lean_object* l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__4; +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_withoutPostponingUniverseConstraintsImp___rarg___closed__1; uint8_t l_Lean_Syntax_isNone(lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__4___rarg(lean_object*); -lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabLetRec___closed__1; -lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__7___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__1___closed__3; lean_object* l_Lean_Elab_Term_elabBinders___rarg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_elabDeclAttrs___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___lambda__1(uint8_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_Syntax_getArg(lean_object*, lean_object*); extern lean_object* l_Lean_Meta_CheckAssignment_checkFVar___closed__1; +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_CheckAssignment_checkFVar___closed__2; lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); lean_object* l_List_foldr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift___spec__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_elabDeclAttrs___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_elabLetRec___spec__1(size_t, size_t, lean_object*); extern lean_object* l_Lean_Elab_elabAttr___rarg___lambda__3___closed__2; -lean_object* l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Term_throwErrorIfErrors___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_toAttributeKind___rarg___lambda__2___closed__2; +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__5(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_elabAttr___rarg___lambda__5___closed__3; extern lean_object* l_Lean_Elab_checkNotAlreadyDeclared___rarg___lambda__2___closed__2; @@ -259,7 +261,7 @@ x_21 = l_Lean_Elab_throwAlreadyDeclaredUniverseLevel___rarg___closed__3; x_22 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_22, 0, x_20); lean_ctor_set(x_22, 1, x_21); -x_23 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_22, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_23 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_22, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_23; } } @@ -296,7 +298,7 @@ x_18 = l_Lean_Elab_throwAlreadyDeclaredUniverseLevel___rarg___closed__3; x_19 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_19, 0, x_17); lean_ctor_set(x_19, 1, x_18); -x_20 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_19, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_20 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_19, x_4, x_5, x_6, x_7, x_8, x_9, x_10); x_21 = !lean_is_exclusive(x_20); if (x_21 == 0) { @@ -359,7 +361,7 @@ x_20 = l_Lean_Elab_throwAlreadyDeclaredUniverseLevel___rarg___closed__3; x_21 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_21, 0, x_19); lean_ctor_set(x_21, 1, x_20); -x_22 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_21, x_2, x_3, x_4, x_5, x_6, x_7, x_11); +x_22 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_21, x_2, x_3, x_4, x_5, x_6, x_7, x_11); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -396,7 +398,7 @@ x_31 = l_Lean_Elab_throwAlreadyDeclaredUniverseLevel___rarg___closed__3; x_32 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_32, 0, x_30); lean_ctor_set(x_32, 1, x_31); -x_33 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_32, x_2, x_3, x_4, x_5, x_6, x_7, x_11); +x_33 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_32, x_2, x_3, x_4, x_5, x_6, x_7, x_11); x_34 = !lean_is_exclusive(x_33); if (x_34 == 0) { @@ -427,23 +429,59 @@ x_11 = l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(x_1, x_2, x_ return x_11; } } -lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__3___rarg(lean_object* x_1) { +lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__3___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { -lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Elab_throwUnsupportedSyntax___rarg___closed__1; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; +uint8_t x_10; +x_10 = !lean_is_exclusive(x_7); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_11 = lean_ctor_get(x_7, 3); +x_12 = l_Lean_replaceRef(x_1, x_11); +lean_dec(x_11); +lean_ctor_set(x_7, 3, x_12); +x_13 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_7); +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; +x_14 = lean_ctor_get(x_7, 0); +x_15 = lean_ctor_get(x_7, 1); +x_16 = lean_ctor_get(x_7, 2); +x_17 = lean_ctor_get(x_7, 3); +x_18 = lean_ctor_get(x_7, 4); +x_19 = lean_ctor_get(x_7, 5); +lean_inc(x_19); +lean_inc(x_18); +lean_inc(x_17); +lean_inc(x_16); +lean_inc(x_15); +lean_inc(x_14); +lean_dec(x_7); +x_20 = l_Lean_replaceRef(x_1, x_17); +lean_dec(x_17); +x_21 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_21, 0, x_14); +lean_ctor_set(x_21, 1, x_15); +lean_ctor_set(x_21, 2, x_16); +lean_ctor_set(x_21, 3, x_20); +lean_ctor_set(x_21, 4, x_18); +lean_ctor_set(x_21, 5, x_19); +x_22 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_2, x_3, x_4, x_5, x_6, x_21, x_8, x_9); +lean_dec(x_21); +return x_22; } } -lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +} +lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__3(lean_object* x_1) { _start: { -lean_object* x_7; -x_7 = lean_alloc_closure((void*)(l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__3___rarg), 1, 0); -return x_7; +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_throwErrorAt___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__3___rarg___boxed), 9, 0); +return x_2; } } lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__4___rarg(lean_object* x_1) { @@ -465,7 +503,26 @@ x_7 = lean_alloc_closure((void*)(l_Lean_Elab_throwUnsupportedSyntax___at___priva return x_7; } } -lean_object* l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__5___rarg(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l_Lean_Elab_throwUnsupportedSyntax___rarg___closed__1; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +x_7 = lean_alloc_closure((void*)(l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__5___rarg), 1, 0); +return x_7; +} +} +lean_object* l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__9___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { uint8_t x_9; lean_object* x_10; lean_object* x_11; @@ -477,15 +534,15 @@ lean_ctor_set(x_11, 1, x_8); return x_11; } } -static lean_object* _init_l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___closed__1() { +static lean_object* _init_l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__9___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___lambda__1___boxed), 8, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__9___lambda__1___boxed), 8, 0); return x_1; } } -lean_object* l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; lean_object* x_10; uint8_t x_11; @@ -522,7 +579,7 @@ else lean_object* x_19; lean_object* x_20; uint8_t x_21; x_19 = lean_ctor_get(x_6, 4); lean_inc(x_19); -x_20 = l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___closed__1; +x_20 = l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__9___closed__1; x_21 = l_Lean_Name_isAnonymous(x_19); lean_dec(x_19); if (x_21 == 0) @@ -582,7 +639,7 @@ return x_32; } } } -lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__7___lambda__1(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___lambda__1(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; @@ -596,7 +653,7 @@ lean_ctor_set(x_13, 1, x_11); return x_13; } } -lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__7___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; @@ -610,7 +667,7 @@ if (x_16 == 0) { lean_object* x_17; lean_object* x_18; x_17 = lean_box(0); -x_18 = l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__7___lambda__1(x_2, x_3, x_13, x_17, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_18 = l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___lambda__1(x_2, x_3, x_13, x_17, x_5, x_6, x_7, x_8, x_9, x_10, x_11); return x_18; } else @@ -619,12 +676,12 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_dec(x_13); x_19 = lean_box(0); x_20 = lean_box(0); -x_21 = l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__7___lambda__1(x_2, x_3, x_19, x_20, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_21 = l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___lambda__1(x_2, x_3, x_19, x_20, x_5, x_6, x_7, x_8, x_9, x_10, x_11); return x_21; } } } -lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__7___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___lambda__3(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; @@ -676,13 +733,13 @@ else { lean_object* x_26; lean_object* x_27; x_26 = lean_box(0); -x_27 = l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__7___lambda__2(x_1, x_2, x_3, x_26, x_4, x_5, x_6, x_7, x_8, x_9, x_13); +x_27 = l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___lambda__2(x_1, x_2, x_3, x_26, x_4, x_5, x_6, x_7, x_8, x_9, x_13); lean_dec(x_4); return x_27; } } } -lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; lean_object* x_10; lean_object* x_11; @@ -694,7 +751,7 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); lean_inc(x_2); -x_11 = l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8(x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_11 = l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__9(x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_10); if (lean_obj_tag(x_11) == 0) { @@ -812,7 +869,7 @@ x_41 = lean_box(0); x_42 = lean_name_mk_string(x_41, x_40); x_43 = lean_unbox(x_12); lean_dec(x_12); -x_44 = l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__7___lambda__3(x_1, x_43, x_42, x_2, x_3, x_4, x_5, x_6, x_7, x_13); +x_44 = l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___lambda__3(x_1, x_43, x_42, x_2, x_3, x_4, x_5, x_6, x_7, x_13); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -851,7 +908,7 @@ return x_48; } } } -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__9(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { uint8_t x_12; @@ -880,7 +937,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); -x_15 = l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__7(x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_15 = l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8(x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_14); if (lean_obj_tag(x_15) == 0) { @@ -930,7 +987,7 @@ return x_25; } } } -lean_object* l_Lean_Elab_elabAttrs___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l_Lean_Elab_elabAttrs___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; lean_object* x_10; size_t x_11; size_t x_12; lean_object* x_13; lean_object* x_14; @@ -940,7 +997,7 @@ x_11 = lean_usize_of_nat(x_10); lean_dec(x_10); x_12 = 0; x_13 = l_Array_empty___closed__1; -x_14 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__9(x_9, x_11, x_12, x_13, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_14 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10(x_9, x_11, x_12, x_13, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_9); if (lean_obj_tag(x_14) == 0) { @@ -988,18 +1045,18 @@ return x_22; } } } -lean_object* l_Lean_Elab_elabDeclAttrs___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__5(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* l_Lean_Elab_elabDeclAttrs___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; lean_object* x_10; lean_object* x_11; x_9 = lean_unsigned_to_nat(1u); x_10 = l_Lean_Syntax_getArg(x_1, x_9); -x_11 = l_Lean_Elab_elabAttrs___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__6(x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_11 = l_Lean_Elab_elabAttrs___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__7(x_10, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_10); return x_11; } } -static lean_object* _init_l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__1___closed__1() { +static lean_object* _init_l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__1___closed__1() { _start: { lean_object* x_1; @@ -1007,27 +1064,27 @@ x_1 = lean_mk_string("failed to infer 'let rec' declaration type"); return x_1; } } -static lean_object* _init_l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__1___closed__2() { +static lean_object* _init_l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__1___closed__1; +x_1 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__1___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__1___closed__3() { +static lean_object* _init_l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__1___closed__2; +x_1 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__1___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; @@ -1047,7 +1104,7 @@ lean_inc(x_11); x_12 = lean_ctor_get(x_10, 1); lean_inc(x_12); lean_dec(x_10); -x_13 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__1___closed__3; +x_13 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__1___closed__3; x_14 = l_Lean_Elab_Term_registerCustomErrorIfMVar(x_11, x_1, x_13, x_3, x_4, x_5, x_6, x_7, x_8, x_12); lean_dec(x_4); lean_dec(x_3); @@ -1150,7 +1207,7 @@ return x_33; } } } -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { lean_object* x_16; lean_object* x_17; @@ -1169,7 +1226,7 @@ lean_ctor_set(x_17, 1, x_15); return x_17; } } -static lean_object* _init_l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__3___closed__1() { +static lean_object* _init_l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__3___closed__1() { _start: { lean_object* x_1; @@ -1177,27 +1234,27 @@ x_1 = lean_mk_string("patterns are not allowed in 'let rec' expressions"); return x_1; } } -static lean_object* _init_l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__3___closed__2() { +static lean_object* _init_l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__3___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__3___closed__1; +x_1 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__3___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__3___closed__3() { +static lean_object* _init_l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__3___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__3___closed__2; +x_1 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__3___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; @@ -1232,7 +1289,7 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_110 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__4___rarg(x_9); +x_110 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__5___rarg(x_9); return x_110; } else @@ -1313,7 +1370,7 @@ x_33 = lean_unsigned_to_nat(2u); x_34 = l_Lean_Syntax_getArg(x_13, x_33); x_35 = l_Lean_Elab_Term_expandOptType(x_13, x_34); lean_dec(x_34); -x_36 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__1), 9, 1); +x_36 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__1), 9, 1); lean_closure_set(x_36, 0, x_35); x_37 = 0; lean_inc(x_8); @@ -1418,7 +1475,7 @@ x_77 = lean_st_ref_set(x_8, x_73, x_74); x_78 = lean_ctor_get(x_77, 1); lean_inc(x_78); lean_dec(x_77); -x_79 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__2(x_13, x_2, x_20, x_25, x_42, x_41, x_47, x_70, x_3, x_4, x_5, x_6, x_7, x_8, x_78); +x_79 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__2(x_13, x_2, x_20, x_25, x_42, x_41, x_47, x_70, x_3, x_4, x_5, x_6, x_7, x_8, x_78); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); @@ -1446,7 +1503,7 @@ x_84 = lean_st_ref_set(x_8, x_83, x_74); x_85 = lean_ctor_get(x_84, 1); lean_inc(x_85); lean_dec(x_84); -x_86 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__2(x_13, x_2, x_20, x_25, x_42, x_41, x_47, x_70, x_3, x_4, x_5, x_6, x_7, x_8, x_85); +x_86 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__2(x_13, x_2, x_20, x_25, x_42, x_41, x_47, x_70, x_3, x_4, x_5, x_6, x_7, x_8, x_85); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); @@ -1466,7 +1523,7 @@ lean_inc(x_88); lean_dec(x_46); x_89 = lean_unsigned_to_nat(4u); x_90 = l_Lean_Syntax_getArg(x_13, x_89); -x_91 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__2(x_13, x_2, x_20, x_25, x_42, x_41, x_87, x_90, x_3, x_4, x_5, x_6, x_7, x_8, x_88); +x_91 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__2(x_13, x_2, x_20, x_25, x_42, x_41, x_87, x_90, x_3, x_4, x_5, x_6, x_7, x_8, x_88); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); @@ -1581,8 +1638,8 @@ else { lean_object* x_113; lean_object* x_114; lean_dec(x_2); -x_113 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__3___closed__3; -x_114 = l_Lean_throwErrorAt___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1___rarg(x_13, x_113, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_113 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__3___closed__3; +x_114 = l_Lean_throwErrorAt___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__3___rarg(x_13, x_113, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_8); lean_dec(x_6); lean_dec(x_5); @@ -1592,7 +1649,7 @@ return x_114; } } } -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__4(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* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; lean_object* x_10; uint8_t x_11; @@ -1610,7 +1667,7 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); lean_inc(x_2); -x_13 = l_Lean_Elab_elabDeclAttrs___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__5(x_12, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_13 = l_Lean_Elab_elabDeclAttrs___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__6(x_12, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_12); if (lean_obj_tag(x_13) == 0) { @@ -1620,7 +1677,7 @@ lean_inc(x_14); x_15 = lean_ctor_get(x_13, 1); lean_inc(x_15); lean_dec(x_13); -x_16 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__3(x_1, x_14, x_2, x_3, x_4, x_5, x_6, x_7, x_15); +x_16 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__3(x_1, x_14, x_2, x_3, x_4, x_5, x_6, x_7, x_15); return x_16; } else @@ -1657,12 +1714,12 @@ else lean_object* x_21; lean_object* x_22; lean_dec(x_10); x_21 = l_Array_empty___closed__1; -x_22 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__3(x_1, x_21, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_22 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__3(x_1, x_21, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_22; } } } -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__5(size_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, size_t 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* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__5(size_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, size_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { size_t x_17; size_t x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; @@ -1670,11 +1727,11 @@ x_17 = 1; x_18 = x_1 + x_17; x_19 = x_9; x_20 = lean_array_uset(x_2, x_1, x_19); -x_21 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10(x_3, x_4, x_5, x_6, x_7, x_8, x_18, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_21 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11(x_3, x_4, x_5, x_6, x_7, x_8, x_18, x_20, x_10, x_11, x_12, x_13, x_14, x_15, x_16); return x_21; } } -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, size_t x_6, size_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, size_t x_6, size_t x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { uint8_t x_16; @@ -1705,11 +1762,11 @@ x_23 = lean_array_uset(x_8, x_7, x_22); x_24 = lean_ctor_get(x_5, 1); lean_inc(x_24); x_25 = x_21; -x_26 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__4___boxed), 8, 1); +x_26 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__4___boxed), 8, 1); lean_closure_set(x_26, 0, x_25); x_27 = lean_box_usize(x_7); x_28 = lean_box_usize(x_6); -x_29 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__5___boxed), 16, 8); +x_29 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__5___boxed), 16, 8); lean_closure_set(x_29, 0, x_27); lean_closure_set(x_29, 1, x_23); lean_closure_set(x_29, 2, x_1); @@ -1751,7 +1808,7 @@ x_18 = l_Lean_Meta_CheckAssignment_checkFVar___closed__1; x_19 = l_Lean_Meta_CheckAssignment_checkFVar___closed__2; x_20 = lean_box_usize(x_13); x_21 = l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___boxed__const__1; -x_22 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___boxed), 15, 8); +x_22 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___boxed), 15, 8); lean_closure_set(x_22, 0, x_15); lean_closure_set(x_22, 1, x_16); lean_closure_set(x_22, 2, x_17); @@ -1877,18 +1934,17 @@ lean_dec(x_4); return x_12; } } -lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__3___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { -lean_object* x_7; -x_7 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__3(x_1, x_2, x_3, x_4, x_5, x_6); +lean_object* x_10; +x_10 = l_Lean_throwErrorAt___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__3___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_8); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); lean_dec(x_1); -return x_7; +return x_10; } } lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { @@ -1905,11 +1961,25 @@ lean_dec(x_1); return x_7; } } -lean_object* l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__5(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_7; +} +} +lean_object* l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__9___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__9___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -1920,22 +1990,22 @@ lean_dec(x_1); return x_9; } } -lean_object* l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__9(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_1); return x_9; } } -lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__7___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { uint8_t x_12; lean_object* x_13; x_12 = lean_unbox(x_1); lean_dec(x_1); -x_13 = l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__7___lambda__1(x_12, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_13 = l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___lambda__1(x_12, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -1946,13 +2016,13 @@ lean_dec(x_4); return x_13; } } -lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__7___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { uint8_t x_12; lean_object* x_13; x_12 = lean_unbox(x_2); lean_dec(x_2); -x_13 = l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__7___lambda__2(x_1, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_13 = l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___lambda__2(x_1, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -1964,13 +2034,13 @@ lean_dec(x_1); return x_13; } } -lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__7___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { uint8_t x_11; lean_object* x_12; x_11 = lean_unbox(x_2); lean_dec(x_2); -x_12 = l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__7___lambda__3(x_1, x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___lambda__3(x_1, x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -1980,16 +2050,16 @@ lean_dec(x_1); return x_12; } } -lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_1); return x_9; } } -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { size_t x_12; size_t x_13; lean_object* x_14; @@ -1997,34 +2067,34 @@ x_12 = lean_unbox_usize(x_2); lean_dec(x_2); x_13 = lean_unbox_usize(x_3); lean_dec(x_3); -x_14 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__9(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_1); return x_14; } } -lean_object* l_Lean_Elab_elabAttrs___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l_Lean_Elab_elabAttrs___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_elabAttrs___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_elabAttrs___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_1); return x_9; } } -lean_object* l_Lean_Elab_elabDeclAttrs___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l_Lean_Elab_elabDeclAttrs___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_elabDeclAttrs___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_elabDeclAttrs___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_1); return x_9; } } -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { lean_object* x_16; -x_16 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +x_16 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); @@ -2034,25 +2104,25 @@ lean_dec(x_9); return x_16; } } -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_1); return x_10; } } -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_1); return x_9; } } -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { size_t x_17; size_t x_18; lean_object* x_19; @@ -2060,11 +2130,11 @@ x_17 = lean_unbox_usize(x_1); lean_dec(x_1); x_18 = lean_unbox_usize(x_8); lean_dec(x_8); -x_19 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__5(x_17, x_2, x_3, x_4, x_5, x_6, x_7, x_18, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_19 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__5(x_17, x_2, x_3, x_4, x_5, x_6, x_7, x_18, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); return x_19; } } -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { _start: { size_t x_16; size_t x_17; lean_object* x_18; @@ -2072,7 +2142,7 @@ x_16 = lean_unbox_usize(x_6); lean_dec(x_6); x_17 = lean_unbox_usize(x_7); lean_dec(x_7); -x_18 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10(x_1, x_2, x_3, x_4, x_5, x_16, x_17, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +x_18 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11(x_1, x_2, x_3, x_4, x_5, x_16, x_17, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); return x_18; } } @@ -3288,20 +3358,20 @@ 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_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___closed__1 = _init_l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___closed__1(); -lean_mark_persistent(l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__8___closed__1); -l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__1___closed__1 = _init_l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__1___closed__1(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__1___closed__1); -l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__1___closed__2 = _init_l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__1___closed__2(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__1___closed__2); -l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__1___closed__3 = _init_l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__1___closed__3(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__1___closed__3); -l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__3___closed__1 = _init_l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__3___closed__1(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__3___closed__1); -l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__3___closed__2 = _init_l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__3___closed__2(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__3___closed__2); -l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__3___closed__3 = _init_l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__3___closed__3(); -lean_mark_persistent(l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__10___lambda__3___closed__3); +l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__9___closed__1 = _init_l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__9___closed__1(); +lean_mark_persistent(l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__9___closed__1); +l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__1___closed__1 = _init_l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__1___closed__1(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__1___closed__1); +l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__1___closed__2 = _init_l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__1___closed__2(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__1___closed__2); +l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__1___closed__3 = _init_l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__1___closed__3(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__1___closed__3); +l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__3___closed__1 = _init_l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__3___closed__1(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__3___closed__1); +l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__3___closed__2 = _init_l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__3___closed__2(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__3___closed__2); +l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__3___closed__3 = _init_l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__3___closed__3(); +lean_mark_persistent(l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__11___lambda__3___closed__3); l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___boxed__const__1 = _init_l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___boxed__const__1(); lean_mark_persistent(l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___boxed__const__1); l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues___boxed__const__1 = _init_l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues___boxed__const__1(); diff --git a/stage0/stdlib/Lean/Elab/Match.c b/stage0/stdlib/Lean/Elab/Match.c index 606c6357b9..53bed2e5a9 100644 --- a/stage0/stdlib/Lean/Elab/Match.c +++ b/stage0/stdlib/Lean/Elab/Match.c @@ -250,7 +250,6 @@ lean_object* l_Lean_Elab_Term_elabMatch_match__20(lean_object*); lean_object* l_Lean_Elab_Term_getPatternsVars___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_throwUnknownConstant___rarg___closed__2; extern lean_object* l___private_Init_Meta_0__Lean_quoteName___closed__4; -extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; lean_object* l_Lean_Elab_Term_instToStringPatternVar_match__1(lean_object*); lean_object* l_Lean_Elab_Term_elabMatch___closed__3; lean_object* l_Lean_Name_toStringWithSep(lean_object*, lean_object*); @@ -348,7 +347,6 @@ extern lean_object* l_Lean_strLitKind; lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_nameToPattern___closed__1; lean_object* l_Lean_Elab_Term_ToDepElimPattern_main_match__4(lean_object*); lean_object* l_Lean_Meta_getExprMVarAssignment_x3f___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_mkLocalDeclFor___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_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; lean_object* l_Lean_Elab_Term_CollectPatternVars_resolveId_x3f_match__2___rarg(lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingImp___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_whnf___at_Lean_Elab_Term_ToDepElimPattern_main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -439,7 +437,6 @@ uint8_t l_Lean_Name_isAtomic(lean_object*); lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_loop(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_expandNonAtomicDiscrs_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; lean_object* l___regBuiltin_Lean_Elab_Term_elabNoMatch___closed__1; lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___closed__10; extern lean_object* l___private_Init_Meta_0__Lean_quoteName___closed__2; @@ -525,6 +522,7 @@ lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_waitExpectedTypeAndDi lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_alreadyVisited___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAux___closed__4; lean_object* l_Lean_Elab_Term_CollectPatternVars_resolveId_x3f_match__4(lean_object*); +extern lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__13; lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_withPatternVars_loop_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_CtorApp_processExplicitArg___closed__3; lean_object* l_Lean_Elab_Term_elabMatch_match__15(lean_object*); @@ -676,6 +674,7 @@ lean_object* l_List_map___at_Lean_Elab_Term_elabMatchAltView___spec__4(lean_obje lean_object* l_Lean_Elab_Term_elabMatch_match__21(lean_object*); lean_object* l_Lean_Elab_Term_CollectPatternVars_resolveId_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_throwIllFormedSyntax___at___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_quotedNameToPattern___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_tryPostponeIfMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabMatch_match__24(lean_object*); lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabPatterns_match__1(lean_object*); @@ -764,7 +763,6 @@ lean_object* l_Lean_Meta_forallTelescopeReducing___at_Lean_Elab_Term_CollectPatt extern lean_object* l_Lean_expandExplicitBindersAux_loop___closed__8; lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabPatterns___spec__1___closed__3; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); -extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_CtorApp_processExplicitArg___closed__2; extern lean_object* l_myMacro____x40_Init_Notation___hyg_9707____closed__20; lean_object* l_Lean_Elab_Term_CollectPatternVars_main___boxed__const__1; @@ -807,6 +805,7 @@ lean_object* l_Lean_Elab_Term_elabMatch_match__13___rarg(lean_object*, lean_obje lean_object* l_List_forIn_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAux___spec__5___lambda__2___closed__2; lean_object* l_Lean_Elab_Term_reportMatcherResultErrors(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_withElaboratedLHS_match__1(lean_object*); +extern lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__8; lean_object* l_Lean_mkFreshId___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_mkLocalDeclFor___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___closed__3; lean_object* l_Lean_mkFreshId___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_mkLocalDeclFor___spec__2___rarg___boxed(lean_object*, lean_object*); @@ -815,7 +814,6 @@ lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_withPatternVars_loop_ lean_object* l_Lean_Elab_Term_reportMatcherResultErrors___closed__2; lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabDiscrsWitMatchType_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabMVarWithIdKind___closed__1; -lean_object* l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_forIn_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAux___spec__4___closed__3; lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_CtorApp_processCtorAppAux_match__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_indentExpr(lean_object*); @@ -855,6 +853,7 @@ lean_object* l_Lean_Elab_Term_elabMatchAltView___lambda__1___closed__2; lean_object* l_Lean_Elab_Term_elabMatch_match__14___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getPatternsVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_getNumExplicitCtorParams___lambda__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_Elab_Term_expandFunBinders_loop___closed__4; lean_object* l_Lean_Elab_Term_instToStringPatternVar___closed__1; lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_waitExpectedTypeAndDiscrs_match__1___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_elabAttr___rarg___lambda__5___closed__3; @@ -884,6 +883,7 @@ lean_object* l_Lean_throwError___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ lean_object* l_Lean_Elab_Term_CollectPatternVars_collect___closed__1; lean_object* l_Lean_Elab_Term_elabMatch_match__23___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_mkLit(lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__1; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_reportMatcherResultErrors___closed__1; lean_object* l_Lean_Elab_Term_elabMatch_match__18(lean_object*); @@ -4061,7 +4061,7 @@ _start: lean_object* x_5; lean_object* x_6; uint8_t x_7; lean_inc(x_1); x_5 = l_Lean_Syntax_getKind(x_1); -x_6 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_6 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_7 = lean_name_eq(x_5, x_6); lean_dec(x_5); if (x_7 == 0) @@ -23617,7 +23617,7 @@ x_17 = l_Lean_KernelException_toMessageData___closed__15; x_18 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_18, 0, x_16); lean_ctor_set(x_18, 1, x_17); -x_19 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_18, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_19 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_18, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_19; } else @@ -28435,7 +28435,7 @@ lean_object* l_Lean_Elab_Term_elabMatch(lean_object* x_1, lean_object* x_2, lean _start: { lean_object* x_10; lean_object* x_62; uint8_t x_63; -x_62 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_62 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; lean_inc(x_1); x_63 = l_Lean_Syntax_isOfKind(x_1, x_62); if (x_63 == 0) @@ -28499,7 +28499,7 @@ lean_object* x_79; lean_object* x_80; lean_object* x_81; uint8_t x_82; x_79 = lean_unsigned_to_nat(0u); x_80 = l_Lean_Syntax_getArg(x_71, x_79); lean_dec(x_71); -x_81 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_81 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; lean_inc(x_80); x_82 = l_Lean_Syntax_isOfKind(x_80, x_81); if (x_82 == 0) @@ -28595,7 +28595,7 @@ lean_object* x_290; lean_object* x_291; lean_object* x_292; uint8_t x_293; lean_dec(x_97); x_290 = lean_unsigned_to_nat(4u); x_291 = l_Lean_Syntax_getArg(x_1, x_290); -x_292 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_292 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; lean_inc(x_291); x_293 = l_Lean_Syntax_isOfKind(x_291, x_292); if (x_293 == 0) @@ -28700,7 +28700,7 @@ else lean_object* x_314; lean_object* x_315; uint8_t x_316; x_314 = l_Lean_Syntax_getArg(x_307, x_79); lean_dec(x_307); -x_315 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_315 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; lean_inc(x_314); x_316 = l_Lean_Syntax_isOfKind(x_314, x_315); if (x_316 == 0) @@ -29039,7 +29039,7 @@ else lean_object* x_390; lean_object* x_391; uint8_t x_392; x_390 = l_Lean_Syntax_getArg(x_383, x_79); lean_dec(x_383); -x_391 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_391 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; lean_inc(x_390); x_392 = l_Lean_Syntax_isOfKind(x_390, x_391); if (x_392 == 0) @@ -29416,7 +29416,7 @@ x_113 = l_Lean_Syntax_getArg(x_105, x_70); lean_dec(x_105); x_114 = lean_unsigned_to_nat(4u); x_115 = l_Lean_Syntax_getArg(x_1, x_114); -x_116 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_116 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; lean_inc(x_115); x_117 = l_Lean_Syntax_isOfKind(x_115, x_116); if (x_117 == 0) @@ -29527,7 +29527,7 @@ else lean_object* x_138; lean_object* x_139; uint8_t x_140; x_138 = l_Lean_Syntax_getArg(x_131, x_79); lean_dec(x_131); -x_139 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_139 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; lean_inc(x_138); x_140 = l_Lean_Syntax_isOfKind(x_138, x_139); if (x_140 == 0) @@ -29873,7 +29873,7 @@ else lean_object* x_214; lean_object* x_215; uint8_t x_216; x_214 = l_Lean_Syntax_getArg(x_207, x_79); lean_dec(x_207); -x_215 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_215 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; lean_inc(x_214); x_216 = l_Lean_Syntax_isOfKind(x_214, x_215); if (x_216 == 0) @@ -30444,7 +30444,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Term_termElabAttribute; -x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_3 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_4 = l___regBuiltin_Lean_Elab_Term_elabMatch___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -30589,7 +30589,7 @@ lean_inc(x_22); lean_dec(x_20); x_23 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_addDiscr___closed__1; x_24 = lean_array_push(x_23, x_19); -x_25 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_25 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_26 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_26, 0, x_25); lean_ctor_set(x_26, 1, x_24); diff --git a/stage0/stdlib/Lean/Elab/MutualDef.c b/stage0/stdlib/Lean/Elab/MutualDef.c index c201715960..d6b0d09c4d 100644 --- a/stage0/stdlib/Lean/Elab/MutualDef.c +++ b/stage0/stdlib/Lean/Elab/MutualDef.c @@ -524,6 +524,7 @@ uint8_t l_Array_contains___at___private_Lean_Class_0__Lean_checkOutParam___spec_ lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_check___lambda__4(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_throwAlreadyDeclaredUniverseLevel___rarg___closed__2; lean_object* l_List_foldr___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_typeHasRecFun___spec__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_registerFailedToInferDefTypeInfo___closed__1; lean_object* l_Nat_foldM_loop___at_Lean_Elab_Term_MutualClosure_pushMain___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_getRef(lean_object*, lean_object*, lean_object*); @@ -626,7 +627,6 @@ lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_check___lambda__3 lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabFunValues___boxed__const__1; extern lean_object* l_Lean_Elab_elabAttr___rarg___lambda__3___closed__2; uint8_t l_List_beq___at_Lean_OpenDecl_instToStringOpenDecl___spec__1(lean_object*, lean_object*); -lean_object* l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_check___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkInitialUsedFVarsMap___spec__2(lean_object*, lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_Elab_mkDeclName___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -759,7 +759,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_checkModifiers___lambda__1___closed__3; -x_16 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_15, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_16 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_15, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_16; } } @@ -771,7 +771,7 @@ if (x_17 == 0) { lean_object* x_18; lean_object* x_19; x_18 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_checkModifiers___lambda__1___closed__3; -x_19 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_18, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_19 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_18, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_19; } else @@ -863,7 +863,7 @@ block_18: lean_object* x_12; lean_object* x_13; uint8_t x_14; lean_dec(x_11); x_12 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_checkModifiers___lambda__2___closed__3; -x_13 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); x_14 = !lean_is_exclusive(x_13); if (x_14 == 0) { @@ -1080,7 +1080,7 @@ else { lean_object* x_15; lean_object* x_16; x_15 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_checkKinds___lambda__1___closed__3; -x_16 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_15, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_16 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_15, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_16; } } @@ -1090,7 +1090,7 @@ if (x_12 == 0) { lean_object* x_17; lean_object* x_18; x_17 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_checkKinds___lambda__1___closed__3; -x_18 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_17, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_18 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_17, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_18; } else @@ -1405,7 +1405,7 @@ if (x_20 == 0) lean_object* x_21; lean_object* x_22; uint8_t x_23; lean_dec(x_16); x_21 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_check___lambda__2___closed__3; -x_22 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_21, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_22 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_21, x_4, x_5, x_6, x_7, x_8, x_9, x_10); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -1650,7 +1650,7 @@ else { lean_object* x_18; lean_object* x_19; uint8_t x_20; x_18 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_check___lambda__3___closed__3; -x_19 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_18, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_19 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_18, x_4, x_5, x_6, x_7, x_8, x_9, x_10); x_20 = !lean_is_exclusive(x_19); if (x_20 == 0) { @@ -1729,7 +1729,7 @@ else { lean_object* x_18; lean_object* x_19; uint8_t x_20; x_18 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_check___lambda__4___closed__3; -x_19 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_18, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_19 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_18, x_4, x_5, x_6, x_7, x_8, x_9, x_10); x_20 = !lean_is_exclusive(x_19); if (x_20 == 0) { @@ -1808,7 +1808,7 @@ else { lean_object* x_18; lean_object* x_19; uint8_t x_20; x_18 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_check___lambda__5___closed__3; -x_19 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_18, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_19 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_18, x_4, x_5, x_6, x_7, x_8, x_9, x_10); x_20 = !lean_is_exclusive(x_19); if (x_20 == 0) { @@ -1888,7 +1888,7 @@ else { lean_object* x_19; lean_object* x_20; uint8_t x_21; x_19 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_check___lambda__6___closed__3; -x_20 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_19, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_20 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_19, x_4, x_5, x_6, x_7, x_8, x_9, x_10); x_21 = !lean_is_exclusive(x_20); if (x_21 == 0) { @@ -1968,7 +1968,7 @@ else { lean_object* x_19; lean_object* x_20; uint8_t x_21; x_19 = l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_check___lambda__7___closed__3; -x_20 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_19, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_20 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_19, x_4, x_5, x_6, x_7, x_8, x_9, x_10); x_21 = !lean_is_exclusive(x_20); if (x_21 == 0) { diff --git a/stage0/stdlib/Lean/Elab/Quotation.c b/stage0/stdlib/Lean/Elab/Quotation.c index 5e9f7c0f86..0612a70f12 100644 --- a/stage0/stdlib/Lean/Elab/Quotation.c +++ b/stage0/stdlib/Lean/Elab/Quotation.c @@ -19,156 +19,201 @@ lean_object* l_List_head_x21___at___private_Lean_Elab_Quotation_0__Lean_Elab_Ter lean_object* l_Lean_Elab_Term_Quotation_mkAntiquotNode_match__2(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__5; lean_object* l_Lean_Elab_Term_Quotation_mkAntiquotNode(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); -lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__5; +extern lean_object* l_Lean_Name_toString___closed__1; lean_object* l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__1(lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__12; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__4; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__34; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__51; extern lean_object* l_myMacro____x40_Init_Notation___hyg_9707____closed__18; size_t l_USize_add(size_t, size_t); +extern lean_object* l_Lean_fieldIdxKind; extern lean_object* l_Array_term_____x5b___x3a___x5d___closed__2; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___boxed__const__1; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__6; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__8; lean_object* l_List_tail_x21___rarg(lean_object*); -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Syntax_strLitToAtom___closed__3; -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__41; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__9; +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__1(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__13; lean_object* l_Lean_stringToMessageData(lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__29; extern lean_object* l_instReprOption___rarg___closed__1; extern lean_object* l_Lean_Syntax_isQuot_match__1___rarg___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__40; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, 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_quoteSyntax___closed__27; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__11; -lean_object* l_Lean_Elab_Term_Quotation_HeadInfo_generalizes_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__6___boxed(lean_object*); +lean_object* l_Lean_Elab_Term_Quotation_HeadInfo_generalizes_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__23; +extern lean_object* l_termIf__Then__Else_____closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___closed__2; lean_object* l_List_head_x21___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__1(lean_object*); -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__1; extern lean_object* l_addParenHeuristic___closed__2; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_nullKind; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__38; +extern lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_919____closed__4; extern lean_object* l_myMacro____x40_Init_Notation___hyg_9707____closed__15; lean_object* l_ReaderT_bind___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__17; extern lean_object* l_Lean_identKind___closed__1; lean_object* lean_name_mk_string(lean_object*, lean_object*); -lean_object* l_Lean_Syntax_getOptional_x3f(lean_object*); lean_object* l_Lean_Elab_Term_Quotation_mkAntiquotNode_match__3___rarg___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_eraseIdx___rarg(lean_object*, lean_object*); uint8_t l_USize_decEq(size_t, size_t); lean_object* lean_array_uget(lean_object*, size_t); lean_object* l_Lean_Elab_Term_Quotation_antiquotScopeKind_x3f_match__1(lean_object*); +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__44; extern lean_object* l_myMacro____x40_Init_Notation___hyg_11836____closed__22; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__8; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat_match__2(lean_object*); -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__13; +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__9___boxed(lean_object**); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__2(lean_object*, size_t, size_t, lean_object*); +extern lean_object* l_termIf_____x3a__Then__Else_____closed__3; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, 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_letBindRhss_match__1___rarg(lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_List_format___rarg___closed__2; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__47; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__31; lean_object* l_Lean_Elab_Term_Quotation_getAntiquotScopeContents___boxed(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__59; -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_myMacro____x40_Init_Notation___hyg_11836____closed__12; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__37; -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__5___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__3; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__5___rarg(lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__19; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__3; lean_object* l_Lean_Elab_Term_Quotation_mkAntiquotNode_match__1___rarg(uint8_t, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___boxed(lean_object**); +lean_object* l_Lean_Elab_Term_Quotation_mkTuple_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_uset(lean_object*, size_t, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_8321____closed__3; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__32; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__55; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__20; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__7; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___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*, lean_object*); +extern lean_object* l_Lean_List_format___rarg___closed__1; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuotSeq___closed__2; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___boxed(lean_object**); lean_object* l_Lean_Elab_Term_Quotation_getAntiquotScopeSuffix(lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__10; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__24; +uint8_t l_Lean_Syntax_structEq(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_Quotation_BasicHeadInfo_argPats___default; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__1; extern lean_object* l_Lean_Syntax_isAntiquot_match__1___rarg___closed__1; lean_object* l_Lean_Elab_Term_Quotation_elabTacticQuot(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_myMacro____x40_Init_Notation___hyg_8321____closed__7; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat_match__2___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__21; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat_match__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__12; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__49; lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5(lean_object*); -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__48; +lean_object* l_Lean_Elab_Term_Quotation_BasicHeadInfo_kind___default; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabDoElemQuot___closed__3; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__9; extern lean_object* l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__5; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5___boxed(lean_object**); lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_mapM___at_Lean_Elab_Term_Quotation_getAntiquotationIds___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_st_ref_get(lean_object*, lean_object*); extern lean_object* l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__3; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__3___lambda__2___closed__3; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_matchAlts___closed__1; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabStxQuot___closed__1; -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__21; extern lean_object* l_term_x5b___x2c_x5d___closed__11; lean_object* l_List_append___rarg(lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__23; lean_object* l_Lean_Elab_Term_Quotation_elabDynamicQuot___closed__1; lean_object* l_Lean_Elab_Term_Quotation_getAntiquotationIds_match__1(lean_object*); -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__12; -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__26; -lean_object* l_ReaderT_pure___at_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__6; +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__2; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; lean_object* l_Lean_Elab_Term_Quotation_mkAntiquotNode___closed__3; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__7; lean_object* l_Lean_Elab_Term_Quotation_getAntiquotationIds_match__1___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_Quotation_mkTuple_match__1(lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; -lean_object* l_ReaderT_pure___at_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___spec__1(lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__9; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabStxQuot___closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__5(lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__16; +extern lean_object* l___regBuiltin_Lean_Elab_Term_elabBadCDot___closed__1; lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__27; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__2(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__19; -lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___boxed(lean_object*); lean_object* l_List_range(lean_object*); +lean_object* l_Lean_MessageData_ofList(lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_zipWith___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__1; +extern lean_object* l_myMacro____x40_Init_Notation___hyg_9707____closed__16; lean_object* lean_string_utf8_extract(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss_match__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_ReaderT_pure___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1(lean_object*); +lean_object* l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_elabLevelQuot___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_Quotation_HeadInfo_rhsFn___default___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__17; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__7; +lean_object* l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___closed__1; lean_object* l_Lean_Elab_Term_Quotation_elabDynamicQuot___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_11836____closed__14; extern lean_object* l_myMacro____x40_Init_Notation___hyg_12470____closed__7; -lean_object* l_Lean_Elab_Term_Quotation_HeadInfo_kind___default; +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__4; +lean_object* l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabfunBinderQuot___closed__2; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__3(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_myMacro____x40_Init_Notation___hyg_9707____closed__7; lean_object* l_Lean_Elab_Term_Quotation_antiquotKind_x3f___boxed(lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__1; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__1; +lean_object* l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__21(lean_object*); lean_object* l_Lean_Elab_Term_Quotation_antiquotKind_x3f___closed__1; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__2; +lean_object* l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___closed__2; 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*); lean_object* l_Lean_mkAtom(lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__13; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss_match__1(lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__6; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26; +lean_object* l_Lean_Elab_Term_Quotation_mkTuple(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Elab_Term_Quotation_isAntiquotScope(lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__13; extern lean_object* l_myMacro____x40_Init_Notation___hyg_12470____closed__5; +lean_object* l_ReaderT_pure___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_instReprBool___closed__2; lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__4; 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); extern lean_object* l_myMacro____x40_Init_Notation___hyg_12470____closed__14; extern lean_object* l_myMacro____x40_Init_Notation___hyg_12470____closed__18; -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; extern lean_object* l_term___x24_______closed__5; 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*); -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__8; -lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__3; +lean_object* l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___closed__1; extern lean_object* l_term_x23_x5b___x2c_x5d___closed__2; +extern lean_object* l_myMacro____x40_Init_Notation___hyg_12470____closed__15; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__36; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__11; lean_object* l_Lean_Elab_Term_Quotation_mkAntiquotNode___closed__5; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__2; @@ -176,111 +221,125 @@ 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__60; lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_List_foldl___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__3(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__7___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__3; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__2; extern lean_object* l_Lean_Parser_mkAntiquot___closed__3; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__4; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__47; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__11; +extern lean_object* l_Lean_Format_sbracket___closed__2; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__18; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__24; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__5; extern lean_object* l_myMacro____x40_Init_Notation___hyg_9707____closed__21; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__23; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__10; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabLevelQuot___closed__1; -lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__5; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5(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_letBindRhss___closed__10; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__46; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__2; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__3; extern lean_object* l_myMacro____x40_Init_Notation___hyg_9707____closed__13; lean_object* l_List_replicate___rarg(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__25; lean_object* l_Lean_Elab_Term_Quotation_getPatternVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__52; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__18; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__15; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__3___closed__1; +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__7; extern lean_object* l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__6; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__1; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabLevelQuot___closed__2; -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___boxed(lean_object**); lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuotSeq(lean_object*); -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_instQuoteBool___closed__5; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabDynamicQuot___closed__3; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__1; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__1; +lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__1; lean_object* l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabStxQuot___closed__3; +lean_object* lean_array_fget(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__29; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__19; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__14; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabfunBinderQuot(lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__2; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___boxed__const__1; extern lean_object* l_myMacro____x40_Init_Notation___hyg_38____closed__7; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1___closed__2; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__3___closed__2; -lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__2(lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_4072____closed__3; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__5; lean_object* lean_st_ref_take(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_mkAntiquotNode_match__2___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___closed__3; extern lean_object* l_Lean_numLitKind; lean_object* l_Lean_Elab_Term_Quotation_mkAntiquotNode_match__1___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__2___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__28; +lean_object* lean_nat_sub(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__31; extern lean_object* l_Lean_Elab_Term_mkExplicitBinder___closed__7; extern lean_object* l_Lean_instQuoteProd___rarg___closed__2; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__14; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1___closed__1; extern lean_object* l_stx___x3c_x7c_x3e_____closed__3; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__11; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__17; +lean_object* l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_9707____closed__8; lean_object* l_Lean_Syntax_mkCApp(lean_object*, lean_object*); +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, 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___closed__3; lean_object* l_Lean_Elab_Term_Quotation_elabLevelQuot___closed__1; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__8; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__2; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__4; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__6___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__37; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__7___boxed(lean_object**); lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; extern lean_object* l_Lean_Elab_Term_mkExplicitBinder___closed__3; lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_9707____closed__22; lean_object* l_Lean_Elab_Term_Quotation_getPatternVars___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__18; -lean_object* l_Lean_Elab_Term_Quotation_isAntiquotSplice___boxed(lean_object*); extern lean_object* l_Lean_instQuoteProd___rarg___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__7; -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__10; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__3; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__6___rarg(lean_object*, lean_object*); +lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__4; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; extern lean_object* l_Lean_Parser_Tactic_matchAlt___closed__1; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__7; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__57; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__12; lean_object* l_Lean_replaceRef(lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__20; lean_object* l_Lean_Unhygienic_run___rarg(lean_object*); +lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__2; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__6; +lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__6(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__38; +lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__8; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__10; +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___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*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__21; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__3___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__3(lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__7; lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand_match__1(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuotSeq___closed__1; lean_object* l_Lean_Elab_Term_Quotation_isAntiquotSplicePat___boxed(lean_object*); lean_object* l_Lean_Elab_Term_Quotation_getAntiquotTerm(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__48; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__13; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__12; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__20; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__41; -lean_object* l_Lean_Elab_Term_Quotation_HeadInfo_rhsFn___default(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__2; lean_object* l_Nat_repr(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___boxed(lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__15; -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__4; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__3; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuotSeq___closed__3; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__34; @@ -288,194 +347,227 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_10078____closed__3; extern lean_object* l_Lean_instInhabitedSourceInfo___closed__1; lean_object* l_Lean_Elab_addMacroStack___at_Lean_Elab_Term_instAddErrorMessageContextTermElabM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand_match__1___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, 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_quoteSyntax___closed__13; extern lean_object* l_Lean_choiceKind; -lean_object* l_Lean_Elab_Term_Quotation_HeadInfo_argPats___default; lean_object* l_Lean_Elab_Term_Quotation_isAntiquotScope___boxed(lean_object*); extern lean_object* l_Lean_Elab_Term_mkExplicitBinder___closed__5; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__7; lean_object* l_Lean_Elab_Term_Quotation_antiquotKind_x3f_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax(lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_11836____closed__17; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__14; +lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__1; lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__1; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; lean_object* l_Lean_Elab_Term_Quotation_mkAntiquotNode___closed__6; +lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__6; lean_object* l_Lean_Elab_Term_getCurrMacroScope(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__11; lean_object* lean_array_to_list(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__4; extern lean_object* l_myMacro____x40_Init_Notation___hyg_4340____closed__7; -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__2; +lean_object* l_Lean_Elab_Term_Quotation_mkTuple___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__50; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabDynamicQuot(lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__22; +lean_object* l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___closed__2; extern lean_object* l_Lean_Unhygienic_instMonadQuotationUnhygienic___closed__4; +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__6; +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Meta_0__Lean_quoteName(lean_object*); +lean_object* l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12(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_antiquotKind_x3f_match__1(lean_object*); lean_object* l_Lean_Syntax_mkStrLit(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_mkAntiquotNode_match__3(lean_object*); -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__12; lean_object* l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___closed__1; extern lean_object* l_Lean_Parser_Tactic_intro___closed__7; lean_object* l_Lean_Elab_Term_Quotation_getAntiquotationIds(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___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*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_6459____closed__3; extern lean_object* l_myMacro____x40_Init_Notation___hyg_38____closed__8; extern lean_object* l_term_x5b___x2c_x5d___closed__6; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1___closed__2; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__26; -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__11; +lean_object* l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_8457_(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__3; lean_object* l_Lean_Elab_Term_Quotation_getAntiquotScopeContents(lean_object*); lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_myMacro____x40_Init_Notation___hyg_12470____closed__13; lean_object* l_Lean_Elab_Term_Quotation_isEscapedAntiquot___boxed(lean_object*); extern lean_object* l_Lean_KernelException_toMessageData___closed__15; uint8_t l_Array_isEmpty___rarg(lean_object*); -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__7; extern lean_object* l_Lean_instInhabitedSyntax; lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1(lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__3___lambda__2___closed__4; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1___closed__4; 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; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__4___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -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_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*); 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*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__4___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7(lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_11167____closed__1; -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__1; -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_antiquotScopeKind_x3f(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__9; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__3; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__1___closed__1; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_11399____closed__1; extern lean_object* l_Lean_Elab_Term_getFVarLocalDecl_x21___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___lambda__1(lean_object*, lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__1; uint8_t l_Lean_Syntax_isAntiquot(lean_object*); lean_object* l_List_mapM___at_Lean_Elab_Term_Quotation_getAntiquotationIds___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__56; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__40; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__2; +lean_object* l_Lean_addTrace___at___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__36; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__3___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__5; +lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__8; extern lean_object* l_myMacro____x40_Init_Notation___hyg_4340____closed__3; extern lean_object* l___private_Lean_Elab_Util_0__Lean_Elab_evalSyntaxConstantUnsafe___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__22; +lean_object* l_ReaderT_pure___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_38____closed__6; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__3___lambda__2___closed__1; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; lean_object* l_Lean_Elab_Term_Quotation_getAntiquotationIds___closed__1; extern lean_object* l_Lean_Meta_DiscrTree_Trie_format___rarg___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___lambda__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isAtom(lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_12470____closed__8; +lean_object* l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__17(lean_object*); lean_object* l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__6(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__35; extern lean_object* l_Lean_nullKind___closed__2; lean_object* l_Lean_Elab_Term_Quotation_elabTermQuot(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_11836____closed__13; extern lean_object* l_Lean_Elab_Term_termElabAttribute; +extern lean_object* l_Lean_Format_sbracket___closed__3; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__4(lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms_match__1(lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__2; extern lean_object* l_myMacro____x40_Init_Notation___hyg_9707____closed__11; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__1___closed__2; -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___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_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_12470____closed__4; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__3(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabDoElemQuot(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabfunBinderQuot___closed__4; +lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__8; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__45; lean_object* l_Lean_Elab_Term_Quotation_mkAntiquotNode___closed__2; extern lean_object* l_Lean_Parser_Tactic_match___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__4; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__7; lean_object* l_Lean_Elab_Term_Quotation_elabDynamicQuot___lambda__1___boxed(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__10; extern lean_object* l_Lean_Syntax_mkApp___closed__1; +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___boxed(lean_object**); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__6; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__24; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_getAntiquotationIds___closed__3; uint8_t l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__3___lambda__1(lean_object*); lean_object* l_List_redLength___rarg(lean_object*); lean_object* l_Lean_Elab_Term_Quotation_mkAntiquotNode___closed__4; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__15; extern lean_object* l_myMacro____x40_Init_Notation___hyg_6459____closed__4; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__3; lean_object* l_Lean_Syntax_getSepArgs(lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_8321____closed__9; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__3; lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___boxed__const__1; -lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__8; +lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__27; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__7; uint8_t l_Lean_Elab_Term_Quotation_isAntiquotSplicePat(lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__3___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_head_x21___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__2___closed__2; +extern lean_object* l_Lean_Expr_ctorName___closed__10; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__5; lean_object* l_Lean_Syntax_setArg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_antiquotScopeKind_x3f_match__1___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_match___closed__5; +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__1(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__18; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__6; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__17; +lean_object* l_Lean_List_format___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__19(lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__20; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__30; +extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_492____closed__8; uint8_t l_Array_anyMUnsafe_any___at_Lean_Elab_Term_Quotation_isAntiquotSplicePat___spec__1(lean_object*, size_t, size_t); extern lean_object* l_myMacro____x40_Init_Notation___hyg_9707____closed__17; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__53; -lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__4; lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_Term_Quotation_isAntiquotSplicePat___spec__1___boxed(lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_12470____closed__1; lean_object* l_List_head_x21___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__2___boxed(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabfunBinderQuot___closed__1; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__4; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__42; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1___closed__3; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__3; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___closed__4; +extern lean_object* l_Lean_Format_sbracket___closed__4; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__30; lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l_Lean_Name_append(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getKind(lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_12470____closed__2; +lean_object* l_Lean_Elab_Term_Quotation_BasicHeadInfo_rhsFn___default(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_38____closed__2; extern lean_object* l_myMacro____x40_Init_Notation___hyg_9707____closed__9; extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__34; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__2; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__5; lean_object* l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__6___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_getAntiquotationIds___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__33; lean_object* l_Lean_Elab_Term_Quotation_mkAntiquotNode___closed__1; lean_object* lean_panic_fn(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___closed__2; extern lean_object* l_Std_PersistentHashMap_mkCollisionNode___rarg___closed__1; -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__16; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__6(lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__45; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__50; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22; lean_object* l_Lean_Elab_Term_Quotation_mkAntiquotNode___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_instQuoteSubstring___closed__4; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__9; lean_object* l_ReaderT_bind___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_elabTacticQuotSeq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__2; +lean_object* l_Array_appendCore___rarg(lean_object*, lean_object*); lean_object* l_List_head_x21___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__2___closed__1; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__8; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__54; +extern lean_object* l_Lean_Format_paren___closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo(lean_object*); lean_object* l_List_head_x21___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__1___boxed(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__1; lean_object* l_Lean_Elab_Term_Quotation_elabfunBinderQuot(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__5; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__2; -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__3(lean_object*, size_t, size_t, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__27; -lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__25; +lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__7; lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__9; -lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__1; +extern lean_object* l_Lean_Format_paren___closed__4; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__14; extern lean_object* l_List_head_x21___rarg___closed__3; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_adaptExpander(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__3___lambda__1___boxed(lean_object*); @@ -484,97 +576,127 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compile extern lean_object* l_Lean_Parser_mkAntiquotScope___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__20; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss_match__2(lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__8; -uint8_t l_Lean_Elab_Term_Quotation_isAntiquotSplice(lean_object*); lean_object* l_Lean_Elab_Term_Quotation_mkAntiquotNode_match__3___rarg(uint8_t, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__5; lean_object* l_Lean_Elab_Term_Quotation_antiquotScopeKind_x3f___boxed(lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__4; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__28; +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___boxed__const__1; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__6___boxed(lean_object**); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__39; lean_object* l_Lean_resolveGlobalName___at_Lean_Elab_Term_resolveName___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__17; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__29; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabDoElemQuot___closed__4; lean_object* l_List_toArrayAux___rarg(lean_object*, lean_object*); -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__5___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__2; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__5___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__2(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkOptionalNode___closed__1; extern lean_object* l_myMacro____x40_Init_Notation___hyg_4072____closed__4; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__19; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__1(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__6; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__5; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__12; +lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__5; +lean_object* l_Lean_Elab_Term_Quotation_BasicHeadInfo_rhsFn___default___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__18; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__2___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__15; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__2; lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__61; +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, 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_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__30; lean_object* lean_array_pop(lean_object*); lean_object* lean_mk_array(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__46; lean_object* l_Lean_Elab_Term_Quotation_elabMatchSyntax(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__20; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__1; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__16; +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10___boxed(lean_object**); lean_object* l_Lean_Elab_Term_Quotation_elabDoElemQuot(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabDoElemQuot___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__58; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__10; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabDoElemQuot___closed__2; +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__3; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__6; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__11; lean_object* l_Lean_Elab_Term_Quotation_elabLevelQuot___lambda__1(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___closed__5; -lean_object* l_ReaderT_pure___at_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__3; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabStxQuot(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__10; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__32; extern lean_object* l_Lean_Parser_Tactic_intro___closed__2; +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__13___boxed(lean_object**); +extern lean_object* l_Lean_Parser_Tactic_changeWith___closed__3; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__3; extern lean_object* l_myMacro____x40_Init_Notation___hyg_10078____closed__4; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__8; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__23; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabLevelQuot(lean_object*); +extern lean_object* l_Lean_List_format___rarg___closed__3; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__6; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__33; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__7(lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_9707____closed__20; extern lean_object* l_Lean_mkOptionalNode___closed__2; +extern lean_object* l_Lean_Format_paren___closed__3; extern lean_object* l_myMacro____x40_Init_Notation___hyg_9405____closed__6; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__10; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__22; extern lean_object* l_Lean_Meta_mkPure___rarg___closed__4; lean_object* l_Lean_Elab_Term_Quotation_getAntiquotScopeSuffix___boxed(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3___closed__1; -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__14; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms_match__1___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_919____closed__10; lean_object* l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__4___boxed(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__5; -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__18; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__9; +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__5; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__35; lean_object* l_Lean_Elab_Term_Quotation_getAntiquotationIds___closed__2; -lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__6; extern lean_object* l_Lean_expandExplicitBindersAux_loop___closed__4; -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__15; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__4; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabDynamicQuot___closed__2; lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_mkAntiquotNode_match__1(lean_object*); +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___boxed(lean_object**); lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabfunBinderQuot___closed__3; lean_object* l_List_lengthAux___rarg(lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_7508____closed__7; +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__19; extern lean_object* l_myMacro____x40_Init_Notation___hyg_9707____closed__12; extern lean_object* l_stx___x2a___closed__3; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__16; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__29; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__3___closed__3; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__12; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__9; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__2; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__13; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__2; +extern lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_919____closed__3; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__2(lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__9; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__3___lambda__2___closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__1___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__6; -lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__7; lean_object* l_Lean_Elab_Term_Quotation_antiquotKind_x3f(lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__25; lean_object* l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_List_zip___rarg___closed__1; 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*); @@ -584,48 +706,67 @@ lean_object* l_Lean_Syntax_findAux(lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_elabLevelQuot(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__8___boxed(lean_object**); extern lean_object* l___private_Init_Meta_0__Lean_quoteList___rarg___closed__1; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_elabDynamicQuot(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__4___boxed(lean_object**); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__1; lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__5(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(lean_object*); lean_object* l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__4(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___boxed(lean_object**); lean_object* l_Lean_Elab_Term_Quotation_getAntiquotTerm___boxed(lean_object*); extern lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryCoe___closed__3; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__6(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot(lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_12470____closed__6; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_11515____closed__7; uint8_t l_Lean_Elab_Term_Quotation_isEscapedAntiquot(lean_object*); -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__3; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Elab_Term_Quotation_HeadInfo_generalizes(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__1; +lean_object* l_Lean_Syntax_formatStxAux(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_setOptionFromString___closed__3; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__6; +extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_893____closed__1; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__1; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__4; +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__14___boxed(lean_object**); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__11; +lean_object* l_Lean_Format_joinSep___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__20(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___closed__2; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; +lean_object* l_Lean_fmt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__18(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1___closed__1; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__21; extern lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__4; lean_object* l_List_foldl___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__3___boxed(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabDynamicQuot___closed__1; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__5(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__43; lean_object* l_Lean_Elab_Term_Quotation_unescapeAntiquot(lean_object*); lean_object* l_Lean_Elab_getBetterRef(lean_object*, lean_object*); +extern lean_object* l_Lean_expandExplicitBindersAux_loop___closed__3; lean_object* l_Lean_Elab_Term_Quotation_HeadInfo_generalizes___boxed(lean_object*, lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Syntax_mkLit(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__1; +lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__8; lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4(lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__25; lean_object* l_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__1; uint8_t l_Lean_Syntax_isIdent(lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__5; extern lean_object* l_Lean_Parser_mkAntiquot___closed__1; +uint8_t l_Lean_Syntax_isAntiquotSplice(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__4; lean_object* l_Lean_Elab_Term_Quotation_mkAntiquotNode_match__1___rarg(uint8_t x_1, lean_object* x_2, lean_object* x_3) { _start: @@ -1144,38 +1285,6 @@ lean_dec(x_1); return x_2; } } -uint8_t l_Lean_Elab_Term_Quotation_isAntiquotSplice(lean_object* x_1) { -_start: -{ -uint8_t x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_Syntax_isAntiquot(x_1); -x_3 = lean_unsigned_to_nat(4u); -x_4 = l_Lean_Syntax_getArg(x_1, x_3); -x_5 = l_Lean_Syntax_getOptional_x3f(x_4); -lean_dec(x_4); -if (lean_obj_tag(x_5) == 0) -{ -uint8_t x_6; -x_6 = 0; -return x_6; -} -else -{ -lean_dec(x_5); -return x_2; -} -} -} -lean_object* l_Lean_Elab_Term_Quotation_isAntiquotSplice___boxed(lean_object* x_1) { -_start: -{ -uint8_t x_2; lean_object* x_3; -x_2 = l_Lean_Elab_Term_Quotation_isAntiquotSplice(x_1); -lean_dec(x_1); -x_3 = lean_box(x_2); -return x_3; -} -} lean_object* l_Lean_Elab_Term_Quotation_antiquotScopeKind_x3f_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -1373,7 +1482,7 @@ if (x_4 == 0) { lean_object* x_5; uint8_t x_6; uint8_t x_7; x_5 = lean_array_uget(x_1, x_2); -x_6 = l_Lean_Elab_Term_Quotation_isAntiquotSplice(x_5); +x_6 = l_Lean_Syntax_isAntiquotSplice(x_5); x_7 = l_Lean_Elab_Term_Quotation_isEscapedAntiquot(x_5); lean_dec(x_5); if (x_7 == 0) @@ -1489,6 +1598,775 @@ x_3 = lean_box(x_2); return x_3; } } +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_1) == 1) +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; +lean_dec(x_3); +x_4 = lean_ctor_get(x_1, 0); +lean_inc(x_4); +x_5 = lean_ctor_get(x_1, 1); +lean_inc(x_5); +x_6 = lean_apply_3(x_2, x_1, x_4, x_5); +return x_6; +} +else +{ +lean_object* x_7; +lean_dec(x_2); +x_7 = lean_apply_1(x_3, x_1); +return x_7; +} +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms_match__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms_match__1___rarg), 3, 0); +return x_2; +} +} +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__1(size_t x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +uint8_t x_12; +x_12 = x_2 < x_1; +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_13 = x_3; +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_4); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_11); +return x_15; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_16 = lean_array_uget(x_3, x_2); +x_17 = lean_unsigned_to_nat(0u); +x_18 = lean_array_uset(x_3, x_2, x_17); +x_19 = x_16; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_20 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms(x_19, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_20) == 0) +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; size_t x_25; size_t x_26; lean_object* x_27; lean_object* x_28; +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +x_22 = lean_ctor_get(x_20, 1); +lean_inc(x_22); +lean_dec(x_20); +x_23 = lean_ctor_get(x_21, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_21, 1); +lean_inc(x_24); +lean_dec(x_21); +x_25 = 1; +x_26 = x_2 + x_25; +x_27 = x_23; +x_28 = lean_array_uset(x_18, x_2, x_27); +x_2 = x_26; +x_3 = x_28; +x_4 = x_24; +x_11 = x_22; +goto _start; +} +else +{ +uint8_t x_30; +lean_dec(x_18); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_30 = !lean_is_exclusive(x_20); +if (x_30 == 0) +{ +return x_20; +} +else +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_31 = lean_ctor_get(x_20, 0); +x_32 = lean_ctor_get(x_20, 1); +lean_inc(x_32); +lean_inc(x_31); +lean_dec(x_20); +x_33 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_33, 0, x_31); +lean_ctor_set(x_33, 1, x_32); +return x_33; +} +} +} +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___boxed__const__1() { +_start: +{ +size_t x_1; lean_object* x_2; +x_1 = 0; +x_2 = lean_box_usize(x_1); +return x_2; +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; size_t 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; +x_12 = lean_array_get_size(x_1); +x_13 = lean_usize_of_nat(x_12); +lean_dec(x_12); +x_14 = x_1; +x_15 = lean_box_usize(x_13); +x_16 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___boxed__const__1; +x_17 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__1___boxed), 11, 3); +lean_closure_set(x_17, 0, x_15); +lean_closure_set(x_17, 1, x_16); +lean_closure_set(x_17, 2, x_14); +x_18 = x_17; +x_19 = lean_apply_8(x_18, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_19) == 0) +{ +uint8_t x_20; +x_20 = !lean_is_exclusive(x_19); +if (x_20 == 0) +{ +lean_object* x_21; uint8_t x_22; +x_21 = lean_ctor_get(x_19, 0); +x_22 = !lean_is_exclusive(x_21); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; +x_23 = lean_ctor_get(x_21, 0); +x_24 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_24, 0, x_2); +lean_ctor_set(x_24, 1, x_23); +lean_ctor_set(x_21, 0, x_24); +return x_19; +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_25 = lean_ctor_get(x_21, 0); +x_26 = lean_ctor_get(x_21, 1); +lean_inc(x_26); +lean_inc(x_25); +lean_dec(x_21); +x_27 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_27, 0, x_2); +lean_ctor_set(x_27, 1, x_25); +x_28 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_28, 0, x_27); +lean_ctor_set(x_28, 1, x_26); +lean_ctor_set(x_19, 0, x_28); +return x_19; +} +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_29 = lean_ctor_get(x_19, 0); +x_30 = lean_ctor_get(x_19, 1); +lean_inc(x_30); +lean_inc(x_29); +lean_dec(x_19); +x_31 = lean_ctor_get(x_29, 0); +lean_inc(x_31); +x_32 = lean_ctor_get(x_29, 1); +lean_inc(x_32); +if (lean_is_exclusive(x_29)) { + lean_ctor_release(x_29, 0); + lean_ctor_release(x_29, 1); + x_33 = x_29; +} else { + lean_dec_ref(x_29); + x_33 = lean_box(0); +} +x_34 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_34, 0, x_2); +lean_ctor_set(x_34, 1, x_31); +if (lean_is_scalar(x_33)) { + x_35 = lean_alloc_ctor(0, 2, 0); +} else { + x_35 = x_33; +} +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_32); +x_36 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set(x_36, 1, x_30); +return x_36; +} +} +else +{ +uint8_t x_37; +lean_dec(x_2); +x_37 = !lean_is_exclusive(x_19); +if (x_37 == 0) +{ +return x_19; +} +else +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_38 = lean_ctor_get(x_19, 0); +x_39 = lean_ctor_get(x_19, 1); +lean_inc(x_39); +lean_inc(x_38); +lean_dec(x_19); +x_40 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_40, 0, x_38); +lean_ctor_set(x_40, 1, x_39); +return x_40; +} +} +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; +x_12 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_13 = lean_ctor_get(x_12, 1); +lean_inc(x_13); +lean_dec(x_12); +x_14 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_13); +x_15 = !lean_is_exclusive(x_14); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_16 = lean_ctor_get(x_14, 0); +lean_dec(x_16); +x_17 = l_myMacro____x40_Init_Notation___hyg_12470____closed__1; +lean_inc(x_1); +x_18 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_18, 0, x_1); +lean_ctor_set(x_18, 1, x_17); +x_19 = l_Array_empty___closed__1; +x_20 = lean_array_push(x_19, x_18); +x_21 = lean_array_push(x_19, x_2); +x_22 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_23 = lean_array_push(x_21, x_22); +x_24 = lean_array_push(x_23, x_22); +x_25 = l_myMacro____x40_Init_Notation___hyg_12470____closed__13; +lean_inc(x_1); +x_26 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_26, 0, x_1); +lean_ctor_set(x_26, 1, x_25); +x_27 = lean_array_push(x_24, x_26); +x_28 = lean_array_push(x_27, x_3); +x_29 = l_myMacro____x40_Init_Notation___hyg_12470____closed__8; +x_30 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_28); +x_31 = lean_array_push(x_19, x_30); +x_32 = l_myMacro____x40_Init_Notation___hyg_12470____closed__6; +x_33 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_33, 0, x_32); +lean_ctor_set(x_33, 1, x_31); +x_34 = lean_array_push(x_20, x_33); +x_35 = l_myMacro____x40_Init_Notation___hyg_12470____closed__15; +x_36 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_36, 0, x_1); +lean_ctor_set(x_36, 1, x_35); +x_37 = lean_array_push(x_19, x_36); +x_38 = l_Lean_nullKind___closed__2; +x_39 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_39, 0, x_38); +lean_ctor_set(x_39, 1, x_37); +x_40 = lean_array_push(x_34, x_39); +x_41 = lean_array_push(x_40, x_4); +x_42 = l_myMacro____x40_Init_Notation___hyg_12470____closed__2; +x_43 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_43, 0, x_42); +lean_ctor_set(x_43, 1, x_41); +lean_ctor_set(x_14, 0, x_43); +return x_14; +} +else +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; 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; +x_44 = lean_ctor_get(x_14, 1); +lean_inc(x_44); +lean_dec(x_14); +x_45 = l_myMacro____x40_Init_Notation___hyg_12470____closed__1; +lean_inc(x_1); +x_46 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_46, 0, x_1); +lean_ctor_set(x_46, 1, x_45); +x_47 = l_Array_empty___closed__1; +x_48 = lean_array_push(x_47, x_46); +x_49 = lean_array_push(x_47, x_2); +x_50 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_51 = lean_array_push(x_49, x_50); +x_52 = lean_array_push(x_51, x_50); +x_53 = l_myMacro____x40_Init_Notation___hyg_12470____closed__13; +lean_inc(x_1); +x_54 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_54, 0, x_1); +lean_ctor_set(x_54, 1, x_53); +x_55 = lean_array_push(x_52, x_54); +x_56 = lean_array_push(x_55, x_3); +x_57 = l_myMacro____x40_Init_Notation___hyg_12470____closed__8; +x_58 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_58, 0, x_57); +lean_ctor_set(x_58, 1, x_56); +x_59 = lean_array_push(x_47, x_58); +x_60 = l_myMacro____x40_Init_Notation___hyg_12470____closed__6; +x_61 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_61, 0, x_60); +lean_ctor_set(x_61, 1, x_59); +x_62 = lean_array_push(x_48, x_61); +x_63 = l_myMacro____x40_Init_Notation___hyg_12470____closed__15; +x_64 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_64, 0, x_1); +lean_ctor_set(x_64, 1, x_63); +x_65 = lean_array_push(x_47, x_64); +x_66 = l_Lean_nullKind___closed__2; +x_67 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_67, 0, x_66); +lean_ctor_set(x_67, 1, x_65); +x_68 = lean_array_push(x_62, x_67); +x_69 = lean_array_push(x_68, x_4); +x_70 = l_myMacro____x40_Init_Notation___hyg_12470____closed__2; +x_71 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_71, 0, x_70); +lean_ctor_set(x_71, 1, x_69); +x_72 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_72, 0, x_71); +lean_ctor_set(x_72, 1, x_44); +return x_72; +} +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +if (lean_obj_tag(x_1) == 1) +{ +lean_object* x_10; lean_object* x_11; uint8_t x_12; uint8_t x_13; +x_10 = lean_ctor_get(x_1, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_1, 1); +lean_inc(x_11); +x_12 = l_Lean_Syntax_isAntiquot(x_1); +x_13 = l_Lean_Elab_Term_Quotation_isEscapedAntiquot(x_1); +if (x_13 == 0) +{ +if (x_12 == 0) +{ +lean_object* x_14; lean_object* x_15; +lean_dec(x_1); +x_14 = lean_box(0); +x_15 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1(x_11, x_10, x_14, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_15; +} +else +{ +lean_object* x_16; uint8_t x_17; +x_16 = l_Lean_Elab_Term_Quotation_getAntiquotTerm(x_1); +x_17 = l_Lean_Syntax_isIdent(x_16); +if (x_17 == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_2); +x_18 = lean_st_ref_take(x_8, x_9); +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec(x_18); +x_21 = !lean_is_exclusive(x_19); +if (x_21 == 0) +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; +x_22 = lean_ctor_get(x_19, 1); +x_23 = lean_unsigned_to_nat(1u); +x_24 = lean_nat_add(x_22, x_23); +lean_ctor_set(x_19, 1, x_24); +x_25 = lean_st_ref_set(x_8, x_19, x_20); +x_26 = lean_ctor_get(x_25, 1); +lean_inc(x_26); +lean_dec(x_25); +x_27 = !lean_is_exclusive(x_3); +if (x_27 == 0) +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; +x_28 = lean_ctor_get(x_3, 4); +lean_dec(x_28); +lean_ctor_set(x_3, 4, x_22); +x_29 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_26); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +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_Elab_Term_getMainModule___rarg(x_8, x_31); +lean_dec(x_8); +x_33 = !lean_is_exclusive(x_32); +if (x_33 == 0) +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_34 = lean_ctor_get(x_32, 0); +x_35 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_919____closed__4; +x_36 = l_Lean_addMacroScope(x_34, x_35, x_30); +x_37 = lean_box(0); +x_38 = l_Lean_instInhabitedSourceInfo___closed__1; +x_39 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_919____closed__3; +x_40 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_40, 0, x_38); +lean_ctor_set(x_40, 1, x_39); +lean_ctor_set(x_40, 2, x_36); +lean_ctor_set(x_40, 3, x_37); +lean_inc(x_40); +x_41 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___boxed), 11, 3); +lean_closure_set(x_41, 0, x_38); +lean_closure_set(x_41, 1, x_40); +lean_closure_set(x_41, 2, x_16); +x_42 = lean_unsigned_to_nat(2u); +x_43 = l_Lean_Syntax_setArg(x_1, x_42, x_40); +x_44 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_44, 0, x_43); +lean_ctor_set(x_44, 1, x_41); +lean_ctor_set(x_32, 0, x_44); +return x_32; +} +else +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_45 = lean_ctor_get(x_32, 0); +x_46 = lean_ctor_get(x_32, 1); +lean_inc(x_46); +lean_inc(x_45); +lean_dec(x_32); +x_47 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_919____closed__4; +x_48 = l_Lean_addMacroScope(x_45, x_47, x_30); +x_49 = lean_box(0); +x_50 = l_Lean_instInhabitedSourceInfo___closed__1; +x_51 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_919____closed__3; +x_52 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_52, 0, x_50); +lean_ctor_set(x_52, 1, x_51); +lean_ctor_set(x_52, 2, x_48); +lean_ctor_set(x_52, 3, x_49); +lean_inc(x_52); +x_53 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___boxed), 11, 3); +lean_closure_set(x_53, 0, x_50); +lean_closure_set(x_53, 1, x_52); +lean_closure_set(x_53, 2, x_16); +x_54 = lean_unsigned_to_nat(2u); +x_55 = l_Lean_Syntax_setArg(x_1, x_54, x_52); +x_56 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_56, 0, x_55); +lean_ctor_set(x_56, 1, x_53); +x_57 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_57, 0, x_56); +lean_ctor_set(x_57, 1, x_46); +return x_57; +} +} +else +{ +lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; uint8_t x_62; uint8_t x_63; uint8_t 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; +x_58 = lean_ctor_get(x_3, 0); +x_59 = lean_ctor_get(x_3, 1); +x_60 = lean_ctor_get(x_3, 2); +x_61 = lean_ctor_get(x_3, 3); +x_62 = lean_ctor_get_uint8(x_3, sizeof(void*)*6); +x_63 = lean_ctor_get_uint8(x_3, sizeof(void*)*6 + 1); +x_64 = lean_ctor_get_uint8(x_3, sizeof(void*)*6 + 2); +x_65 = lean_ctor_get(x_3, 5); +lean_inc(x_65); +lean_inc(x_61); +lean_inc(x_60); +lean_inc(x_59); +lean_inc(x_58); +lean_dec(x_3); +x_66 = lean_alloc_ctor(0, 6, 3); +lean_ctor_set(x_66, 0, x_58); +lean_ctor_set(x_66, 1, x_59); +lean_ctor_set(x_66, 2, x_60); +lean_ctor_set(x_66, 3, x_61); +lean_ctor_set(x_66, 4, x_22); +lean_ctor_set(x_66, 5, x_65); +lean_ctor_set_uint8(x_66, sizeof(void*)*6, x_62); +lean_ctor_set_uint8(x_66, sizeof(void*)*6 + 1, x_63); +lean_ctor_set_uint8(x_66, sizeof(void*)*6 + 2, x_64); +x_67 = l_Lean_Elab_Term_getCurrMacroScope(x_66, x_4, x_5, x_6, x_7, x_8, x_26); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_66); +x_68 = lean_ctor_get(x_67, 0); +lean_inc(x_68); +x_69 = lean_ctor_get(x_67, 1); +lean_inc(x_69); +lean_dec(x_67); +x_70 = l_Lean_Elab_Term_getMainModule___rarg(x_8, x_69); +lean_dec(x_8); +x_71 = lean_ctor_get(x_70, 0); +lean_inc(x_71); +x_72 = lean_ctor_get(x_70, 1); +lean_inc(x_72); +if (lean_is_exclusive(x_70)) { + lean_ctor_release(x_70, 0); + lean_ctor_release(x_70, 1); + x_73 = x_70; +} else { + lean_dec_ref(x_70); + x_73 = lean_box(0); +} +x_74 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_919____closed__4; +x_75 = l_Lean_addMacroScope(x_71, x_74, x_68); +x_76 = lean_box(0); +x_77 = l_Lean_instInhabitedSourceInfo___closed__1; +x_78 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_919____closed__3; +x_79 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_79, 0, x_77); +lean_ctor_set(x_79, 1, x_78); +lean_ctor_set(x_79, 2, x_75); +lean_ctor_set(x_79, 3, x_76); +lean_inc(x_79); +x_80 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___boxed), 11, 3); +lean_closure_set(x_80, 0, x_77); +lean_closure_set(x_80, 1, x_79); +lean_closure_set(x_80, 2, x_16); +x_81 = lean_unsigned_to_nat(2u); +x_82 = l_Lean_Syntax_setArg(x_1, x_81, x_79); +x_83 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_83, 0, x_82); +lean_ctor_set(x_83, 1, x_80); +if (lean_is_scalar(x_73)) { + x_84 = lean_alloc_ctor(0, 2, 0); +} else { + x_84 = x_73; +} +lean_ctor_set(x_84, 0, x_83); +lean_ctor_set(x_84, 1, x_72); +return x_84; +} +} +else +{ +lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; uint8_t x_98; uint8_t x_99; uint8_t 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; +x_85 = lean_ctor_get(x_19, 0); +x_86 = lean_ctor_get(x_19, 1); +x_87 = lean_ctor_get(x_19, 2); +x_88 = lean_ctor_get(x_19, 3); +lean_inc(x_88); +lean_inc(x_87); +lean_inc(x_86); +lean_inc(x_85); +lean_dec(x_19); +x_89 = lean_unsigned_to_nat(1u); +x_90 = lean_nat_add(x_86, x_89); +x_91 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_91, 0, x_85); +lean_ctor_set(x_91, 1, x_90); +lean_ctor_set(x_91, 2, x_87); +lean_ctor_set(x_91, 3, x_88); +x_92 = lean_st_ref_set(x_8, x_91, x_20); +x_93 = lean_ctor_get(x_92, 1); +lean_inc(x_93); +lean_dec(x_92); +x_94 = lean_ctor_get(x_3, 0); +lean_inc(x_94); +x_95 = lean_ctor_get(x_3, 1); +lean_inc(x_95); +x_96 = lean_ctor_get(x_3, 2); +lean_inc(x_96); +x_97 = lean_ctor_get(x_3, 3); +lean_inc(x_97); +x_98 = lean_ctor_get_uint8(x_3, sizeof(void*)*6); +x_99 = lean_ctor_get_uint8(x_3, sizeof(void*)*6 + 1); +x_100 = lean_ctor_get_uint8(x_3, sizeof(void*)*6 + 2); +x_101 = lean_ctor_get(x_3, 5); +lean_inc(x_101); +if (lean_is_exclusive(x_3)) { + lean_ctor_release(x_3, 0); + lean_ctor_release(x_3, 1); + lean_ctor_release(x_3, 2); + lean_ctor_release(x_3, 3); + lean_ctor_release(x_3, 4); + lean_ctor_release(x_3, 5); + x_102 = x_3; +} else { + lean_dec_ref(x_3); + x_102 = lean_box(0); +} +if (lean_is_scalar(x_102)) { + x_103 = lean_alloc_ctor(0, 6, 3); +} else { + x_103 = x_102; +} +lean_ctor_set(x_103, 0, x_94); +lean_ctor_set(x_103, 1, x_95); +lean_ctor_set(x_103, 2, x_96); +lean_ctor_set(x_103, 3, x_97); +lean_ctor_set(x_103, 4, x_86); +lean_ctor_set(x_103, 5, x_101); +lean_ctor_set_uint8(x_103, sizeof(void*)*6, x_98); +lean_ctor_set_uint8(x_103, sizeof(void*)*6 + 1, x_99); +lean_ctor_set_uint8(x_103, sizeof(void*)*6 + 2, x_100); +x_104 = l_Lean_Elab_Term_getCurrMacroScope(x_103, x_4, x_5, x_6, x_7, x_8, x_93); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_103); +x_105 = lean_ctor_get(x_104, 0); +lean_inc(x_105); +x_106 = lean_ctor_get(x_104, 1); +lean_inc(x_106); +lean_dec(x_104); +x_107 = l_Lean_Elab_Term_getMainModule___rarg(x_8, x_106); +lean_dec(x_8); +x_108 = lean_ctor_get(x_107, 0); +lean_inc(x_108); +x_109 = lean_ctor_get(x_107, 1); +lean_inc(x_109); +if (lean_is_exclusive(x_107)) { + lean_ctor_release(x_107, 0); + lean_ctor_release(x_107, 1); + x_110 = x_107; +} else { + lean_dec_ref(x_107); + x_110 = lean_box(0); +} +x_111 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_919____closed__4; +x_112 = l_Lean_addMacroScope(x_108, x_111, x_105); +x_113 = lean_box(0); +x_114 = l_Lean_instInhabitedSourceInfo___closed__1; +x_115 = l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_919____closed__3; +x_116 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_116, 0, x_114); +lean_ctor_set(x_116, 1, x_115); +lean_ctor_set(x_116, 2, x_112); +lean_ctor_set(x_116, 3, x_113); +lean_inc(x_116); +x_117 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___boxed), 11, 3); +lean_closure_set(x_117, 0, x_114); +lean_closure_set(x_117, 1, x_116); +lean_closure_set(x_117, 2, x_16); +x_118 = lean_unsigned_to_nat(2u); +x_119 = l_Lean_Syntax_setArg(x_1, x_118, x_116); +x_120 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_120, 0, x_119); +lean_ctor_set(x_120, 1, x_117); +if (lean_is_scalar(x_110)) { + x_121 = lean_alloc_ctor(0, 2, 0); +} else { + x_121 = x_110; +} +lean_ctor_set(x_121, 0, x_120); +lean_ctor_set(x_121, 1, x_109); +return x_121; +} +} +else +{ +lean_object* x_122; lean_object* x_123; +lean_dec(x_16); +lean_dec(x_1); +x_122 = lean_box(0); +x_123 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1(x_11, x_10, x_122, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_123; +} +} +} +else +{ +lean_object* x_124; lean_object* x_125; +lean_dec(x_1); +x_124 = lean_box(0); +x_125 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1(x_11, x_10, x_124, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_125; +} +} +else +{ +lean_object* x_126; lean_object* x_127; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_126 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_126, 0, x_1); +lean_ctor_set(x_126, 1, x_2); +x_127 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_127, 0, x_126); +lean_ctor_set(x_127, 1, x_9); +return x_127; +} +} +} +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +size_t x_12; size_t x_13; lean_object* x_14; +x_12 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_13 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_14 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__1(x_12, x_13, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +return x_14; +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_3); +return x_12; +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +return x_12; +} +} lean_object* l_Lean_Elab_Term_Quotation_getAntiquotationIds_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -2293,7 +3171,28 @@ x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Te return x_2; } } -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__5___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__5___rarg(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); +x_4 = lean_ctor_get(x_1, 1); +lean_inc(x_4); +lean_dec(x_1); +x_5 = lean_apply_2(x_2, x_3, x_4); +return x_5; +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__5(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__5___rarg), 2, 0); +return x_2; +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__6___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { switch (lean_obj_tag(x_1)) { @@ -2355,15 +3254,33 @@ return x_18; } } } -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__5(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__6(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__5___rarg), 5, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__6___rarg), 5, 0); return x_2; } } -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1(size_t x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l_ReaderT_pure___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_1); +lean_ctor_set(x_9, 1, x_8); +return x_9; +} +} +lean_object* l_ReaderT_pure___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_ReaderT_pure___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1___rarg___boxed), 8, 0); +return x_2; +} +} +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__2(size_t x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { uint8_t x_11; @@ -2446,7 +3363,7 @@ return x_29; } } } -lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__2(lean_object* x_1) { +lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -2463,7 +3380,7 @@ lean_inc(x_3); x_4 = lean_ctor_get(x_1, 1); lean_inc(x_4); lean_dec(x_1); -x_5 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__2(x_4); +x_5 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_4); x_6 = l_Lean_Syntax_mkApp___closed__1; x_7 = lean_array_push(x_6, x_3); x_8 = lean_array_push(x_7, x_5); @@ -2473,7 +3390,7 @@ return x_10; } } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1___closed__1() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__1() { _start: { lean_object* x_1; @@ -2481,22 +3398,22 @@ x_1 = lean_mk_string("Array.appendCore"); return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1___closed__2() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1___closed__1; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1___closed__3() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1___closed__1; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1___closed__2; +x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___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); @@ -2504,7 +3421,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1___closed__4() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__4() { _start: { lean_object* x_1; @@ -2512,99 +3429,154 @@ x_1 = lean_mk_string("appendCore"); return x_1; } } -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { -lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; -x_14 = l_Lean_Elab_Term_getCurrMacroScope(x_7, x_8, x_9, x_10, x_11, x_12, x_13); -x_15 = lean_ctor_get(x_14, 0); -lean_inc(x_15); -x_16 = lean_ctor_get(x_14, 1); -lean_inc(x_16); -lean_dec(x_14); -x_17 = l_Lean_Elab_Term_getMainModule___rarg(x_12, x_16); -x_18 = !lean_is_exclusive(x_17); -if (x_18 == 0) +lean_object* x_15; +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_15 = lean_apply_8(x_1, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_15) == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_19 = lean_ctor_get(x_17, 0); -x_20 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1___closed__4; -x_21 = lean_name_mk_string(x_1, x_20); -lean_inc(x_21); -x_22 = l_Lean_addMacroScope(x_19, x_21, x_15); -x_23 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_23, 0, x_21); -lean_ctor_set(x_23, 1, x_2); -x_24 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_24, 0, x_23); -lean_ctor_set(x_24, 1, x_3); -x_25 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1___closed__3; -x_26 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_26, 0, x_4); -lean_ctor_set(x_26, 1, x_25); -lean_ctor_set(x_26, 2, x_22); -lean_ctor_set(x_26, 3, x_24); -x_27 = l_Array_empty___closed__1; -x_28 = lean_array_push(x_27, x_26); -x_29 = lean_array_push(x_27, x_5); -x_30 = lean_array_push(x_29, x_6); -x_31 = l_Lean_nullKind___closed__2; -x_32 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_32, 0, x_31); -lean_ctor_set(x_32, 1, x_30); -x_33 = lean_array_push(x_28, x_32); -x_34 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_35 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_35, 0, x_34); -lean_ctor_set(x_35, 1, x_33); -lean_ctor_set(x_17, 0, x_35); -return x_17; +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_15, 1); +lean_inc(x_17); +lean_dec(x_15); +x_18 = l_Lean_Elab_Term_getCurrMacroScope(x_8, x_9, x_10, x_11, x_12, x_13, x_17); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +lean_dec(x_18); +x_21 = l_Lean_Elab_Term_getMainModule___rarg(x_13, x_20); +lean_dec(x_13); +x_22 = !lean_is_exclusive(x_21); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_23 = lean_ctor_get(x_21, 0); +x_24 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__4; +x_25 = lean_name_mk_string(x_2, x_24); +lean_inc(x_25); +x_26 = l_Lean_addMacroScope(x_23, x_25, x_19); +x_27 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_27, 0, x_25); +lean_ctor_set(x_27, 1, x_3); +x_28 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_28, 0, x_27); +lean_ctor_set(x_28, 1, x_4); +x_29 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__3; +x_30 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_30, 0, x_5); +lean_ctor_set(x_30, 1, x_29); +lean_ctor_set(x_30, 2, x_26); +lean_ctor_set(x_30, 3, x_28); +x_31 = l_Array_empty___closed__1; +x_32 = lean_array_push(x_31, x_30); +x_33 = lean_array_push(x_31, x_6); +x_34 = lean_array_push(x_33, x_16); +x_35 = l_Lean_nullKind___closed__2; +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set(x_36, 1, x_34); +x_37 = lean_array_push(x_32, x_36); +x_38 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_39 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_39, 0, x_38); +lean_ctor_set(x_39, 1, x_37); +lean_ctor_set(x_21, 0, x_39); +return x_21; } else { -lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_36 = lean_ctor_get(x_17, 0); -x_37 = lean_ctor_get(x_17, 1); -lean_inc(x_37); -lean_inc(x_36); -lean_dec(x_17); -x_38 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1___closed__4; -x_39 = lean_name_mk_string(x_1, x_38); -lean_inc(x_39); -x_40 = l_Lean_addMacroScope(x_36, x_39, x_15); -x_41 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_41, 0, x_39); -lean_ctor_set(x_41, 1, x_2); -x_42 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_42, 0, x_41); -lean_ctor_set(x_42, 1, x_3); -x_43 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1___closed__3; -x_44 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_44, 0, x_4); -lean_ctor_set(x_44, 1, x_43); -lean_ctor_set(x_44, 2, x_40); -lean_ctor_set(x_44, 3, x_42); -x_45 = l_Array_empty___closed__1; -x_46 = lean_array_push(x_45, x_44); -x_47 = lean_array_push(x_45, x_5); -x_48 = lean_array_push(x_47, x_6); -x_49 = l_Lean_nullKind___closed__2; -x_50 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_50, 0, x_49); -lean_ctor_set(x_50, 1, x_48); -x_51 = lean_array_push(x_46, x_50); -x_52 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_53 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_53, 0, x_52); -lean_ctor_set(x_53, 1, x_51); -x_54 = lean_alloc_ctor(0, 2, 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; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_40 = lean_ctor_get(x_21, 0); +x_41 = lean_ctor_get(x_21, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_21); +x_42 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__4; +x_43 = lean_name_mk_string(x_2, x_42); +lean_inc(x_43); +x_44 = l_Lean_addMacroScope(x_40, x_43, x_19); +x_45 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set(x_45, 1, x_3); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_45); +lean_ctor_set(x_46, 1, x_4); +x_47 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__3; +x_48 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_48, 0, x_5); +lean_ctor_set(x_48, 1, x_47); +lean_ctor_set(x_48, 2, x_44); +lean_ctor_set(x_48, 3, x_46); +x_49 = l_Array_empty___closed__1; +x_50 = lean_array_push(x_49, x_48); +x_51 = lean_array_push(x_49, x_6); +x_52 = lean_array_push(x_51, x_16); +x_53 = l_Lean_nullKind___closed__2; +x_54 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_54, 0, x_53); -lean_ctor_set(x_54, 1, x_37); -return x_54; +lean_ctor_set(x_54, 1, x_52); +x_55 = lean_array_push(x_50, x_54); +x_56 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_57 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_57, 0, x_56); +lean_ctor_set(x_57, 1, x_55); +x_58 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_58, 0, x_57); +lean_ctor_set(x_58, 1, x_41); +return x_58; +} +} +else +{ +uint8_t x_59; +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_59 = !lean_is_exclusive(x_15); +if (x_59 == 0) +{ +return x_15; +} +else +{ +lean_object* x_60; lean_object* x_61; lean_object* x_62; +x_60 = lean_ctor_get(x_15, 0); +x_61 = lean_ctor_get(x_15, 1); +lean_inc(x_61); +lean_inc(x_60); +lean_dec(x_15); +x_62 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_62, 0, x_60); +lean_ctor_set(x_62, 1, x_61); +return x_62; } } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__1() { +} +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__1() { _start: { lean_object* x_1; @@ -2612,7 +3584,7 @@ x_1 = lean_mk_string("Lean.Elab.Quotation"); return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__2() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__2() { _start: { lean_object* x_1; @@ -2620,20 +3592,20 @@ x_1 = lean_mk_string("_private.Lean.Elab.Quotation.0.Lean.Elab.Term.Quotation.qu return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__3() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__1; -x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__2; -x_3 = lean_unsigned_to_nat(135u); +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__1; +x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__2; +x_3 = lean_unsigned_to_nat(145u); x_4 = lean_unsigned_to_nat(72u); x_5 = l_Lean_Syntax_strLitToAtom___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); return x_6; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__4() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__4() { _start: { lean_object* x_1; @@ -2641,22 +3613,22 @@ x_1 = lean_mk_string("mkSepArray"); return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__5() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__4; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__4; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__6() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__4; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__4; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__5; +x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__5; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2664,27 +3636,27 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__7() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__4; +x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__8() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_38____closed__2; -x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__4; +x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__9() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__9() { _start: { lean_object* x_1; @@ -2692,22 +3664,22 @@ x_1 = lean_mk_string("mkAtom"); return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__10() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__9; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__9; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__11() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__9; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__9; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__10; +x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__10; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2715,360 +3687,331 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__12() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__9; +x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__9; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__13() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_38____closed__2; -x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__9; +x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__9; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { -if (lean_obj_tag(x_6) == 0) +if (lean_obj_tag(x_7) == 0) { -lean_object* x_16; -x_16 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1(x_1, x_2, x_3, x_4, x_5, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -return x_16; +lean_object* x_17; +x_17 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +return x_17; } else { -lean_object* x_17; lean_object* x_18; uint8_t x_19; -x_17 = lean_ctor_get(x_6, 0); -x_18 = l_term_x5b___x2c_x5d___closed__6; -x_19 = lean_name_eq(x_17, x_18); -if (x_19 == 0) +lean_object* x_18; lean_object* x_19; uint8_t x_20; +x_18 = lean_ctor_get(x_7, 0); +x_19 = l_term_x5b___x2c_x5d___closed__6; +x_20 = lean_name_eq(x_18, x_19); +if (x_20 == 0) { -lean_object* x_20; -x_20 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1(x_1, x_2, x_3, x_4, x_5, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -return x_20; +lean_object* x_21; +x_21 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +return x_21; } else { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_21 = lean_unsigned_to_nat(5u); -x_22 = l_Lean_Syntax_getArg(x_7, x_21); -x_23 = lean_unsigned_to_nat(0u); -x_24 = l_Lean_Syntax_getArg(x_22, x_23); -lean_dec(x_22); -if (lean_obj_tag(x_24) == 2) +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_22 = lean_unsigned_to_nat(5u); +x_23 = l_Lean_Syntax_getArg(x_8, x_22); +x_24 = lean_unsigned_to_nat(0u); +x_25 = l_Lean_Syntax_getArg(x_23, x_24); +lean_dec(x_23); +if (lean_obj_tag(x_25) == 2) { -uint8_t x_25; -x_25 = !lean_is_exclusive(x_24); -if (x_25 == 0) +uint8_t x_26; +x_26 = !lean_is_exclusive(x_25); +if (x_26 == 0) { -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; -x_26 = lean_ctor_get(x_24, 1); -x_27 = lean_ctor_get(x_24, 0); -lean_dec(x_27); -x_28 = l_Lean_Elab_Term_getCurrMacroScope(x_9, x_10, x_11, x_12, x_13, x_14, x_15); -x_29 = lean_ctor_get(x_28, 0); -lean_inc(x_29); -x_30 = lean_ctor_get(x_28, 1); -lean_inc(x_30); +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; +x_27 = lean_ctor_get(x_25, 1); +x_28 = lean_ctor_get(x_25, 0); lean_dec(x_28); -x_31 = l_Lean_Elab_Term_getMainModule___rarg(x_14, x_30); -x_32 = lean_ctor_get(x_31, 0); -lean_inc(x_32); -x_33 = lean_ctor_get(x_31, 1); +x_29 = l_Lean_Elab_Term_getCurrMacroScope(x_10, x_11, x_12, x_13, x_14, x_15, x_16); +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_Elab_Term_getMainModule___rarg(x_15, x_31); +x_33 = lean_ctor_get(x_32, 0); lean_inc(x_33); -lean_dec(x_31); -x_34 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__7; -lean_inc(x_29); -lean_inc(x_32); -x_35 = l_Lean_addMacroScope(x_32, x_34, x_29); -x_36 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__8; -lean_inc(x_2); -x_37 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_37, 0, x_36); -lean_ctor_set(x_37, 1, x_2); +x_34 = lean_ctor_get(x_32, 1); +lean_inc(x_34); +lean_dec(x_32); +x_35 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__7; +lean_inc(x_30); +lean_inc(x_33); +x_36 = l_Lean_addMacroScope(x_33, x_35, x_30); +x_37 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__8; lean_inc(x_3); -x_38 = lean_alloc_ctor(1, 2, 0); +x_38 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_38, 0, x_37); lean_ctor_set(x_38, 1, x_3); -x_39 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__6; lean_inc(x_4); -x_40 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_40, 0, x_4); -lean_ctor_set(x_40, 1, x_39); -lean_ctor_set(x_40, 2, x_35); -lean_ctor_set(x_40, 3, x_38); -x_41 = l_Array_empty___closed__1; -x_42 = lean_array_push(x_41, x_40); -x_43 = lean_array_push(x_41, x_8); -x_44 = l_myMacro____x40_Init_Notation___hyg_9707____closed__9; -lean_inc(x_4); -lean_ctor_set(x_24, 1, x_44); -lean_ctor_set(x_24, 0, x_4); -x_45 = lean_array_push(x_41, x_24); -x_46 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__12; -x_47 = l_Lean_addMacroScope(x_32, x_46, x_29); -x_48 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__13; -lean_inc(x_2); -x_49 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_49, 0, x_48); -lean_ctor_set(x_49, 1, x_2); +x_39 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_39, 0, x_38); +lean_ctor_set(x_39, 1, x_4); +x_40 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__6; +lean_inc(x_5); +x_41 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_41, 0, x_5); +lean_ctor_set(x_41, 1, x_40); +lean_ctor_set(x_41, 2, x_36); +lean_ctor_set(x_41, 3, x_39); +x_42 = l_Array_empty___closed__1; +x_43 = lean_array_push(x_42, x_41); +x_44 = lean_array_push(x_42, x_9); +x_45 = l_myMacro____x40_Init_Notation___hyg_9707____closed__9; +lean_inc(x_5); +lean_ctor_set(x_25, 1, x_45); +lean_ctor_set(x_25, 0, x_5); +x_46 = lean_array_push(x_42, x_25); +x_47 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__12; +x_48 = l_Lean_addMacroScope(x_33, x_47, x_30); +x_49 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__13; lean_inc(x_3); -x_50 = lean_alloc_ctor(1, 2, 0); +x_50 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_3); -x_51 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__11; lean_inc(x_4); -x_52 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_52, 0, x_4); -lean_ctor_set(x_52, 1, x_51); -lean_ctor_set(x_52, 2, x_47); -lean_ctor_set(x_52, 3, x_50); -x_53 = lean_array_push(x_41, x_52); -lean_inc(x_4); -x_54 = l_Lean_Syntax_mkStrLit(x_26, x_4); -lean_dec(x_26); -x_55 = lean_array_push(x_41, x_54); -x_56 = l_Lean_nullKind___closed__2; -x_57 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_57, 0, x_56); -lean_ctor_set(x_57, 1, x_55); -x_58 = lean_array_push(x_53, x_57); -x_59 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_60 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_60, 0, x_59); -lean_ctor_set(x_60, 1, x_58); -x_61 = lean_array_push(x_41, x_60); -x_62 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_63 = lean_array_push(x_61, x_62); -x_64 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_64, 0, x_56); -lean_ctor_set(x_64, 1, x_63); -x_65 = lean_array_push(x_45, x_64); -x_66 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; -lean_inc(x_4); -x_67 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_67, 0, x_4); -lean_ctor_set(x_67, 1, x_66); -x_68 = lean_array_push(x_65, x_67); -x_69 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; -x_70 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_68); -x_71 = lean_array_push(x_43, x_70); -x_72 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_72, 0, x_56); -lean_ctor_set(x_72, 1, x_71); -x_73 = lean_array_push(x_42, x_72); -x_74 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_74, 0, x_59); -lean_ctor_set(x_74, 1, x_73); -x_75 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1(x_1, x_2, x_3, x_4, x_5, x_74, x_9, x_10, x_11, x_12, x_13, x_14, x_33); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -return x_75; +x_51 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_4); +x_52 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__11; +lean_inc(x_5); +x_53 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_53, 0, x_5); +lean_ctor_set(x_53, 1, x_52); +lean_ctor_set(x_53, 2, x_48); +lean_ctor_set(x_53, 3, x_51); +x_54 = lean_array_push(x_42, x_53); +lean_inc(x_5); +x_55 = l_Lean_Syntax_mkStrLit(x_27, x_5); +lean_dec(x_27); +x_56 = lean_array_push(x_42, x_55); +x_57 = l_Lean_nullKind___closed__2; +x_58 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_58, 0, x_57); +lean_ctor_set(x_58, 1, x_56); +x_59 = lean_array_push(x_54, x_58); +x_60 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_61 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_61, 0, x_60); +lean_ctor_set(x_61, 1, x_59); +x_62 = lean_array_push(x_42, x_61); +x_63 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_64 = lean_array_push(x_62, x_63); +x_65 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_65, 0, x_57); +lean_ctor_set(x_65, 1, x_64); +x_66 = lean_array_push(x_46, x_65); +x_67 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; +lean_inc(x_5); +x_68 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_68, 0, x_5); +lean_ctor_set(x_68, 1, x_67); +x_69 = lean_array_push(x_66, x_68); +x_70 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; +x_71 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_71, 0, x_70); +lean_ctor_set(x_71, 1, x_69); +x_72 = lean_array_push(x_44, x_71); +x_73 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_73, 0, x_57); +lean_ctor_set(x_73, 1, x_72); +x_74 = lean_array_push(x_43, x_73); +x_75 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_75, 0, x_60); +lean_ctor_set(x_75, 1, x_74); +x_76 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_75, x_10, x_11, x_12, x_13, x_14, x_15, x_34); +return x_76; } else { -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; -x_76 = lean_ctor_get(x_24, 1); -lean_inc(x_76); -lean_dec(x_24); -x_77 = l_Lean_Elab_Term_getCurrMacroScope(x_9, x_10, x_11, x_12, x_13, x_14, x_15); -x_78 = lean_ctor_get(x_77, 0); -lean_inc(x_78); -x_79 = lean_ctor_get(x_77, 1); +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; +x_77 = lean_ctor_get(x_25, 1); +lean_inc(x_77); +lean_dec(x_25); +x_78 = l_Lean_Elab_Term_getCurrMacroScope(x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_79 = lean_ctor_get(x_78, 0); lean_inc(x_79); -lean_dec(x_77); -x_80 = l_Lean_Elab_Term_getMainModule___rarg(x_14, x_79); -x_81 = lean_ctor_get(x_80, 0); -lean_inc(x_81); -x_82 = lean_ctor_get(x_80, 1); +x_80 = lean_ctor_get(x_78, 1); +lean_inc(x_80); +lean_dec(x_78); +x_81 = l_Lean_Elab_Term_getMainModule___rarg(x_15, x_80); +x_82 = lean_ctor_get(x_81, 0); lean_inc(x_82); -lean_dec(x_80); -x_83 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__7; -lean_inc(x_78); -lean_inc(x_81); -x_84 = l_Lean_addMacroScope(x_81, x_83, x_78); -x_85 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__8; -lean_inc(x_2); -x_86 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_86, 0, x_85); -lean_ctor_set(x_86, 1, x_2); +x_83 = lean_ctor_get(x_81, 1); +lean_inc(x_83); +lean_dec(x_81); +x_84 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__7; +lean_inc(x_79); +lean_inc(x_82); +x_85 = l_Lean_addMacroScope(x_82, x_84, x_79); +x_86 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__8; lean_inc(x_3); -x_87 = lean_alloc_ctor(1, 2, 0); +x_87 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_87, 0, x_86); lean_ctor_set(x_87, 1, x_3); -x_88 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__6; lean_inc(x_4); -x_89 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_89, 0, x_4); -lean_ctor_set(x_89, 1, x_88); -lean_ctor_set(x_89, 2, x_84); -lean_ctor_set(x_89, 3, x_87); -x_90 = l_Array_empty___closed__1; -x_91 = lean_array_push(x_90, x_89); -x_92 = lean_array_push(x_90, x_8); -x_93 = l_myMacro____x40_Init_Notation___hyg_9707____closed__9; -lean_inc(x_4); -x_94 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_94, 0, x_4); -lean_ctor_set(x_94, 1, x_93); -x_95 = lean_array_push(x_90, x_94); -x_96 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__12; -x_97 = l_Lean_addMacroScope(x_81, x_96, x_78); -x_98 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__13; -lean_inc(x_2); -x_99 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_99, 0, x_98); -lean_ctor_set(x_99, 1, x_2); +x_88 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_88, 0, x_87); +lean_ctor_set(x_88, 1, x_4); +x_89 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__6; +lean_inc(x_5); +x_90 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_90, 0, x_5); +lean_ctor_set(x_90, 1, x_89); +lean_ctor_set(x_90, 2, x_85); +lean_ctor_set(x_90, 3, x_88); +x_91 = l_Array_empty___closed__1; +x_92 = lean_array_push(x_91, x_90); +x_93 = lean_array_push(x_91, x_9); +x_94 = l_myMacro____x40_Init_Notation___hyg_9707____closed__9; +lean_inc(x_5); +x_95 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_95, 0, x_5); +lean_ctor_set(x_95, 1, x_94); +x_96 = lean_array_push(x_91, x_95); +x_97 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__12; +x_98 = l_Lean_addMacroScope(x_82, x_97, x_79); +x_99 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__13; lean_inc(x_3); -x_100 = lean_alloc_ctor(1, 2, 0); +x_100 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_100, 0, x_99); lean_ctor_set(x_100, 1, x_3); -x_101 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__11; lean_inc(x_4); -x_102 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_102, 0, x_4); -lean_ctor_set(x_102, 1, x_101); -lean_ctor_set(x_102, 2, x_97); -lean_ctor_set(x_102, 3, x_100); -x_103 = lean_array_push(x_90, x_102); -lean_inc(x_4); -x_104 = l_Lean_Syntax_mkStrLit(x_76, x_4); -lean_dec(x_76); -x_105 = lean_array_push(x_90, x_104); -x_106 = l_Lean_nullKind___closed__2; -x_107 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_107, 0, x_106); -lean_ctor_set(x_107, 1, x_105); -x_108 = lean_array_push(x_103, x_107); -x_109 = l_myMacro____x40_Init_Notation___hyg_38____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_90, x_110); -x_112 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_113 = lean_array_push(x_111, x_112); -x_114 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_114, 0, x_106); -lean_ctor_set(x_114, 1, x_113); -x_115 = lean_array_push(x_95, x_114); -x_116 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; -lean_inc(x_4); -x_117 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_117, 0, x_4); -lean_ctor_set(x_117, 1, x_116); -x_118 = lean_array_push(x_115, x_117); -x_119 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; -x_120 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_120, 0, x_119); -lean_ctor_set(x_120, 1, x_118); -x_121 = lean_array_push(x_92, x_120); -x_122 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_122, 0, x_106); -lean_ctor_set(x_122, 1, x_121); -x_123 = lean_array_push(x_91, x_122); -x_124 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_124, 0, x_109); -lean_ctor_set(x_124, 1, x_123); -x_125 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1(x_1, x_2, x_3, x_4, x_5, x_124, x_9, x_10, x_11, x_12, x_13, x_14, x_82); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -return x_125; +x_101 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_101, 0, x_100); +lean_ctor_set(x_101, 1, x_4); +x_102 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__11; +lean_inc(x_5); +x_103 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_103, 0, x_5); +lean_ctor_set(x_103, 1, x_102); +lean_ctor_set(x_103, 2, x_98); +lean_ctor_set(x_103, 3, x_101); +x_104 = lean_array_push(x_91, x_103); +lean_inc(x_5); +x_105 = l_Lean_Syntax_mkStrLit(x_77, x_5); +lean_dec(x_77); +x_106 = lean_array_push(x_91, x_105); +x_107 = l_Lean_nullKind___closed__2; +x_108 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_108, 0, x_107); +lean_ctor_set(x_108, 1, x_106); +x_109 = lean_array_push(x_104, x_108); +x_110 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_111 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_111, 0, x_110); +lean_ctor_set(x_111, 1, x_109); +x_112 = lean_array_push(x_91, x_111); +x_113 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_114 = lean_array_push(x_112, x_113); +x_115 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_115, 0, x_107); +lean_ctor_set(x_115, 1, x_114); +x_116 = lean_array_push(x_96, x_115); +x_117 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; +lean_inc(x_5); +x_118 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_118, 0, x_5); +lean_ctor_set(x_118, 1, x_117); +x_119 = lean_array_push(x_116, x_118); +x_120 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; +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_93, x_121); +x_123 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_123, 0, x_107); +lean_ctor_set(x_123, 1, x_122); +x_124 = lean_array_push(x_92, x_123); +x_125 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_125, 0, x_110); +lean_ctor_set(x_125, 1, x_124); +x_126 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_125, x_10, x_11, x_12, x_13, x_14, x_15, x_83); +return x_126; } } else { -lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; -lean_dec(x_24); -lean_dec(x_8); -x_126 = l_Lean_Elab_Term_getFVarLocalDecl_x21___closed__1; -x_127 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__3; -x_128 = lean_panic_fn(x_126, x_127); +lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; +lean_dec(x_25); +lean_dec(x_9); +x_127 = l_Lean_Elab_Term_getFVarLocalDecl_x21___closed__1; +x_128 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__3; +x_129 = lean_panic_fn(x_127, x_128); +lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -lean_inc(x_9); -x_129 = lean_apply_7(x_128, x_9, x_10, x_11, x_12, x_13, x_14, x_15); -if (lean_obj_tag(x_129) == 0) +x_130 = lean_apply_7(x_129, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +if (lean_obj_tag(x_130) == 0) { -lean_object* x_130; lean_object* x_131; lean_object* x_132; -x_130 = lean_ctor_get(x_129, 0); -lean_inc(x_130); -x_131 = lean_ctor_get(x_129, 1); +lean_object* x_131; lean_object* x_132; lean_object* x_133; +x_131 = lean_ctor_get(x_130, 0); lean_inc(x_131); -lean_dec(x_129); -x_132 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1(x_1, x_2, x_3, x_4, x_5, x_130, x_9, x_10, x_11, x_12, x_13, x_14, x_131); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -return x_132; +x_132 = lean_ctor_get(x_130, 1); +lean_inc(x_132); +lean_dec(x_130); +x_133 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_131, x_10, x_11, x_12, x_13, x_14, x_15, x_132); +return x_133; } else { -uint8_t x_133; +uint8_t x_134; +lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); -lean_dec(x_9); +lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_133 = !lean_is_exclusive(x_129); -if (x_133 == 0) +x_134 = !lean_is_exclusive(x_130); +if (x_134 == 0) { -return x_129; +return x_130; } else { -lean_object* x_134; lean_object* x_135; lean_object* x_136; -x_134 = lean_ctor_get(x_129, 0); -x_135 = lean_ctor_get(x_129, 1); +lean_object* x_135; lean_object* x_136; lean_object* x_137; +x_135 = lean_ctor_get(x_130, 0); +x_136 = lean_ctor_get(x_130, 1); +lean_inc(x_136); lean_inc(x_135); -lean_inc(x_134); -lean_dec(x_129); -x_136 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_136, 0, x_134); -lean_ctor_set(x_136, 1, x_135); -return x_136; +lean_dec(x_130); +x_137 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_137, 0, x_135); +lean_ctor_set(x_137, 1, x_136); +return x_137; } } } @@ -3076,7 +4019,7 @@ return x_136; } } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__1() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__1() { _start: { lean_object* x_1; @@ -3084,22 +4027,22 @@ x_1 = lean_mk_string("Array.push"); return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__2() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__1; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__3() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__1; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__2; +x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -3107,7 +4050,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__4() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__4() { _start: { lean_object* x_1; @@ -3115,7 +4058,15 @@ x_1 = lean_mk_string("push"); return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__5() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__5() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_ReaderT_pure___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1___rarg___boxed), 8, 0); +return x_1; +} +} +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__6() { _start: { lean_object* x_1; @@ -3123,27 +4074,27 @@ x_1 = lean_mk_string("antiquotation scope must contain at least one antiquotatio return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__6() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__5; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__6; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__7() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__6; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__7; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__8() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__9() { _start: { lean_object* x_1; @@ -3151,22 +4102,22 @@ x_1 = lean_mk_string("Array.map"); return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__9() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__8; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__9; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__10() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__8; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__9; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__9; +x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__10; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -3174,7 +4125,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -3184,7 +4135,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -3194,7 +4145,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -3204,7 +4155,7 @@ x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__14() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__15() { _start: { lean_object* x_1; @@ -3212,7 +4163,7 @@ x_1 = lean_mk_string("with"); return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -3222,7 +4173,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -3232,7 +4183,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__17() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__18() { _start: { lean_object* x_1; lean_object* x_2; @@ -3241,13 +4192,13 @@ x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__18() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__5; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__17; +x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__18; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -3255,7 +4206,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__19() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__20() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -3265,7 +4216,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__20() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__21() { _start: { lean_object* x_1; lean_object* x_2; @@ -3274,13 +4225,13 @@ x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__21() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_instReprOption___rarg___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__20; +x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__21; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -3288,7 +4239,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__22() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__23() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -3298,7 +4249,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__23() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__24() { _start: { lean_object* x_1; @@ -3306,22 +4257,22 @@ x_1 = lean_mk_string("Array.zipWith"); return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__24() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__25() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__23; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__24; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__25() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__23; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__24; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__24; +x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__25; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -3329,7 +4280,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__26() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__27() { _start: { lean_object* x_1; @@ -3337,7 +4288,7 @@ x_1 = lean_mk_string("zipWith"); return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__27() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__28() { _start: { lean_object* x_1; @@ -3345,27 +4296,27 @@ x_1 = lean_mk_string("too many antiquotations in antiquotation scope; don't be g return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__28() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__29() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__27; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__28; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__29() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__30() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__28; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__29; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___boxed__const__1() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___boxed__const__1() { _start: { size_t x_1; lean_object* x_2; @@ -3374,7 +4325,7 @@ x_2 = lean_box_usize(x_1); return x_2; } } -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, size_t x_8, size_t 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* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, size_t x_8, size_t x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17) { _start: { lean_object* x_18; uint8_t x_29; @@ -3395,7 +4346,7 @@ goto block_80; else { uint8_t x_84; -x_84 = l_Lean_Elab_Term_Quotation_isAntiquotSplice(x_30); +x_84 = l_Lean_Syntax_isAntiquotSplice(x_30); if (x_84 == 0) { uint8_t x_85; @@ -3409,198 +4360,221 @@ goto block_80; } else { -lean_object* x_87; lean_object* x_88; lean_object* x_89; size_t 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_87; lean_object* x_88; lean_object* x_89; x_87 = l_Lean_Elab_Term_Quotation_antiquotScopeKind_x3f(x_30); -x_88 = l_Lean_Elab_Term_Quotation_getAntiquotScopeContents(x_30); -x_89 = lean_array_get_size(x_88); -x_90 = lean_usize_of_nat(x_89); -lean_dec(x_89); -x_91 = x_88; -x_92 = lean_box_usize(x_90); -x_93 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___boxed__const__1; -x_94 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1___boxed), 10, 3); -lean_closure_set(x_94, 0, x_92); -lean_closure_set(x_94, 1, x_93); -lean_closure_set(x_94, 2, x_91); -x_95 = x_94; +x_88 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__5; lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); -x_96 = lean_apply_7(x_95, x_11, x_12, x_13, x_14, x_15, x_16, x_17); -if (lean_obj_tag(x_96) == 0) +x_89 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms(x_30, x_88, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +if (lean_obj_tag(x_89) == 0) { -lean_object* x_97; lean_object* x_98; lean_object* x_99; -x_97 = lean_ctor_get(x_96, 0); -lean_inc(x_97); -x_98 = lean_ctor_get(x_96, 1); -lean_inc(x_98); +lean_object* x_90; lean_object* x_91; uint8_t x_92; +x_90 = lean_ctor_get(x_89, 0); +lean_inc(x_90); +x_91 = lean_ctor_get(x_89, 1); +lean_inc(x_91); +lean_dec(x_89); +x_92 = !lean_is_exclusive(x_90); +if (x_92 == 0) +{ +lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; size_t x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; +x_93 = lean_ctor_get(x_90, 0); +x_94 = lean_ctor_get(x_90, 1); +x_95 = l_Lean_Elab_Term_Quotation_getAntiquotScopeContents(x_93); +x_96 = lean_array_get_size(x_95); +x_97 = lean_usize_of_nat(x_96); lean_dec(x_96); +x_98 = x_95; +x_99 = lean_box_usize(x_97); +x_100 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___boxed__const__1; +x_101 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__2___boxed), 10, 3); +lean_closure_set(x_101, 0, x_99); +lean_closure_set(x_101, 1, x_100); +lean_closure_set(x_101, 2, x_98); +x_102 = x_101; +lean_inc(x_16); lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); lean_inc(x_11); -lean_inc(x_30); -x_99 = l_Lean_Elab_Term_Quotation_getAntiquotationIds(x_30, x_11, x_12, x_13, x_14, x_15, x_16, x_98); -if (lean_obj_tag(x_99) == 0) +x_103 = lean_apply_7(x_102, x_11, x_12, x_13, x_14, x_15, x_16, x_91); +if (lean_obj_tag(x_103) == 0) { -lean_object* x_100; -x_100 = lean_ctor_get(x_99, 0); -lean_inc(x_100); -if (lean_obj_tag(x_100) == 0) -{ -lean_object* x_101; lean_object* x_102; lean_object* x_103; uint8_t x_104; -lean_dec(x_97); -lean_dec(x_87); -lean_dec(x_30); -lean_dec(x_10); -x_101 = lean_ctor_get(x_99, 1); -lean_inc(x_101); -lean_dec(x_99); -x_102 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__7; -lean_inc(x_15); -lean_inc(x_11); -x_103 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(x_6, x_102, x_11, x_12, x_13, x_14, x_15, x_16, x_101); -x_104 = !lean_is_exclusive(x_103); -if (x_104 == 0) -{ -x_18 = x_103; -goto block_28; -} -else -{ -lean_object* x_105; lean_object* x_106; lean_object* x_107; -x_105 = lean_ctor_get(x_103, 0); -x_106 = lean_ctor_get(x_103, 1); -lean_inc(x_106); +lean_object* x_104; lean_object* x_105; lean_object* x_106; +x_104 = lean_ctor_get(x_103, 0); +lean_inc(x_104); +x_105 = lean_ctor_get(x_103, 1); lean_inc(x_105); lean_dec(x_103); -x_107 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_107, 0, x_105); -lean_ctor_set(x_107, 1, x_106); -x_18 = x_107; +lean_inc(x_15); +lean_inc(x_11); +lean_inc(x_93); +x_106 = l_Lean_Elab_Term_Quotation_getAntiquotationIds(x_93, x_11, x_12, x_13, x_14, x_15, x_16, x_105); +if (lean_obj_tag(x_106) == 0) +{ +lean_object* x_107; +x_107 = lean_ctor_get(x_106, 0); +lean_inc(x_107); +if (lean_obj_tag(x_107) == 0) +{ +lean_object* x_108; lean_object* x_109; lean_object* x_110; uint8_t x_111; +lean_dec(x_104); +lean_free_object(x_90); +lean_dec(x_94); +lean_dec(x_93); +lean_dec(x_87); +lean_dec(x_10); +x_108 = lean_ctor_get(x_106, 1); +lean_inc(x_108); +lean_dec(x_106); +x_109 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__8; +lean_inc(x_15); +lean_inc(x_11); +x_110 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(x_6, x_109, x_11, x_12, x_13, x_14, x_15, x_16, x_108); +x_111 = !lean_is_exclusive(x_110); +if (x_111 == 0) +{ +x_18 = x_110; +goto block_28; +} +else +{ +lean_object* x_112; lean_object* x_113; lean_object* x_114; +x_112 = lean_ctor_get(x_110, 0); +x_113 = lean_ctor_get(x_110, 1); +lean_inc(x_113); +lean_inc(x_112); +lean_dec(x_110); +x_114 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_114, 0, x_112); +lean_ctor_set(x_114, 1, x_113); +x_18 = x_114; goto block_28; } } else { -lean_object* x_108; -x_108 = lean_ctor_get(x_100, 1); -lean_inc(x_108); -if (lean_obj_tag(x_108) == 0) +lean_object* x_115; +x_115 = lean_ctor_get(x_107, 1); +lean_inc(x_115); +if (lean_obj_tag(x_115) == 0) { if (lean_obj_tag(x_87) == 0) { -lean_object* x_109; uint8_t x_110; -x_109 = lean_ctor_get(x_99, 1); -lean_inc(x_109); -lean_dec(x_99); -x_110 = !lean_is_exclusive(x_100); -if (x_110 == 0) +lean_object* x_116; uint8_t x_117; +x_116 = lean_ctor_get(x_106, 1); +lean_inc(x_116); +lean_dec(x_106); +x_117 = !lean_is_exclusive(x_107); +if (x_117 == 0) { -lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; 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; -x_111 = lean_ctor_get(x_100, 0); -x_112 = lean_ctor_get(x_100, 1); -lean_dec(x_112); -x_113 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_109); -x_114 = lean_ctor_get(x_113, 0); -lean_inc(x_114); -x_115 = lean_ctor_get(x_113, 1); -lean_inc(x_115); -lean_dec(x_113); -x_116 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_115); -x_117 = lean_ctor_get(x_116, 0); -lean_inc(x_117); -x_118 = lean_ctor_get(x_116, 1); -lean_inc(x_118); -lean_dec(x_116); -x_119 = l_myMacro____x40_Init_Notation___hyg_9405____closed__6; +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; +x_118 = lean_ctor_get(x_107, 0); +x_119 = lean_ctor_get(x_107, 1); +lean_dec(x_119); +x_120 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_116); +x_121 = lean_ctor_get(x_120, 0); +lean_inc(x_121); +x_122 = lean_ctor_get(x_120, 1); +lean_inc(x_122); +lean_dec(x_120); +x_123 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_122); +x_124 = lean_ctor_get(x_123, 0); +lean_inc(x_124); +x_125 = lean_ctor_get(x_123, 1); +lean_inc(x_125); +lean_dec(x_123); +x_126 = l_myMacro____x40_Init_Notation___hyg_9405____closed__6; lean_inc(x_3); -x_120 = lean_name_mk_string(x_3, x_119); -lean_inc(x_120); -x_121 = l_Lean_addMacroScope(x_117, x_120, x_114); +x_127 = lean_name_mk_string(x_3, x_126); +lean_inc(x_127); +x_128 = l_Lean_addMacroScope(x_124, x_127, x_121); lean_inc(x_4); -x_122 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_122, 0, x_120); -lean_ctor_set(x_122, 1, x_4); +lean_ctor_set(x_90, 1, x_4); +lean_ctor_set(x_90, 0, x_127); lean_inc(x_5); -lean_ctor_set(x_100, 1, x_5); -lean_ctor_set(x_100, 0, x_122); -x_123 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__10; +lean_ctor_set(x_107, 1, x_5); +lean_ctor_set(x_107, 0, x_90); +x_129 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__11; lean_inc(x_2); -x_124 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_124, 0, x_2); -lean_ctor_set(x_124, 1, x_123); -lean_ctor_set(x_124, 2, x_121); -lean_ctor_set(x_124, 3, x_100); -x_125 = l_Array_empty___closed__1; -x_126 = lean_array_push(x_125, x_124); -x_127 = l_myMacro____x40_Init_Notation___hyg_9707____closed__9; +x_130 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_130, 0, x_2); +lean_ctor_set(x_130, 1, x_129); +lean_ctor_set(x_130, 2, x_128); +lean_ctor_set(x_130, 3, x_107); +x_131 = l_Array_empty___closed__1; +x_132 = lean_array_push(x_131, x_130); +x_133 = l_myMacro____x40_Init_Notation___hyg_9707____closed__9; lean_inc(x_2); -x_128 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_128, 0, x_2); -lean_ctor_set(x_128, 1, x_127); -x_129 = lean_array_push(x_125, x_128); -x_130 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; +x_134 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_134, 0, x_2); +lean_ctor_set(x_134, 1, x_133); +x_135 = lean_array_push(x_131, x_134); +x_136 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; lean_inc(x_2); -x_131 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_131, 0, x_2); -lean_ctor_set(x_131, 1, x_130); -x_132 = lean_array_push(x_125, x_131); -lean_inc(x_111); -x_133 = lean_array_push(x_125, x_111); -x_134 = l_Lean_nullKind___closed__2; -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 = lean_array_push(x_125, x_135); -x_137 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; +x_137 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_137, 0, x_2); +lean_ctor_set(x_137, 1, x_136); +x_138 = lean_array_push(x_131, x_137); +lean_inc(x_118); +x_139 = lean_array_push(x_131, x_118); +x_140 = l_Lean_nullKind___closed__2; +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_131, x_141); +x_143 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; lean_inc(x_2); -x_138 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_138, 0, x_2); -lean_ctor_set(x_138, 1, x_137); -x_139 = lean_array_push(x_136, x_138); -x_140 = l_Lean_instInhabitedSyntax; -x_141 = lean_unsigned_to_nat(0u); -x_142 = lean_array_get(x_140, x_97, x_141); -lean_dec(x_97); -x_143 = lean_array_push(x_139, x_142); -x_144 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; -x_145 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_145, 0, x_144); -lean_ctor_set(x_145, 1, x_143); -x_146 = lean_array_push(x_132, x_145); -x_147 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; -x_148 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_148, 0, x_147); -lean_ctor_set(x_148, 1, x_146); -x_149 = lean_array_push(x_125, x_148); -x_150 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_151 = lean_array_push(x_149, x_150); -x_152 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_152, 0, x_134); -lean_ctor_set(x_152, 1, x_151); -x_153 = lean_array_push(x_129, x_152); -x_154 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; -lean_inc(x_2); -x_155 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_155, 0, x_2); -lean_ctor_set(x_155, 1, x_154); -x_156 = lean_array_push(x_153, x_155); -x_157 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; +x_144 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_144, 0, x_2); +lean_ctor_set(x_144, 1, x_143); +x_145 = lean_array_push(x_142, x_144); +x_146 = l_Lean_instInhabitedSyntax; +x_147 = lean_unsigned_to_nat(0u); +x_148 = lean_array_get(x_146, x_104, x_147); +lean_dec(x_104); +x_149 = lean_array_push(x_145, x_148); +x_150 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_151 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_151, 0, x_150); +lean_ctor_set(x_151, 1, x_149); +x_152 = lean_array_push(x_138, x_151); +x_153 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +x_154 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_154, 0, x_153); +lean_ctor_set(x_154, 1, x_152); +x_155 = lean_array_push(x_131, x_154); +x_156 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_157 = lean_array_push(x_155, x_156); x_158 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_158, 0, x_157); -lean_ctor_set(x_158, 1, x_156); -x_159 = lean_array_push(x_125, x_158); -x_160 = lean_array_push(x_159, x_111); -x_161 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_161, 0, x_134); +lean_ctor_set(x_158, 0, x_140); +lean_ctor_set(x_158, 1, x_157); +x_159 = lean_array_push(x_135, x_158); +x_160 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; +lean_inc(x_2); +x_161 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_161, 0, x_2); lean_ctor_set(x_161, 1, x_160); -x_162 = lean_array_push(x_126, x_161); -x_163 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_162 = lean_array_push(x_159, x_161); +x_163 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; 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_131, x_164); +x_166 = lean_array_push(x_165, x_118); +x_167 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_167, 0, x_140); +lean_ctor_set(x_167, 1, x_166); +x_168 = lean_array_push(x_132, x_167); +x_169 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_170 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_170, 0, x_169); +lean_ctor_set(x_170, 1, x_168); lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); @@ -3611,117 +4585,116 @@ lean_inc(x_2); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_165 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2(x_3, x_4, x_5, x_2, x_10, x_87, x_30, x_164, x_11, x_12, x_13, x_14, x_15, x_16, x_118); -lean_dec(x_30); -x_18 = x_165; +x_171 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_94, x_3, x_4, x_5, x_2, x_10, x_87, x_93, x_170, x_11, x_12, x_13, x_14, x_15, x_16, x_125); +lean_dec(x_93); +x_18 = x_171; goto block_28; } else { -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; -x_166 = lean_ctor_get(x_100, 0); -lean_inc(x_166); -lean_dec(x_100); -x_167 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_109); -x_168 = lean_ctor_get(x_167, 0); -lean_inc(x_168); -x_169 = lean_ctor_get(x_167, 1); -lean_inc(x_169); -lean_dec(x_167); -x_170 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_169); -x_171 = lean_ctor_get(x_170, 0); -lean_inc(x_171); -x_172 = lean_ctor_get(x_170, 1); +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; lean_object* x_225; +x_172 = lean_ctor_get(x_107, 0); lean_inc(x_172); -lean_dec(x_170); -x_173 = l_myMacro____x40_Init_Notation___hyg_9405____closed__6; -lean_inc(x_3); -x_174 = lean_name_mk_string(x_3, x_173); +lean_dec(x_107); +x_173 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_116); +x_174 = lean_ctor_get(x_173, 0); lean_inc(x_174); -x_175 = l_Lean_addMacroScope(x_171, x_174, x_168); +x_175 = lean_ctor_get(x_173, 1); +lean_inc(x_175); +lean_dec(x_173); +x_176 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_175); +x_177 = lean_ctor_get(x_176, 0); +lean_inc(x_177); +x_178 = lean_ctor_get(x_176, 1); +lean_inc(x_178); +lean_dec(x_176); +x_179 = l_myMacro____x40_Init_Notation___hyg_9405____closed__6; +lean_inc(x_3); +x_180 = lean_name_mk_string(x_3, x_179); +lean_inc(x_180); +x_181 = l_Lean_addMacroScope(x_177, x_180, x_174); lean_inc(x_4); -x_176 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_176, 0, x_174); -lean_ctor_set(x_176, 1, x_4); +lean_ctor_set(x_90, 1, x_4); +lean_ctor_set(x_90, 0, x_180); lean_inc(x_5); -x_177 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_177, 0, x_176); -lean_ctor_set(x_177, 1, x_5); -x_178 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__10; +x_182 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_182, 0, x_90); +lean_ctor_set(x_182, 1, x_5); +x_183 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__11; lean_inc(x_2); -x_179 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_179, 0, x_2); -lean_ctor_set(x_179, 1, x_178); -lean_ctor_set(x_179, 2, x_175); -lean_ctor_set(x_179, 3, x_177); -x_180 = l_Array_empty___closed__1; -x_181 = lean_array_push(x_180, x_179); -x_182 = l_myMacro____x40_Init_Notation___hyg_9707____closed__9; +x_184 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_184, 0, x_2); +lean_ctor_set(x_184, 1, x_183); +lean_ctor_set(x_184, 2, x_181); +lean_ctor_set(x_184, 3, x_182); +x_185 = l_Array_empty___closed__1; +x_186 = lean_array_push(x_185, x_184); +x_187 = l_myMacro____x40_Init_Notation___hyg_9707____closed__9; lean_inc(x_2); -x_183 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_183, 0, x_2); -lean_ctor_set(x_183, 1, x_182); -x_184 = lean_array_push(x_180, x_183); -x_185 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; +x_188 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_188, 0, x_2); +lean_ctor_set(x_188, 1, x_187); +x_189 = lean_array_push(x_185, x_188); +x_190 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; lean_inc(x_2); -x_186 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_186, 0, x_2); -lean_ctor_set(x_186, 1, x_185); -x_187 = lean_array_push(x_180, x_186); -lean_inc(x_166); -x_188 = lean_array_push(x_180, x_166); -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 = lean_array_push(x_180, x_190); -x_192 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; +x_191 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_191, 0, x_2); +lean_ctor_set(x_191, 1, x_190); +x_192 = lean_array_push(x_185, x_191); +lean_inc(x_172); +x_193 = lean_array_push(x_185, x_172); +x_194 = l_Lean_nullKind___closed__2; +x_195 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_195, 0, x_194); +lean_ctor_set(x_195, 1, x_193); +x_196 = lean_array_push(x_185, x_195); +x_197 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; lean_inc(x_2); -x_193 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_193, 0, x_2); -lean_ctor_set(x_193, 1, x_192); -x_194 = lean_array_push(x_191, x_193); -x_195 = l_Lean_instInhabitedSyntax; -x_196 = lean_unsigned_to_nat(0u); -x_197 = lean_array_get(x_195, x_97, x_196); -lean_dec(x_97); -x_198 = lean_array_push(x_194, x_197); -x_199 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; -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_187, x_200); -x_202 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; -x_203 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_203, 0, x_202); -lean_ctor_set(x_203, 1, x_201); -x_204 = lean_array_push(x_180, x_203); -x_205 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_206 = lean_array_push(x_204, x_205); -x_207 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_207, 0, x_189); -lean_ctor_set(x_207, 1, x_206); -x_208 = lean_array_push(x_184, x_207); -x_209 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; +x_198 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_198, 0, x_2); +lean_ctor_set(x_198, 1, x_197); +x_199 = lean_array_push(x_196, x_198); +x_200 = l_Lean_instInhabitedSyntax; +x_201 = lean_unsigned_to_nat(0u); +x_202 = lean_array_get(x_200, x_104, x_201); +lean_dec(x_104); +x_203 = lean_array_push(x_199, x_202); +x_204 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +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 = lean_array_push(x_192, x_205); +x_207 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +x_208 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_208, 0, x_207); +lean_ctor_set(x_208, 1, x_206); +x_209 = lean_array_push(x_185, x_208); +x_210 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_211 = lean_array_push(x_209, x_210); +x_212 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_212, 0, x_194); +lean_ctor_set(x_212, 1, x_211); +x_213 = lean_array_push(x_189, x_212); +x_214 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; lean_inc(x_2); -x_210 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_210, 0, x_2); -lean_ctor_set(x_210, 1, x_209); -x_211 = lean_array_push(x_208, x_210); -x_212 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; -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_180, x_213); -x_215 = lean_array_push(x_214, x_166); -x_216 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_216, 0, x_189); -lean_ctor_set(x_216, 1, x_215); -x_217 = lean_array_push(x_181, x_216); -x_218 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -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_215 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_215, 0, x_2); +lean_ctor_set(x_215, 1, x_214); +x_216 = lean_array_push(x_213, x_215); +x_217 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; +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 = lean_array_push(x_185, x_218); +x_220 = lean_array_push(x_219, x_172); +x_221 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_221, 0, x_194); +lean_ctor_set(x_221, 1, x_220); +x_222 = lean_array_push(x_186, x_221); +x_223 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_224 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_224, 0, x_223); +lean_ctor_set(x_224, 1, x_222); lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); @@ -3732,143 +4705,142 @@ lean_inc(x_2); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_220 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2(x_3, x_4, x_5, x_2, x_10, x_87, x_30, x_219, x_11, x_12, x_13, x_14, x_15, x_16, x_172); -lean_dec(x_30); -x_18 = x_220; +x_225 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_94, x_3, x_4, x_5, x_2, x_10, x_87, x_93, x_224, x_11, x_12, x_13, x_14, x_15, x_16, x_178); +lean_dec(x_93); +x_18 = x_225; goto block_28; } } else { -lean_object* x_221; -x_221 = lean_ctor_get(x_87, 0); -lean_inc(x_221); -if (lean_obj_tag(x_221) == 1) +lean_object* x_226; +x_226 = lean_ctor_get(x_87, 0); +lean_inc(x_226); +if (lean_obj_tag(x_226) == 1) { -lean_object* x_222; -x_222 = lean_ctor_get(x_221, 0); -lean_inc(x_222); -if (lean_obj_tag(x_222) == 0) -{ -lean_object* x_223; uint8_t x_224; -x_223 = lean_ctor_get(x_99, 1); -lean_inc(x_223); -lean_dec(x_99); -x_224 = !lean_is_exclusive(x_100); -if (x_224 == 0) -{ -lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; uint8_t x_229; -x_225 = lean_ctor_get(x_100, 0); -x_226 = lean_ctor_get(x_100, 1); -lean_dec(x_226); -x_227 = lean_ctor_get(x_221, 1); +lean_object* x_227; +x_227 = lean_ctor_get(x_226, 0); lean_inc(x_227); -lean_dec(x_221); -x_228 = l_myMacro____x40_Init_Notation___hyg_11399____closed__1; -x_229 = lean_string_dec_eq(x_227, x_228); -lean_dec(x_227); +if (lean_obj_tag(x_227) == 0) +{ +lean_object* x_228; uint8_t x_229; +x_228 = lean_ctor_get(x_106, 1); +lean_inc(x_228); +lean_dec(x_106); +x_229 = !lean_is_exclusive(x_107); if (x_229 == 0) { -lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; -x_230 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_223); -x_231 = lean_ctor_get(x_230, 0); -lean_inc(x_231); -x_232 = lean_ctor_get(x_230, 1); +lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; uint8_t x_234; +x_230 = lean_ctor_get(x_107, 0); +x_231 = lean_ctor_get(x_107, 1); +lean_dec(x_231); +x_232 = lean_ctor_get(x_226, 1); lean_inc(x_232); -lean_dec(x_230); -x_233 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_232); -x_234 = lean_ctor_get(x_233, 0); -lean_inc(x_234); -x_235 = lean_ctor_get(x_233, 1); -lean_inc(x_235); -lean_dec(x_233); -x_236 = l_myMacro____x40_Init_Notation___hyg_9405____closed__6; -lean_inc(x_3); -x_237 = lean_name_mk_string(x_3, x_236); +lean_dec(x_226); +x_233 = l_myMacro____x40_Init_Notation___hyg_11399____closed__1; +x_234 = lean_string_dec_eq(x_232, x_233); +lean_dec(x_232); +if (x_234 == 0) +{ +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; +x_235 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_228); +x_236 = lean_ctor_get(x_235, 0); +lean_inc(x_236); +x_237 = lean_ctor_get(x_235, 1); lean_inc(x_237); -x_238 = l_Lean_addMacroScope(x_234, x_237, x_231); +lean_dec(x_235); +x_238 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_237); +x_239 = lean_ctor_get(x_238, 0); +lean_inc(x_239); +x_240 = lean_ctor_get(x_238, 1); +lean_inc(x_240); +lean_dec(x_238); +x_241 = l_myMacro____x40_Init_Notation___hyg_9405____closed__6; +lean_inc(x_3); +x_242 = lean_name_mk_string(x_3, x_241); +lean_inc(x_242); +x_243 = l_Lean_addMacroScope(x_239, x_242, x_236); lean_inc(x_4); -x_239 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_239, 0, x_237); -lean_ctor_set(x_239, 1, x_4); +lean_ctor_set(x_90, 1, x_4); +lean_ctor_set(x_90, 0, x_242); lean_inc(x_5); -lean_ctor_set(x_100, 1, x_5); -lean_ctor_set(x_100, 0, x_239); -x_240 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__10; +lean_ctor_set(x_107, 1, x_5); +lean_ctor_set(x_107, 0, x_90); +x_244 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__11; lean_inc(x_2); -x_241 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_241, 0, x_2); -lean_ctor_set(x_241, 1, x_240); -lean_ctor_set(x_241, 2, x_238); -lean_ctor_set(x_241, 3, x_100); -x_242 = l_Array_empty___closed__1; -x_243 = lean_array_push(x_242, x_241); -x_244 = l_myMacro____x40_Init_Notation___hyg_9707____closed__9; -lean_inc(x_2); -x_245 = lean_alloc_ctor(2, 2, 0); +x_245 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_245, 0, x_2); lean_ctor_set(x_245, 1, x_244); -x_246 = lean_array_push(x_242, x_245); -x_247 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; +lean_ctor_set(x_245, 2, x_243); +lean_ctor_set(x_245, 3, x_107); +x_246 = l_Array_empty___closed__1; +x_247 = lean_array_push(x_246, x_245); +x_248 = l_myMacro____x40_Init_Notation___hyg_9707____closed__9; lean_inc(x_2); -x_248 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_248, 0, x_2); -lean_ctor_set(x_248, 1, x_247); -x_249 = lean_array_push(x_242, x_248); -lean_inc(x_225); -x_250 = lean_array_push(x_242, x_225); -x_251 = l_Lean_nullKind___closed__2; -x_252 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_252, 0, x_251); -lean_ctor_set(x_252, 1, x_250); -x_253 = lean_array_push(x_242, x_252); -x_254 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; +x_249 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_249, 0, x_2); +lean_ctor_set(x_249, 1, x_248); +x_250 = lean_array_push(x_246, x_249); +x_251 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; lean_inc(x_2); -x_255 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_255, 0, x_2); -lean_ctor_set(x_255, 1, x_254); -x_256 = lean_array_push(x_253, x_255); -x_257 = l_Lean_instInhabitedSyntax; -x_258 = lean_unsigned_to_nat(0u); -x_259 = lean_array_get(x_257, x_97, x_258); -lean_dec(x_97); -x_260 = lean_array_push(x_256, x_259); -x_261 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; -x_262 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_262, 0, x_261); -lean_ctor_set(x_262, 1, x_260); -x_263 = lean_array_push(x_249, x_262); -x_264 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; -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_242, x_265); -x_267 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_268 = lean_array_push(x_266, x_267); +x_252 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_252, 0, x_2); +lean_ctor_set(x_252, 1, x_251); +x_253 = lean_array_push(x_246, x_252); +lean_inc(x_230); +x_254 = lean_array_push(x_246, x_230); +x_255 = l_Lean_nullKind___closed__2; +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_246, x_256); +x_258 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; +lean_inc(x_2); +x_259 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_259, 0, x_2); +lean_ctor_set(x_259, 1, x_258); +x_260 = lean_array_push(x_257, x_259); +x_261 = l_Lean_instInhabitedSyntax; +x_262 = lean_unsigned_to_nat(0u); +x_263 = lean_array_get(x_261, x_104, x_262); +lean_dec(x_104); +x_264 = lean_array_push(x_260, x_263); +x_265 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_266 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_266, 0, x_265); +lean_ctor_set(x_266, 1, x_264); +x_267 = lean_array_push(x_253, x_266); +x_268 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; x_269 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_269, 0, x_251); -lean_ctor_set(x_269, 1, x_268); +lean_ctor_set(x_269, 0, x_268); +lean_ctor_set(x_269, 1, x_267); x_270 = lean_array_push(x_246, x_269); -x_271 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; +x_271 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_272 = lean_array_push(x_270, x_271); +x_273 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_273, 0, x_255); +lean_ctor_set(x_273, 1, x_272); +x_274 = lean_array_push(x_250, x_273); +x_275 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; lean_inc(x_2); -x_272 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_272, 0, x_2); -lean_ctor_set(x_272, 1, x_271); -x_273 = lean_array_push(x_270, x_272); -x_274 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; -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_242, x_275); -x_277 = lean_array_push(x_276, x_225); -x_278 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_278, 0, x_251); -lean_ctor_set(x_278, 1, x_277); -x_279 = lean_array_push(x_243, x_278); -x_280 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -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_276 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_276, 0, x_2); +lean_ctor_set(x_276, 1, x_275); +x_277 = lean_array_push(x_274, x_276); +x_278 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; +x_279 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_279, 0, x_278); +lean_ctor_set(x_279, 1, x_277); +x_280 = lean_array_push(x_246, x_279); +x_281 = lean_array_push(x_280, x_230); +x_282 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_282, 0, x_255); +lean_ctor_set(x_282, 1, x_281); +x_283 = lean_array_push(x_247, x_282); +x_284 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_285 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_285, 0, x_284); +lean_ctor_set(x_285, 1, x_283); lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); @@ -3879,179 +4851,178 @@ lean_inc(x_2); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_282 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2(x_3, x_4, x_5, x_2, x_10, x_87, x_30, x_281, x_11, x_12, x_13, x_14, x_15, x_16, x_235); -lean_dec(x_30); +x_286 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_94, x_3, x_4, x_5, x_2, x_10, x_87, x_93, x_285, x_11, x_12, x_13, x_14, x_15, x_16, x_240); +lean_dec(x_93); lean_dec(x_87); -x_18 = x_282; +x_18 = x_286; goto block_28; } else { -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; -x_283 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_223); -x_284 = lean_ctor_get(x_283, 0); -lean_inc(x_284); -x_285 = lean_ctor_get(x_283, 1); -lean_inc(x_285); -lean_dec(x_283); -x_286 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_285); -x_287 = lean_ctor_get(x_286, 0); -lean_inc(x_287); -x_288 = lean_ctor_get(x_286, 1); +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; +x_287 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_228); +x_288 = lean_ctor_get(x_287, 0); lean_inc(x_288); -lean_dec(x_286); -x_289 = l_Lean_Parser_Tactic_match___closed__1; +x_289 = lean_ctor_get(x_287, 1); +lean_inc(x_289); +lean_dec(x_287); +x_290 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_289); +x_291 = lean_ctor_get(x_290, 0); +lean_inc(x_291); +x_292 = lean_ctor_get(x_290, 1); +lean_inc(x_292); +lean_dec(x_290); +x_293 = l_Lean_Parser_Tactic_match___closed__1; lean_inc(x_2); -x_290 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_290, 0, x_2); -lean_ctor_set(x_290, 1, x_289); -x_291 = l_Array_empty___closed__1; -x_292 = lean_array_push(x_291, x_290); -x_293 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; -lean_inc(x_225); -x_294 = lean_array_push(x_293, x_225); -x_295 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; -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_291, x_296); -x_298 = l_Lean_nullKind___closed__2; -x_299 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_299, 0, x_298); -lean_ctor_set(x_299, 1, x_297); -x_300 = lean_array_push(x_292, x_299); -x_301 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_302 = lean_array_push(x_300, x_301); -x_303 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__14; +x_294 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_294, 0, x_2); +lean_ctor_set(x_294, 1, x_293); +x_295 = l_Array_empty___closed__1; +x_296 = lean_array_push(x_295, x_294); +x_297 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; +lean_inc(x_230); +x_298 = lean_array_push(x_297, x_230); +x_299 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__13; +x_300 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_300, 0, x_299); +lean_ctor_set(x_300, 1, x_298); +x_301 = lean_array_push(x_295, x_300); +x_302 = l_Lean_nullKind___closed__2; +x_303 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_303, 0, x_302); +lean_ctor_set(x_303, 1, x_301); +x_304 = lean_array_push(x_296, x_303); +x_305 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_306 = lean_array_push(x_304, x_305); +x_307 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__15; lean_inc(x_2); -x_304 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_304, 0, x_2); -lean_ctor_set(x_304, 1, x_303); -x_305 = lean_array_push(x_302, x_304); -x_306 = l_Lean_Parser_Tactic_intro___closed__7; +x_308 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_308, 0, x_2); +lean_ctor_set(x_308, 1, x_307); +x_309 = lean_array_push(x_306, x_308); +x_310 = l_Lean_Parser_Tactic_intro___closed__7; lean_inc(x_2); -x_307 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_307, 0, x_2); -lean_ctor_set(x_307, 1, x_306); -lean_inc(x_307); -x_308 = lean_array_push(x_291, x_307); -x_309 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_309, 0, x_298); -lean_ctor_set(x_309, 1, x_308); -x_310 = lean_array_push(x_291, x_309); -x_311 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__19; -lean_inc(x_284); -lean_inc(x_287); -x_312 = l_Lean_addMacroScope(x_287, x_311, x_284); -x_313 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__6; +x_311 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_311, 0, x_2); +lean_ctor_set(x_311, 1, x_310); +lean_inc(x_311); +x_312 = lean_array_push(x_295, x_311); +x_313 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_313, 0, x_302); +lean_ctor_set(x_313, 1, x_312); +x_314 = lean_array_push(x_295, x_313); +x_315 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__20; +lean_inc(x_288); +lean_inc(x_291); +x_316 = l_Lean_addMacroScope(x_291, x_315, x_288); +x_317 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__6; lean_inc(x_4); -x_314 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_314, 0, x_313); -lean_ctor_set(x_314, 1, x_4); +lean_ctor_set(x_90, 1, x_4); +lean_ctor_set(x_90, 0, x_317); lean_inc(x_5); -lean_ctor_set(x_100, 1, x_5); -lean_ctor_set(x_100, 0, x_314); -x_315 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__18; +lean_ctor_set(x_107, 1, x_5); +lean_ctor_set(x_107, 0, x_90); +x_318 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__19; lean_inc(x_2); -x_316 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_316, 0, x_2); -lean_ctor_set(x_316, 1, x_315); -lean_ctor_set(x_316, 2, x_312); -lean_ctor_set(x_316, 3, x_100); -x_317 = lean_array_push(x_291, x_316); -x_318 = lean_array_push(x_291, x_225); -x_319 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_319, 0, x_298); +x_319 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_319, 0, x_2); lean_ctor_set(x_319, 1, x_318); -x_320 = lean_array_push(x_317, x_319); -x_321 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +lean_ctor_set(x_319, 2, x_316); +lean_ctor_set(x_319, 3, x_107); +x_320 = lean_array_push(x_295, x_319); +x_321 = lean_array_push(x_295, x_230); x_322 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_322, 0, x_321); -lean_ctor_set(x_322, 1, x_320); -x_323 = lean_array_push(x_291, x_322); -x_324 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_324, 0, x_298); -lean_ctor_set(x_324, 1, x_323); -x_325 = lean_array_push(x_291, x_324); -x_326 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; -lean_inc(x_2); -x_327 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_327, 0, x_2); +lean_ctor_set(x_322, 0, x_302); +lean_ctor_set(x_322, 1, x_321); +x_323 = lean_array_push(x_320, x_322); +x_324 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_325 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_325, 0, x_324); +lean_ctor_set(x_325, 1, x_323); +x_326 = lean_array_push(x_295, x_325); +x_327 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_327, 0, x_302); lean_ctor_set(x_327, 1, x_326); -lean_inc(x_327); -x_328 = lean_array_push(x_325, x_327); -x_329 = lean_array_to_list(lean_box(0), x_97); -x_330 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__2(x_329); -x_331 = l_Lean_mkOptionalNode___closed__2; -x_332 = lean_array_push(x_331, x_330); -x_333 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__5; -x_334 = l_Lean_Syntax_mkCApp(x_333, x_332); -x_335 = lean_array_push(x_328, x_334); -x_336 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; -x_337 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_337, 0, x_336); -lean_ctor_set(x_337, 1, x_335); -x_338 = lean_array_push(x_291, x_337); -x_339 = lean_array_push(x_338, x_307); -x_340 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__22; -x_341 = l_Lean_addMacroScope(x_287, x_340, x_284); -x_342 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__3; +x_328 = lean_array_push(x_295, x_327); +x_329 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; +lean_inc(x_2); +x_330 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_330, 0, x_2); +lean_ctor_set(x_330, 1, x_329); +lean_inc(x_330); +x_331 = lean_array_push(x_328, x_330); +x_332 = lean_array_to_list(lean_box(0), x_104); +x_333 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_332); +x_334 = l_Lean_mkOptionalNode___closed__2; +x_335 = lean_array_push(x_334, x_333); +x_336 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__5; +x_337 = l_Lean_Syntax_mkCApp(x_336, x_335); +x_338 = lean_array_push(x_331, x_337); +x_339 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; +x_340 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_340, 0, x_339); +lean_ctor_set(x_340, 1, x_338); +x_341 = lean_array_push(x_295, x_340); +x_342 = lean_array_push(x_341, x_311); +x_343 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__23; +x_344 = l_Lean_addMacroScope(x_291, x_343, x_288); +x_345 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__3; lean_inc(x_4); -x_343 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_343, 0, x_342); -lean_ctor_set(x_343, 1, x_4); +x_346 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_346, 0, x_345); +lean_ctor_set(x_346, 1, x_4); lean_inc(x_5); -x_344 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_344, 0, x_343); -lean_ctor_set(x_344, 1, x_5); -x_345 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__21; +x_347 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_347, 0, x_346); +lean_ctor_set(x_347, 1, x_5); +x_348 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22; lean_inc(x_2); -x_346 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_346, 0, x_2); -lean_ctor_set(x_346, 1, x_345); -lean_ctor_set(x_346, 2, x_341); -lean_ctor_set(x_346, 3, x_344); -x_347 = lean_array_push(x_291, x_346); -x_348 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_348, 0, x_298); -lean_ctor_set(x_348, 1, x_347); -x_349 = lean_array_push(x_291, x_348); -x_350 = lean_array_push(x_349, x_327); -x_351 = l_addParenHeuristic___closed__2; +x_349 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_349, 0, x_2); +lean_ctor_set(x_349, 1, x_348); +lean_ctor_set(x_349, 2, x_344); +lean_ctor_set(x_349, 3, x_347); +x_350 = lean_array_push(x_295, x_349); +x_351 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_351, 0, x_302); +lean_ctor_set(x_351, 1, x_350); +x_352 = lean_array_push(x_295, x_351); +x_353 = lean_array_push(x_352, x_330); +x_354 = l_addParenHeuristic___closed__2; lean_inc(x_2); -x_352 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_352, 0, x_2); -lean_ctor_set(x_352, 1, x_351); -x_353 = lean_array_push(x_291, x_352); -x_354 = lean_array_push(x_353, x_301); -x_355 = l_term_x5b___x2c_x5d___closed__11; +x_355 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_355, 0, x_2); +lean_ctor_set(x_355, 1, x_354); +x_356 = lean_array_push(x_295, x_355); +x_357 = lean_array_push(x_356, x_305); +x_358 = l_term_x5b___x2c_x5d___closed__11; lean_inc(x_2); -x_356 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_356, 0, x_2); -lean_ctor_set(x_356, 1, x_355); -x_357 = lean_array_push(x_354, x_356); -x_358 = l_term_x23_x5b___x2c_x5d___closed__2; -x_359 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_359, 0, x_358); -lean_ctor_set(x_359, 1, x_357); -x_360 = lean_array_push(x_350, x_359); -x_361 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_361, 0, x_336); -lean_ctor_set(x_361, 1, x_360); -x_362 = lean_array_push(x_339, x_361); -x_363 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_363, 0, x_298); -lean_ctor_set(x_363, 1, x_362); -x_364 = lean_array_push(x_310, x_363); -x_365 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_359 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_359, 0, x_2); +lean_ctor_set(x_359, 1, x_358); +x_360 = lean_array_push(x_357, x_359); +x_361 = l_term_x23_x5b___x2c_x5d___closed__2; +x_362 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_362, 0, x_361); +lean_ctor_set(x_362, 1, x_360); +x_363 = lean_array_push(x_353, x_362); +x_364 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_364, 0, x_339); +lean_ctor_set(x_364, 1, x_363); +x_365 = lean_array_push(x_342, x_364); x_366 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_366, 0, x_365); -lean_ctor_set(x_366, 1, x_364); -x_367 = lean_array_push(x_305, x_366); -x_368 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +lean_ctor_set(x_366, 0, x_302); +lean_ctor_set(x_366, 1, x_365); +x_367 = lean_array_push(x_314, x_366); +x_368 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; 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 = lean_array_push(x_309, x_369); +x_371 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__12; +x_372 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_372, 0, x_371); +lean_ctor_set(x_372, 1, x_370); lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); @@ -4062,128 +5033,127 @@ lean_inc(x_2); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_370 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2(x_3, x_4, x_5, x_2, x_10, x_87, x_30, x_369, x_11, x_12, x_13, x_14, x_15, x_16, x_288); -lean_dec(x_30); +x_373 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_94, x_3, x_4, x_5, x_2, x_10, x_87, x_93, x_372, x_11, x_12, x_13, x_14, x_15, x_16, x_292); +lean_dec(x_93); lean_dec(x_87); -x_18 = x_370; +x_18 = x_373; goto block_28; } } else { -lean_object* x_371; lean_object* x_372; lean_object* x_373; uint8_t x_374; -x_371 = lean_ctor_get(x_100, 0); -lean_inc(x_371); -lean_dec(x_100); -x_372 = lean_ctor_get(x_221, 1); -lean_inc(x_372); -lean_dec(x_221); -x_373 = l_myMacro____x40_Init_Notation___hyg_11399____closed__1; -x_374 = lean_string_dec_eq(x_372, x_373); -lean_dec(x_372); -if (x_374 == 0) -{ -lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; 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; -x_375 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_223); -x_376 = lean_ctor_get(x_375, 0); -lean_inc(x_376); -x_377 = lean_ctor_get(x_375, 1); -lean_inc(x_377); +lean_object* x_374; lean_object* x_375; lean_object* x_376; uint8_t x_377; +x_374 = lean_ctor_get(x_107, 0); +lean_inc(x_374); +lean_dec(x_107); +x_375 = lean_ctor_get(x_226, 1); +lean_inc(x_375); +lean_dec(x_226); +x_376 = l_myMacro____x40_Init_Notation___hyg_11399____closed__1; +x_377 = lean_string_dec_eq(x_375, x_376); lean_dec(x_375); -x_378 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_377); +if (x_377 == 0) +{ +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; +x_378 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_228); x_379 = lean_ctor_get(x_378, 0); lean_inc(x_379); x_380 = lean_ctor_get(x_378, 1); lean_inc(x_380); lean_dec(x_378); -x_381 = l_myMacro____x40_Init_Notation___hyg_9405____closed__6; -lean_inc(x_3); -x_382 = lean_name_mk_string(x_3, x_381); +x_381 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_380); +x_382 = lean_ctor_get(x_381, 0); lean_inc(x_382); -x_383 = l_Lean_addMacroScope(x_379, x_382, x_376); +x_383 = lean_ctor_get(x_381, 1); +lean_inc(x_383); +lean_dec(x_381); +x_384 = l_myMacro____x40_Init_Notation___hyg_9405____closed__6; +lean_inc(x_3); +x_385 = lean_name_mk_string(x_3, x_384); +lean_inc(x_385); +x_386 = l_Lean_addMacroScope(x_382, x_385, x_379); lean_inc(x_4); -x_384 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_384, 0, x_382); -lean_ctor_set(x_384, 1, x_4); +lean_ctor_set(x_90, 1, x_4); +lean_ctor_set(x_90, 0, x_385); lean_inc(x_5); -x_385 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_385, 0, x_384); -lean_ctor_set(x_385, 1, x_5); -x_386 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__10; +x_387 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_387, 0, x_90); +lean_ctor_set(x_387, 1, x_5); +x_388 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__11; lean_inc(x_2); -x_387 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_387, 0, x_2); -lean_ctor_set(x_387, 1, x_386); -lean_ctor_set(x_387, 2, x_383); -lean_ctor_set(x_387, 3, x_385); -x_388 = l_Array_empty___closed__1; -x_389 = lean_array_push(x_388, x_387); -x_390 = l_myMacro____x40_Init_Notation___hyg_9707____closed__9; +x_389 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_389, 0, x_2); +lean_ctor_set(x_389, 1, x_388); +lean_ctor_set(x_389, 2, x_386); +lean_ctor_set(x_389, 3, x_387); +x_390 = l_Array_empty___closed__1; +x_391 = lean_array_push(x_390, x_389); +x_392 = l_myMacro____x40_Init_Notation___hyg_9707____closed__9; lean_inc(x_2); -x_391 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_391, 0, x_2); -lean_ctor_set(x_391, 1, x_390); -x_392 = lean_array_push(x_388, x_391); -x_393 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; +x_393 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_393, 0, x_2); +lean_ctor_set(x_393, 1, x_392); +x_394 = lean_array_push(x_390, x_393); +x_395 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; lean_inc(x_2); -x_394 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_394, 0, x_2); -lean_ctor_set(x_394, 1, x_393); -x_395 = lean_array_push(x_388, x_394); -lean_inc(x_371); -x_396 = lean_array_push(x_388, x_371); -x_397 = l_Lean_nullKind___closed__2; -x_398 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_398, 0, x_397); -lean_ctor_set(x_398, 1, x_396); -x_399 = lean_array_push(x_388, x_398); -x_400 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; +x_396 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_396, 0, x_2); +lean_ctor_set(x_396, 1, x_395); +x_397 = lean_array_push(x_390, x_396); +lean_inc(x_374); +x_398 = lean_array_push(x_390, x_374); +x_399 = l_Lean_nullKind___closed__2; +x_400 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_400, 0, x_399); +lean_ctor_set(x_400, 1, x_398); +x_401 = lean_array_push(x_390, x_400); +x_402 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; lean_inc(x_2); -x_401 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_401, 0, x_2); -lean_ctor_set(x_401, 1, x_400); -x_402 = lean_array_push(x_399, x_401); -x_403 = l_Lean_instInhabitedSyntax; -x_404 = lean_unsigned_to_nat(0u); -x_405 = lean_array_get(x_403, x_97, x_404); -lean_dec(x_97); -x_406 = lean_array_push(x_402, x_405); -x_407 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; -x_408 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_408, 0, x_407); -lean_ctor_set(x_408, 1, x_406); -x_409 = lean_array_push(x_395, x_408); -x_410 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; -x_411 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_411, 0, x_410); -lean_ctor_set(x_411, 1, x_409); -x_412 = lean_array_push(x_388, x_411); -x_413 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_414 = lean_array_push(x_412, x_413); -x_415 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_415, 0, x_397); -lean_ctor_set(x_415, 1, x_414); -x_416 = lean_array_push(x_392, x_415); -x_417 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; +x_403 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_403, 0, x_2); +lean_ctor_set(x_403, 1, x_402); +x_404 = lean_array_push(x_401, x_403); +x_405 = l_Lean_instInhabitedSyntax; +x_406 = lean_unsigned_to_nat(0u); +x_407 = lean_array_get(x_405, x_104, x_406); +lean_dec(x_104); +x_408 = lean_array_push(x_404, x_407); +x_409 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_410 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_410, 0, x_409); +lean_ctor_set(x_410, 1, x_408); +x_411 = lean_array_push(x_397, x_410); +x_412 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +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_390, x_413); +x_415 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_416 = lean_array_push(x_414, x_415); +x_417 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_417, 0, x_399); +lean_ctor_set(x_417, 1, x_416); +x_418 = lean_array_push(x_394, x_417); +x_419 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; lean_inc(x_2); -x_418 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_418, 0, x_2); -lean_ctor_set(x_418, 1, x_417); -x_419 = lean_array_push(x_416, x_418); -x_420 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; -x_421 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_421, 0, x_420); -lean_ctor_set(x_421, 1, x_419); -x_422 = lean_array_push(x_388, x_421); -x_423 = lean_array_push(x_422, x_371); -x_424 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_424, 0, x_397); -lean_ctor_set(x_424, 1, x_423); -x_425 = lean_array_push(x_389, x_424); -x_426 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_427 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_427, 0, x_426); -lean_ctor_set(x_427, 1, x_425); +x_420 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_420, 0, x_2); +lean_ctor_set(x_420, 1, x_419); +x_421 = lean_array_push(x_418, x_420); +x_422 = l_myMacro____x40_Init_Notation___hyg_9707____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_390, x_423); +x_425 = lean_array_push(x_424, x_374); +x_426 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_426, 0, x_399); +lean_ctor_set(x_426, 1, x_425); +x_427 = lean_array_push(x_391, x_426); +x_428 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_429 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_429, 0, x_428); +lean_ctor_set(x_429, 1, x_427); lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); @@ -4194,180 +5164,179 @@ lean_inc(x_2); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_428 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2(x_3, x_4, x_5, x_2, x_10, x_87, x_30, x_427, x_11, x_12, x_13, x_14, x_15, x_16, x_380); -lean_dec(x_30); +x_430 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_94, x_3, x_4, x_5, x_2, x_10, x_87, x_93, x_429, x_11, x_12, x_13, x_14, x_15, x_16, x_383); +lean_dec(x_93); lean_dec(x_87); -x_18 = x_428; +x_18 = x_430; goto block_28; } else { -lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; 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; -x_429 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_223); -x_430 = lean_ctor_get(x_429, 0); -lean_inc(x_430); -x_431 = lean_ctor_get(x_429, 1); -lean_inc(x_431); -lean_dec(x_429); -x_432 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_431); -x_433 = lean_ctor_get(x_432, 0); +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; +x_431 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_228); +x_432 = lean_ctor_get(x_431, 0); +lean_inc(x_432); +x_433 = lean_ctor_get(x_431, 1); lean_inc(x_433); -x_434 = lean_ctor_get(x_432, 1); -lean_inc(x_434); -lean_dec(x_432); -x_435 = l_Lean_Parser_Tactic_match___closed__1; +lean_dec(x_431); +x_434 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_433); +x_435 = lean_ctor_get(x_434, 0); +lean_inc(x_435); +x_436 = lean_ctor_get(x_434, 1); +lean_inc(x_436); +lean_dec(x_434); +x_437 = l_Lean_Parser_Tactic_match___closed__1; lean_inc(x_2); -x_436 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_436, 0, x_2); -lean_ctor_set(x_436, 1, x_435); -x_437 = l_Array_empty___closed__1; -x_438 = lean_array_push(x_437, x_436); -x_439 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; -lean_inc(x_371); -x_440 = lean_array_push(x_439, x_371); -x_441 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; -x_442 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_442, 0, x_441); -lean_ctor_set(x_442, 1, x_440); -x_443 = lean_array_push(x_437, x_442); -x_444 = l_Lean_nullKind___closed__2; -x_445 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_445, 0, x_444); -lean_ctor_set(x_445, 1, x_443); -x_446 = lean_array_push(x_438, x_445); -x_447 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_448 = lean_array_push(x_446, x_447); -x_449 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__14; +x_438 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_438, 0, x_2); +lean_ctor_set(x_438, 1, x_437); +x_439 = l_Array_empty___closed__1; +x_440 = lean_array_push(x_439, x_438); +x_441 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; +lean_inc(x_374); +x_442 = lean_array_push(x_441, x_374); +x_443 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__13; +x_444 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_444, 0, x_443); +lean_ctor_set(x_444, 1, x_442); +x_445 = lean_array_push(x_439, x_444); +x_446 = l_Lean_nullKind___closed__2; +x_447 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_447, 0, x_446); +lean_ctor_set(x_447, 1, x_445); +x_448 = lean_array_push(x_440, x_447); +x_449 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_450 = lean_array_push(x_448, x_449); +x_451 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__15; lean_inc(x_2); -x_450 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_450, 0, x_2); -lean_ctor_set(x_450, 1, x_449); -x_451 = lean_array_push(x_448, x_450); -x_452 = l_Lean_Parser_Tactic_intro___closed__7; +x_452 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_452, 0, x_2); +lean_ctor_set(x_452, 1, x_451); +x_453 = lean_array_push(x_450, x_452); +x_454 = l_Lean_Parser_Tactic_intro___closed__7; lean_inc(x_2); -x_453 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_453, 0, x_2); -lean_ctor_set(x_453, 1, x_452); -lean_inc(x_453); -x_454 = lean_array_push(x_437, x_453); -x_455 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_455, 0, x_444); +x_455 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_455, 0, x_2); lean_ctor_set(x_455, 1, x_454); -x_456 = lean_array_push(x_437, x_455); -x_457 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__19; -lean_inc(x_430); -lean_inc(x_433); -x_458 = l_Lean_addMacroScope(x_433, x_457, x_430); -x_459 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__6; +lean_inc(x_455); +x_456 = lean_array_push(x_439, x_455); +x_457 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_457, 0, x_446); +lean_ctor_set(x_457, 1, x_456); +x_458 = lean_array_push(x_439, x_457); +x_459 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__20; +lean_inc(x_432); +lean_inc(x_435); +x_460 = l_Lean_addMacroScope(x_435, x_459, x_432); +x_461 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__6; lean_inc(x_4); -x_460 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_460, 0, x_459); -lean_ctor_set(x_460, 1, x_4); +lean_ctor_set(x_90, 1, x_4); +lean_ctor_set(x_90, 0, x_461); lean_inc(x_5); -x_461 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_461, 0, x_460); -lean_ctor_set(x_461, 1, x_5); -x_462 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__18; +x_462 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_462, 0, x_90); +lean_ctor_set(x_462, 1, x_5); +x_463 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__19; lean_inc(x_2); -x_463 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_463, 0, x_2); -lean_ctor_set(x_463, 1, x_462); -lean_ctor_set(x_463, 2, x_458); -lean_ctor_set(x_463, 3, x_461); -x_464 = lean_array_push(x_437, x_463); -x_465 = lean_array_push(x_437, x_371); -x_466 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_466, 0, x_444); -lean_ctor_set(x_466, 1, x_465); -x_467 = lean_array_push(x_464, x_466); -x_468 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_469 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_469, 0, x_468); -lean_ctor_set(x_469, 1, x_467); -x_470 = lean_array_push(x_437, x_469); -x_471 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_471, 0, x_444); -lean_ctor_set(x_471, 1, x_470); -x_472 = lean_array_push(x_437, x_471); -x_473 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; +x_464 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_464, 0, x_2); +lean_ctor_set(x_464, 1, x_463); +lean_ctor_set(x_464, 2, x_460); +lean_ctor_set(x_464, 3, x_462); +x_465 = lean_array_push(x_439, x_464); +x_466 = lean_array_push(x_439, x_374); +x_467 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_467, 0, x_446); +lean_ctor_set(x_467, 1, x_466); +x_468 = lean_array_push(x_465, x_467); +x_469 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_470 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_470, 0, x_469); +lean_ctor_set(x_470, 1, x_468); +x_471 = lean_array_push(x_439, x_470); +x_472 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_472, 0, x_446); +lean_ctor_set(x_472, 1, x_471); +x_473 = lean_array_push(x_439, x_472); +x_474 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; lean_inc(x_2); -x_474 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_474, 0, x_2); -lean_ctor_set(x_474, 1, x_473); -lean_inc(x_474); -x_475 = lean_array_push(x_472, x_474); -x_476 = lean_array_to_list(lean_box(0), x_97); -x_477 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__2(x_476); -x_478 = l_Lean_mkOptionalNode___closed__2; -x_479 = lean_array_push(x_478, x_477); -x_480 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__5; -x_481 = l_Lean_Syntax_mkCApp(x_480, x_479); -x_482 = lean_array_push(x_475, x_481); -x_483 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; -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_437, x_484); -x_486 = lean_array_push(x_485, x_453); -x_487 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__22; -x_488 = l_Lean_addMacroScope(x_433, x_487, x_430); -x_489 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__3; +x_475 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_475, 0, x_2); +lean_ctor_set(x_475, 1, x_474); +lean_inc(x_475); +x_476 = lean_array_push(x_473, x_475); +x_477 = lean_array_to_list(lean_box(0), x_104); +x_478 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_477); +x_479 = l_Lean_mkOptionalNode___closed__2; +x_480 = lean_array_push(x_479, x_478); +x_481 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__5; +x_482 = l_Lean_Syntax_mkCApp(x_481, x_480); +x_483 = lean_array_push(x_476, x_482); +x_484 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; +x_485 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_485, 0, x_484); +lean_ctor_set(x_485, 1, x_483); +x_486 = lean_array_push(x_439, x_485); +x_487 = lean_array_push(x_486, x_455); +x_488 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__23; +x_489 = l_Lean_addMacroScope(x_435, x_488, x_432); +x_490 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__3; lean_inc(x_4); -x_490 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_490, 0, x_489); -lean_ctor_set(x_490, 1, x_4); -lean_inc(x_5); -x_491 = lean_alloc_ctor(1, 2, 0); +x_491 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_491, 0, x_490); -lean_ctor_set(x_491, 1, x_5); -x_492 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__21; +lean_ctor_set(x_491, 1, x_4); +lean_inc(x_5); +x_492 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_492, 0, x_491); +lean_ctor_set(x_492, 1, x_5); +x_493 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22; lean_inc(x_2); -x_493 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_493, 0, x_2); -lean_ctor_set(x_493, 1, x_492); -lean_ctor_set(x_493, 2, x_488); -lean_ctor_set(x_493, 3, x_491); -x_494 = lean_array_push(x_437, x_493); -x_495 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_495, 0, x_444); -lean_ctor_set(x_495, 1, x_494); -x_496 = lean_array_push(x_437, x_495); -x_497 = lean_array_push(x_496, x_474); -x_498 = l_addParenHeuristic___closed__2; +x_494 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_494, 0, x_2); +lean_ctor_set(x_494, 1, x_493); +lean_ctor_set(x_494, 2, x_489); +lean_ctor_set(x_494, 3, x_492); +x_495 = lean_array_push(x_439, x_494); +x_496 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_496, 0, x_446); +lean_ctor_set(x_496, 1, x_495); +x_497 = lean_array_push(x_439, x_496); +x_498 = lean_array_push(x_497, x_475); +x_499 = l_addParenHeuristic___closed__2; lean_inc(x_2); -x_499 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_499, 0, x_2); -lean_ctor_set(x_499, 1, x_498); -x_500 = lean_array_push(x_437, x_499); -x_501 = lean_array_push(x_500, x_447); -x_502 = l_term_x5b___x2c_x5d___closed__11; +x_500 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_500, 0, x_2); +lean_ctor_set(x_500, 1, x_499); +x_501 = lean_array_push(x_439, x_500); +x_502 = lean_array_push(x_501, x_449); +x_503 = l_term_x5b___x2c_x5d___closed__11; lean_inc(x_2); -x_503 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_503, 0, x_2); -lean_ctor_set(x_503, 1, x_502); -x_504 = lean_array_push(x_501, x_503); -x_505 = l_term_x23_x5b___x2c_x5d___closed__2; -x_506 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_506, 0, x_505); -lean_ctor_set(x_506, 1, x_504); -x_507 = lean_array_push(x_497, x_506); -x_508 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_508, 0, x_483); -lean_ctor_set(x_508, 1, x_507); -x_509 = lean_array_push(x_486, x_508); -x_510 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_510, 0, x_444); -lean_ctor_set(x_510, 1, x_509); -x_511 = lean_array_push(x_456, x_510); -x_512 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; -x_513 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_513, 0, x_512); -lean_ctor_set(x_513, 1, x_511); -x_514 = lean_array_push(x_451, x_513); -x_515 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; -x_516 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_516, 0, x_515); -lean_ctor_set(x_516, 1, x_514); +x_504 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_504, 0, x_2); +lean_ctor_set(x_504, 1, x_503); +x_505 = lean_array_push(x_502, x_504); +x_506 = l_term_x23_x5b___x2c_x5d___closed__2; +x_507 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_507, 0, x_506); +lean_ctor_set(x_507, 1, x_505); +x_508 = lean_array_push(x_498, x_507); +x_509 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_509, 0, x_484); +lean_ctor_set(x_509, 1, x_508); +x_510 = lean_array_push(x_487, x_509); +x_511 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_511, 0, x_446); +lean_ctor_set(x_511, 1, x_510); +x_512 = lean_array_push(x_458, x_511); +x_513 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; +x_514 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_514, 0, x_513); +lean_ctor_set(x_514, 1, x_512); +x_515 = lean_array_push(x_453, x_514); +x_516 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__12; +x_517 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_517, 0, x_516); +lean_ctor_set(x_517, 1, x_515); lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); @@ -4378,60 +5347,59 @@ lean_inc(x_2); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_517 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2(x_3, x_4, x_5, x_2, x_10, x_87, x_30, x_516, x_11, x_12, x_13, x_14, x_15, x_16, x_434); -lean_dec(x_30); +x_518 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_94, x_3, x_4, x_5, x_2, x_10, x_87, x_93, x_517, x_11, x_12, x_13, x_14, x_15, x_16, x_436); +lean_dec(x_93); lean_dec(x_87); -x_18 = x_517; +x_18 = x_518; goto block_28; } } } else { -lean_object* x_518; uint8_t x_519; -lean_dec(x_222); -lean_dec(x_221); -x_518 = lean_ctor_get(x_99, 1); -lean_inc(x_518); -lean_dec(x_99); -x_519 = !lean_is_exclusive(x_100); -if (x_519 == 0) +lean_object* x_519; uint8_t x_520; +lean_dec(x_227); +lean_dec(x_226); +x_519 = lean_ctor_get(x_106, 1); +lean_inc(x_519); +lean_dec(x_106); +x_520 = !lean_is_exclusive(x_107); +if (x_520 == 0) { -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; -x_520 = lean_ctor_get(x_100, 0); -x_521 = lean_ctor_get(x_100, 1); -lean_dec(x_521); -x_522 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_518); -x_523 = lean_ctor_get(x_522, 0); -lean_inc(x_523); -x_524 = lean_ctor_get(x_522, 1); -lean_inc(x_524); +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; +x_521 = lean_ctor_get(x_107, 0); +x_522 = lean_ctor_get(x_107, 1); lean_dec(x_522); -x_525 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_524); -x_526 = lean_ctor_get(x_525, 0); -lean_inc(x_526); -x_527 = lean_ctor_get(x_525, 1); +x_523 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_519); +x_524 = lean_ctor_get(x_523, 0); +lean_inc(x_524); +x_525 = lean_ctor_get(x_523, 1); +lean_inc(x_525); +lean_dec(x_523); +x_526 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_525); +x_527 = lean_ctor_get(x_526, 0); lean_inc(x_527); -lean_dec(x_525); -x_528 = l_myMacro____x40_Init_Notation___hyg_9405____closed__6; +x_528 = lean_ctor_get(x_526, 1); +lean_inc(x_528); +lean_dec(x_526); +x_529 = l_myMacro____x40_Init_Notation___hyg_9405____closed__6; lean_inc(x_3); -x_529 = lean_name_mk_string(x_3, x_528); -lean_inc(x_529); -x_530 = l_Lean_addMacroScope(x_526, x_529, x_523); +x_530 = lean_name_mk_string(x_3, x_529); +lean_inc(x_530); +x_531 = l_Lean_addMacroScope(x_527, x_530, x_524); lean_inc(x_4); -x_531 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_531, 0, x_529); -lean_ctor_set(x_531, 1, x_4); +lean_ctor_set(x_90, 1, x_4); +lean_ctor_set(x_90, 0, x_530); lean_inc(x_5); -lean_ctor_set(x_100, 1, x_5); -lean_ctor_set(x_100, 0, x_531); -x_532 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__10; +lean_ctor_set(x_107, 1, x_5); +lean_ctor_set(x_107, 0, x_90); +x_532 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__11; lean_inc(x_2); x_533 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_533, 0, x_2); lean_ctor_set(x_533, 1, x_532); -lean_ctor_set(x_533, 2, x_530); -lean_ctor_set(x_533, 3, x_100); +lean_ctor_set(x_533, 2, x_531); +lean_ctor_set(x_533, 3, x_107); x_534 = l_Array_empty___closed__1; x_535 = lean_array_push(x_534, x_533); x_536 = l_myMacro____x40_Init_Notation___hyg_9707____closed__9; @@ -4446,8 +5414,8 @@ x_540 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_540, 0, x_2); lean_ctor_set(x_540, 1, x_539); x_541 = lean_array_push(x_534, x_540); -lean_inc(x_520); -x_542 = lean_array_push(x_534, x_520); +lean_inc(x_521); +x_542 = lean_array_push(x_534, x_521); x_543 = l_Lean_nullKind___closed__2; x_544 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_544, 0, x_543); @@ -4461,8 +5429,8 @@ lean_ctor_set(x_547, 1, x_546); x_548 = lean_array_push(x_545, x_547); x_549 = l_Lean_instInhabitedSyntax; x_550 = lean_unsigned_to_nat(0u); -x_551 = lean_array_get(x_549, x_97, x_550); -lean_dec(x_97); +x_551 = lean_array_get(x_549, x_104, x_550); +lean_dec(x_104); x_552 = lean_array_push(x_548, x_551); x_553 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; x_554 = lean_alloc_ctor(1, 2, 0); @@ -4491,7 +5459,7 @@ x_567 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_567, 0, x_566); lean_ctor_set(x_567, 1, x_565); x_568 = lean_array_push(x_534, x_567); -x_569 = lean_array_push(x_568, x_520); +x_569 = lean_array_push(x_568, x_521); x_570 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_570, 0, x_543); lean_ctor_set(x_570, 1, x_569); @@ -4510,19 +5478,19 @@ lean_inc(x_2); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_574 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2(x_3, x_4, x_5, x_2, x_10, x_87, x_30, x_573, x_11, x_12, x_13, x_14, x_15, x_16, x_527); -lean_dec(x_30); +x_574 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_94, x_3, x_4, x_5, x_2, x_10, x_87, x_93, x_573, x_11, x_12, x_13, x_14, x_15, x_16, x_528); +lean_dec(x_93); lean_dec(x_87); x_18 = x_574; goto block_28; } else { -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; -x_575 = lean_ctor_get(x_100, 0); +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; +x_575 = lean_ctor_get(x_107, 0); lean_inc(x_575); -lean_dec(x_100); -x_576 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_518); +lean_dec(x_107); +x_576 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_519); x_577 = lean_ctor_get(x_576, 0); lean_inc(x_577); x_578 = lean_ctor_get(x_576, 1); @@ -4540,88 +5508,87 @@ x_583 = lean_name_mk_string(x_3, x_582); lean_inc(x_583); x_584 = l_Lean_addMacroScope(x_580, x_583, x_577); lean_inc(x_4); -x_585 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_585, 0, x_583); -lean_ctor_set(x_585, 1, x_4); +lean_ctor_set(x_90, 1, x_4); +lean_ctor_set(x_90, 0, x_583); lean_inc(x_5); -x_586 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_586, 0, x_585); -lean_ctor_set(x_586, 1, x_5); -x_587 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__10; +x_585 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_585, 0, x_90); +lean_ctor_set(x_585, 1, x_5); +x_586 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__11; lean_inc(x_2); -x_588 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_588, 0, x_2); -lean_ctor_set(x_588, 1, x_587); -lean_ctor_set(x_588, 2, x_584); -lean_ctor_set(x_588, 3, x_586); -x_589 = l_Array_empty___closed__1; -x_590 = lean_array_push(x_589, x_588); -x_591 = l_myMacro____x40_Init_Notation___hyg_9707____closed__9; +x_587 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_587, 0, x_2); +lean_ctor_set(x_587, 1, x_586); +lean_ctor_set(x_587, 2, x_584); +lean_ctor_set(x_587, 3, x_585); +x_588 = l_Array_empty___closed__1; +x_589 = lean_array_push(x_588, x_587); +x_590 = l_myMacro____x40_Init_Notation___hyg_9707____closed__9; lean_inc(x_2); -x_592 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_592, 0, x_2); -lean_ctor_set(x_592, 1, x_591); -x_593 = lean_array_push(x_589, x_592); -x_594 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; +x_591 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_591, 0, x_2); +lean_ctor_set(x_591, 1, x_590); +x_592 = lean_array_push(x_588, x_591); +x_593 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; lean_inc(x_2); -x_595 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_595, 0, x_2); -lean_ctor_set(x_595, 1, x_594); -x_596 = lean_array_push(x_589, x_595); +x_594 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_594, 0, x_2); +lean_ctor_set(x_594, 1, x_593); +x_595 = lean_array_push(x_588, x_594); lean_inc(x_575); -x_597 = lean_array_push(x_589, x_575); -x_598 = l_Lean_nullKind___closed__2; -x_599 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_599, 0, x_598); -lean_ctor_set(x_599, 1, x_597); -x_600 = lean_array_push(x_589, x_599); -x_601 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; +x_596 = lean_array_push(x_588, x_575); +x_597 = l_Lean_nullKind___closed__2; +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_588, x_598); +x_600 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; lean_inc(x_2); -x_602 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_602, 0, x_2); -lean_ctor_set(x_602, 1, x_601); -x_603 = lean_array_push(x_600, x_602); -x_604 = l_Lean_instInhabitedSyntax; -x_605 = lean_unsigned_to_nat(0u); -x_606 = lean_array_get(x_604, x_97, x_605); -lean_dec(x_97); -x_607 = lean_array_push(x_603, x_606); -x_608 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; -x_609 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_609, 0, x_608); -lean_ctor_set(x_609, 1, x_607); -x_610 = lean_array_push(x_596, x_609); -x_611 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; -x_612 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_612, 0, x_611); -lean_ctor_set(x_612, 1, x_610); -x_613 = lean_array_push(x_589, x_612); -x_614 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_615 = lean_array_push(x_613, x_614); -x_616 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_616, 0, x_598); -lean_ctor_set(x_616, 1, x_615); -x_617 = lean_array_push(x_593, x_616); -x_618 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; +x_601 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_601, 0, x_2); +lean_ctor_set(x_601, 1, x_600); +x_602 = lean_array_push(x_599, x_601); +x_603 = l_Lean_instInhabitedSyntax; +x_604 = lean_unsigned_to_nat(0u); +x_605 = lean_array_get(x_603, x_104, x_604); +lean_dec(x_104); +x_606 = lean_array_push(x_602, x_605); +x_607 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_608 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_608, 0, x_607); +lean_ctor_set(x_608, 1, x_606); +x_609 = lean_array_push(x_595, x_608); +x_610 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +x_611 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_611, 0, x_610); +lean_ctor_set(x_611, 1, x_609); +x_612 = lean_array_push(x_588, x_611); +x_613 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_614 = lean_array_push(x_612, x_613); +x_615 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_615, 0, x_597); +lean_ctor_set(x_615, 1, x_614); +x_616 = lean_array_push(x_592, x_615); +x_617 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; lean_inc(x_2); -x_619 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_619, 0, x_2); -lean_ctor_set(x_619, 1, x_618); -x_620 = lean_array_push(x_617, x_619); -x_621 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; -x_622 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_622, 0, x_621); -lean_ctor_set(x_622, 1, x_620); -x_623 = lean_array_push(x_589, x_622); -x_624 = lean_array_push(x_623, x_575); -x_625 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_625, 0, x_598); -lean_ctor_set(x_625, 1, x_624); -x_626 = lean_array_push(x_590, x_625); -x_627 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_628 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_628, 0, x_627); -lean_ctor_set(x_628, 1, x_626); +x_618 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_618, 0, x_2); +lean_ctor_set(x_618, 1, x_617); +x_619 = lean_array_push(x_616, x_618); +x_620 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; +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_588, x_621); +x_623 = lean_array_push(x_622, x_575); +x_624 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_624, 0, x_597); +lean_ctor_set(x_624, 1, x_623); +x_625 = lean_array_push(x_589, x_624); +x_626 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_627 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_627, 0, x_626); +lean_ctor_set(x_627, 1, x_625); lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); @@ -4632,127 +5599,126 @@ lean_inc(x_2); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_629 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2(x_3, x_4, x_5, x_2, x_10, x_87, x_30, x_628, x_11, x_12, x_13, x_14, x_15, x_16, x_581); -lean_dec(x_30); +x_628 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_94, x_3, x_4, x_5, x_2, x_10, x_87, x_93, x_627, x_11, x_12, x_13, x_14, x_15, x_16, x_581); +lean_dec(x_93); lean_dec(x_87); -x_18 = x_629; +x_18 = x_628; goto block_28; } } } else { -lean_object* x_630; uint8_t x_631; -lean_dec(x_221); -x_630 = lean_ctor_get(x_99, 1); -lean_inc(x_630); -lean_dec(x_99); -x_631 = !lean_is_exclusive(x_100); -if (x_631 == 0) +lean_object* x_629; uint8_t x_630; +lean_dec(x_226); +x_629 = lean_ctor_get(x_106, 1); +lean_inc(x_629); +lean_dec(x_106); +x_630 = !lean_is_exclusive(x_107); +if (x_630 == 0) { -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; -x_632 = lean_ctor_get(x_100, 0); -x_633 = lean_ctor_get(x_100, 1); -lean_dec(x_633); -x_634 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_630); -x_635 = lean_ctor_get(x_634, 0); +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; +x_631 = lean_ctor_get(x_107, 0); +x_632 = lean_ctor_get(x_107, 1); +lean_dec(x_632); +x_633 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_629); +x_634 = lean_ctor_get(x_633, 0); +lean_inc(x_634); +x_635 = lean_ctor_get(x_633, 1); lean_inc(x_635); -x_636 = lean_ctor_get(x_634, 1); -lean_inc(x_636); -lean_dec(x_634); -x_637 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_636); -x_638 = lean_ctor_get(x_637, 0); +lean_dec(x_633); +x_636 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_635); +x_637 = lean_ctor_get(x_636, 0); +lean_inc(x_637); +x_638 = lean_ctor_get(x_636, 1); lean_inc(x_638); -x_639 = lean_ctor_get(x_637, 1); -lean_inc(x_639); -lean_dec(x_637); -x_640 = l_myMacro____x40_Init_Notation___hyg_9405____closed__6; +lean_dec(x_636); +x_639 = l_myMacro____x40_Init_Notation___hyg_9405____closed__6; lean_inc(x_3); -x_641 = lean_name_mk_string(x_3, x_640); -lean_inc(x_641); -x_642 = l_Lean_addMacroScope(x_638, x_641, x_635); +x_640 = lean_name_mk_string(x_3, x_639); +lean_inc(x_640); +x_641 = l_Lean_addMacroScope(x_637, x_640, x_634); lean_inc(x_4); -x_643 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_643, 0, x_641); -lean_ctor_set(x_643, 1, x_4); +lean_ctor_set(x_90, 1, x_4); +lean_ctor_set(x_90, 0, x_640); lean_inc(x_5); -lean_ctor_set(x_100, 1, x_5); -lean_ctor_set(x_100, 0, x_643); -x_644 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__10; +lean_ctor_set(x_107, 1, x_5); +lean_ctor_set(x_107, 0, x_90); +x_642 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__11; lean_inc(x_2); -x_645 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_645, 0, x_2); -lean_ctor_set(x_645, 1, x_644); -lean_ctor_set(x_645, 2, x_642); -lean_ctor_set(x_645, 3, x_100); -x_646 = l_Array_empty___closed__1; -x_647 = lean_array_push(x_646, x_645); -x_648 = l_myMacro____x40_Init_Notation___hyg_9707____closed__9; +x_643 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_643, 0, x_2); +lean_ctor_set(x_643, 1, x_642); +lean_ctor_set(x_643, 2, x_641); +lean_ctor_set(x_643, 3, x_107); +x_644 = l_Array_empty___closed__1; +x_645 = lean_array_push(x_644, x_643); +x_646 = l_myMacro____x40_Init_Notation___hyg_9707____closed__9; lean_inc(x_2); -x_649 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_649, 0, x_2); -lean_ctor_set(x_649, 1, x_648); -x_650 = lean_array_push(x_646, x_649); -x_651 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; +x_647 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_647, 0, x_2); +lean_ctor_set(x_647, 1, x_646); +x_648 = lean_array_push(x_644, x_647); +x_649 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; lean_inc(x_2); -x_652 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_652, 0, x_2); -lean_ctor_set(x_652, 1, x_651); -x_653 = lean_array_push(x_646, x_652); -lean_inc(x_632); -x_654 = lean_array_push(x_646, x_632); -x_655 = l_Lean_nullKind___closed__2; -x_656 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_656, 0, x_655); -lean_ctor_set(x_656, 1, x_654); -x_657 = lean_array_push(x_646, x_656); -x_658 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; +x_650 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_650, 0, x_2); +lean_ctor_set(x_650, 1, x_649); +x_651 = lean_array_push(x_644, x_650); +lean_inc(x_631); +x_652 = lean_array_push(x_644, x_631); +x_653 = l_Lean_nullKind___closed__2; +x_654 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_654, 0, x_653); +lean_ctor_set(x_654, 1, x_652); +x_655 = lean_array_push(x_644, x_654); +x_656 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; lean_inc(x_2); -x_659 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_659, 0, x_2); -lean_ctor_set(x_659, 1, x_658); -x_660 = lean_array_push(x_657, x_659); -x_661 = l_Lean_instInhabitedSyntax; -x_662 = lean_unsigned_to_nat(0u); -x_663 = lean_array_get(x_661, x_97, x_662); -lean_dec(x_97); -x_664 = lean_array_push(x_660, x_663); -x_665 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; -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 = lean_array_push(x_653, x_666); -x_668 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; -x_669 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_669, 0, x_668); -lean_ctor_set(x_669, 1, x_667); -x_670 = lean_array_push(x_646, x_669); -x_671 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_672 = lean_array_push(x_670, x_671); -x_673 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_673, 0, x_655); -lean_ctor_set(x_673, 1, x_672); -x_674 = lean_array_push(x_650, x_673); -x_675 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; +x_657 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_657, 0, x_2); +lean_ctor_set(x_657, 1, x_656); +x_658 = lean_array_push(x_655, x_657); +x_659 = l_Lean_instInhabitedSyntax; +x_660 = lean_unsigned_to_nat(0u); +x_661 = lean_array_get(x_659, x_104, x_660); +lean_dec(x_104); +x_662 = lean_array_push(x_658, x_661); +x_663 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_664 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_664, 0, x_663); +lean_ctor_set(x_664, 1, x_662); +x_665 = lean_array_push(x_651, x_664); +x_666 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +x_667 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_667, 0, x_666); +lean_ctor_set(x_667, 1, x_665); +x_668 = lean_array_push(x_644, x_667); +x_669 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_670 = lean_array_push(x_668, x_669); +x_671 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_671, 0, x_653); +lean_ctor_set(x_671, 1, x_670); +x_672 = lean_array_push(x_648, x_671); +x_673 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; lean_inc(x_2); -x_676 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_676, 0, x_2); -lean_ctor_set(x_676, 1, x_675); -x_677 = lean_array_push(x_674, x_676); -x_678 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; -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_646, x_679); -x_681 = lean_array_push(x_680, x_632); -x_682 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_682, 0, x_655); -lean_ctor_set(x_682, 1, x_681); -x_683 = lean_array_push(x_647, x_682); -x_684 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -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_674 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_674, 0, x_2); +lean_ctor_set(x_674, 1, x_673); +x_675 = lean_array_push(x_672, x_674); +x_676 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; +x_677 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_677, 0, x_676); +lean_ctor_set(x_677, 1, x_675); +x_678 = lean_array_push(x_644, x_677); +x_679 = lean_array_push(x_678, x_631); +x_680 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_680, 0, x_653); +lean_ctor_set(x_680, 1, x_679); +x_681 = lean_array_push(x_645, x_680); +x_682 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_683 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_683, 0, x_682); +lean_ctor_set(x_683, 1, x_681); lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); @@ -4763,118 +5729,117 @@ lean_inc(x_2); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_686 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2(x_3, x_4, x_5, x_2, x_10, x_87, x_30, x_685, x_11, x_12, x_13, x_14, x_15, x_16, x_639); -lean_dec(x_30); +x_684 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_94, x_3, x_4, x_5, x_2, x_10, x_87, x_93, x_683, x_11, x_12, x_13, x_14, x_15, x_16, x_638); +lean_dec(x_93); lean_dec(x_87); -x_18 = x_686; +x_18 = x_684; goto block_28; } else { -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_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; -x_687 = lean_ctor_get(x_100, 0); +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_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; +x_685 = lean_ctor_get(x_107, 0); +lean_inc(x_685); +lean_dec(x_107); +x_686 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_629); +x_687 = lean_ctor_get(x_686, 0); lean_inc(x_687); -lean_dec(x_100); -x_688 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_630); -x_689 = lean_ctor_get(x_688, 0); -lean_inc(x_689); -x_690 = lean_ctor_get(x_688, 1); +x_688 = lean_ctor_get(x_686, 1); +lean_inc(x_688); +lean_dec(x_686); +x_689 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_688); +x_690 = lean_ctor_get(x_689, 0); lean_inc(x_690); -lean_dec(x_688); -x_691 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_690); -x_692 = lean_ctor_get(x_691, 0); -lean_inc(x_692); -x_693 = lean_ctor_get(x_691, 1); -lean_inc(x_693); -lean_dec(x_691); -x_694 = l_myMacro____x40_Init_Notation___hyg_9405____closed__6; +x_691 = lean_ctor_get(x_689, 1); +lean_inc(x_691); +lean_dec(x_689); +x_692 = l_myMacro____x40_Init_Notation___hyg_9405____closed__6; lean_inc(x_3); -x_695 = lean_name_mk_string(x_3, x_694); -lean_inc(x_695); -x_696 = l_Lean_addMacroScope(x_692, x_695, x_689); +x_693 = lean_name_mk_string(x_3, x_692); +lean_inc(x_693); +x_694 = l_Lean_addMacroScope(x_690, x_693, x_687); lean_inc(x_4); -x_697 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_697, 0, x_695); -lean_ctor_set(x_697, 1, x_4); +lean_ctor_set(x_90, 1, x_4); +lean_ctor_set(x_90, 0, x_693); lean_inc(x_5); -x_698 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_698, 0, x_697); -lean_ctor_set(x_698, 1, x_5); -x_699 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__10; +x_695 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_695, 0, x_90); +lean_ctor_set(x_695, 1, x_5); +x_696 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__11; lean_inc(x_2); -x_700 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_700, 0, x_2); -lean_ctor_set(x_700, 1, x_699); -lean_ctor_set(x_700, 2, x_696); -lean_ctor_set(x_700, 3, x_698); -x_701 = l_Array_empty___closed__1; -x_702 = lean_array_push(x_701, x_700); -x_703 = l_myMacro____x40_Init_Notation___hyg_9707____closed__9; +x_697 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_697, 0, x_2); +lean_ctor_set(x_697, 1, x_696); +lean_ctor_set(x_697, 2, x_694); +lean_ctor_set(x_697, 3, x_695); +x_698 = l_Array_empty___closed__1; +x_699 = lean_array_push(x_698, x_697); +x_700 = l_myMacro____x40_Init_Notation___hyg_9707____closed__9; +lean_inc(x_2); +x_701 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_701, 0, x_2); +lean_ctor_set(x_701, 1, x_700); +x_702 = lean_array_push(x_698, x_701); +x_703 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; lean_inc(x_2); x_704 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_704, 0, x_2); lean_ctor_set(x_704, 1, x_703); -x_705 = lean_array_push(x_701, x_704); -x_706 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; +x_705 = lean_array_push(x_698, x_704); +lean_inc(x_685); +x_706 = lean_array_push(x_698, x_685); +x_707 = l_Lean_nullKind___closed__2; +x_708 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_708, 0, x_707); +lean_ctor_set(x_708, 1, x_706); +x_709 = lean_array_push(x_698, x_708); +x_710 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; lean_inc(x_2); -x_707 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_707, 0, x_2); -lean_ctor_set(x_707, 1, x_706); -x_708 = lean_array_push(x_701, x_707); -lean_inc(x_687); -x_709 = lean_array_push(x_701, x_687); -x_710 = l_Lean_nullKind___closed__2; -x_711 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_711, 0, x_710); -lean_ctor_set(x_711, 1, x_709); -x_712 = lean_array_push(x_701, x_711); -x_713 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; -lean_inc(x_2); -x_714 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_714, 0, x_2); -lean_ctor_set(x_714, 1, x_713); -x_715 = lean_array_push(x_712, x_714); -x_716 = l_Lean_instInhabitedSyntax; -x_717 = lean_unsigned_to_nat(0u); -x_718 = lean_array_get(x_716, x_97, x_717); -lean_dec(x_97); -x_719 = lean_array_push(x_715, x_718); -x_720 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_711 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_711, 0, x_2); +lean_ctor_set(x_711, 1, x_710); +x_712 = lean_array_push(x_709, x_711); +x_713 = l_Lean_instInhabitedSyntax; +x_714 = lean_unsigned_to_nat(0u); +x_715 = lean_array_get(x_713, x_104, x_714); +lean_dec(x_104); +x_716 = lean_array_push(x_712, x_715); +x_717 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +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 = lean_array_push(x_705, x_718); +x_720 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; x_721 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_721, 0, x_720); lean_ctor_set(x_721, 1, x_719); -x_722 = lean_array_push(x_708, x_721); -x_723 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; -x_724 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_724, 0, x_723); -lean_ctor_set(x_724, 1, x_722); -x_725 = lean_array_push(x_701, x_724); -x_726 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_727 = lean_array_push(x_725, x_726); -x_728 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_728, 0, x_710); -lean_ctor_set(x_728, 1, x_727); -x_729 = lean_array_push(x_705, x_728); -x_730 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; +x_722 = lean_array_push(x_698, x_721); +x_723 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_724 = lean_array_push(x_722, x_723); +x_725 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_725, 0, x_707); +lean_ctor_set(x_725, 1, x_724); +x_726 = lean_array_push(x_702, x_725); +x_727 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; lean_inc(x_2); -x_731 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_731, 0, x_2); -lean_ctor_set(x_731, 1, x_730); -x_732 = lean_array_push(x_729, x_731); -x_733 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; +x_728 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_728, 0, x_2); +lean_ctor_set(x_728, 1, x_727); +x_729 = lean_array_push(x_726, x_728); +x_730 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; +x_731 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_731, 0, x_730); +lean_ctor_set(x_731, 1, x_729); +x_732 = lean_array_push(x_698, x_731); +x_733 = lean_array_push(x_732, x_685); x_734 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_734, 0, x_733); -lean_ctor_set(x_734, 1, x_732); -x_735 = lean_array_push(x_701, x_734); -x_736 = lean_array_push(x_735, x_687); +lean_ctor_set(x_734, 0, x_707); +lean_ctor_set(x_734, 1, x_733); +x_735 = lean_array_push(x_699, x_734); +x_736 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; x_737 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_737, 0, x_710); -lean_ctor_set(x_737, 1, x_736); -x_738 = lean_array_push(x_702, x_737); -x_739 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_740 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_740, 0, x_739); -lean_ctor_set(x_740, 1, x_738); +lean_ctor_set(x_737, 0, x_736); +lean_ctor_set(x_737, 1, x_735); lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); @@ -4885,10 +5850,10 @@ lean_inc(x_2); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_741 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2(x_3, x_4, x_5, x_2, x_10, x_87, x_30, x_740, x_11, x_12, x_13, x_14, x_15, x_16, x_693); -lean_dec(x_30); +x_738 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_94, x_3, x_4, x_5, x_2, x_10, x_87, x_93, x_737, x_11, x_12, x_13, x_14, x_15, x_16, x_691); +lean_dec(x_93); lean_dec(x_87); -x_18 = x_741; +x_18 = x_738; goto block_28; } } @@ -4896,103 +5861,102 @@ goto block_28; } else { -lean_object* x_742; -x_742 = lean_ctor_get(x_108, 1); -lean_inc(x_742); -if (lean_obj_tag(x_742) == 0) +lean_object* x_739; +x_739 = lean_ctor_get(x_115, 1); +lean_inc(x_739); +if (lean_obj_tag(x_739) == 0) { if (lean_obj_tag(x_87) == 0) { -lean_object* x_743; lean_object* x_744; uint8_t x_745; -x_743 = lean_ctor_get(x_99, 1); -lean_inc(x_743); -lean_dec(x_99); -x_744 = lean_ctor_get(x_100, 0); -lean_inc(x_744); -lean_dec(x_100); -x_745 = !lean_is_exclusive(x_108); -if (x_745 == 0) +lean_object* x_740; lean_object* x_741; uint8_t x_742; +x_740 = lean_ctor_get(x_106, 1); +lean_inc(x_740); +lean_dec(x_106); +x_741 = lean_ctor_get(x_107, 0); +lean_inc(x_741); +lean_dec(x_107); +x_742 = !lean_is_exclusive(x_115); +if (x_742 == 0) { -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; -x_746 = lean_ctor_get(x_108, 0); -x_747 = lean_ctor_get(x_108, 1); -lean_dec(x_747); -x_748 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_743); +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; +x_743 = lean_ctor_get(x_115, 0); +x_744 = lean_ctor_get(x_115, 1); +lean_dec(x_744); +x_745 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_740); +x_746 = lean_ctor_get(x_745, 0); +lean_inc(x_746); +x_747 = lean_ctor_get(x_745, 1); +lean_inc(x_747); +lean_dec(x_745); +x_748 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_747); x_749 = lean_ctor_get(x_748, 0); lean_inc(x_749); x_750 = lean_ctor_get(x_748, 1); lean_inc(x_750); lean_dec(x_748); -x_751 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_750); -x_752 = lean_ctor_get(x_751, 0); -lean_inc(x_752); -x_753 = lean_ctor_get(x_751, 1); -lean_inc(x_753); -lean_dec(x_751); -x_754 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__26; +x_751 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__27; lean_inc(x_3); -x_755 = lean_name_mk_string(x_3, x_754); -lean_inc(x_755); -x_756 = l_Lean_addMacroScope(x_752, x_755, x_749); +x_752 = lean_name_mk_string(x_3, x_751); +lean_inc(x_752); +x_753 = l_Lean_addMacroScope(x_749, x_752, x_746); lean_inc(x_4); -x_757 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_757, 0, x_755); -lean_ctor_set(x_757, 1, x_4); +lean_ctor_set(x_90, 1, x_4); +lean_ctor_set(x_90, 0, x_752); lean_inc(x_5); -lean_ctor_set(x_108, 1, x_5); -lean_ctor_set(x_108, 0, x_757); -x_758 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__25; +lean_ctor_set(x_115, 1, x_5); +lean_ctor_set(x_115, 0, x_90); +x_754 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26; lean_inc(x_2); -x_759 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_759, 0, x_2); -lean_ctor_set(x_759, 1, x_758); -lean_ctor_set(x_759, 2, x_756); -lean_ctor_set(x_759, 3, x_108); -x_760 = l_Array_empty___closed__1; -x_761 = lean_array_push(x_760, x_759); -x_762 = lean_array_push(x_760, x_744); -x_763 = lean_array_push(x_762, x_746); -x_764 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; +x_755 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_755, 0, x_2); +lean_ctor_set(x_755, 1, x_754); +lean_ctor_set(x_755, 2, x_753); +lean_ctor_set(x_755, 3, x_115); +x_756 = l_Array_empty___closed__1; +x_757 = lean_array_push(x_756, x_755); +x_758 = lean_array_push(x_756, x_741); +x_759 = lean_array_push(x_758, x_743); +x_760 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; lean_inc(x_2); -x_765 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_765, 0, x_2); -lean_ctor_set(x_765, 1, x_764); -x_766 = lean_array_push(x_760, x_765); -x_767 = l_Lean_nullKind___closed__2; -lean_inc(x_763); -x_768 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_768, 0, x_767); -lean_ctor_set(x_768, 1, x_763); -x_769 = lean_array_push(x_760, x_768); -x_770 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; +x_761 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_761, 0, x_2); +lean_ctor_set(x_761, 1, x_760); +x_762 = lean_array_push(x_756, x_761); +x_763 = l_Lean_nullKind___closed__2; +lean_inc(x_759); +x_764 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_764, 0, x_763); +lean_ctor_set(x_764, 1, x_759); +x_765 = lean_array_push(x_756, x_764); +x_766 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; lean_inc(x_2); -x_771 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_771, 0, x_2); -lean_ctor_set(x_771, 1, x_770); -x_772 = lean_array_push(x_769, x_771); -x_773 = l_Lean_instInhabitedSyntax; -x_774 = lean_unsigned_to_nat(0u); -x_775 = lean_array_get(x_773, x_97, x_774); -lean_dec(x_97); -x_776 = lean_array_push(x_772, x_775); -x_777 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; -x_778 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_778, 0, x_777); -lean_ctor_set(x_778, 1, x_776); -x_779 = lean_array_push(x_766, x_778); -x_780 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; -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_763, x_781); -x_783 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_783, 0, x_767); -lean_ctor_set(x_783, 1, x_782); -x_784 = lean_array_push(x_761, x_783); -x_785 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -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_767 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_767, 0, x_2); +lean_ctor_set(x_767, 1, x_766); +x_768 = lean_array_push(x_765, x_767); +x_769 = l_Lean_instInhabitedSyntax; +x_770 = lean_unsigned_to_nat(0u); +x_771 = lean_array_get(x_769, x_104, x_770); +lean_dec(x_104); +x_772 = lean_array_push(x_768, x_771); +x_773 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_774 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_774, 0, x_773); +lean_ctor_set(x_774, 1, x_772); +x_775 = lean_array_push(x_762, x_774); +x_776 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +x_777 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_777, 0, x_776); +lean_ctor_set(x_777, 1, x_775); +x_778 = lean_array_push(x_759, x_777); +x_779 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_779, 0, x_763); +lean_ctor_set(x_779, 1, x_778); +x_780 = lean_array_push(x_757, x_779); +x_781 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_782 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_782, 0, x_781); +lean_ctor_set(x_782, 1, x_780); lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); @@ -5003,94 +5967,93 @@ lean_inc(x_2); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_787 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2(x_3, x_4, x_5, x_2, x_10, x_87, x_30, x_786, x_11, x_12, x_13, x_14, x_15, x_16, x_753); -lean_dec(x_30); -x_18 = x_787; +x_783 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_94, x_3, x_4, x_5, x_2, x_10, x_87, x_93, x_782, x_11, x_12, x_13, x_14, x_15, x_16, x_750); +lean_dec(x_93); +x_18 = x_783; goto block_28; } else { -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; -x_788 = lean_ctor_get(x_108, 0); -lean_inc(x_788); -lean_dec(x_108); -x_789 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_743); -x_790 = lean_ctor_get(x_789, 0); +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; +x_784 = lean_ctor_get(x_115, 0); +lean_inc(x_784); +lean_dec(x_115); +x_785 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_740); +x_786 = lean_ctor_get(x_785, 0); +lean_inc(x_786); +x_787 = lean_ctor_get(x_785, 1); +lean_inc(x_787); +lean_dec(x_785); +x_788 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_787); +x_789 = lean_ctor_get(x_788, 0); +lean_inc(x_789); +x_790 = lean_ctor_get(x_788, 1); lean_inc(x_790); -x_791 = lean_ctor_get(x_789, 1); -lean_inc(x_791); -lean_dec(x_789); -x_792 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_791); -x_793 = lean_ctor_get(x_792, 0); -lean_inc(x_793); -x_794 = lean_ctor_get(x_792, 1); -lean_inc(x_794); -lean_dec(x_792); -x_795 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__26; +lean_dec(x_788); +x_791 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__27; lean_inc(x_3); -x_796 = lean_name_mk_string(x_3, x_795); -lean_inc(x_796); -x_797 = l_Lean_addMacroScope(x_793, x_796, x_790); +x_792 = lean_name_mk_string(x_3, x_791); +lean_inc(x_792); +x_793 = l_Lean_addMacroScope(x_789, x_792, x_786); lean_inc(x_4); -x_798 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_798, 0, x_796); -lean_ctor_set(x_798, 1, x_4); +lean_ctor_set(x_90, 1, x_4); +lean_ctor_set(x_90, 0, x_792); lean_inc(x_5); -x_799 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_799, 0, x_798); -lean_ctor_set(x_799, 1, x_5); -x_800 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__25; +x_794 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_794, 0, x_90); +lean_ctor_set(x_794, 1, x_5); +x_795 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26; lean_inc(x_2); -x_801 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_801, 0, x_2); -lean_ctor_set(x_801, 1, x_800); -lean_ctor_set(x_801, 2, x_797); -lean_ctor_set(x_801, 3, x_799); -x_802 = l_Array_empty___closed__1; -x_803 = lean_array_push(x_802, x_801); -x_804 = lean_array_push(x_802, x_744); -x_805 = lean_array_push(x_804, x_788); -x_806 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; +x_796 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_796, 0, x_2); +lean_ctor_set(x_796, 1, x_795); +lean_ctor_set(x_796, 2, x_793); +lean_ctor_set(x_796, 3, x_794); +x_797 = l_Array_empty___closed__1; +x_798 = lean_array_push(x_797, x_796); +x_799 = lean_array_push(x_797, x_741); +x_800 = lean_array_push(x_799, x_784); +x_801 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; lean_inc(x_2); -x_807 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_807, 0, x_2); -lean_ctor_set(x_807, 1, x_806); -x_808 = lean_array_push(x_802, x_807); -x_809 = l_Lean_nullKind___closed__2; -lean_inc(x_805); -x_810 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_810, 0, x_809); -lean_ctor_set(x_810, 1, x_805); -x_811 = lean_array_push(x_802, x_810); -x_812 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; +x_802 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_802, 0, x_2); +lean_ctor_set(x_802, 1, x_801); +x_803 = lean_array_push(x_797, x_802); +x_804 = l_Lean_nullKind___closed__2; +lean_inc(x_800); +x_805 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_805, 0, x_804); +lean_ctor_set(x_805, 1, x_800); +x_806 = lean_array_push(x_797, x_805); +x_807 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; lean_inc(x_2); -x_813 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_813, 0, x_2); -lean_ctor_set(x_813, 1, x_812); -x_814 = lean_array_push(x_811, x_813); -x_815 = l_Lean_instInhabitedSyntax; -x_816 = lean_unsigned_to_nat(0u); -x_817 = lean_array_get(x_815, x_97, x_816); -lean_dec(x_97); -x_818 = lean_array_push(x_814, x_817); -x_819 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_808 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_808, 0, x_2); +lean_ctor_set(x_808, 1, x_807); +x_809 = lean_array_push(x_806, x_808); +x_810 = l_Lean_instInhabitedSyntax; +x_811 = lean_unsigned_to_nat(0u); +x_812 = lean_array_get(x_810, x_104, x_811); +lean_dec(x_104); +x_813 = lean_array_push(x_809, x_812); +x_814 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_815 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_815, 0, x_814); +lean_ctor_set(x_815, 1, x_813); +x_816 = lean_array_push(x_803, x_815); +x_817 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +x_818 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_818, 0, x_817); +lean_ctor_set(x_818, 1, x_816); +x_819 = lean_array_push(x_800, x_818); x_820 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_820, 0, x_819); -lean_ctor_set(x_820, 1, x_818); -x_821 = lean_array_push(x_808, x_820); -x_822 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +lean_ctor_set(x_820, 0, x_804); +lean_ctor_set(x_820, 1, x_819); +x_821 = lean_array_push(x_798, x_820); +x_822 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; x_823 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_823, 0, x_822); lean_ctor_set(x_823, 1, x_821); -x_824 = lean_array_push(x_805, x_823); -x_825 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_825, 0, x_809); -lean_ctor_set(x_825, 1, x_824); -x_826 = lean_array_push(x_803, x_825); -x_827 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_828 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_828, 0, x_827); -lean_ctor_set(x_828, 1, x_826); lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); @@ -5101,123 +6064,122 @@ lean_inc(x_2); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_829 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2(x_3, x_4, x_5, x_2, x_10, x_87, x_30, x_828, x_11, x_12, x_13, x_14, x_15, x_16, x_794); -lean_dec(x_30); -x_18 = x_829; +x_824 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_94, x_3, x_4, x_5, x_2, x_10, x_87, x_93, x_823, x_11, x_12, x_13, x_14, x_15, x_16, x_790); +lean_dec(x_93); +x_18 = x_824; goto block_28; } } else { -lean_object* x_830; -x_830 = lean_ctor_get(x_87, 0); -lean_inc(x_830); -if (lean_obj_tag(x_830) == 1) +lean_object* x_825; +x_825 = lean_ctor_get(x_87, 0); +lean_inc(x_825); +if (lean_obj_tag(x_825) == 1) { -lean_object* x_831; -x_831 = lean_ctor_get(x_830, 0); -lean_inc(x_831); -if (lean_obj_tag(x_831) == 0) +lean_object* x_826; +x_826 = lean_ctor_get(x_825, 0); +lean_inc(x_826); +if (lean_obj_tag(x_826) == 0) { -lean_object* x_832; lean_object* x_833; uint8_t x_834; -x_832 = lean_ctor_get(x_99, 1); +lean_object* x_827; lean_object* x_828; uint8_t x_829; +x_827 = lean_ctor_get(x_106, 1); +lean_inc(x_827); +lean_dec(x_106); +x_828 = lean_ctor_get(x_107, 0); +lean_inc(x_828); +lean_dec(x_107); +x_829 = !lean_is_exclusive(x_115); +if (x_829 == 0) +{ +lean_object* x_830; lean_object* x_831; lean_object* x_832; lean_object* x_833; uint8_t x_834; +x_830 = lean_ctor_get(x_115, 0); +x_831 = lean_ctor_get(x_115, 1); +lean_dec(x_831); +x_832 = lean_ctor_get(x_825, 1); lean_inc(x_832); -lean_dec(x_99); -x_833 = lean_ctor_get(x_100, 0); -lean_inc(x_833); -lean_dec(x_100); -x_834 = !lean_is_exclusive(x_108); +lean_dec(x_825); +x_833 = l_myMacro____x40_Init_Notation___hyg_11399____closed__1; +x_834 = lean_string_dec_eq(x_832, x_833); +lean_dec(x_832); if (x_834 == 0) { -lean_object* x_835; lean_object* x_836; lean_object* x_837; lean_object* x_838; uint8_t x_839; -x_835 = lean_ctor_get(x_108, 0); -x_836 = lean_ctor_get(x_108, 1); -lean_dec(x_836); -x_837 = lean_ctor_get(x_830, 1); +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; +x_835 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_827); +x_836 = lean_ctor_get(x_835, 0); +lean_inc(x_836); +x_837 = lean_ctor_get(x_835, 1); lean_inc(x_837); -lean_dec(x_830); -x_838 = l_myMacro____x40_Init_Notation___hyg_11399____closed__1; -x_839 = lean_string_dec_eq(x_837, x_838); -lean_dec(x_837); -if (x_839 == 0) -{ -lean_object* x_840; lean_object* x_841; lean_object* x_842; lean_object* x_843; lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; lean_object* x_850; lean_object* x_851; 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; -x_840 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_832); -x_841 = lean_ctor_get(x_840, 0); -lean_inc(x_841); -x_842 = lean_ctor_get(x_840, 1); -lean_inc(x_842); -lean_dec(x_840); -x_843 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_842); -x_844 = lean_ctor_get(x_843, 0); -lean_inc(x_844); -x_845 = lean_ctor_get(x_843, 1); -lean_inc(x_845); -lean_dec(x_843); -x_846 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__26; +lean_dec(x_835); +x_838 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_837); +x_839 = lean_ctor_get(x_838, 0); +lean_inc(x_839); +x_840 = lean_ctor_get(x_838, 1); +lean_inc(x_840); +lean_dec(x_838); +x_841 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__27; lean_inc(x_3); -x_847 = lean_name_mk_string(x_3, x_846); -lean_inc(x_847); -x_848 = l_Lean_addMacroScope(x_844, x_847, x_841); +x_842 = lean_name_mk_string(x_3, x_841); +lean_inc(x_842); +x_843 = l_Lean_addMacroScope(x_839, x_842, x_836); lean_inc(x_4); -x_849 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_849, 0, x_847); -lean_ctor_set(x_849, 1, x_4); +lean_ctor_set(x_90, 1, x_4); +lean_ctor_set(x_90, 0, x_842); lean_inc(x_5); -lean_ctor_set(x_108, 1, x_5); -lean_ctor_set(x_108, 0, x_849); -x_850 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__25; +lean_ctor_set(x_115, 1, x_5); +lean_ctor_set(x_115, 0, x_90); +x_844 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26; lean_inc(x_2); -x_851 = lean_alloc_ctor(3, 4, 0); +x_845 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_845, 0, x_2); +lean_ctor_set(x_845, 1, x_844); +lean_ctor_set(x_845, 2, x_843); +lean_ctor_set(x_845, 3, x_115); +x_846 = l_Array_empty___closed__1; +x_847 = lean_array_push(x_846, x_845); +x_848 = lean_array_push(x_846, x_828); +x_849 = lean_array_push(x_848, x_830); +x_850 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; +lean_inc(x_2); +x_851 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_851, 0, x_2); lean_ctor_set(x_851, 1, x_850); -lean_ctor_set(x_851, 2, x_848); -lean_ctor_set(x_851, 3, x_108); -x_852 = l_Array_empty___closed__1; -x_853 = lean_array_push(x_852, x_851); -x_854 = lean_array_push(x_852, x_833); -x_855 = lean_array_push(x_854, x_835); -x_856 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; +x_852 = lean_array_push(x_846, x_851); +x_853 = l_Lean_nullKind___closed__2; +lean_inc(x_849); +x_854 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_854, 0, x_853); +lean_ctor_set(x_854, 1, x_849); +x_855 = lean_array_push(x_846, x_854); +x_856 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; lean_inc(x_2); x_857 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_857, 0, x_2); lean_ctor_set(x_857, 1, x_856); -x_858 = lean_array_push(x_852, x_857); -x_859 = l_Lean_nullKind___closed__2; -lean_inc(x_855); -x_860 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_860, 0, x_859); -lean_ctor_set(x_860, 1, x_855); -x_861 = lean_array_push(x_852, x_860); -x_862 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; -lean_inc(x_2); -x_863 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_863, 0, x_2); -lean_ctor_set(x_863, 1, x_862); -x_864 = lean_array_push(x_861, x_863); -x_865 = l_Lean_instInhabitedSyntax; -x_866 = lean_unsigned_to_nat(0u); -x_867 = lean_array_get(x_865, x_97, x_866); -lean_dec(x_97); -x_868 = lean_array_push(x_864, x_867); -x_869 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; -x_870 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_870, 0, x_869); -lean_ctor_set(x_870, 1, x_868); -x_871 = lean_array_push(x_858, x_870); -x_872 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; -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 = lean_array_push(x_855, x_873); -x_875 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_875, 0, x_859); -lean_ctor_set(x_875, 1, x_874); -x_876 = lean_array_push(x_853, x_875); -x_877 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -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_858 = lean_array_push(x_855, x_857); +x_859 = l_Lean_instInhabitedSyntax; +x_860 = lean_unsigned_to_nat(0u); +x_861 = lean_array_get(x_859, x_104, x_860); +lean_dec(x_104); +x_862 = lean_array_push(x_858, x_861); +x_863 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +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 = lean_array_push(x_852, x_864); +x_866 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +x_867 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_867, 0, x_866); +lean_ctor_set(x_867, 1, x_865); +x_868 = lean_array_push(x_849, x_867); +x_869 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_869, 0, x_853); +lean_ctor_set(x_869, 1, x_868); +x_870 = lean_array_push(x_847, x_869); +x_871 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_872 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_872, 0, x_871); +lean_ctor_set(x_872, 1, x_870); lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); @@ -5228,193 +6190,192 @@ lean_inc(x_2); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_879 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2(x_3, x_4, x_5, x_2, x_10, x_87, x_30, x_878, x_11, x_12, x_13, x_14, x_15, x_16, x_845); -lean_dec(x_30); +x_873 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_94, x_3, x_4, x_5, x_2, x_10, x_87, x_93, x_872, x_11, x_12, x_13, x_14, x_15, x_16, x_840); +lean_dec(x_93); lean_dec(x_87); -x_18 = x_879; +x_18 = x_873; goto block_28; } else { -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; -x_880 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_832); -x_881 = lean_ctor_get(x_880, 0); -lean_inc(x_881); -x_882 = lean_ctor_get(x_880, 1); -lean_inc(x_882); -lean_dec(x_880); -x_883 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_882); -x_884 = lean_ctor_get(x_883, 0); -lean_inc(x_884); -x_885 = lean_ctor_get(x_883, 1); -lean_inc(x_885); -lean_dec(x_883); -x_886 = l_Lean_Parser_Tactic_match___closed__1; +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; +x_874 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_827); +x_875 = lean_ctor_get(x_874, 0); +lean_inc(x_875); +x_876 = lean_ctor_get(x_874, 1); +lean_inc(x_876); +lean_dec(x_874); +x_877 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_876); +x_878 = lean_ctor_get(x_877, 0); +lean_inc(x_878); +x_879 = lean_ctor_get(x_877, 1); +lean_inc(x_879); +lean_dec(x_877); +x_880 = l_Lean_Parser_Tactic_match___closed__1; lean_inc(x_2); -x_887 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_887, 0, x_2); -lean_ctor_set(x_887, 1, x_886); -x_888 = l_Array_empty___closed__1; -x_889 = lean_array_push(x_888, x_887); -x_890 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; -lean_inc(x_833); -x_891 = lean_array_push(x_890, x_833); -x_892 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_881 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_881, 0, x_2); +lean_ctor_set(x_881, 1, x_880); +x_882 = l_Array_empty___closed__1; +x_883 = lean_array_push(x_882, x_881); +x_884 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; +lean_inc(x_828); +x_885 = lean_array_push(x_884, x_828); +x_886 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__13; +x_887 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_887, 0, x_886); +lean_ctor_set(x_887, 1, x_885); +x_888 = lean_array_push(x_882, x_887); +x_889 = l_myMacro____x40_Init_Notation___hyg_11515____closed__7; +lean_inc(x_2); +x_890 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_890, 0, x_2); +lean_ctor_set(x_890, 1, x_889); +lean_inc(x_890); +x_891 = lean_array_push(x_888, x_890); +lean_inc(x_830); +x_892 = lean_array_push(x_884, x_830); x_893 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_893, 0, x_892); -lean_ctor_set(x_893, 1, x_891); -x_894 = lean_array_push(x_888, x_893); -x_895 = l_myMacro____x40_Init_Notation___hyg_11515____closed__7; +lean_ctor_set(x_893, 0, x_886); +lean_ctor_set(x_893, 1, x_892); +x_894 = lean_array_push(x_891, x_893); +x_895 = l_Lean_nullKind___closed__2; +x_896 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_896, 0, x_895); +lean_ctor_set(x_896, 1, x_894); +x_897 = lean_array_push(x_883, x_896); +x_898 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_899 = lean_array_push(x_897, x_898); +x_900 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__15; lean_inc(x_2); -x_896 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_896, 0, x_2); -lean_ctor_set(x_896, 1, x_895); -lean_inc(x_896); -x_897 = lean_array_push(x_894, x_896); -lean_inc(x_835); -x_898 = lean_array_push(x_890, x_835); -x_899 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_899, 0, x_892); -lean_ctor_set(x_899, 1, x_898); -x_900 = lean_array_push(x_897, x_899); -x_901 = l_Lean_nullKind___closed__2; -x_902 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_902, 0, x_901); -lean_ctor_set(x_902, 1, x_900); -x_903 = lean_array_push(x_889, x_902); -x_904 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_905 = lean_array_push(x_903, x_904); -x_906 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__14; +x_901 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_901, 0, x_2); +lean_ctor_set(x_901, 1, x_900); +x_902 = lean_array_push(x_899, x_901); +x_903 = l_Lean_Parser_Tactic_intro___closed__7; lean_inc(x_2); -x_907 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_907, 0, x_2); -lean_ctor_set(x_907, 1, x_906); -x_908 = lean_array_push(x_905, x_907); -x_909 = l_Lean_Parser_Tactic_intro___closed__7; -lean_inc(x_2); -x_910 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_910, 0, x_2); -lean_ctor_set(x_910, 1, x_909); -lean_inc(x_910); -x_911 = lean_array_push(x_888, x_910); -x_912 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_912, 0, x_901); -lean_ctor_set(x_912, 1, x_911); -x_913 = lean_array_push(x_888, x_912); -x_914 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__19; -x_915 = l_Lean_addMacroScope(x_884, x_914, x_881); -x_916 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__6; +x_904 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_904, 0, x_2); +lean_ctor_set(x_904, 1, x_903); +lean_inc(x_904); +x_905 = lean_array_push(x_882, x_904); +x_906 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_906, 0, x_895); +lean_ctor_set(x_906, 1, x_905); +x_907 = lean_array_push(x_882, x_906); +x_908 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__20; +x_909 = l_Lean_addMacroScope(x_878, x_908, x_875); +x_910 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__6; lean_inc(x_4); -x_917 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_917, 0, x_916); -lean_ctor_set(x_917, 1, x_4); +lean_ctor_set(x_90, 1, x_4); +lean_ctor_set(x_90, 0, x_910); lean_inc(x_5); -lean_ctor_set(x_108, 1, x_5); -lean_ctor_set(x_108, 0, x_917); -x_918 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__18; +lean_ctor_set(x_115, 1, x_5); +lean_ctor_set(x_115, 0, x_90); +x_911 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__19; lean_inc(x_2); -x_919 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_919, 0, x_2); -lean_ctor_set(x_919, 1, x_918); -lean_ctor_set(x_919, 2, x_915); -lean_ctor_set(x_919, 3, x_108); -x_920 = lean_array_push(x_888, x_919); -x_921 = lean_array_push(x_888, x_833); +x_912 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_912, 0, x_2); +lean_ctor_set(x_912, 1, x_911); +lean_ctor_set(x_912, 2, x_909); +lean_ctor_set(x_912, 3, x_115); +x_913 = lean_array_push(x_882, x_912); +x_914 = lean_array_push(x_882, x_828); +x_915 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_915, 0, x_895); +lean_ctor_set(x_915, 1, x_914); +lean_inc(x_913); +x_916 = lean_array_push(x_913, x_915); +x_917 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +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_882, x_918); +x_920 = lean_array_push(x_919, x_890); +x_921 = lean_array_push(x_882, x_830); x_922 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_922, 0, x_901); +lean_ctor_set(x_922, 0, x_895); lean_ctor_set(x_922, 1, x_921); -lean_inc(x_920); -x_923 = lean_array_push(x_920, x_922); -x_924 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_925 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_925, 0, x_924); -lean_ctor_set(x_925, 1, x_923); -x_926 = lean_array_push(x_888, x_925); -x_927 = lean_array_push(x_926, x_896); -x_928 = lean_array_push(x_888, x_835); -x_929 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_929, 0, x_901); -lean_ctor_set(x_929, 1, x_928); -x_930 = lean_array_push(x_920, x_929); -x_931 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_931, 0, x_924); -lean_ctor_set(x_931, 1, x_930); -x_932 = lean_array_push(x_927, x_931); -x_933 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_933, 0, x_901); -lean_ctor_set(x_933, 1, x_932); -x_934 = lean_array_push(x_888, x_933); -x_935 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; +x_923 = lean_array_push(x_913, x_922); +x_924 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_924, 0, x_917); +lean_ctor_set(x_924, 1, x_923); +x_925 = lean_array_push(x_920, x_924); +x_926 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_926, 0, x_895); +lean_ctor_set(x_926, 1, x_925); +x_927 = lean_array_push(x_882, x_926); +x_928 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; lean_inc(x_2); -x_936 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_936, 0, x_2); -lean_ctor_set(x_936, 1, x_935); -lean_inc(x_936); -x_937 = lean_array_push(x_934, x_936); -x_938 = lean_array_to_list(lean_box(0), x_97); -x_939 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__2(x_938); -x_940 = l_Lean_mkOptionalNode___closed__2; -x_941 = lean_array_push(x_940, x_939); -x_942 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__5; -x_943 = l_Lean_Syntax_mkCApp(x_942, x_941); -x_944 = lean_array_push(x_937, x_943); -x_945 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_929 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_929, 0, x_2); +lean_ctor_set(x_929, 1, x_928); +lean_inc(x_929); +x_930 = lean_array_push(x_927, x_929); +x_931 = lean_array_to_list(lean_box(0), x_104); +x_932 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_931); +x_933 = l_Lean_mkOptionalNode___closed__2; +x_934 = lean_array_push(x_933, x_932); +x_935 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__5; +x_936 = l_Lean_Syntax_mkCApp(x_935, x_934); +x_937 = lean_array_push(x_930, x_936); +x_938 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; +x_939 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_939, 0, x_938); +lean_ctor_set(x_939, 1, x_937); +x_940 = lean_array_push(x_882, x_939); +x_941 = lean_array_push(x_940, x_904); +x_942 = l_myMacro____x40_Init_Notation___hyg_11836____closed__14; +lean_inc(x_2); +x_943 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_943, 0, x_2); +lean_ctor_set(x_943, 1, x_942); +x_944 = lean_array_push(x_882, x_943); +x_945 = l_myMacro____x40_Init_Notation___hyg_11836____closed__13; x_946 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_946, 0, x_945); lean_ctor_set(x_946, 1, x_944); -x_947 = lean_array_push(x_888, x_946); -x_948 = lean_array_push(x_947, x_910); -x_949 = l_myMacro____x40_Init_Notation___hyg_11836____closed__14; +x_947 = lean_array_push(x_882, x_946); +x_948 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_948, 0, x_895); +lean_ctor_set(x_948, 1, x_947); +x_949 = lean_array_push(x_882, x_948); +x_950 = lean_array_push(x_949, x_929); +x_951 = l_addParenHeuristic___closed__2; lean_inc(x_2); -x_950 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_950, 0, x_2); -lean_ctor_set(x_950, 1, x_949); -x_951 = lean_array_push(x_888, x_950); -x_952 = l_myMacro____x40_Init_Notation___hyg_11836____closed__13; -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_888, x_953); -x_955 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_955, 0, x_901); -lean_ctor_set(x_955, 1, x_954); -x_956 = lean_array_push(x_888, x_955); -x_957 = lean_array_push(x_956, x_936); -x_958 = l_addParenHeuristic___closed__2; +x_952 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_952, 0, x_2); +lean_ctor_set(x_952, 1, x_951); +x_953 = lean_array_push(x_882, x_952); +x_954 = lean_array_push(x_953, x_898); +x_955 = l_term_x5b___x2c_x5d___closed__11; lean_inc(x_2); -x_959 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_959, 0, x_2); -lean_ctor_set(x_959, 1, x_958); -x_960 = lean_array_push(x_888, x_959); -x_961 = lean_array_push(x_960, x_904); -x_962 = l_term_x5b___x2c_x5d___closed__11; -lean_inc(x_2); -x_963 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_963, 0, x_2); +x_956 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_956, 0, x_2); +lean_ctor_set(x_956, 1, x_955); +x_957 = lean_array_push(x_954, x_956); +x_958 = l_term_x23_x5b___x2c_x5d___closed__2; +x_959 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_959, 0, x_958); +lean_ctor_set(x_959, 1, x_957); +x_960 = lean_array_push(x_950, x_959); +x_961 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_961, 0, x_938); +lean_ctor_set(x_961, 1, x_960); +x_962 = lean_array_push(x_941, x_961); +x_963 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_963, 0, x_895); lean_ctor_set(x_963, 1, x_962); -x_964 = lean_array_push(x_961, x_963); -x_965 = l_term_x23_x5b___x2c_x5d___closed__2; +x_964 = lean_array_push(x_907, x_963); +x_965 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; x_966 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_966, 0, x_965); lean_ctor_set(x_966, 1, x_964); -x_967 = lean_array_push(x_957, x_966); -x_968 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_968, 0, x_945); -lean_ctor_set(x_968, 1, x_967); -x_969 = lean_array_push(x_948, x_968); -x_970 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_970, 0, x_901); -lean_ctor_set(x_970, 1, x_969); -x_971 = lean_array_push(x_913, x_970); -x_972 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; -x_973 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_973, 0, x_972); -lean_ctor_set(x_973, 1, x_971); -x_974 = lean_array_push(x_908, x_973); -x_975 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; -x_976 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_976, 0, x_975); -lean_ctor_set(x_976, 1, x_974); +x_967 = lean_array_push(x_902, x_966); +x_968 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__12; +x_969 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_969, 0, x_968); +lean_ctor_set(x_969, 1, x_967); lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); @@ -5425,105 +6386,104 @@ lean_inc(x_2); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_977 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2(x_3, x_4, x_5, x_2, x_10, x_87, x_30, x_976, x_11, x_12, x_13, x_14, x_15, x_16, x_885); -lean_dec(x_30); +x_970 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_94, x_3, x_4, x_5, x_2, x_10, x_87, x_93, x_969, x_11, x_12, x_13, x_14, x_15, x_16, x_879); +lean_dec(x_93); lean_dec(x_87); -x_18 = x_977; +x_18 = x_970; goto block_28; } } else { -lean_object* x_978; lean_object* x_979; lean_object* x_980; uint8_t x_981; -x_978 = lean_ctor_get(x_108, 0); -lean_inc(x_978); -lean_dec(x_108); -x_979 = lean_ctor_get(x_830, 1); -lean_inc(x_979); -lean_dec(x_830); -x_980 = l_myMacro____x40_Init_Notation___hyg_11399____closed__1; -x_981 = lean_string_dec_eq(x_979, x_980); -lean_dec(x_979); -if (x_981 == 0) +lean_object* x_971; lean_object* x_972; lean_object* x_973; uint8_t x_974; +x_971 = lean_ctor_get(x_115, 0); +lean_inc(x_971); +lean_dec(x_115); +x_972 = lean_ctor_get(x_825, 1); +lean_inc(x_972); +lean_dec(x_825); +x_973 = l_myMacro____x40_Init_Notation___hyg_11399____closed__1; +x_974 = lean_string_dec_eq(x_972, x_973); +lean_dec(x_972); +if (x_974 == 0) { -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; -x_982 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_832); -x_983 = lean_ctor_get(x_982, 0); -lean_inc(x_983); -x_984 = lean_ctor_get(x_982, 1); -lean_inc(x_984); -lean_dec(x_982); -x_985 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_984); -x_986 = lean_ctor_get(x_985, 0); -lean_inc(x_986); -x_987 = lean_ctor_get(x_985, 1); -lean_inc(x_987); -lean_dec(x_985); -x_988 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__26; +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; +x_975 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_827); +x_976 = lean_ctor_get(x_975, 0); +lean_inc(x_976); +x_977 = lean_ctor_get(x_975, 1); +lean_inc(x_977); +lean_dec(x_975); +x_978 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_977); +x_979 = lean_ctor_get(x_978, 0); +lean_inc(x_979); +x_980 = lean_ctor_get(x_978, 1); +lean_inc(x_980); +lean_dec(x_978); +x_981 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__27; lean_inc(x_3); -x_989 = lean_name_mk_string(x_3, x_988); -lean_inc(x_989); -x_990 = l_Lean_addMacroScope(x_986, x_989, x_983); +x_982 = lean_name_mk_string(x_3, x_981); +lean_inc(x_982); +x_983 = l_Lean_addMacroScope(x_979, x_982, x_976); lean_inc(x_4); -x_991 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_991, 0, x_989); -lean_ctor_set(x_991, 1, x_4); +lean_ctor_set(x_90, 1, x_4); +lean_ctor_set(x_90, 0, x_982); lean_inc(x_5); -x_992 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_992, 0, x_991); -lean_ctor_set(x_992, 1, x_5); -x_993 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__25; +x_984 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_984, 0, x_90); +lean_ctor_set(x_984, 1, x_5); +x_985 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26; lean_inc(x_2); -x_994 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_994, 0, x_2); -lean_ctor_set(x_994, 1, x_993); -lean_ctor_set(x_994, 2, x_990); -lean_ctor_set(x_994, 3, x_992); -x_995 = l_Array_empty___closed__1; -x_996 = lean_array_push(x_995, x_994); -x_997 = lean_array_push(x_995, x_833); -x_998 = lean_array_push(x_997, x_978); -x_999 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; +x_986 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_986, 0, x_2); +lean_ctor_set(x_986, 1, x_985); +lean_ctor_set(x_986, 2, x_983); +lean_ctor_set(x_986, 3, x_984); +x_987 = l_Array_empty___closed__1; +x_988 = lean_array_push(x_987, x_986); +x_989 = lean_array_push(x_987, x_828); +x_990 = lean_array_push(x_989, x_971); +x_991 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; lean_inc(x_2); -x_1000 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1000, 0, x_2); -lean_ctor_set(x_1000, 1, x_999); -x_1001 = lean_array_push(x_995, x_1000); -x_1002 = l_Lean_nullKind___closed__2; -lean_inc(x_998); -x_1003 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1003, 0, x_1002); -lean_ctor_set(x_1003, 1, x_998); -x_1004 = lean_array_push(x_995, x_1003); -x_1005 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; +x_992 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_992, 0, x_2); +lean_ctor_set(x_992, 1, x_991); +x_993 = lean_array_push(x_987, x_992); +x_994 = l_Lean_nullKind___closed__2; +lean_inc(x_990); +x_995 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_995, 0, x_994); +lean_ctor_set(x_995, 1, x_990); +x_996 = lean_array_push(x_987, x_995); +x_997 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; lean_inc(x_2); -x_1006 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1006, 0, x_2); -lean_ctor_set(x_1006, 1, x_1005); -x_1007 = lean_array_push(x_1004, x_1006); -x_1008 = l_Lean_instInhabitedSyntax; -x_1009 = lean_unsigned_to_nat(0u); -x_1010 = lean_array_get(x_1008, x_97, x_1009); -lean_dec(x_97); -x_1011 = lean_array_push(x_1007, x_1010); -x_1012 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_998 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_998, 0, x_2); +lean_ctor_set(x_998, 1, x_997); +x_999 = lean_array_push(x_996, x_998); +x_1000 = l_Lean_instInhabitedSyntax; +x_1001 = lean_unsigned_to_nat(0u); +x_1002 = lean_array_get(x_1000, x_104, x_1001); +lean_dec(x_104); +x_1003 = lean_array_push(x_999, x_1002); +x_1004 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_1005 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1005, 0, x_1004); +lean_ctor_set(x_1005, 1, x_1003); +x_1006 = lean_array_push(x_993, x_1005); +x_1007 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +x_1008 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1008, 0, x_1007); +lean_ctor_set(x_1008, 1, x_1006); +x_1009 = lean_array_push(x_990, x_1008); +x_1010 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1010, 0, x_994); +lean_ctor_set(x_1010, 1, x_1009); +x_1011 = lean_array_push(x_988, x_1010); +x_1012 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; x_1013 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1013, 0, x_1012); lean_ctor_set(x_1013, 1, x_1011); -x_1014 = lean_array_push(x_1001, x_1013); -x_1015 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; -x_1016 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1016, 0, x_1015); -lean_ctor_set(x_1016, 1, x_1014); -x_1017 = lean_array_push(x_998, x_1016); -x_1018 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1018, 0, x_1002); -lean_ctor_set(x_1018, 1, x_1017); -x_1019 = lean_array_push(x_996, x_1018); -x_1020 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_1021 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1021, 0, x_1020); -lean_ctor_set(x_1021, 1, x_1019); lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); @@ -5534,194 +6494,193 @@ lean_inc(x_2); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_1022 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2(x_3, x_4, x_5, x_2, x_10, x_87, x_30, x_1021, x_11, x_12, x_13, x_14, x_15, x_16, x_987); -lean_dec(x_30); +x_1014 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_94, x_3, x_4, x_5, x_2, x_10, x_87, x_93, x_1013, x_11, x_12, x_13, x_14, x_15, x_16, x_980); +lean_dec(x_93); lean_dec(x_87); -x_18 = x_1022; +x_18 = x_1014; goto block_28; } else { -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; -x_1023 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_832); -x_1024 = lean_ctor_get(x_1023, 0); -lean_inc(x_1024); -x_1025 = lean_ctor_get(x_1023, 1); -lean_inc(x_1025); -lean_dec(x_1023); -x_1026 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_1025); -x_1027 = lean_ctor_get(x_1026, 0); -lean_inc(x_1027); -x_1028 = lean_ctor_get(x_1026, 1); -lean_inc(x_1028); -lean_dec(x_1026); -x_1029 = l_Lean_Parser_Tactic_match___closed__1; +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; +x_1015 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_827); +x_1016 = lean_ctor_get(x_1015, 0); +lean_inc(x_1016); +x_1017 = lean_ctor_get(x_1015, 1); +lean_inc(x_1017); +lean_dec(x_1015); +x_1018 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_1017); +x_1019 = lean_ctor_get(x_1018, 0); +lean_inc(x_1019); +x_1020 = lean_ctor_get(x_1018, 1); +lean_inc(x_1020); +lean_dec(x_1018); +x_1021 = l_Lean_Parser_Tactic_match___closed__1; lean_inc(x_2); -x_1030 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1030, 0, x_2); -lean_ctor_set(x_1030, 1, x_1029); -x_1031 = l_Array_empty___closed__1; -x_1032 = lean_array_push(x_1031, x_1030); -x_1033 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; -lean_inc(x_833); -x_1034 = lean_array_push(x_1033, x_833); -x_1035 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; -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_1031, x_1036); -x_1038 = l_myMacro____x40_Init_Notation___hyg_11515____closed__7; +x_1022 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1022, 0, x_2); +lean_ctor_set(x_1022, 1, x_1021); +x_1023 = l_Array_empty___closed__1; +x_1024 = lean_array_push(x_1023, x_1022); +x_1025 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; +lean_inc(x_828); +x_1026 = lean_array_push(x_1025, x_828); +x_1027 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__13; +x_1028 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1028, 0, x_1027); +lean_ctor_set(x_1028, 1, x_1026); +x_1029 = lean_array_push(x_1023, x_1028); +x_1030 = l_myMacro____x40_Init_Notation___hyg_11515____closed__7; lean_inc(x_2); -x_1039 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1039, 0, x_2); -lean_ctor_set(x_1039, 1, x_1038); -lean_inc(x_1039); -x_1040 = lean_array_push(x_1037, x_1039); -lean_inc(x_978); -x_1041 = lean_array_push(x_1033, x_978); -x_1042 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1042, 0, x_1035); +x_1031 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1031, 0, x_2); +lean_ctor_set(x_1031, 1, x_1030); +lean_inc(x_1031); +x_1032 = lean_array_push(x_1029, x_1031); +lean_inc(x_971); +x_1033 = lean_array_push(x_1025, x_971); +x_1034 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1034, 0, x_1027); +lean_ctor_set(x_1034, 1, x_1033); +x_1035 = lean_array_push(x_1032, x_1034); +x_1036 = l_Lean_nullKind___closed__2; +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_1024, x_1037); +x_1039 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_1040 = lean_array_push(x_1038, x_1039); +x_1041 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__15; +lean_inc(x_2); +x_1042 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1042, 0, x_2); lean_ctor_set(x_1042, 1, x_1041); x_1043 = lean_array_push(x_1040, x_1042); -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 = lean_array_push(x_1032, x_1045); -x_1047 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_1048 = lean_array_push(x_1046, x_1047); -x_1049 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__14; +x_1044 = l_Lean_Parser_Tactic_intro___closed__7; lean_inc(x_2); -x_1050 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1050, 0, x_2); -lean_ctor_set(x_1050, 1, x_1049); -x_1051 = lean_array_push(x_1048, x_1050); -x_1052 = l_Lean_Parser_Tactic_intro___closed__7; -lean_inc(x_2); -x_1053 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1053, 0, x_2); -lean_ctor_set(x_1053, 1, x_1052); -lean_inc(x_1053); -x_1054 = lean_array_push(x_1031, x_1053); -x_1055 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1055, 0, x_1044); -lean_ctor_set(x_1055, 1, x_1054); -x_1056 = lean_array_push(x_1031, x_1055); -x_1057 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__19; -x_1058 = l_Lean_addMacroScope(x_1027, x_1057, x_1024); -x_1059 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__6; +x_1045 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1045, 0, x_2); +lean_ctor_set(x_1045, 1, x_1044); +lean_inc(x_1045); +x_1046 = lean_array_push(x_1023, x_1045); +x_1047 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1047, 0, x_1036); +lean_ctor_set(x_1047, 1, x_1046); +x_1048 = lean_array_push(x_1023, x_1047); +x_1049 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__20; +x_1050 = l_Lean_addMacroScope(x_1019, x_1049, x_1016); +x_1051 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__6; lean_inc(x_4); -x_1060 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1060, 0, x_1059); -lean_ctor_set(x_1060, 1, x_4); +lean_ctor_set(x_90, 1, x_4); +lean_ctor_set(x_90, 0, x_1051); lean_inc(x_5); -x_1061 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1061, 0, x_1060); -lean_ctor_set(x_1061, 1, x_5); -x_1062 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__18; +x_1052 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1052, 0, x_90); +lean_ctor_set(x_1052, 1, x_5); +x_1053 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__19; lean_inc(x_2); -x_1063 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1063, 0, x_2); -lean_ctor_set(x_1063, 1, x_1062); -lean_ctor_set(x_1063, 2, x_1058); -lean_ctor_set(x_1063, 3, x_1061); -x_1064 = lean_array_push(x_1031, x_1063); -x_1065 = lean_array_push(x_1031, x_833); +x_1054 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1054, 0, x_2); +lean_ctor_set(x_1054, 1, x_1053); +lean_ctor_set(x_1054, 2, x_1050); +lean_ctor_set(x_1054, 3, x_1052); +x_1055 = lean_array_push(x_1023, x_1054); +x_1056 = lean_array_push(x_1023, x_828); +x_1057 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1057, 0, x_1036); +lean_ctor_set(x_1057, 1, x_1056); +lean_inc(x_1055); +x_1058 = lean_array_push(x_1055, x_1057); +x_1059 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1060 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1060, 0, x_1059); +lean_ctor_set(x_1060, 1, x_1058); +x_1061 = lean_array_push(x_1023, x_1060); +x_1062 = lean_array_push(x_1061, x_1031); +x_1063 = lean_array_push(x_1023, x_971); +x_1064 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1064, 0, x_1036); +lean_ctor_set(x_1064, 1, x_1063); +x_1065 = lean_array_push(x_1055, x_1064); x_1066 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1066, 0, x_1044); +lean_ctor_set(x_1066, 0, x_1059); lean_ctor_set(x_1066, 1, x_1065); -lean_inc(x_1064); -x_1067 = lean_array_push(x_1064, x_1066); -x_1068 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_1069 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1069, 0, x_1068); -lean_ctor_set(x_1069, 1, x_1067); -x_1070 = lean_array_push(x_1031, x_1069); -x_1071 = lean_array_push(x_1070, x_1039); -x_1072 = lean_array_push(x_1031, x_978); -x_1073 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1073, 0, x_1044); -lean_ctor_set(x_1073, 1, x_1072); -x_1074 = lean_array_push(x_1064, x_1073); -x_1075 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1075, 0, x_1068); -lean_ctor_set(x_1075, 1, x_1074); -x_1076 = lean_array_push(x_1071, x_1075); -x_1077 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1077, 0, x_1044); -lean_ctor_set(x_1077, 1, x_1076); -x_1078 = lean_array_push(x_1031, x_1077); -x_1079 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; +x_1067 = lean_array_push(x_1062, x_1066); +x_1068 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1068, 0, x_1036); +lean_ctor_set(x_1068, 1, x_1067); +x_1069 = lean_array_push(x_1023, x_1068); +x_1070 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; lean_inc(x_2); -x_1080 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1080, 0, x_2); -lean_ctor_set(x_1080, 1, x_1079); -lean_inc(x_1080); -x_1081 = lean_array_push(x_1078, x_1080); -x_1082 = lean_array_to_list(lean_box(0), x_97); -x_1083 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__2(x_1082); -x_1084 = l_Lean_mkOptionalNode___closed__2; -x_1085 = lean_array_push(x_1084, x_1083); -x_1086 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__5; -x_1087 = l_Lean_Syntax_mkCApp(x_1086, x_1085); -x_1088 = lean_array_push(x_1081, x_1087); -x_1089 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1071 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1071, 0, x_2); +lean_ctor_set(x_1071, 1, x_1070); +lean_inc(x_1071); +x_1072 = lean_array_push(x_1069, x_1071); +x_1073 = lean_array_to_list(lean_box(0), x_104); +x_1074 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_1073); +x_1075 = l_Lean_mkOptionalNode___closed__2; +x_1076 = lean_array_push(x_1075, x_1074); +x_1077 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__5; +x_1078 = l_Lean_Syntax_mkCApp(x_1077, x_1076); +x_1079 = lean_array_push(x_1072, x_1078); +x_1080 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; +x_1081 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1081, 0, x_1080); +lean_ctor_set(x_1081, 1, x_1079); +x_1082 = lean_array_push(x_1023, x_1081); +x_1083 = lean_array_push(x_1082, x_1045); +x_1084 = l_myMacro____x40_Init_Notation___hyg_11836____closed__14; +lean_inc(x_2); +x_1085 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1085, 0, x_2); +lean_ctor_set(x_1085, 1, x_1084); +x_1086 = lean_array_push(x_1023, x_1085); +x_1087 = l_myMacro____x40_Init_Notation___hyg_11836____closed__13; +x_1088 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1088, 0, x_1087); +lean_ctor_set(x_1088, 1, x_1086); +x_1089 = lean_array_push(x_1023, x_1088); x_1090 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1090, 0, x_1089); -lean_ctor_set(x_1090, 1, x_1088); -x_1091 = lean_array_push(x_1031, x_1090); -x_1092 = lean_array_push(x_1091, x_1053); -x_1093 = l_myMacro____x40_Init_Notation___hyg_11836____closed__14; +lean_ctor_set(x_1090, 0, x_1036); +lean_ctor_set(x_1090, 1, x_1089); +x_1091 = lean_array_push(x_1023, x_1090); +x_1092 = lean_array_push(x_1091, x_1071); +x_1093 = l_addParenHeuristic___closed__2; lean_inc(x_2); x_1094 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_1094, 0, x_2); lean_ctor_set(x_1094, 1, x_1093); -x_1095 = lean_array_push(x_1031, x_1094); -x_1096 = l_myMacro____x40_Init_Notation___hyg_11836____closed__13; -x_1097 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1097, 0, x_1096); -lean_ctor_set(x_1097, 1, x_1095); -x_1098 = lean_array_push(x_1031, x_1097); -x_1099 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1099, 0, x_1044); -lean_ctor_set(x_1099, 1, x_1098); -x_1100 = lean_array_push(x_1031, x_1099); -x_1101 = lean_array_push(x_1100, x_1080); -x_1102 = l_addParenHeuristic___closed__2; +x_1095 = lean_array_push(x_1023, x_1094); +x_1096 = lean_array_push(x_1095, x_1039); +x_1097 = l_term_x5b___x2c_x5d___closed__11; lean_inc(x_2); -x_1103 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1103, 0, x_2); +x_1098 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1098, 0, x_2); +lean_ctor_set(x_1098, 1, x_1097); +x_1099 = lean_array_push(x_1096, x_1098); +x_1100 = l_term_x23_x5b___x2c_x5d___closed__2; +x_1101 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1101, 0, x_1100); +lean_ctor_set(x_1101, 1, x_1099); +x_1102 = lean_array_push(x_1092, x_1101); +x_1103 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1103, 0, x_1080); lean_ctor_set(x_1103, 1, x_1102); -x_1104 = lean_array_push(x_1031, x_1103); -x_1105 = lean_array_push(x_1104, x_1047); -x_1106 = l_term_x5b___x2c_x5d___closed__11; -lean_inc(x_2); -x_1107 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1107, 0, x_2); -lean_ctor_set(x_1107, 1, x_1106); -x_1108 = lean_array_push(x_1105, x_1107); -x_1109 = l_term_x23_x5b___x2c_x5d___closed__2; -x_1110 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1110, 0, x_1109); -lean_ctor_set(x_1110, 1, x_1108); -x_1111 = lean_array_push(x_1101, x_1110); -x_1112 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1112, 0, x_1089); -lean_ctor_set(x_1112, 1, x_1111); -x_1113 = lean_array_push(x_1092, x_1112); -x_1114 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1114, 0, x_1044); -lean_ctor_set(x_1114, 1, x_1113); -x_1115 = lean_array_push(x_1056, x_1114); -x_1116 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; -x_1117 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1117, 0, x_1116); -lean_ctor_set(x_1117, 1, x_1115); -x_1118 = lean_array_push(x_1051, x_1117); -x_1119 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; -x_1120 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1120, 0, x_1119); -lean_ctor_set(x_1120, 1, x_1118); +x_1104 = lean_array_push(x_1083, x_1103); +x_1105 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1105, 0, x_1036); +lean_ctor_set(x_1105, 1, x_1104); +x_1106 = lean_array_push(x_1048, x_1105); +x_1107 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; +x_1108 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1108, 0, x_1107); +lean_ctor_set(x_1108, 1, x_1106); +x_1109 = lean_array_push(x_1043, x_1108); +x_1110 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__12; +x_1111 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1111, 0, x_1110); +lean_ctor_set(x_1111, 1, x_1109); lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); @@ -5732,108 +6691,107 @@ lean_inc(x_2); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_1121 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2(x_3, x_4, x_5, x_2, x_10, x_87, x_30, x_1120, x_11, x_12, x_13, x_14, x_15, x_16, x_1028); -lean_dec(x_30); +x_1112 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_94, x_3, x_4, x_5, x_2, x_10, x_87, x_93, x_1111, x_11, x_12, x_13, x_14, x_15, x_16, x_1020); +lean_dec(x_93); lean_dec(x_87); -x_18 = x_1121; +x_18 = x_1112; goto block_28; } } } else { -lean_object* x_1122; lean_object* x_1123; uint8_t x_1124; -lean_dec(x_831); -lean_dec(x_830); -x_1122 = lean_ctor_get(x_99, 1); -lean_inc(x_1122); -lean_dec(x_99); -x_1123 = lean_ctor_get(x_100, 0); -lean_inc(x_1123); -lean_dec(x_100); -x_1124 = !lean_is_exclusive(x_108); -if (x_1124 == 0) +lean_object* x_1113; lean_object* x_1114; uint8_t x_1115; +lean_dec(x_826); +lean_dec(x_825); +x_1113 = lean_ctor_get(x_106, 1); +lean_inc(x_1113); +lean_dec(x_106); +x_1114 = lean_ctor_get(x_107, 0); +lean_inc(x_1114); +lean_dec(x_107); +x_1115 = !lean_is_exclusive(x_115); +if (x_1115 == 0) { -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; -x_1125 = lean_ctor_get(x_108, 0); -x_1126 = lean_ctor_get(x_108, 1); -lean_dec(x_1126); -x_1127 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_1122); -x_1128 = lean_ctor_get(x_1127, 0); -lean_inc(x_1128); -x_1129 = lean_ctor_get(x_1127, 1); -lean_inc(x_1129); -lean_dec(x_1127); -x_1130 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_1129); -x_1131 = lean_ctor_get(x_1130, 0); -lean_inc(x_1131); -x_1132 = lean_ctor_get(x_1130, 1); -lean_inc(x_1132); -lean_dec(x_1130); -x_1133 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__26; +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; +x_1116 = lean_ctor_get(x_115, 0); +x_1117 = lean_ctor_get(x_115, 1); +lean_dec(x_1117); +x_1118 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_1113); +x_1119 = lean_ctor_get(x_1118, 0); +lean_inc(x_1119); +x_1120 = lean_ctor_get(x_1118, 1); +lean_inc(x_1120); +lean_dec(x_1118); +x_1121 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_1120); +x_1122 = lean_ctor_get(x_1121, 0); +lean_inc(x_1122); +x_1123 = lean_ctor_get(x_1121, 1); +lean_inc(x_1123); +lean_dec(x_1121); +x_1124 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__27; lean_inc(x_3); -x_1134 = lean_name_mk_string(x_3, x_1133); -lean_inc(x_1134); -x_1135 = l_Lean_addMacroScope(x_1131, x_1134, x_1128); +x_1125 = lean_name_mk_string(x_3, x_1124); +lean_inc(x_1125); +x_1126 = l_Lean_addMacroScope(x_1122, x_1125, x_1119); lean_inc(x_4); -x_1136 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1136, 0, x_1134); -lean_ctor_set(x_1136, 1, x_4); +lean_ctor_set(x_90, 1, x_4); +lean_ctor_set(x_90, 0, x_1125); lean_inc(x_5); -lean_ctor_set(x_108, 1, x_5); -lean_ctor_set(x_108, 0, x_1136); -x_1137 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__25; +lean_ctor_set(x_115, 1, x_5); +lean_ctor_set(x_115, 0, x_90); +x_1127 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26; lean_inc(x_2); -x_1138 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1138, 0, x_2); -lean_ctor_set(x_1138, 1, x_1137); -lean_ctor_set(x_1138, 2, x_1135); -lean_ctor_set(x_1138, 3, x_108); -x_1139 = l_Array_empty___closed__1; -x_1140 = lean_array_push(x_1139, x_1138); -x_1141 = lean_array_push(x_1139, x_1123); -x_1142 = lean_array_push(x_1141, x_1125); -x_1143 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; +x_1128 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1128, 0, x_2); +lean_ctor_set(x_1128, 1, x_1127); +lean_ctor_set(x_1128, 2, x_1126); +lean_ctor_set(x_1128, 3, x_115); +x_1129 = l_Array_empty___closed__1; +x_1130 = lean_array_push(x_1129, x_1128); +x_1131 = lean_array_push(x_1129, x_1114); +x_1132 = lean_array_push(x_1131, x_1116); +x_1133 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; lean_inc(x_2); -x_1144 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1144, 0, x_2); -lean_ctor_set(x_1144, 1, x_1143); -x_1145 = lean_array_push(x_1139, x_1144); -x_1146 = l_Lean_nullKind___closed__2; -lean_inc(x_1142); +x_1134 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1134, 0, x_2); +lean_ctor_set(x_1134, 1, x_1133); +x_1135 = lean_array_push(x_1129, x_1134); +x_1136 = l_Lean_nullKind___closed__2; +lean_inc(x_1132); +x_1137 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1137, 0, x_1136); +lean_ctor_set(x_1137, 1, x_1132); +x_1138 = lean_array_push(x_1129, x_1137); +x_1139 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; +lean_inc(x_2); +x_1140 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1140, 0, x_2); +lean_ctor_set(x_1140, 1, x_1139); +x_1141 = lean_array_push(x_1138, x_1140); +x_1142 = l_Lean_instInhabitedSyntax; +x_1143 = lean_unsigned_to_nat(0u); +x_1144 = lean_array_get(x_1142, x_104, x_1143); +lean_dec(x_104); +x_1145 = lean_array_push(x_1141, x_1144); +x_1146 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; x_1147 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1147, 0, x_1146); -lean_ctor_set(x_1147, 1, x_1142); -x_1148 = lean_array_push(x_1139, x_1147); -x_1149 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; -lean_inc(x_2); -x_1150 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1150, 0, x_2); -lean_ctor_set(x_1150, 1, x_1149); -x_1151 = lean_array_push(x_1148, x_1150); -x_1152 = l_Lean_instInhabitedSyntax; -x_1153 = lean_unsigned_to_nat(0u); -x_1154 = lean_array_get(x_1152, x_97, x_1153); -lean_dec(x_97); -x_1155 = lean_array_push(x_1151, x_1154); -x_1156 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; -x_1157 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1157, 0, x_1156); -lean_ctor_set(x_1157, 1, x_1155); -x_1158 = lean_array_push(x_1145, x_1157); -x_1159 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; -x_1160 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1160, 0, x_1159); -lean_ctor_set(x_1160, 1, x_1158); -x_1161 = lean_array_push(x_1142, x_1160); -x_1162 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1162, 0, x_1146); -lean_ctor_set(x_1162, 1, x_1161); -x_1163 = lean_array_push(x_1140, x_1162); -x_1164 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_1165 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1165, 0, x_1164); -lean_ctor_set(x_1165, 1, x_1163); +lean_ctor_set(x_1147, 1, x_1145); +x_1148 = lean_array_push(x_1135, x_1147); +x_1149 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +x_1150 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1150, 0, x_1149); +lean_ctor_set(x_1150, 1, x_1148); +x_1151 = lean_array_push(x_1132, x_1150); +x_1152 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1152, 0, x_1136); +lean_ctor_set(x_1152, 1, x_1151); +x_1153 = lean_array_push(x_1130, x_1152); +x_1154 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1155 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1155, 0, x_1154); +lean_ctor_set(x_1155, 1, x_1153); lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); @@ -5844,95 +6802,94 @@ lean_inc(x_2); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_1166 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2(x_3, x_4, x_5, x_2, x_10, x_87, x_30, x_1165, x_11, x_12, x_13, x_14, x_15, x_16, x_1132); -lean_dec(x_30); +x_1156 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_94, x_3, x_4, x_5, x_2, x_10, x_87, x_93, x_1155, x_11, x_12, x_13, x_14, x_15, x_16, x_1123); +lean_dec(x_93); lean_dec(x_87); -x_18 = x_1166; +x_18 = x_1156; goto block_28; } else { -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; -x_1167 = lean_ctor_get(x_108, 0); -lean_inc(x_1167); -lean_dec(x_108); -x_1168 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_1122); -x_1169 = lean_ctor_get(x_1168, 0); -lean_inc(x_1169); -x_1170 = lean_ctor_get(x_1168, 1); -lean_inc(x_1170); -lean_dec(x_1168); -x_1171 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_1170); -x_1172 = lean_ctor_get(x_1171, 0); -lean_inc(x_1172); -x_1173 = lean_ctor_get(x_1171, 1); -lean_inc(x_1173); -lean_dec(x_1171); -x_1174 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__26; +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_object* x_1195; lean_object* x_1196; lean_object* x_1197; +x_1157 = lean_ctor_get(x_115, 0); +lean_inc(x_1157); +lean_dec(x_115); +x_1158 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_1113); +x_1159 = lean_ctor_get(x_1158, 0); +lean_inc(x_1159); +x_1160 = lean_ctor_get(x_1158, 1); +lean_inc(x_1160); +lean_dec(x_1158); +x_1161 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_1160); +x_1162 = lean_ctor_get(x_1161, 0); +lean_inc(x_1162); +x_1163 = lean_ctor_get(x_1161, 1); +lean_inc(x_1163); +lean_dec(x_1161); +x_1164 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__27; lean_inc(x_3); -x_1175 = lean_name_mk_string(x_3, x_1174); -lean_inc(x_1175); -x_1176 = l_Lean_addMacroScope(x_1172, x_1175, x_1169); +x_1165 = lean_name_mk_string(x_3, x_1164); +lean_inc(x_1165); +x_1166 = l_Lean_addMacroScope(x_1162, x_1165, x_1159); lean_inc(x_4); -x_1177 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1177, 0, x_1175); -lean_ctor_set(x_1177, 1, x_4); +lean_ctor_set(x_90, 1, x_4); +lean_ctor_set(x_90, 0, x_1165); lean_inc(x_5); +x_1167 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1167, 0, x_90); +lean_ctor_set(x_1167, 1, x_5); +x_1168 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26; +lean_inc(x_2); +x_1169 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1169, 0, x_2); +lean_ctor_set(x_1169, 1, x_1168); +lean_ctor_set(x_1169, 2, x_1166); +lean_ctor_set(x_1169, 3, x_1167); +x_1170 = l_Array_empty___closed__1; +x_1171 = lean_array_push(x_1170, x_1169); +x_1172 = lean_array_push(x_1170, x_1114); +x_1173 = lean_array_push(x_1172, x_1157); +x_1174 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; +lean_inc(x_2); +x_1175 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1175, 0, x_2); +lean_ctor_set(x_1175, 1, x_1174); +x_1176 = lean_array_push(x_1170, x_1175); +x_1177 = l_Lean_nullKind___closed__2; +lean_inc(x_1173); x_1178 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1178, 0, x_1177); -lean_ctor_set(x_1178, 1, x_5); -x_1179 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__25; +lean_ctor_set(x_1178, 1, x_1173); +x_1179 = lean_array_push(x_1170, x_1178); +x_1180 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; lean_inc(x_2); -x_1180 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1180, 0, x_2); -lean_ctor_set(x_1180, 1, x_1179); -lean_ctor_set(x_1180, 2, x_1176); -lean_ctor_set(x_1180, 3, x_1178); -x_1181 = l_Array_empty___closed__1; -x_1182 = lean_array_push(x_1181, x_1180); -x_1183 = lean_array_push(x_1181, x_1123); -x_1184 = lean_array_push(x_1183, x_1167); -x_1185 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; -lean_inc(x_2); -x_1186 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1186, 0, x_2); -lean_ctor_set(x_1186, 1, x_1185); -x_1187 = lean_array_push(x_1181, x_1186); -x_1188 = l_Lean_nullKind___closed__2; -lean_inc(x_1184); -x_1189 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1189, 0, x_1188); -lean_ctor_set(x_1189, 1, x_1184); -x_1190 = lean_array_push(x_1181, x_1189); -x_1191 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; -lean_inc(x_2); -x_1192 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1192, 0, x_2); -lean_ctor_set(x_1192, 1, x_1191); -x_1193 = lean_array_push(x_1190, x_1192); -x_1194 = l_Lean_instInhabitedSyntax; -x_1195 = lean_unsigned_to_nat(0u); -x_1196 = lean_array_get(x_1194, x_97, x_1195); -lean_dec(x_97); -x_1197 = lean_array_push(x_1193, x_1196); -x_1198 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; -x_1199 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1199, 0, x_1198); -lean_ctor_set(x_1199, 1, x_1197); -x_1200 = lean_array_push(x_1187, x_1199); -x_1201 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; -x_1202 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1202, 0, x_1201); -lean_ctor_set(x_1202, 1, x_1200); -x_1203 = lean_array_push(x_1184, x_1202); -x_1204 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1204, 0, x_1188); -lean_ctor_set(x_1204, 1, x_1203); -x_1205 = lean_array_push(x_1182, x_1204); -x_1206 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_1207 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1207, 0, x_1206); -lean_ctor_set(x_1207, 1, x_1205); +x_1181 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1181, 0, x_2); +lean_ctor_set(x_1181, 1, x_1180); +x_1182 = lean_array_push(x_1179, x_1181); +x_1183 = l_Lean_instInhabitedSyntax; +x_1184 = lean_unsigned_to_nat(0u); +x_1185 = lean_array_get(x_1183, x_104, x_1184); +lean_dec(x_104); +x_1186 = lean_array_push(x_1182, x_1185); +x_1187 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +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_1176, x_1188); +x_1190 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +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_1173, x_1191); +x_1193 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1193, 0, x_1177); +lean_ctor_set(x_1193, 1, x_1192); +x_1194 = lean_array_push(x_1171, x_1193); +x_1195 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1196 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1196, 0, x_1195); +lean_ctor_set(x_1196, 1, x_1194); lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); @@ -5943,107 +6900,106 @@ lean_inc(x_2); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_1208 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2(x_3, x_4, x_5, x_2, x_10, x_87, x_30, x_1207, x_11, x_12, x_13, x_14, x_15, x_16, x_1173); -lean_dec(x_30); +x_1197 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_94, x_3, x_4, x_5, x_2, x_10, x_87, x_93, x_1196, x_11, x_12, x_13, x_14, x_15, x_16, x_1163); +lean_dec(x_93); lean_dec(x_87); -x_18 = x_1208; +x_18 = x_1197; goto block_28; } } } else { -lean_object* x_1209; lean_object* x_1210; uint8_t x_1211; -lean_dec(x_830); -x_1209 = lean_ctor_get(x_99, 1); -lean_inc(x_1209); -lean_dec(x_99); -x_1210 = lean_ctor_get(x_100, 0); -lean_inc(x_1210); -lean_dec(x_100); -x_1211 = !lean_is_exclusive(x_108); -if (x_1211 == 0) +lean_object* x_1198; lean_object* x_1199; uint8_t x_1200; +lean_dec(x_825); +x_1198 = lean_ctor_get(x_106, 1); +lean_inc(x_1198); +lean_dec(x_106); +x_1199 = lean_ctor_get(x_107, 0); +lean_inc(x_1199); +lean_dec(x_107); +x_1200 = !lean_is_exclusive(x_115); +if (x_1200 == 0) { -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; -x_1212 = lean_ctor_get(x_108, 0); -x_1213 = lean_ctor_get(x_108, 1); -lean_dec(x_1213); -x_1214 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_1209); -x_1215 = lean_ctor_get(x_1214, 0); -lean_inc(x_1215); -x_1216 = lean_ctor_get(x_1214, 1); -lean_inc(x_1216); -lean_dec(x_1214); -x_1217 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_1216); -x_1218 = lean_ctor_get(x_1217, 0); -lean_inc(x_1218); -x_1219 = lean_ctor_get(x_1217, 1); -lean_inc(x_1219); -lean_dec(x_1217); -x_1220 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__26; +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; +x_1201 = lean_ctor_get(x_115, 0); +x_1202 = lean_ctor_get(x_115, 1); +lean_dec(x_1202); +x_1203 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_1198); +x_1204 = lean_ctor_get(x_1203, 0); +lean_inc(x_1204); +x_1205 = lean_ctor_get(x_1203, 1); +lean_inc(x_1205); +lean_dec(x_1203); +x_1206 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_1205); +x_1207 = lean_ctor_get(x_1206, 0); +lean_inc(x_1207); +x_1208 = lean_ctor_get(x_1206, 1); +lean_inc(x_1208); +lean_dec(x_1206); +x_1209 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__27; lean_inc(x_3); -x_1221 = lean_name_mk_string(x_3, x_1220); -lean_inc(x_1221); -x_1222 = l_Lean_addMacroScope(x_1218, x_1221, x_1215); +x_1210 = lean_name_mk_string(x_3, x_1209); +lean_inc(x_1210); +x_1211 = l_Lean_addMacroScope(x_1207, x_1210, x_1204); lean_inc(x_4); -x_1223 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1223, 0, x_1221); -lean_ctor_set(x_1223, 1, x_4); +lean_ctor_set(x_90, 1, x_4); +lean_ctor_set(x_90, 0, x_1210); lean_inc(x_5); -lean_ctor_set(x_108, 1, x_5); -lean_ctor_set(x_108, 0, x_1223); -x_1224 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__25; +lean_ctor_set(x_115, 1, x_5); +lean_ctor_set(x_115, 0, x_90); +x_1212 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26; lean_inc(x_2); -x_1225 = lean_alloc_ctor(3, 4, 0); +x_1213 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1213, 0, x_2); +lean_ctor_set(x_1213, 1, x_1212); +lean_ctor_set(x_1213, 2, x_1211); +lean_ctor_set(x_1213, 3, x_115); +x_1214 = l_Array_empty___closed__1; +x_1215 = lean_array_push(x_1214, x_1213); +x_1216 = lean_array_push(x_1214, x_1199); +x_1217 = lean_array_push(x_1216, x_1201); +x_1218 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; +lean_inc(x_2); +x_1219 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1219, 0, x_2); +lean_ctor_set(x_1219, 1, x_1218); +x_1220 = lean_array_push(x_1214, x_1219); +x_1221 = l_Lean_nullKind___closed__2; +lean_inc(x_1217); +x_1222 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1222, 0, x_1221); +lean_ctor_set(x_1222, 1, x_1217); +x_1223 = lean_array_push(x_1214, x_1222); +x_1224 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; +lean_inc(x_2); +x_1225 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_1225, 0, x_2); lean_ctor_set(x_1225, 1, x_1224); -lean_ctor_set(x_1225, 2, x_1222); -lean_ctor_set(x_1225, 3, x_108); -x_1226 = l_Array_empty___closed__1; -x_1227 = lean_array_push(x_1226, x_1225); -x_1228 = lean_array_push(x_1226, x_1210); -x_1229 = lean_array_push(x_1228, x_1212); -x_1230 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; -lean_inc(x_2); -x_1231 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1231, 0, x_2); -lean_ctor_set(x_1231, 1, x_1230); -x_1232 = lean_array_push(x_1226, x_1231); -x_1233 = l_Lean_nullKind___closed__2; -lean_inc(x_1229); -x_1234 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1234, 0, x_1233); -lean_ctor_set(x_1234, 1, x_1229); -x_1235 = lean_array_push(x_1226, x_1234); -x_1236 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; -lean_inc(x_2); -x_1237 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1237, 0, x_2); +x_1226 = lean_array_push(x_1223, x_1225); +x_1227 = l_Lean_instInhabitedSyntax; +x_1228 = lean_unsigned_to_nat(0u); +x_1229 = lean_array_get(x_1227, x_104, x_1228); +lean_dec(x_104); +x_1230 = lean_array_push(x_1226, x_1229); +x_1231 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_1232 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1232, 0, x_1231); +lean_ctor_set(x_1232, 1, x_1230); +x_1233 = lean_array_push(x_1220, x_1232); +x_1234 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +x_1235 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1235, 0, x_1234); +lean_ctor_set(x_1235, 1, x_1233); +x_1236 = lean_array_push(x_1217, x_1235); +x_1237 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1237, 0, x_1221); lean_ctor_set(x_1237, 1, x_1236); -x_1238 = lean_array_push(x_1235, x_1237); -x_1239 = l_Lean_instInhabitedSyntax; -x_1240 = lean_unsigned_to_nat(0u); -x_1241 = lean_array_get(x_1239, x_97, x_1240); -lean_dec(x_97); -x_1242 = lean_array_push(x_1238, x_1241); -x_1243 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; -x_1244 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1244, 0, x_1243); -lean_ctor_set(x_1244, 1, x_1242); -x_1245 = lean_array_push(x_1232, x_1244); -x_1246 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; -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_1229, x_1247); -x_1249 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1249, 0, x_1233); -lean_ctor_set(x_1249, 1, x_1248); -x_1250 = lean_array_push(x_1227, x_1249); -x_1251 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_1252 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1252, 0, x_1251); -lean_ctor_set(x_1252, 1, x_1250); +x_1238 = lean_array_push(x_1215, x_1237); +x_1239 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1240 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1240, 0, x_1239); +lean_ctor_set(x_1240, 1, x_1238); lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); @@ -6054,95 +7010,94 @@ lean_inc(x_2); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_1253 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2(x_3, x_4, x_5, x_2, x_10, x_87, x_30, x_1252, x_11, x_12, x_13, x_14, x_15, x_16, x_1219); -lean_dec(x_30); +x_1241 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_94, x_3, x_4, x_5, x_2, x_10, x_87, x_93, x_1240, x_11, x_12, x_13, x_14, x_15, x_16, x_1208); +lean_dec(x_93); lean_dec(x_87); -x_18 = x_1253; +x_18 = x_1241; goto block_28; } else { -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; -x_1254 = lean_ctor_get(x_108, 0); -lean_inc(x_1254); -lean_dec(x_108); -x_1255 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_1209); -x_1256 = lean_ctor_get(x_1255, 0); -lean_inc(x_1256); -x_1257 = lean_ctor_get(x_1255, 1); -lean_inc(x_1257); -lean_dec(x_1255); -x_1258 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_1257); -x_1259 = lean_ctor_get(x_1258, 0); -lean_inc(x_1259); -x_1260 = lean_ctor_get(x_1258, 1); -lean_inc(x_1260); -lean_dec(x_1258); -x_1261 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__26; +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; +x_1242 = lean_ctor_get(x_115, 0); +lean_inc(x_1242); +lean_dec(x_115); +x_1243 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_1198); +x_1244 = lean_ctor_get(x_1243, 0); +lean_inc(x_1244); +x_1245 = lean_ctor_get(x_1243, 1); +lean_inc(x_1245); +lean_dec(x_1243); +x_1246 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_1245); +x_1247 = lean_ctor_get(x_1246, 0); +lean_inc(x_1247); +x_1248 = lean_ctor_get(x_1246, 1); +lean_inc(x_1248); +lean_dec(x_1246); +x_1249 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__27; lean_inc(x_3); -x_1262 = lean_name_mk_string(x_3, x_1261); -lean_inc(x_1262); -x_1263 = l_Lean_addMacroScope(x_1259, x_1262, x_1256); +x_1250 = lean_name_mk_string(x_3, x_1249); +lean_inc(x_1250); +x_1251 = l_Lean_addMacroScope(x_1247, x_1250, x_1244); lean_inc(x_4); -x_1264 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1264, 0, x_1262); -lean_ctor_set(x_1264, 1, x_4); +lean_ctor_set(x_90, 1, x_4); +lean_ctor_set(x_90, 0, x_1250); lean_inc(x_5); -x_1265 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1265, 0, x_1264); -lean_ctor_set(x_1265, 1, x_5); -x_1266 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__25; +x_1252 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1252, 0, x_90); +lean_ctor_set(x_1252, 1, x_5); +x_1253 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26; lean_inc(x_2); -x_1267 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1267, 0, x_2); -lean_ctor_set(x_1267, 1, x_1266); -lean_ctor_set(x_1267, 2, x_1263); -lean_ctor_set(x_1267, 3, x_1265); -x_1268 = l_Array_empty___closed__1; -x_1269 = lean_array_push(x_1268, x_1267); -x_1270 = lean_array_push(x_1268, x_1210); -x_1271 = lean_array_push(x_1270, x_1254); -x_1272 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; +x_1254 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1254, 0, x_2); +lean_ctor_set(x_1254, 1, x_1253); +lean_ctor_set(x_1254, 2, x_1251); +lean_ctor_set(x_1254, 3, x_1252); +x_1255 = l_Array_empty___closed__1; +x_1256 = lean_array_push(x_1255, x_1254); +x_1257 = lean_array_push(x_1255, x_1199); +x_1258 = lean_array_push(x_1257, x_1242); +x_1259 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; lean_inc(x_2); -x_1273 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1273, 0, x_2); -lean_ctor_set(x_1273, 1, x_1272); -x_1274 = lean_array_push(x_1268, x_1273); -x_1275 = l_Lean_nullKind___closed__2; -lean_inc(x_1271); +x_1260 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1260, 0, x_2); +lean_ctor_set(x_1260, 1, x_1259); +x_1261 = lean_array_push(x_1255, x_1260); +x_1262 = l_Lean_nullKind___closed__2; +lean_inc(x_1258); +x_1263 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1263, 0, x_1262); +lean_ctor_set(x_1263, 1, x_1258); +x_1264 = lean_array_push(x_1255, x_1263); +x_1265 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; +lean_inc(x_2); +x_1266 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1266, 0, x_2); +lean_ctor_set(x_1266, 1, x_1265); +x_1267 = lean_array_push(x_1264, x_1266); +x_1268 = l_Lean_instInhabitedSyntax; +x_1269 = lean_unsigned_to_nat(0u); +x_1270 = lean_array_get(x_1268, x_104, x_1269); +lean_dec(x_104); +x_1271 = lean_array_push(x_1267, x_1270); +x_1272 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_1273 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1273, 0, x_1272); +lean_ctor_set(x_1273, 1, x_1271); +x_1274 = lean_array_push(x_1261, x_1273); +x_1275 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; x_1276 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1276, 0, x_1275); -lean_ctor_set(x_1276, 1, x_1271); -x_1277 = lean_array_push(x_1268, x_1276); -x_1278 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; -lean_inc(x_2); -x_1279 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1279, 0, x_2); -lean_ctor_set(x_1279, 1, x_1278); -x_1280 = lean_array_push(x_1277, x_1279); -x_1281 = l_Lean_instInhabitedSyntax; -x_1282 = lean_unsigned_to_nat(0u); -x_1283 = lean_array_get(x_1281, x_97, x_1282); -lean_dec(x_97); -x_1284 = lean_array_push(x_1280, x_1283); -x_1285 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; -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_1274, x_1286); -x_1288 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; -x_1289 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1289, 0, x_1288); -lean_ctor_set(x_1289, 1, x_1287); -x_1290 = lean_array_push(x_1271, x_1289); -x_1291 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1291, 0, x_1275); -lean_ctor_set(x_1291, 1, x_1290); -x_1292 = lean_array_push(x_1269, x_1291); -x_1293 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_1294 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1294, 0, x_1293); -lean_ctor_set(x_1294, 1, x_1292); +lean_ctor_set(x_1276, 1, x_1274); +x_1277 = lean_array_push(x_1258, x_1276); +x_1278 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1278, 0, x_1262); +lean_ctor_set(x_1278, 1, x_1277); +x_1279 = lean_array_push(x_1256, x_1278); +x_1280 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1281 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1281, 0, x_1280); +lean_ctor_set(x_1281, 1, x_1279); lean_inc(x_16); lean_inc(x_15); lean_inc(x_14); @@ -6153,10 +7108,10 @@ lean_inc(x_2); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_1295 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2(x_3, x_4, x_5, x_2, x_10, x_87, x_30, x_1294, x_11, x_12, x_13, x_14, x_15, x_16, x_1260); -lean_dec(x_30); +x_1282 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_94, x_3, x_4, x_5, x_2, x_10, x_87, x_93, x_1281, x_11, x_12, x_13, x_14, x_15, x_16, x_1248); +lean_dec(x_93); lean_dec(x_87); -x_18 = x_1295; +x_18 = x_1282; goto block_28; } } @@ -6164,39 +7119,41 @@ goto block_28; } else { -lean_object* x_1296; lean_object* x_1297; lean_object* x_1298; uint8_t x_1299; -lean_dec(x_742); -lean_dec(x_108); -lean_dec(x_100); -lean_dec(x_97); +lean_object* x_1283; lean_object* x_1284; lean_object* x_1285; uint8_t x_1286; +lean_dec(x_739); +lean_dec(x_115); +lean_dec(x_107); +lean_dec(x_104); +lean_free_object(x_90); +lean_dec(x_94); +lean_dec(x_93); lean_dec(x_87); -lean_dec(x_30); lean_dec(x_10); -x_1296 = lean_ctor_get(x_99, 1); -lean_inc(x_1296); -lean_dec(x_99); -x_1297 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__29; +x_1283 = lean_ctor_get(x_106, 1); +lean_inc(x_1283); +lean_dec(x_106); +x_1284 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__30; lean_inc(x_15); lean_inc(x_11); -x_1298 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(x_6, x_1297, x_11, x_12, x_13, x_14, x_15, x_16, x_1296); -x_1299 = !lean_is_exclusive(x_1298); -if (x_1299 == 0) +x_1285 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(x_6, x_1284, x_11, x_12, x_13, x_14, x_15, x_16, x_1283); +x_1286 = !lean_is_exclusive(x_1285); +if (x_1286 == 0) { -x_18 = x_1298; +x_18 = x_1285; goto block_28; } else { -lean_object* x_1300; lean_object* x_1301; lean_object* x_1302; -x_1300 = lean_ctor_get(x_1298, 0); -x_1301 = lean_ctor_get(x_1298, 1); -lean_inc(x_1301); -lean_inc(x_1300); -lean_dec(x_1298); -x_1302 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1302, 0, x_1300); -lean_ctor_set(x_1302, 1, x_1301); -x_18 = x_1302; +lean_object* x_1287; lean_object* x_1288; lean_object* x_1289; +x_1287 = lean_ctor_get(x_1285, 0); +x_1288 = lean_ctor_get(x_1285, 1); +lean_inc(x_1288); +lean_inc(x_1287); +lean_dec(x_1285); +x_1289 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1289, 0, x_1287); +lean_ctor_set(x_1289, 1, x_1288); +x_18 = x_1289; goto block_28; } } @@ -6205,163 +7162,1842 @@ goto block_28; } else { -uint8_t x_1303; -lean_dec(x_97); +uint8_t x_1290; +lean_dec(x_104); +lean_free_object(x_90); +lean_dec(x_94); +lean_dec(x_93); lean_dec(x_87); -lean_dec(x_30); lean_dec(x_10); -x_1303 = !lean_is_exclusive(x_99); -if (x_1303 == 0) +x_1290 = !lean_is_exclusive(x_106); +if (x_1290 == 0) { -x_18 = x_99; +x_18 = x_106; goto block_28; } else { -lean_object* x_1304; lean_object* x_1305; lean_object* x_1306; -x_1304 = lean_ctor_get(x_99, 0); -x_1305 = lean_ctor_get(x_99, 1); -lean_inc(x_1305); -lean_inc(x_1304); -lean_dec(x_99); -x_1306 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1306, 0, x_1304); -lean_ctor_set(x_1306, 1, x_1305); -x_18 = x_1306; +lean_object* x_1291; lean_object* x_1292; lean_object* x_1293; +x_1291 = lean_ctor_get(x_106, 0); +x_1292 = lean_ctor_get(x_106, 1); +lean_inc(x_1292); +lean_inc(x_1291); +lean_dec(x_106); +x_1293 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1293, 0, x_1291); +lean_ctor_set(x_1293, 1, x_1292); +x_18 = x_1293; goto block_28; } } } else { -uint8_t x_1307; +uint8_t x_1294; +lean_free_object(x_90); +lean_dec(x_94); +lean_dec(x_93); lean_dec(x_87); -lean_dec(x_30); lean_dec(x_10); -x_1307 = !lean_is_exclusive(x_96); -if (x_1307 == 0) +x_1294 = !lean_is_exclusive(x_103); +if (x_1294 == 0) { -x_18 = x_96; +x_18 = x_103; goto block_28; } else { -lean_object* x_1308; lean_object* x_1309; lean_object* x_1310; -x_1308 = lean_ctor_get(x_96, 0); -x_1309 = lean_ctor_get(x_96, 1); +lean_object* x_1295; lean_object* x_1296; lean_object* x_1297; +x_1295 = lean_ctor_get(x_103, 0); +x_1296 = lean_ctor_get(x_103, 1); +lean_inc(x_1296); +lean_inc(x_1295); +lean_dec(x_103); +x_1297 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1297, 0, x_1295); +lean_ctor_set(x_1297, 1, x_1296); +x_18 = x_1297; +goto block_28; +} +} +} +else +{ +lean_object* x_1298; lean_object* x_1299; lean_object* x_1300; lean_object* x_1301; size_t 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; +x_1298 = lean_ctor_get(x_90, 0); +x_1299 = lean_ctor_get(x_90, 1); +lean_inc(x_1299); +lean_inc(x_1298); +lean_dec(x_90); +x_1300 = l_Lean_Elab_Term_Quotation_getAntiquotScopeContents(x_1298); +x_1301 = lean_array_get_size(x_1300); +x_1302 = lean_usize_of_nat(x_1301); +lean_dec(x_1301); +x_1303 = x_1300; +x_1304 = lean_box_usize(x_1302); +x_1305 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___boxed__const__1; +x_1306 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__2___boxed), 10, 3); +lean_closure_set(x_1306, 0, x_1304); +lean_closure_set(x_1306, 1, x_1305); +lean_closure_set(x_1306, 2, x_1303); +x_1307 = x_1306; +lean_inc(x_16); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +x_1308 = lean_apply_7(x_1307, x_11, x_12, x_13, x_14, x_15, x_16, x_91); +if (lean_obj_tag(x_1308) == 0) +{ +lean_object* x_1309; lean_object* x_1310; lean_object* x_1311; +x_1309 = lean_ctor_get(x_1308, 0); lean_inc(x_1309); -lean_inc(x_1308); -lean_dec(x_96); -x_1310 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1310, 0, x_1308); -lean_ctor_set(x_1310, 1, x_1309); -x_18 = x_1310; -goto block_28; -} -} -} -} -else +x_1310 = lean_ctor_get(x_1308, 1); +lean_inc(x_1310); +lean_dec(x_1308); +lean_inc(x_15); +lean_inc(x_11); +lean_inc(x_1298); +x_1311 = l_Lean_Elab_Term_Quotation_getAntiquotationIds(x_1298, x_11, x_12, x_13, x_14, x_15, x_16, x_1310); +if (lean_obj_tag(x_1311) == 0) { -lean_object* x_1311; lean_object* x_1312; lean_object* x_1313; lean_object* x_1314; uint8_t x_1315; -x_1311 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_17); +lean_object* x_1312; x_1312 = lean_ctor_get(x_1311, 0); lean_inc(x_1312); +if (lean_obj_tag(x_1312) == 0) +{ +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_dec(x_1309); +lean_dec(x_1299); +lean_dec(x_1298); +lean_dec(x_87); +lean_dec(x_10); x_1313 = lean_ctor_get(x_1311, 1); lean_inc(x_1313); lean_dec(x_1311); -x_1314 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_1313); -x_1315 = !lean_is_exclusive(x_1314); -if (x_1315 == 0) -{ -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; -x_1316 = lean_ctor_get(x_1314, 0); -x_1317 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1___closed__4; -lean_inc(x_3); -x_1318 = lean_name_mk_string(x_3, x_1317); -lean_inc(x_1318); -x_1319 = l_Lean_addMacroScope(x_1316, x_1318, x_1312); -lean_inc(x_4); -x_1320 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1320, 0, x_1318); -lean_ctor_set(x_1320, 1, x_4); -lean_inc(x_5); -x_1321 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1321, 0, x_1320); -lean_ctor_set(x_1321, 1, x_5); -x_1322 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1___closed__3; -lean_inc(x_2); -x_1323 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1323, 0, x_2); -lean_ctor_set(x_1323, 1, x_1322); -lean_ctor_set(x_1323, 2, x_1319); -lean_ctor_set(x_1323, 3, x_1321); -x_1324 = l_Array_empty___closed__1; -x_1325 = lean_array_push(x_1324, x_1323); -x_1326 = lean_array_push(x_1324, x_10); -x_1327 = l_Lean_Elab_Term_Quotation_getAntiquotTerm(x_30); -lean_dec(x_30); -x_1328 = lean_array_push(x_1326, x_1327); -x_1329 = l_Lean_nullKind___closed__2; -x_1330 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1330, 0, x_1329); -lean_ctor_set(x_1330, 1, x_1328); -x_1331 = lean_array_push(x_1325, x_1330); -x_1332 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_1333 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1333, 0, x_1332); -lean_ctor_set(x_1333, 1, x_1331); -lean_ctor_set(x_1314, 0, x_1333); -x_18 = x_1314; +x_1314 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__8; +lean_inc(x_15); +lean_inc(x_11); +x_1315 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(x_6, x_1314, x_11, x_12, x_13, x_14, x_15, x_16, x_1313); +x_1316 = lean_ctor_get(x_1315, 0); +lean_inc(x_1316); +x_1317 = lean_ctor_get(x_1315, 1); +lean_inc(x_1317); +if (lean_is_exclusive(x_1315)) { + lean_ctor_release(x_1315, 0); + lean_ctor_release(x_1315, 1); + x_1318 = x_1315; +} else { + lean_dec_ref(x_1315); + x_1318 = lean_box(0); +} +if (lean_is_scalar(x_1318)) { + x_1319 = lean_alloc_ctor(1, 2, 0); +} else { + x_1319 = x_1318; +} +lean_ctor_set(x_1319, 0, x_1316); +lean_ctor_set(x_1319, 1, x_1317); +x_18 = x_1319; goto block_28; } else { -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; -x_1334 = lean_ctor_get(x_1314, 0); -x_1335 = lean_ctor_get(x_1314, 1); -lean_inc(x_1335); -lean_inc(x_1334); -lean_dec(x_1314); -x_1336 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1___closed__4; +lean_object* x_1320; +x_1320 = lean_ctor_get(x_1312, 1); +lean_inc(x_1320); +if (lean_obj_tag(x_1320) == 0) +{ +if (lean_obj_tag(x_87) == 0) +{ +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; +x_1321 = lean_ctor_get(x_1311, 1); +lean_inc(x_1321); +lean_dec(x_1311); +x_1322 = lean_ctor_get(x_1312, 0); +lean_inc(x_1322); +if (lean_is_exclusive(x_1312)) { + lean_ctor_release(x_1312, 0); + lean_ctor_release(x_1312, 1); + x_1323 = x_1312; +} else { + lean_dec_ref(x_1312); + x_1323 = lean_box(0); +} +x_1324 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_1321); +x_1325 = lean_ctor_get(x_1324, 0); +lean_inc(x_1325); +x_1326 = lean_ctor_get(x_1324, 1); +lean_inc(x_1326); +lean_dec(x_1324); +x_1327 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_1326); +x_1328 = lean_ctor_get(x_1327, 0); +lean_inc(x_1328); +x_1329 = lean_ctor_get(x_1327, 1); +lean_inc(x_1329); +lean_dec(x_1327); +x_1330 = l_myMacro____x40_Init_Notation___hyg_9405____closed__6; lean_inc(x_3); -x_1337 = lean_name_mk_string(x_3, x_1336); -lean_inc(x_1337); -x_1338 = l_Lean_addMacroScope(x_1334, x_1337, x_1312); +x_1331 = lean_name_mk_string(x_3, x_1330); +lean_inc(x_1331); +x_1332 = l_Lean_addMacroScope(x_1328, x_1331, x_1325); lean_inc(x_4); -x_1339 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1339, 0, x_1337); -lean_ctor_set(x_1339, 1, x_4); +x_1333 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1333, 0, x_1331); +lean_ctor_set(x_1333, 1, x_4); lean_inc(x_5); -x_1340 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1340, 0, x_1339); -lean_ctor_set(x_1340, 1, x_5); -x_1341 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1___closed__3; +if (lean_is_scalar(x_1323)) { + x_1334 = lean_alloc_ctor(1, 2, 0); +} else { + x_1334 = x_1323; +} +lean_ctor_set(x_1334, 0, x_1333); +lean_ctor_set(x_1334, 1, x_5); +x_1335 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__11; lean_inc(x_2); -x_1342 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1342, 0, x_2); -lean_ctor_set(x_1342, 1, x_1341); -lean_ctor_set(x_1342, 2, x_1338); -lean_ctor_set(x_1342, 3, x_1340); -x_1343 = l_Array_empty___closed__1; -x_1344 = lean_array_push(x_1343, x_1342); -x_1345 = lean_array_push(x_1343, x_10); -x_1346 = l_Lean_Elab_Term_Quotation_getAntiquotTerm(x_30); +x_1336 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1336, 0, x_2); +lean_ctor_set(x_1336, 1, x_1335); +lean_ctor_set(x_1336, 2, x_1332); +lean_ctor_set(x_1336, 3, x_1334); +x_1337 = l_Array_empty___closed__1; +x_1338 = lean_array_push(x_1337, x_1336); +x_1339 = l_myMacro____x40_Init_Notation___hyg_9707____closed__9; +lean_inc(x_2); +x_1340 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1340, 0, x_2); +lean_ctor_set(x_1340, 1, x_1339); +x_1341 = lean_array_push(x_1337, x_1340); +x_1342 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; +lean_inc(x_2); +x_1343 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1343, 0, x_2); +lean_ctor_set(x_1343, 1, x_1342); +x_1344 = lean_array_push(x_1337, x_1343); +lean_inc(x_1322); +x_1345 = lean_array_push(x_1337, x_1322); +x_1346 = l_Lean_nullKind___closed__2; +x_1347 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1347, 0, x_1346); +lean_ctor_set(x_1347, 1, x_1345); +x_1348 = lean_array_push(x_1337, x_1347); +x_1349 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; +lean_inc(x_2); +x_1350 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1350, 0, x_2); +lean_ctor_set(x_1350, 1, x_1349); +x_1351 = lean_array_push(x_1348, x_1350); +x_1352 = l_Lean_instInhabitedSyntax; +x_1353 = lean_unsigned_to_nat(0u); +x_1354 = lean_array_get(x_1352, x_1309, x_1353); +lean_dec(x_1309); +x_1355 = lean_array_push(x_1351, x_1354); +x_1356 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_1357 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1357, 0, x_1356); +lean_ctor_set(x_1357, 1, x_1355); +x_1358 = lean_array_push(x_1344, x_1357); +x_1359 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +x_1360 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1360, 0, x_1359); +lean_ctor_set(x_1360, 1, x_1358); +x_1361 = lean_array_push(x_1337, x_1360); +x_1362 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_1363 = lean_array_push(x_1361, x_1362); +x_1364 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1364, 0, x_1346); +lean_ctor_set(x_1364, 1, x_1363); +x_1365 = lean_array_push(x_1341, x_1364); +x_1366 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; +lean_inc(x_2); +x_1367 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1367, 0, x_2); +lean_ctor_set(x_1367, 1, x_1366); +x_1368 = lean_array_push(x_1365, x_1367); +x_1369 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; +x_1370 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1370, 0, x_1369); +lean_ctor_set(x_1370, 1, x_1368); +x_1371 = lean_array_push(x_1337, x_1370); +x_1372 = lean_array_push(x_1371, x_1322); +x_1373 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1373, 0, x_1346); +lean_ctor_set(x_1373, 1, x_1372); +x_1374 = lean_array_push(x_1338, x_1373); +x_1375 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1376 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1376, 0, x_1375); +lean_ctor_set(x_1376, 1, x_1374); +lean_inc(x_16); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_2); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_1377 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_1299, x_3, x_4, x_5, x_2, x_10, x_87, x_1298, x_1376, x_11, x_12, x_13, x_14, x_15, x_16, x_1329); +lean_dec(x_1298); +x_18 = x_1377; +goto block_28; +} +else +{ +lean_object* x_1378; +x_1378 = lean_ctor_get(x_87, 0); +lean_inc(x_1378); +if (lean_obj_tag(x_1378) == 1) +{ +lean_object* x_1379; +x_1379 = lean_ctor_get(x_1378, 0); +lean_inc(x_1379); +if (lean_obj_tag(x_1379) == 0) +{ +lean_object* x_1380; lean_object* x_1381; lean_object* x_1382; lean_object* x_1383; lean_object* x_1384; uint8_t x_1385; +x_1380 = lean_ctor_get(x_1311, 1); +lean_inc(x_1380); +lean_dec(x_1311); +x_1381 = lean_ctor_get(x_1312, 0); +lean_inc(x_1381); +if (lean_is_exclusive(x_1312)) { + lean_ctor_release(x_1312, 0); + lean_ctor_release(x_1312, 1); + x_1382 = x_1312; +} else { + lean_dec_ref(x_1312); + x_1382 = lean_box(0); +} +x_1383 = lean_ctor_get(x_1378, 1); +lean_inc(x_1383); +lean_dec(x_1378); +x_1384 = l_myMacro____x40_Init_Notation___hyg_11399____closed__1; +x_1385 = lean_string_dec_eq(x_1383, x_1384); +lean_dec(x_1383); +if (x_1385 == 0) +{ +lean_object* x_1386; lean_object* x_1387; lean_object* x_1388; lean_object* x_1389; lean_object* x_1390; lean_object* x_1391; lean_object* x_1392; lean_object* x_1393; lean_object* x_1394; lean_object* x_1395; lean_object* x_1396; lean_object* x_1397; lean_object* x_1398; lean_object* x_1399; lean_object* x_1400; lean_object* x_1401; lean_object* x_1402; lean_object* x_1403; lean_object* x_1404; lean_object* x_1405; lean_object* x_1406; lean_object* x_1407; lean_object* x_1408; lean_object* x_1409; lean_object* x_1410; lean_object* x_1411; lean_object* x_1412; lean_object* x_1413; lean_object* x_1414; lean_object* x_1415; lean_object* x_1416; lean_object* x_1417; lean_object* x_1418; lean_object* x_1419; lean_object* x_1420; lean_object* x_1421; lean_object* x_1422; lean_object* x_1423; lean_object* x_1424; lean_object* x_1425; lean_object* x_1426; lean_object* x_1427; lean_object* x_1428; lean_object* x_1429; lean_object* x_1430; lean_object* x_1431; lean_object* x_1432; lean_object* x_1433; lean_object* x_1434; lean_object* x_1435; lean_object* x_1436; lean_object* x_1437; lean_object* x_1438; lean_object* x_1439; +x_1386 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_1380); +x_1387 = lean_ctor_get(x_1386, 0); +lean_inc(x_1387); +x_1388 = lean_ctor_get(x_1386, 1); +lean_inc(x_1388); +lean_dec(x_1386); +x_1389 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_1388); +x_1390 = lean_ctor_get(x_1389, 0); +lean_inc(x_1390); +x_1391 = lean_ctor_get(x_1389, 1); +lean_inc(x_1391); +lean_dec(x_1389); +x_1392 = l_myMacro____x40_Init_Notation___hyg_9405____closed__6; +lean_inc(x_3); +x_1393 = lean_name_mk_string(x_3, x_1392); +lean_inc(x_1393); +x_1394 = l_Lean_addMacroScope(x_1390, x_1393, x_1387); +lean_inc(x_4); +x_1395 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1395, 0, x_1393); +lean_ctor_set(x_1395, 1, x_4); +lean_inc(x_5); +if (lean_is_scalar(x_1382)) { + x_1396 = lean_alloc_ctor(1, 2, 0); +} else { + x_1396 = x_1382; +} +lean_ctor_set(x_1396, 0, x_1395); +lean_ctor_set(x_1396, 1, x_5); +x_1397 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__11; +lean_inc(x_2); +x_1398 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1398, 0, x_2); +lean_ctor_set(x_1398, 1, x_1397); +lean_ctor_set(x_1398, 2, x_1394); +lean_ctor_set(x_1398, 3, x_1396); +x_1399 = l_Array_empty___closed__1; +x_1400 = lean_array_push(x_1399, x_1398); +x_1401 = l_myMacro____x40_Init_Notation___hyg_9707____closed__9; +lean_inc(x_2); +x_1402 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1402, 0, x_2); +lean_ctor_set(x_1402, 1, x_1401); +x_1403 = lean_array_push(x_1399, x_1402); +x_1404 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; +lean_inc(x_2); +x_1405 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1405, 0, x_2); +lean_ctor_set(x_1405, 1, x_1404); +x_1406 = lean_array_push(x_1399, x_1405); +lean_inc(x_1381); +x_1407 = lean_array_push(x_1399, x_1381); +x_1408 = l_Lean_nullKind___closed__2; +x_1409 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1409, 0, x_1408); +lean_ctor_set(x_1409, 1, x_1407); +x_1410 = lean_array_push(x_1399, x_1409); +x_1411 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; +lean_inc(x_2); +x_1412 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1412, 0, x_2); +lean_ctor_set(x_1412, 1, x_1411); +x_1413 = lean_array_push(x_1410, x_1412); +x_1414 = l_Lean_instInhabitedSyntax; +x_1415 = lean_unsigned_to_nat(0u); +x_1416 = lean_array_get(x_1414, x_1309, x_1415); +lean_dec(x_1309); +x_1417 = lean_array_push(x_1413, x_1416); +x_1418 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_1419 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1419, 0, x_1418); +lean_ctor_set(x_1419, 1, x_1417); +x_1420 = lean_array_push(x_1406, x_1419); +x_1421 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +x_1422 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1422, 0, x_1421); +lean_ctor_set(x_1422, 1, x_1420); +x_1423 = lean_array_push(x_1399, x_1422); +x_1424 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_1425 = lean_array_push(x_1423, x_1424); +x_1426 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1426, 0, x_1408); +lean_ctor_set(x_1426, 1, x_1425); +x_1427 = lean_array_push(x_1403, x_1426); +x_1428 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; +lean_inc(x_2); +x_1429 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1429, 0, x_2); +lean_ctor_set(x_1429, 1, x_1428); +x_1430 = lean_array_push(x_1427, x_1429); +x_1431 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; +x_1432 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1432, 0, x_1431); +lean_ctor_set(x_1432, 1, x_1430); +x_1433 = lean_array_push(x_1399, x_1432); +x_1434 = lean_array_push(x_1433, x_1381); +x_1435 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1435, 0, x_1408); +lean_ctor_set(x_1435, 1, x_1434); +x_1436 = lean_array_push(x_1400, x_1435); +x_1437 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1438 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1438, 0, x_1437); +lean_ctor_set(x_1438, 1, x_1436); +lean_inc(x_16); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_2); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_1439 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_1299, x_3, x_4, x_5, x_2, x_10, x_87, x_1298, x_1438, x_11, x_12, x_13, x_14, x_15, x_16, x_1391); +lean_dec(x_1298); +lean_dec(x_87); +x_18 = x_1439; +goto block_28; +} +else +{ +lean_object* x_1440; lean_object* x_1441; lean_object* x_1442; lean_object* x_1443; lean_object* x_1444; lean_object* x_1445; lean_object* x_1446; lean_object* x_1447; lean_object* x_1448; lean_object* x_1449; lean_object* x_1450; lean_object* x_1451; lean_object* x_1452; lean_object* x_1453; lean_object* x_1454; lean_object* x_1455; lean_object* x_1456; lean_object* x_1457; lean_object* x_1458; lean_object* x_1459; lean_object* x_1460; lean_object* x_1461; lean_object* x_1462; lean_object* x_1463; lean_object* x_1464; lean_object* x_1465; lean_object* x_1466; lean_object* x_1467; lean_object* x_1468; lean_object* x_1469; lean_object* x_1470; lean_object* x_1471; lean_object* x_1472; lean_object* x_1473; lean_object* x_1474; lean_object* x_1475; lean_object* x_1476; lean_object* x_1477; lean_object* x_1478; lean_object* x_1479; lean_object* x_1480; lean_object* x_1481; lean_object* x_1482; lean_object* x_1483; lean_object* x_1484; lean_object* x_1485; lean_object* x_1486; lean_object* x_1487; lean_object* x_1488; lean_object* x_1489; lean_object* x_1490; lean_object* x_1491; lean_object* x_1492; lean_object* x_1493; lean_object* x_1494; lean_object* x_1495; lean_object* x_1496; lean_object* x_1497; lean_object* x_1498; lean_object* x_1499; lean_object* x_1500; lean_object* x_1501; lean_object* x_1502; lean_object* x_1503; lean_object* x_1504; lean_object* x_1505; lean_object* x_1506; lean_object* x_1507; lean_object* x_1508; lean_object* x_1509; lean_object* x_1510; lean_object* x_1511; lean_object* x_1512; lean_object* x_1513; lean_object* x_1514; lean_object* x_1515; lean_object* x_1516; lean_object* x_1517; lean_object* x_1518; lean_object* x_1519; lean_object* x_1520; lean_object* x_1521; lean_object* x_1522; lean_object* x_1523; lean_object* x_1524; lean_object* x_1525; lean_object* x_1526; lean_object* x_1527; lean_object* x_1528; +x_1440 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_1380); +x_1441 = lean_ctor_get(x_1440, 0); +lean_inc(x_1441); +x_1442 = lean_ctor_get(x_1440, 1); +lean_inc(x_1442); +lean_dec(x_1440); +x_1443 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_1442); +x_1444 = lean_ctor_get(x_1443, 0); +lean_inc(x_1444); +x_1445 = lean_ctor_get(x_1443, 1); +lean_inc(x_1445); +lean_dec(x_1443); +x_1446 = l_Lean_Parser_Tactic_match___closed__1; +lean_inc(x_2); +x_1447 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1447, 0, x_2); +lean_ctor_set(x_1447, 1, x_1446); +x_1448 = l_Array_empty___closed__1; +x_1449 = lean_array_push(x_1448, x_1447); +x_1450 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; +lean_inc(x_1381); +x_1451 = lean_array_push(x_1450, x_1381); +x_1452 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__13; +x_1453 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1453, 0, x_1452); +lean_ctor_set(x_1453, 1, x_1451); +x_1454 = lean_array_push(x_1448, x_1453); +x_1455 = l_Lean_nullKind___closed__2; +x_1456 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1456, 0, x_1455); +lean_ctor_set(x_1456, 1, x_1454); +x_1457 = lean_array_push(x_1449, x_1456); +x_1458 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_1459 = lean_array_push(x_1457, x_1458); +x_1460 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__15; +lean_inc(x_2); +x_1461 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1461, 0, x_2); +lean_ctor_set(x_1461, 1, x_1460); +x_1462 = lean_array_push(x_1459, x_1461); +x_1463 = l_Lean_Parser_Tactic_intro___closed__7; +lean_inc(x_2); +x_1464 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1464, 0, x_2); +lean_ctor_set(x_1464, 1, x_1463); +lean_inc(x_1464); +x_1465 = lean_array_push(x_1448, x_1464); +x_1466 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1466, 0, x_1455); +lean_ctor_set(x_1466, 1, x_1465); +x_1467 = lean_array_push(x_1448, x_1466); +x_1468 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__20; +lean_inc(x_1441); +lean_inc(x_1444); +x_1469 = l_Lean_addMacroScope(x_1444, x_1468, x_1441); +x_1470 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__6; +lean_inc(x_4); +x_1471 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1471, 0, x_1470); +lean_ctor_set(x_1471, 1, x_4); +lean_inc(x_5); +if (lean_is_scalar(x_1382)) { + x_1472 = lean_alloc_ctor(1, 2, 0); +} else { + x_1472 = x_1382; +} +lean_ctor_set(x_1472, 0, x_1471); +lean_ctor_set(x_1472, 1, x_5); +x_1473 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__19; +lean_inc(x_2); +x_1474 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1474, 0, x_2); +lean_ctor_set(x_1474, 1, x_1473); +lean_ctor_set(x_1474, 2, x_1469); +lean_ctor_set(x_1474, 3, x_1472); +x_1475 = lean_array_push(x_1448, x_1474); +x_1476 = lean_array_push(x_1448, x_1381); +x_1477 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1477, 0, x_1455); +lean_ctor_set(x_1477, 1, x_1476); +x_1478 = lean_array_push(x_1475, x_1477); +x_1479 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1480 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1480, 0, x_1479); +lean_ctor_set(x_1480, 1, x_1478); +x_1481 = lean_array_push(x_1448, x_1480); +x_1482 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1482, 0, x_1455); +lean_ctor_set(x_1482, 1, x_1481); +x_1483 = lean_array_push(x_1448, x_1482); +x_1484 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; +lean_inc(x_2); +x_1485 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1485, 0, x_2); +lean_ctor_set(x_1485, 1, x_1484); +lean_inc(x_1485); +x_1486 = lean_array_push(x_1483, x_1485); +x_1487 = lean_array_to_list(lean_box(0), x_1309); +x_1488 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_1487); +x_1489 = l_Lean_mkOptionalNode___closed__2; +x_1490 = lean_array_push(x_1489, x_1488); +x_1491 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__5; +x_1492 = l_Lean_Syntax_mkCApp(x_1491, x_1490); +x_1493 = lean_array_push(x_1486, x_1492); +x_1494 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; +x_1495 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1495, 0, x_1494); +lean_ctor_set(x_1495, 1, x_1493); +x_1496 = lean_array_push(x_1448, x_1495); +x_1497 = lean_array_push(x_1496, x_1464); +x_1498 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__23; +x_1499 = l_Lean_addMacroScope(x_1444, x_1498, x_1441); +x_1500 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__3; +lean_inc(x_4); +x_1501 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1501, 0, x_1500); +lean_ctor_set(x_1501, 1, x_4); +lean_inc(x_5); +x_1502 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1502, 0, x_1501); +lean_ctor_set(x_1502, 1, x_5); +x_1503 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22; +lean_inc(x_2); +x_1504 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1504, 0, x_2); +lean_ctor_set(x_1504, 1, x_1503); +lean_ctor_set(x_1504, 2, x_1499); +lean_ctor_set(x_1504, 3, x_1502); +x_1505 = lean_array_push(x_1448, x_1504); +x_1506 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1506, 0, x_1455); +lean_ctor_set(x_1506, 1, x_1505); +x_1507 = lean_array_push(x_1448, x_1506); +x_1508 = lean_array_push(x_1507, x_1485); +x_1509 = l_addParenHeuristic___closed__2; +lean_inc(x_2); +x_1510 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1510, 0, x_2); +lean_ctor_set(x_1510, 1, x_1509); +x_1511 = lean_array_push(x_1448, x_1510); +x_1512 = lean_array_push(x_1511, x_1458); +x_1513 = l_term_x5b___x2c_x5d___closed__11; +lean_inc(x_2); +x_1514 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1514, 0, x_2); +lean_ctor_set(x_1514, 1, x_1513); +x_1515 = lean_array_push(x_1512, x_1514); +x_1516 = l_term_x23_x5b___x2c_x5d___closed__2; +x_1517 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1517, 0, x_1516); +lean_ctor_set(x_1517, 1, x_1515); +x_1518 = lean_array_push(x_1508, x_1517); +x_1519 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1519, 0, x_1494); +lean_ctor_set(x_1519, 1, x_1518); +x_1520 = lean_array_push(x_1497, x_1519); +x_1521 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1521, 0, x_1455); +lean_ctor_set(x_1521, 1, x_1520); +x_1522 = lean_array_push(x_1467, x_1521); +x_1523 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; +x_1524 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1524, 0, x_1523); +lean_ctor_set(x_1524, 1, x_1522); +x_1525 = lean_array_push(x_1462, x_1524); +x_1526 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__12; +x_1527 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1527, 0, x_1526); +lean_ctor_set(x_1527, 1, x_1525); +lean_inc(x_16); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_2); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_1528 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_1299, x_3, x_4, x_5, x_2, x_10, x_87, x_1298, x_1527, x_11, x_12, x_13, x_14, x_15, x_16, x_1445); +lean_dec(x_1298); +lean_dec(x_87); +x_18 = x_1528; +goto block_28; +} +} +else +{ +lean_object* x_1529; lean_object* x_1530; lean_object* x_1531; lean_object* x_1532; lean_object* x_1533; lean_object* x_1534; lean_object* x_1535; lean_object* x_1536; lean_object* x_1537; lean_object* x_1538; lean_object* x_1539; lean_object* x_1540; lean_object* x_1541; lean_object* x_1542; lean_object* x_1543; lean_object* x_1544; lean_object* x_1545; lean_object* x_1546; lean_object* x_1547; lean_object* x_1548; lean_object* x_1549; lean_object* x_1550; lean_object* x_1551; lean_object* x_1552; lean_object* x_1553; lean_object* x_1554; lean_object* x_1555; lean_object* x_1556; lean_object* x_1557; lean_object* x_1558; lean_object* x_1559; lean_object* x_1560; lean_object* x_1561; lean_object* x_1562; lean_object* x_1563; lean_object* x_1564; lean_object* x_1565; lean_object* x_1566; lean_object* x_1567; lean_object* x_1568; lean_object* x_1569; lean_object* x_1570; lean_object* x_1571; lean_object* x_1572; lean_object* x_1573; lean_object* x_1574; lean_object* x_1575; lean_object* x_1576; lean_object* x_1577; lean_object* x_1578; lean_object* x_1579; lean_object* x_1580; lean_object* x_1581; lean_object* x_1582; lean_object* x_1583; lean_object* x_1584; lean_object* x_1585; +lean_dec(x_1379); +lean_dec(x_1378); +x_1529 = lean_ctor_get(x_1311, 1); +lean_inc(x_1529); +lean_dec(x_1311); +x_1530 = lean_ctor_get(x_1312, 0); +lean_inc(x_1530); +if (lean_is_exclusive(x_1312)) { + lean_ctor_release(x_1312, 0); + lean_ctor_release(x_1312, 1); + x_1531 = x_1312; +} else { + lean_dec_ref(x_1312); + x_1531 = lean_box(0); +} +x_1532 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_1529); +x_1533 = lean_ctor_get(x_1532, 0); +lean_inc(x_1533); +x_1534 = lean_ctor_get(x_1532, 1); +lean_inc(x_1534); +lean_dec(x_1532); +x_1535 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_1534); +x_1536 = lean_ctor_get(x_1535, 0); +lean_inc(x_1536); +x_1537 = lean_ctor_get(x_1535, 1); +lean_inc(x_1537); +lean_dec(x_1535); +x_1538 = l_myMacro____x40_Init_Notation___hyg_9405____closed__6; +lean_inc(x_3); +x_1539 = lean_name_mk_string(x_3, x_1538); +lean_inc(x_1539); +x_1540 = l_Lean_addMacroScope(x_1536, x_1539, x_1533); +lean_inc(x_4); +x_1541 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1541, 0, x_1539); +lean_ctor_set(x_1541, 1, x_4); +lean_inc(x_5); +if (lean_is_scalar(x_1531)) { + x_1542 = lean_alloc_ctor(1, 2, 0); +} else { + x_1542 = x_1531; +} +lean_ctor_set(x_1542, 0, x_1541); +lean_ctor_set(x_1542, 1, x_5); +x_1543 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__11; +lean_inc(x_2); +x_1544 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1544, 0, x_2); +lean_ctor_set(x_1544, 1, x_1543); +lean_ctor_set(x_1544, 2, x_1540); +lean_ctor_set(x_1544, 3, x_1542); +x_1545 = l_Array_empty___closed__1; +x_1546 = lean_array_push(x_1545, x_1544); +x_1547 = l_myMacro____x40_Init_Notation___hyg_9707____closed__9; +lean_inc(x_2); +x_1548 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1548, 0, x_2); +lean_ctor_set(x_1548, 1, x_1547); +x_1549 = lean_array_push(x_1545, x_1548); +x_1550 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; +lean_inc(x_2); +x_1551 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1551, 0, x_2); +lean_ctor_set(x_1551, 1, x_1550); +x_1552 = lean_array_push(x_1545, x_1551); +lean_inc(x_1530); +x_1553 = lean_array_push(x_1545, x_1530); +x_1554 = l_Lean_nullKind___closed__2; +x_1555 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1555, 0, x_1554); +lean_ctor_set(x_1555, 1, x_1553); +x_1556 = lean_array_push(x_1545, x_1555); +x_1557 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; +lean_inc(x_2); +x_1558 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1558, 0, x_2); +lean_ctor_set(x_1558, 1, x_1557); +x_1559 = lean_array_push(x_1556, x_1558); +x_1560 = l_Lean_instInhabitedSyntax; +x_1561 = lean_unsigned_to_nat(0u); +x_1562 = lean_array_get(x_1560, x_1309, x_1561); +lean_dec(x_1309); +x_1563 = lean_array_push(x_1559, x_1562); +x_1564 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_1565 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1565, 0, x_1564); +lean_ctor_set(x_1565, 1, x_1563); +x_1566 = lean_array_push(x_1552, x_1565); +x_1567 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +x_1568 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1568, 0, x_1567); +lean_ctor_set(x_1568, 1, x_1566); +x_1569 = lean_array_push(x_1545, x_1568); +x_1570 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_1571 = lean_array_push(x_1569, x_1570); +x_1572 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1572, 0, x_1554); +lean_ctor_set(x_1572, 1, x_1571); +x_1573 = lean_array_push(x_1549, x_1572); +x_1574 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; +lean_inc(x_2); +x_1575 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1575, 0, x_2); +lean_ctor_set(x_1575, 1, x_1574); +x_1576 = lean_array_push(x_1573, x_1575); +x_1577 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; +x_1578 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1578, 0, x_1577); +lean_ctor_set(x_1578, 1, x_1576); +x_1579 = lean_array_push(x_1545, x_1578); +x_1580 = lean_array_push(x_1579, x_1530); +x_1581 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1581, 0, x_1554); +lean_ctor_set(x_1581, 1, x_1580); +x_1582 = lean_array_push(x_1546, x_1581); +x_1583 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1584 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1584, 0, x_1583); +lean_ctor_set(x_1584, 1, x_1582); +lean_inc(x_16); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_2); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_1585 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_1299, x_3, x_4, x_5, x_2, x_10, x_87, x_1298, x_1584, x_11, x_12, x_13, x_14, x_15, x_16, x_1537); +lean_dec(x_1298); +lean_dec(x_87); +x_18 = x_1585; +goto block_28; +} +} +else +{ +lean_object* x_1586; lean_object* x_1587; lean_object* x_1588; lean_object* x_1589; lean_object* x_1590; lean_object* x_1591; lean_object* x_1592; lean_object* x_1593; lean_object* x_1594; lean_object* x_1595; lean_object* x_1596; lean_object* x_1597; lean_object* x_1598; lean_object* x_1599; lean_object* x_1600; lean_object* x_1601; lean_object* x_1602; lean_object* x_1603; lean_object* x_1604; lean_object* x_1605; lean_object* x_1606; lean_object* x_1607; lean_object* x_1608; lean_object* x_1609; lean_object* x_1610; lean_object* x_1611; lean_object* x_1612; lean_object* x_1613; lean_object* x_1614; lean_object* x_1615; lean_object* x_1616; lean_object* x_1617; lean_object* x_1618; lean_object* x_1619; lean_object* x_1620; lean_object* x_1621; lean_object* x_1622; lean_object* x_1623; lean_object* x_1624; lean_object* x_1625; lean_object* x_1626; lean_object* x_1627; lean_object* x_1628; lean_object* x_1629; lean_object* x_1630; lean_object* x_1631; lean_object* x_1632; lean_object* x_1633; lean_object* x_1634; lean_object* x_1635; lean_object* x_1636; lean_object* x_1637; lean_object* x_1638; lean_object* x_1639; lean_object* x_1640; lean_object* x_1641; lean_object* x_1642; +lean_dec(x_1378); +x_1586 = lean_ctor_get(x_1311, 1); +lean_inc(x_1586); +lean_dec(x_1311); +x_1587 = lean_ctor_get(x_1312, 0); +lean_inc(x_1587); +if (lean_is_exclusive(x_1312)) { + lean_ctor_release(x_1312, 0); + lean_ctor_release(x_1312, 1); + x_1588 = x_1312; +} else { + lean_dec_ref(x_1312); + x_1588 = lean_box(0); +} +x_1589 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_1586); +x_1590 = lean_ctor_get(x_1589, 0); +lean_inc(x_1590); +x_1591 = lean_ctor_get(x_1589, 1); +lean_inc(x_1591); +lean_dec(x_1589); +x_1592 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_1591); +x_1593 = lean_ctor_get(x_1592, 0); +lean_inc(x_1593); +x_1594 = lean_ctor_get(x_1592, 1); +lean_inc(x_1594); +lean_dec(x_1592); +x_1595 = l_myMacro____x40_Init_Notation___hyg_9405____closed__6; +lean_inc(x_3); +x_1596 = lean_name_mk_string(x_3, x_1595); +lean_inc(x_1596); +x_1597 = l_Lean_addMacroScope(x_1593, x_1596, x_1590); +lean_inc(x_4); +x_1598 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1598, 0, x_1596); +lean_ctor_set(x_1598, 1, x_4); +lean_inc(x_5); +if (lean_is_scalar(x_1588)) { + x_1599 = lean_alloc_ctor(1, 2, 0); +} else { + x_1599 = x_1588; +} +lean_ctor_set(x_1599, 0, x_1598); +lean_ctor_set(x_1599, 1, x_5); +x_1600 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__11; +lean_inc(x_2); +x_1601 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1601, 0, x_2); +lean_ctor_set(x_1601, 1, x_1600); +lean_ctor_set(x_1601, 2, x_1597); +lean_ctor_set(x_1601, 3, x_1599); +x_1602 = l_Array_empty___closed__1; +x_1603 = lean_array_push(x_1602, x_1601); +x_1604 = l_myMacro____x40_Init_Notation___hyg_9707____closed__9; +lean_inc(x_2); +x_1605 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1605, 0, x_2); +lean_ctor_set(x_1605, 1, x_1604); +x_1606 = lean_array_push(x_1602, x_1605); +x_1607 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; +lean_inc(x_2); +x_1608 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1608, 0, x_2); +lean_ctor_set(x_1608, 1, x_1607); +x_1609 = lean_array_push(x_1602, x_1608); +lean_inc(x_1587); +x_1610 = lean_array_push(x_1602, x_1587); +x_1611 = l_Lean_nullKind___closed__2; +x_1612 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1612, 0, x_1611); +lean_ctor_set(x_1612, 1, x_1610); +x_1613 = lean_array_push(x_1602, x_1612); +x_1614 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; +lean_inc(x_2); +x_1615 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1615, 0, x_2); +lean_ctor_set(x_1615, 1, x_1614); +x_1616 = lean_array_push(x_1613, x_1615); +x_1617 = l_Lean_instInhabitedSyntax; +x_1618 = lean_unsigned_to_nat(0u); +x_1619 = lean_array_get(x_1617, x_1309, x_1618); +lean_dec(x_1309); +x_1620 = lean_array_push(x_1616, x_1619); +x_1621 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_1622 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1622, 0, x_1621); +lean_ctor_set(x_1622, 1, x_1620); +x_1623 = lean_array_push(x_1609, x_1622); +x_1624 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +x_1625 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1625, 0, x_1624); +lean_ctor_set(x_1625, 1, x_1623); +x_1626 = lean_array_push(x_1602, x_1625); +x_1627 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_1628 = lean_array_push(x_1626, x_1627); +x_1629 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1629, 0, x_1611); +lean_ctor_set(x_1629, 1, x_1628); +x_1630 = lean_array_push(x_1606, x_1629); +x_1631 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; +lean_inc(x_2); +x_1632 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1632, 0, x_2); +lean_ctor_set(x_1632, 1, x_1631); +x_1633 = lean_array_push(x_1630, x_1632); +x_1634 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; +x_1635 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1635, 0, x_1634); +lean_ctor_set(x_1635, 1, x_1633); +x_1636 = lean_array_push(x_1602, x_1635); +x_1637 = lean_array_push(x_1636, x_1587); +x_1638 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1638, 0, x_1611); +lean_ctor_set(x_1638, 1, x_1637); +x_1639 = lean_array_push(x_1603, x_1638); +x_1640 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1641 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1641, 0, x_1640); +lean_ctor_set(x_1641, 1, x_1639); +lean_inc(x_16); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_2); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_1642 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_1299, x_3, x_4, x_5, x_2, x_10, x_87, x_1298, x_1641, x_11, x_12, x_13, x_14, x_15, x_16, x_1594); +lean_dec(x_1298); +lean_dec(x_87); +x_18 = x_1642; +goto block_28; +} +} +} +else +{ +lean_object* x_1643; +x_1643 = lean_ctor_get(x_1320, 1); +lean_inc(x_1643); +if (lean_obj_tag(x_1643) == 0) +{ +if (lean_obj_tag(x_87) == 0) +{ +lean_object* x_1644; lean_object* x_1645; lean_object* x_1646; lean_object* x_1647; lean_object* x_1648; lean_object* x_1649; lean_object* x_1650; lean_object* x_1651; lean_object* x_1652; lean_object* x_1653; lean_object* x_1654; lean_object* x_1655; lean_object* x_1656; lean_object* x_1657; lean_object* x_1658; lean_object* x_1659; lean_object* x_1660; lean_object* x_1661; lean_object* x_1662; lean_object* x_1663; lean_object* x_1664; lean_object* x_1665; lean_object* x_1666; lean_object* x_1667; lean_object* x_1668; lean_object* x_1669; lean_object* x_1670; lean_object* x_1671; lean_object* x_1672; lean_object* x_1673; lean_object* x_1674; lean_object* x_1675; lean_object* x_1676; lean_object* x_1677; lean_object* x_1678; lean_object* x_1679; lean_object* x_1680; lean_object* x_1681; lean_object* x_1682; lean_object* x_1683; lean_object* x_1684; lean_object* x_1685; lean_object* x_1686; lean_object* x_1687; lean_object* x_1688; +x_1644 = lean_ctor_get(x_1311, 1); +lean_inc(x_1644); +lean_dec(x_1311); +x_1645 = lean_ctor_get(x_1312, 0); +lean_inc(x_1645); +lean_dec(x_1312); +x_1646 = lean_ctor_get(x_1320, 0); +lean_inc(x_1646); +if (lean_is_exclusive(x_1320)) { + lean_ctor_release(x_1320, 0); + lean_ctor_release(x_1320, 1); + x_1647 = x_1320; +} else { + lean_dec_ref(x_1320); + x_1647 = lean_box(0); +} +x_1648 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_1644); +x_1649 = lean_ctor_get(x_1648, 0); +lean_inc(x_1649); +x_1650 = lean_ctor_get(x_1648, 1); +lean_inc(x_1650); +lean_dec(x_1648); +x_1651 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_1650); +x_1652 = lean_ctor_get(x_1651, 0); +lean_inc(x_1652); +x_1653 = lean_ctor_get(x_1651, 1); +lean_inc(x_1653); +lean_dec(x_1651); +x_1654 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__27; +lean_inc(x_3); +x_1655 = lean_name_mk_string(x_3, x_1654); +lean_inc(x_1655); +x_1656 = l_Lean_addMacroScope(x_1652, x_1655, x_1649); +lean_inc(x_4); +x_1657 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1657, 0, x_1655); +lean_ctor_set(x_1657, 1, x_4); +lean_inc(x_5); +if (lean_is_scalar(x_1647)) { + x_1658 = lean_alloc_ctor(1, 2, 0); +} else { + x_1658 = x_1647; +} +lean_ctor_set(x_1658, 0, x_1657); +lean_ctor_set(x_1658, 1, x_5); +x_1659 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26; +lean_inc(x_2); +x_1660 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1660, 0, x_2); +lean_ctor_set(x_1660, 1, x_1659); +lean_ctor_set(x_1660, 2, x_1656); +lean_ctor_set(x_1660, 3, x_1658); +x_1661 = l_Array_empty___closed__1; +x_1662 = lean_array_push(x_1661, x_1660); +x_1663 = lean_array_push(x_1661, x_1645); +x_1664 = lean_array_push(x_1663, x_1646); +x_1665 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; +lean_inc(x_2); +x_1666 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1666, 0, x_2); +lean_ctor_set(x_1666, 1, x_1665); +x_1667 = lean_array_push(x_1661, x_1666); +x_1668 = l_Lean_nullKind___closed__2; +lean_inc(x_1664); +x_1669 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1669, 0, x_1668); +lean_ctor_set(x_1669, 1, x_1664); +x_1670 = lean_array_push(x_1661, x_1669); +x_1671 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; +lean_inc(x_2); +x_1672 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1672, 0, x_2); +lean_ctor_set(x_1672, 1, x_1671); +x_1673 = lean_array_push(x_1670, x_1672); +x_1674 = l_Lean_instInhabitedSyntax; +x_1675 = lean_unsigned_to_nat(0u); +x_1676 = lean_array_get(x_1674, x_1309, x_1675); +lean_dec(x_1309); +x_1677 = lean_array_push(x_1673, x_1676); +x_1678 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_1679 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1679, 0, x_1678); +lean_ctor_set(x_1679, 1, x_1677); +x_1680 = lean_array_push(x_1667, x_1679); +x_1681 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +x_1682 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1682, 0, x_1681); +lean_ctor_set(x_1682, 1, x_1680); +x_1683 = lean_array_push(x_1664, x_1682); +x_1684 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1684, 0, x_1668); +lean_ctor_set(x_1684, 1, x_1683); +x_1685 = lean_array_push(x_1662, x_1684); +x_1686 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1687 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1687, 0, x_1686); +lean_ctor_set(x_1687, 1, x_1685); +lean_inc(x_16); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_2); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_1688 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_1299, x_3, x_4, x_5, x_2, x_10, x_87, x_1298, x_1687, x_11, x_12, x_13, x_14, x_15, x_16, x_1653); +lean_dec(x_1298); +x_18 = x_1688; +goto block_28; +} +else +{ +lean_object* x_1689; +x_1689 = lean_ctor_get(x_87, 0); +lean_inc(x_1689); +if (lean_obj_tag(x_1689) == 1) +{ +lean_object* x_1690; +x_1690 = lean_ctor_get(x_1689, 0); +lean_inc(x_1690); +if (lean_obj_tag(x_1690) == 0) +{ +lean_object* x_1691; lean_object* x_1692; lean_object* x_1693; lean_object* x_1694; lean_object* x_1695; lean_object* x_1696; uint8_t x_1697; +x_1691 = lean_ctor_get(x_1311, 1); +lean_inc(x_1691); +lean_dec(x_1311); +x_1692 = lean_ctor_get(x_1312, 0); +lean_inc(x_1692); +lean_dec(x_1312); +x_1693 = lean_ctor_get(x_1320, 0); +lean_inc(x_1693); +if (lean_is_exclusive(x_1320)) { + lean_ctor_release(x_1320, 0); + lean_ctor_release(x_1320, 1); + x_1694 = x_1320; +} else { + lean_dec_ref(x_1320); + x_1694 = lean_box(0); +} +x_1695 = lean_ctor_get(x_1689, 1); +lean_inc(x_1695); +lean_dec(x_1689); +x_1696 = l_myMacro____x40_Init_Notation___hyg_11399____closed__1; +x_1697 = lean_string_dec_eq(x_1695, x_1696); +lean_dec(x_1695); +if (x_1697 == 0) +{ +lean_object* x_1698; lean_object* x_1699; lean_object* x_1700; lean_object* x_1701; lean_object* x_1702; lean_object* x_1703; lean_object* x_1704; lean_object* x_1705; lean_object* x_1706; lean_object* x_1707; lean_object* x_1708; lean_object* x_1709; lean_object* x_1710; lean_object* x_1711; lean_object* x_1712; lean_object* x_1713; lean_object* x_1714; lean_object* x_1715; lean_object* x_1716; lean_object* x_1717; lean_object* x_1718; lean_object* x_1719; lean_object* x_1720; lean_object* x_1721; lean_object* x_1722; lean_object* x_1723; lean_object* x_1724; lean_object* x_1725; lean_object* x_1726; lean_object* x_1727; lean_object* x_1728; lean_object* x_1729; lean_object* x_1730; lean_object* x_1731; lean_object* x_1732; lean_object* x_1733; lean_object* x_1734; lean_object* x_1735; lean_object* x_1736; lean_object* x_1737; lean_object* x_1738; +x_1698 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_1691); +x_1699 = lean_ctor_get(x_1698, 0); +lean_inc(x_1699); +x_1700 = lean_ctor_get(x_1698, 1); +lean_inc(x_1700); +lean_dec(x_1698); +x_1701 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_1700); +x_1702 = lean_ctor_get(x_1701, 0); +lean_inc(x_1702); +x_1703 = lean_ctor_get(x_1701, 1); +lean_inc(x_1703); +lean_dec(x_1701); +x_1704 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__27; +lean_inc(x_3); +x_1705 = lean_name_mk_string(x_3, x_1704); +lean_inc(x_1705); +x_1706 = l_Lean_addMacroScope(x_1702, x_1705, x_1699); +lean_inc(x_4); +x_1707 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1707, 0, x_1705); +lean_ctor_set(x_1707, 1, x_4); +lean_inc(x_5); +if (lean_is_scalar(x_1694)) { + x_1708 = lean_alloc_ctor(1, 2, 0); +} else { + x_1708 = x_1694; +} +lean_ctor_set(x_1708, 0, x_1707); +lean_ctor_set(x_1708, 1, x_5); +x_1709 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26; +lean_inc(x_2); +x_1710 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1710, 0, x_2); +lean_ctor_set(x_1710, 1, x_1709); +lean_ctor_set(x_1710, 2, x_1706); +lean_ctor_set(x_1710, 3, x_1708); +x_1711 = l_Array_empty___closed__1; +x_1712 = lean_array_push(x_1711, x_1710); +x_1713 = lean_array_push(x_1711, x_1692); +x_1714 = lean_array_push(x_1713, x_1693); +x_1715 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; +lean_inc(x_2); +x_1716 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1716, 0, x_2); +lean_ctor_set(x_1716, 1, x_1715); +x_1717 = lean_array_push(x_1711, x_1716); +x_1718 = l_Lean_nullKind___closed__2; +lean_inc(x_1714); +x_1719 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1719, 0, x_1718); +lean_ctor_set(x_1719, 1, x_1714); +x_1720 = lean_array_push(x_1711, x_1719); +x_1721 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; +lean_inc(x_2); +x_1722 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1722, 0, x_2); +lean_ctor_set(x_1722, 1, x_1721); +x_1723 = lean_array_push(x_1720, x_1722); +x_1724 = l_Lean_instInhabitedSyntax; +x_1725 = lean_unsigned_to_nat(0u); +x_1726 = lean_array_get(x_1724, x_1309, x_1725); +lean_dec(x_1309); +x_1727 = lean_array_push(x_1723, x_1726); +x_1728 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_1729 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1729, 0, x_1728); +lean_ctor_set(x_1729, 1, x_1727); +x_1730 = lean_array_push(x_1717, x_1729); +x_1731 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +x_1732 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1732, 0, x_1731); +lean_ctor_set(x_1732, 1, x_1730); +x_1733 = lean_array_push(x_1714, x_1732); +x_1734 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1734, 0, x_1718); +lean_ctor_set(x_1734, 1, x_1733); +x_1735 = lean_array_push(x_1712, x_1734); +x_1736 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1737 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1737, 0, x_1736); +lean_ctor_set(x_1737, 1, x_1735); +lean_inc(x_16); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_2); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_1738 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_1299, x_3, x_4, x_5, x_2, x_10, x_87, x_1298, x_1737, x_11, x_12, x_13, x_14, x_15, x_16, x_1703); +lean_dec(x_1298); +lean_dec(x_87); +x_18 = x_1738; +goto block_28; +} +else +{ +lean_object* x_1739; lean_object* x_1740; lean_object* x_1741; lean_object* x_1742; lean_object* x_1743; lean_object* x_1744; lean_object* x_1745; lean_object* x_1746; lean_object* x_1747; lean_object* x_1748; lean_object* x_1749; lean_object* x_1750; lean_object* x_1751; lean_object* x_1752; lean_object* x_1753; lean_object* x_1754; lean_object* x_1755; lean_object* x_1756; lean_object* x_1757; lean_object* x_1758; lean_object* x_1759; lean_object* x_1760; lean_object* x_1761; lean_object* x_1762; lean_object* x_1763; lean_object* x_1764; lean_object* x_1765; lean_object* x_1766; lean_object* x_1767; lean_object* x_1768; lean_object* x_1769; lean_object* x_1770; lean_object* x_1771; lean_object* x_1772; lean_object* x_1773; lean_object* x_1774; lean_object* x_1775; lean_object* x_1776; lean_object* x_1777; lean_object* x_1778; lean_object* x_1779; lean_object* x_1780; lean_object* x_1781; lean_object* x_1782; lean_object* x_1783; lean_object* x_1784; lean_object* x_1785; lean_object* x_1786; lean_object* x_1787; lean_object* x_1788; lean_object* x_1789; lean_object* x_1790; lean_object* x_1791; lean_object* x_1792; lean_object* x_1793; lean_object* x_1794; lean_object* x_1795; lean_object* x_1796; lean_object* x_1797; lean_object* x_1798; lean_object* x_1799; lean_object* x_1800; lean_object* x_1801; lean_object* x_1802; lean_object* x_1803; lean_object* x_1804; lean_object* x_1805; lean_object* x_1806; lean_object* x_1807; lean_object* x_1808; lean_object* x_1809; lean_object* x_1810; lean_object* x_1811; lean_object* x_1812; lean_object* x_1813; lean_object* x_1814; lean_object* x_1815; lean_object* x_1816; lean_object* x_1817; lean_object* x_1818; lean_object* x_1819; lean_object* x_1820; lean_object* x_1821; lean_object* x_1822; lean_object* x_1823; lean_object* x_1824; lean_object* x_1825; lean_object* x_1826; lean_object* x_1827; lean_object* x_1828; lean_object* x_1829; lean_object* x_1830; lean_object* x_1831; lean_object* x_1832; lean_object* x_1833; lean_object* x_1834; lean_object* x_1835; lean_object* x_1836; lean_object* x_1837; +x_1739 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_1691); +x_1740 = lean_ctor_get(x_1739, 0); +lean_inc(x_1740); +x_1741 = lean_ctor_get(x_1739, 1); +lean_inc(x_1741); +lean_dec(x_1739); +x_1742 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_1741); +x_1743 = lean_ctor_get(x_1742, 0); +lean_inc(x_1743); +x_1744 = lean_ctor_get(x_1742, 1); +lean_inc(x_1744); +lean_dec(x_1742); +x_1745 = l_Lean_Parser_Tactic_match___closed__1; +lean_inc(x_2); +x_1746 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1746, 0, x_2); +lean_ctor_set(x_1746, 1, x_1745); +x_1747 = l_Array_empty___closed__1; +x_1748 = lean_array_push(x_1747, x_1746); +x_1749 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; +lean_inc(x_1692); +x_1750 = lean_array_push(x_1749, x_1692); +x_1751 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__13; +x_1752 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1752, 0, x_1751); +lean_ctor_set(x_1752, 1, x_1750); +x_1753 = lean_array_push(x_1747, x_1752); +x_1754 = l_myMacro____x40_Init_Notation___hyg_11515____closed__7; +lean_inc(x_2); +x_1755 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1755, 0, x_2); +lean_ctor_set(x_1755, 1, x_1754); +lean_inc(x_1755); +x_1756 = lean_array_push(x_1753, x_1755); +lean_inc(x_1693); +x_1757 = lean_array_push(x_1749, x_1693); +x_1758 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1758, 0, x_1751); +lean_ctor_set(x_1758, 1, x_1757); +x_1759 = lean_array_push(x_1756, x_1758); +x_1760 = l_Lean_nullKind___closed__2; +x_1761 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1761, 0, x_1760); +lean_ctor_set(x_1761, 1, x_1759); +x_1762 = lean_array_push(x_1748, x_1761); +x_1763 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_1764 = lean_array_push(x_1762, x_1763); +x_1765 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__15; +lean_inc(x_2); +x_1766 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1766, 0, x_2); +lean_ctor_set(x_1766, 1, x_1765); +x_1767 = lean_array_push(x_1764, x_1766); +x_1768 = l_Lean_Parser_Tactic_intro___closed__7; +lean_inc(x_2); +x_1769 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1769, 0, x_2); +lean_ctor_set(x_1769, 1, x_1768); +lean_inc(x_1769); +x_1770 = lean_array_push(x_1747, x_1769); +x_1771 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1771, 0, x_1760); +lean_ctor_set(x_1771, 1, x_1770); +x_1772 = lean_array_push(x_1747, x_1771); +x_1773 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__20; +x_1774 = l_Lean_addMacroScope(x_1743, x_1773, x_1740); +x_1775 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__6; +lean_inc(x_4); +x_1776 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1776, 0, x_1775); +lean_ctor_set(x_1776, 1, x_4); +lean_inc(x_5); +if (lean_is_scalar(x_1694)) { + x_1777 = lean_alloc_ctor(1, 2, 0); +} else { + x_1777 = x_1694; +} +lean_ctor_set(x_1777, 0, x_1776); +lean_ctor_set(x_1777, 1, x_5); +x_1778 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__19; +lean_inc(x_2); +x_1779 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1779, 0, x_2); +lean_ctor_set(x_1779, 1, x_1778); +lean_ctor_set(x_1779, 2, x_1774); +lean_ctor_set(x_1779, 3, x_1777); +x_1780 = lean_array_push(x_1747, x_1779); +x_1781 = lean_array_push(x_1747, x_1692); +x_1782 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1782, 0, x_1760); +lean_ctor_set(x_1782, 1, x_1781); +lean_inc(x_1780); +x_1783 = lean_array_push(x_1780, x_1782); +x_1784 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1785 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1785, 0, x_1784); +lean_ctor_set(x_1785, 1, x_1783); +x_1786 = lean_array_push(x_1747, x_1785); +x_1787 = lean_array_push(x_1786, x_1755); +x_1788 = lean_array_push(x_1747, x_1693); +x_1789 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1789, 0, x_1760); +lean_ctor_set(x_1789, 1, x_1788); +x_1790 = lean_array_push(x_1780, x_1789); +x_1791 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1791, 0, x_1784); +lean_ctor_set(x_1791, 1, x_1790); +x_1792 = lean_array_push(x_1787, x_1791); +x_1793 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1793, 0, x_1760); +lean_ctor_set(x_1793, 1, x_1792); +x_1794 = lean_array_push(x_1747, x_1793); +x_1795 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; +lean_inc(x_2); +x_1796 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1796, 0, x_2); +lean_ctor_set(x_1796, 1, x_1795); +lean_inc(x_1796); +x_1797 = lean_array_push(x_1794, x_1796); +x_1798 = lean_array_to_list(lean_box(0), x_1309); +x_1799 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_1798); +x_1800 = l_Lean_mkOptionalNode___closed__2; +x_1801 = lean_array_push(x_1800, x_1799); +x_1802 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3418____closed__5; +x_1803 = l_Lean_Syntax_mkCApp(x_1802, x_1801); +x_1804 = lean_array_push(x_1797, x_1803); +x_1805 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; +x_1806 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1806, 0, x_1805); +lean_ctor_set(x_1806, 1, x_1804); +x_1807 = lean_array_push(x_1747, x_1806); +x_1808 = lean_array_push(x_1807, x_1769); +x_1809 = l_myMacro____x40_Init_Notation___hyg_11836____closed__14; +lean_inc(x_2); +x_1810 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1810, 0, x_2); +lean_ctor_set(x_1810, 1, x_1809); +x_1811 = lean_array_push(x_1747, x_1810); +x_1812 = l_myMacro____x40_Init_Notation___hyg_11836____closed__13; +x_1813 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1813, 0, x_1812); +lean_ctor_set(x_1813, 1, x_1811); +x_1814 = lean_array_push(x_1747, x_1813); +x_1815 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1815, 0, x_1760); +lean_ctor_set(x_1815, 1, x_1814); +x_1816 = lean_array_push(x_1747, x_1815); +x_1817 = lean_array_push(x_1816, x_1796); +x_1818 = l_addParenHeuristic___closed__2; +lean_inc(x_2); +x_1819 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1819, 0, x_2); +lean_ctor_set(x_1819, 1, x_1818); +x_1820 = lean_array_push(x_1747, x_1819); +x_1821 = lean_array_push(x_1820, x_1763); +x_1822 = l_term_x5b___x2c_x5d___closed__11; +lean_inc(x_2); +x_1823 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1823, 0, x_2); +lean_ctor_set(x_1823, 1, x_1822); +x_1824 = lean_array_push(x_1821, x_1823); +x_1825 = l_term_x23_x5b___x2c_x5d___closed__2; +x_1826 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1826, 0, x_1825); +lean_ctor_set(x_1826, 1, x_1824); +x_1827 = lean_array_push(x_1817, x_1826); +x_1828 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1828, 0, x_1805); +lean_ctor_set(x_1828, 1, x_1827); +x_1829 = lean_array_push(x_1808, x_1828); +x_1830 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1830, 0, x_1760); +lean_ctor_set(x_1830, 1, x_1829); +x_1831 = lean_array_push(x_1772, x_1830); +x_1832 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; +x_1833 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1833, 0, x_1832); +lean_ctor_set(x_1833, 1, x_1831); +x_1834 = lean_array_push(x_1767, x_1833); +x_1835 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__12; +x_1836 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1836, 0, x_1835); +lean_ctor_set(x_1836, 1, x_1834); +lean_inc(x_16); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_2); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_1837 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_1299, x_3, x_4, x_5, x_2, x_10, x_87, x_1298, x_1836, x_11, x_12, x_13, x_14, x_15, x_16, x_1744); +lean_dec(x_1298); +lean_dec(x_87); +x_18 = x_1837; +goto block_28; +} +} +else +{ +lean_object* x_1838; lean_object* x_1839; lean_object* x_1840; lean_object* x_1841; lean_object* x_1842; lean_object* x_1843; lean_object* x_1844; lean_object* x_1845; lean_object* x_1846; lean_object* x_1847; lean_object* x_1848; lean_object* x_1849; lean_object* x_1850; lean_object* x_1851; lean_object* x_1852; lean_object* x_1853; lean_object* x_1854; lean_object* x_1855; lean_object* x_1856; lean_object* x_1857; lean_object* x_1858; lean_object* x_1859; lean_object* x_1860; lean_object* x_1861; lean_object* x_1862; lean_object* x_1863; lean_object* x_1864; lean_object* x_1865; lean_object* x_1866; lean_object* x_1867; lean_object* x_1868; lean_object* x_1869; lean_object* x_1870; lean_object* x_1871; lean_object* x_1872; lean_object* x_1873; lean_object* x_1874; lean_object* x_1875; lean_object* x_1876; lean_object* x_1877; lean_object* x_1878; lean_object* x_1879; lean_object* x_1880; lean_object* x_1881; lean_object* x_1882; +lean_dec(x_1690); +lean_dec(x_1689); +x_1838 = lean_ctor_get(x_1311, 1); +lean_inc(x_1838); +lean_dec(x_1311); +x_1839 = lean_ctor_get(x_1312, 0); +lean_inc(x_1839); +lean_dec(x_1312); +x_1840 = lean_ctor_get(x_1320, 0); +lean_inc(x_1840); +if (lean_is_exclusive(x_1320)) { + lean_ctor_release(x_1320, 0); + lean_ctor_release(x_1320, 1); + x_1841 = x_1320; +} else { + lean_dec_ref(x_1320); + x_1841 = lean_box(0); +} +x_1842 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_1838); +x_1843 = lean_ctor_get(x_1842, 0); +lean_inc(x_1843); +x_1844 = lean_ctor_get(x_1842, 1); +lean_inc(x_1844); +lean_dec(x_1842); +x_1845 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_1844); +x_1846 = lean_ctor_get(x_1845, 0); +lean_inc(x_1846); +x_1847 = lean_ctor_get(x_1845, 1); +lean_inc(x_1847); +lean_dec(x_1845); +x_1848 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__27; +lean_inc(x_3); +x_1849 = lean_name_mk_string(x_3, x_1848); +lean_inc(x_1849); +x_1850 = l_Lean_addMacroScope(x_1846, x_1849, x_1843); +lean_inc(x_4); +x_1851 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1851, 0, x_1849); +lean_ctor_set(x_1851, 1, x_4); +lean_inc(x_5); +if (lean_is_scalar(x_1841)) { + x_1852 = lean_alloc_ctor(1, 2, 0); +} else { + x_1852 = x_1841; +} +lean_ctor_set(x_1852, 0, x_1851); +lean_ctor_set(x_1852, 1, x_5); +x_1853 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26; +lean_inc(x_2); +x_1854 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1854, 0, x_2); +lean_ctor_set(x_1854, 1, x_1853); +lean_ctor_set(x_1854, 2, x_1850); +lean_ctor_set(x_1854, 3, x_1852); +x_1855 = l_Array_empty___closed__1; +x_1856 = lean_array_push(x_1855, x_1854); +x_1857 = lean_array_push(x_1855, x_1839); +x_1858 = lean_array_push(x_1857, x_1840); +x_1859 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; +lean_inc(x_2); +x_1860 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1860, 0, x_2); +lean_ctor_set(x_1860, 1, x_1859); +x_1861 = lean_array_push(x_1855, x_1860); +x_1862 = l_Lean_nullKind___closed__2; +lean_inc(x_1858); +x_1863 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1863, 0, x_1862); +lean_ctor_set(x_1863, 1, x_1858); +x_1864 = lean_array_push(x_1855, x_1863); +x_1865 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; +lean_inc(x_2); +x_1866 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1866, 0, x_2); +lean_ctor_set(x_1866, 1, x_1865); +x_1867 = lean_array_push(x_1864, x_1866); +x_1868 = l_Lean_instInhabitedSyntax; +x_1869 = lean_unsigned_to_nat(0u); +x_1870 = lean_array_get(x_1868, x_1309, x_1869); +lean_dec(x_1309); +x_1871 = lean_array_push(x_1867, x_1870); +x_1872 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_1873 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1873, 0, x_1872); +lean_ctor_set(x_1873, 1, x_1871); +x_1874 = lean_array_push(x_1861, x_1873); +x_1875 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +x_1876 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1876, 0, x_1875); +lean_ctor_set(x_1876, 1, x_1874); +x_1877 = lean_array_push(x_1858, x_1876); +x_1878 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1878, 0, x_1862); +lean_ctor_set(x_1878, 1, x_1877); +x_1879 = lean_array_push(x_1856, x_1878); +x_1880 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1881 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1881, 0, x_1880); +lean_ctor_set(x_1881, 1, x_1879); +lean_inc(x_16); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_2); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_1882 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_1299, x_3, x_4, x_5, x_2, x_10, x_87, x_1298, x_1881, x_11, x_12, x_13, x_14, x_15, x_16, x_1847); +lean_dec(x_1298); +lean_dec(x_87); +x_18 = x_1882; +goto block_28; +} +} +else +{ +lean_object* x_1883; lean_object* x_1884; lean_object* x_1885; lean_object* x_1886; lean_object* x_1887; lean_object* x_1888; lean_object* x_1889; lean_object* x_1890; lean_object* x_1891; lean_object* x_1892; lean_object* x_1893; lean_object* x_1894; lean_object* x_1895; lean_object* x_1896; lean_object* x_1897; lean_object* x_1898; lean_object* x_1899; lean_object* x_1900; lean_object* x_1901; lean_object* x_1902; lean_object* x_1903; lean_object* x_1904; lean_object* x_1905; lean_object* x_1906; lean_object* x_1907; lean_object* x_1908; lean_object* x_1909; lean_object* x_1910; lean_object* x_1911; lean_object* x_1912; lean_object* x_1913; lean_object* x_1914; lean_object* x_1915; lean_object* x_1916; lean_object* x_1917; lean_object* x_1918; lean_object* x_1919; lean_object* x_1920; lean_object* x_1921; lean_object* x_1922; lean_object* x_1923; lean_object* x_1924; lean_object* x_1925; lean_object* x_1926; lean_object* x_1927; +lean_dec(x_1689); +x_1883 = lean_ctor_get(x_1311, 1); +lean_inc(x_1883); +lean_dec(x_1311); +x_1884 = lean_ctor_get(x_1312, 0); +lean_inc(x_1884); +lean_dec(x_1312); +x_1885 = lean_ctor_get(x_1320, 0); +lean_inc(x_1885); +if (lean_is_exclusive(x_1320)) { + lean_ctor_release(x_1320, 0); + lean_ctor_release(x_1320, 1); + x_1886 = x_1320; +} else { + lean_dec_ref(x_1320); + x_1886 = lean_box(0); +} +x_1887 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_1883); +x_1888 = lean_ctor_get(x_1887, 0); +lean_inc(x_1888); +x_1889 = lean_ctor_get(x_1887, 1); +lean_inc(x_1889); +lean_dec(x_1887); +x_1890 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_1889); +x_1891 = lean_ctor_get(x_1890, 0); +lean_inc(x_1891); +x_1892 = lean_ctor_get(x_1890, 1); +lean_inc(x_1892); +lean_dec(x_1890); +x_1893 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__27; +lean_inc(x_3); +x_1894 = lean_name_mk_string(x_3, x_1893); +lean_inc(x_1894); +x_1895 = l_Lean_addMacroScope(x_1891, x_1894, x_1888); +lean_inc(x_4); +x_1896 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1896, 0, x_1894); +lean_ctor_set(x_1896, 1, x_4); +lean_inc(x_5); +if (lean_is_scalar(x_1886)) { + x_1897 = lean_alloc_ctor(1, 2, 0); +} else { + x_1897 = x_1886; +} +lean_ctor_set(x_1897, 0, x_1896); +lean_ctor_set(x_1897, 1, x_5); +x_1898 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26; +lean_inc(x_2); +x_1899 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1899, 0, x_2); +lean_ctor_set(x_1899, 1, x_1898); +lean_ctor_set(x_1899, 2, x_1895); +lean_ctor_set(x_1899, 3, x_1897); +x_1900 = l_Array_empty___closed__1; +x_1901 = lean_array_push(x_1900, x_1899); +x_1902 = lean_array_push(x_1900, x_1884); +x_1903 = lean_array_push(x_1902, x_1885); +x_1904 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; +lean_inc(x_2); +x_1905 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1905, 0, x_2); +lean_ctor_set(x_1905, 1, x_1904); +x_1906 = lean_array_push(x_1900, x_1905); +x_1907 = l_Lean_nullKind___closed__2; +lean_inc(x_1903); +x_1908 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1908, 0, x_1907); +lean_ctor_set(x_1908, 1, x_1903); +x_1909 = lean_array_push(x_1900, x_1908); +x_1910 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; +lean_inc(x_2); +x_1911 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1911, 0, x_2); +lean_ctor_set(x_1911, 1, x_1910); +x_1912 = lean_array_push(x_1909, x_1911); +x_1913 = l_Lean_instInhabitedSyntax; +x_1914 = lean_unsigned_to_nat(0u); +x_1915 = lean_array_get(x_1913, x_1309, x_1914); +lean_dec(x_1309); +x_1916 = lean_array_push(x_1912, x_1915); +x_1917 = l_myMacro____x40_Init_Notation___hyg_9707____closed__17; +x_1918 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1918, 0, x_1917); +lean_ctor_set(x_1918, 1, x_1916); +x_1919 = lean_array_push(x_1906, x_1918); +x_1920 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; +x_1921 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1921, 0, x_1920); +lean_ctor_set(x_1921, 1, x_1919); +x_1922 = lean_array_push(x_1903, x_1921); +x_1923 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1923, 0, x_1907); +lean_ctor_set(x_1923, 1, x_1922); +x_1924 = lean_array_push(x_1901, x_1923); +x_1925 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1926 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1926, 0, x_1925); +lean_ctor_set(x_1926, 1, x_1924); +lean_inc(x_16); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_2); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_1927 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_1299, x_3, x_4, x_5, x_2, x_10, x_87, x_1298, x_1926, x_11, x_12, x_13, x_14, x_15, x_16, x_1892); +lean_dec(x_1298); +lean_dec(x_87); +x_18 = x_1927; +goto block_28; +} +} +} +else +{ +lean_object* x_1928; lean_object* x_1929; lean_object* x_1930; lean_object* x_1931; lean_object* x_1932; lean_object* x_1933; lean_object* x_1934; +lean_dec(x_1643); +lean_dec(x_1320); +lean_dec(x_1312); +lean_dec(x_1309); +lean_dec(x_1299); +lean_dec(x_1298); +lean_dec(x_87); +lean_dec(x_10); +x_1928 = lean_ctor_get(x_1311, 1); +lean_inc(x_1928); +lean_dec(x_1311); +x_1929 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__30; +lean_inc(x_15); +lean_inc(x_11); +x_1930 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(x_6, x_1929, x_11, x_12, x_13, x_14, x_15, x_16, x_1928); +x_1931 = lean_ctor_get(x_1930, 0); +lean_inc(x_1931); +x_1932 = lean_ctor_get(x_1930, 1); +lean_inc(x_1932); +if (lean_is_exclusive(x_1930)) { + lean_ctor_release(x_1930, 0); + lean_ctor_release(x_1930, 1); + x_1933 = x_1930; +} else { + lean_dec_ref(x_1930); + x_1933 = lean_box(0); +} +if (lean_is_scalar(x_1933)) { + x_1934 = lean_alloc_ctor(1, 2, 0); +} else { + x_1934 = x_1933; +} +lean_ctor_set(x_1934, 0, x_1931); +lean_ctor_set(x_1934, 1, x_1932); +x_18 = x_1934; +goto block_28; +} +} +} +} +else +{ +lean_object* x_1935; lean_object* x_1936; lean_object* x_1937; lean_object* x_1938; +lean_dec(x_1309); +lean_dec(x_1299); +lean_dec(x_1298); +lean_dec(x_87); +lean_dec(x_10); +x_1935 = lean_ctor_get(x_1311, 0); +lean_inc(x_1935); +x_1936 = lean_ctor_get(x_1311, 1); +lean_inc(x_1936); +if (lean_is_exclusive(x_1311)) { + lean_ctor_release(x_1311, 0); + lean_ctor_release(x_1311, 1); + x_1937 = x_1311; +} else { + lean_dec_ref(x_1311); + x_1937 = lean_box(0); +} +if (lean_is_scalar(x_1937)) { + x_1938 = lean_alloc_ctor(1, 2, 0); +} else { + x_1938 = x_1937; +} +lean_ctor_set(x_1938, 0, x_1935); +lean_ctor_set(x_1938, 1, x_1936); +x_18 = x_1938; +goto block_28; +} +} +else +{ +lean_object* x_1939; lean_object* x_1940; lean_object* x_1941; lean_object* x_1942; +lean_dec(x_1299); +lean_dec(x_1298); +lean_dec(x_87); +lean_dec(x_10); +x_1939 = lean_ctor_get(x_1308, 0); +lean_inc(x_1939); +x_1940 = lean_ctor_get(x_1308, 1); +lean_inc(x_1940); +if (lean_is_exclusive(x_1308)) { + lean_ctor_release(x_1308, 0); + lean_ctor_release(x_1308, 1); + x_1941 = x_1308; +} else { + lean_dec_ref(x_1308); + x_1941 = lean_box(0); +} +if (lean_is_scalar(x_1941)) { + x_1942 = lean_alloc_ctor(1, 2, 0); +} else { + x_1942 = x_1941; +} +lean_ctor_set(x_1942, 0, x_1939); +lean_ctor_set(x_1942, 1, x_1940); +x_18 = x_1942; +goto block_28; +} +} +} +else +{ +uint8_t x_1943; +lean_dec(x_87); +lean_dec(x_10); +x_1943 = !lean_is_exclusive(x_89); +if (x_1943 == 0) +{ +x_18 = x_89; +goto block_28; +} +else +{ +lean_object* x_1944; lean_object* x_1945; lean_object* x_1946; +x_1944 = lean_ctor_get(x_89, 0); +x_1945 = lean_ctor_get(x_89, 1); +lean_inc(x_1945); +lean_inc(x_1944); +lean_dec(x_89); +x_1946 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1946, 0, x_1944); +lean_ctor_set(x_1946, 1, x_1945); +x_18 = x_1946; +goto block_28; +} +} +} +} +else +{ +lean_object* x_1947; lean_object* x_1948; lean_object* x_1949; lean_object* x_1950; uint8_t x_1951; +x_1947 = l_Lean_Elab_Term_getCurrMacroScope(x_11, x_12, x_13, x_14, x_15, x_16, x_17); +x_1948 = lean_ctor_get(x_1947, 0); +lean_inc(x_1948); +x_1949 = lean_ctor_get(x_1947, 1); +lean_inc(x_1949); +lean_dec(x_1947); +x_1950 = l_Lean_Elab_Term_getMainModule___rarg(x_16, x_1949); +x_1951 = !lean_is_exclusive(x_1950); +if (x_1951 == 0) +{ +lean_object* x_1952; lean_object* x_1953; lean_object* x_1954; lean_object* x_1955; lean_object* x_1956; lean_object* x_1957; lean_object* x_1958; lean_object* x_1959; lean_object* x_1960; lean_object* x_1961; lean_object* x_1962; lean_object* x_1963; lean_object* x_1964; lean_object* x_1965; lean_object* x_1966; lean_object* x_1967; lean_object* x_1968; lean_object* x_1969; +x_1952 = lean_ctor_get(x_1950, 0); +x_1953 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__4; +lean_inc(x_3); +x_1954 = lean_name_mk_string(x_3, x_1953); +lean_inc(x_1954); +x_1955 = l_Lean_addMacroScope(x_1952, x_1954, x_1948); +lean_inc(x_4); +x_1956 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1956, 0, x_1954); +lean_ctor_set(x_1956, 1, x_4); +lean_inc(x_5); +x_1957 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1957, 0, x_1956); +lean_ctor_set(x_1957, 1, x_5); +x_1958 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__3; +lean_inc(x_2); +x_1959 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1959, 0, x_2); +lean_ctor_set(x_1959, 1, x_1958); +lean_ctor_set(x_1959, 2, x_1955); +lean_ctor_set(x_1959, 3, x_1957); +x_1960 = l_Array_empty___closed__1; +x_1961 = lean_array_push(x_1960, x_1959); +x_1962 = lean_array_push(x_1960, x_10); +x_1963 = l_Lean_Elab_Term_Quotation_getAntiquotTerm(x_30); lean_dec(x_30); -x_1347 = lean_array_push(x_1345, x_1346); -x_1348 = l_Lean_nullKind___closed__2; -x_1349 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1349, 0, x_1348); -lean_ctor_set(x_1349, 1, x_1347); -x_1350 = lean_array_push(x_1344, x_1349); -x_1351 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_1352 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1352, 0, x_1351); -lean_ctor_set(x_1352, 1, x_1350); -x_1353 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1353, 0, x_1352); -lean_ctor_set(x_1353, 1, x_1335); -x_18 = x_1353; +x_1964 = lean_array_push(x_1962, x_1963); +x_1965 = l_Lean_nullKind___closed__2; +x_1966 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1966, 0, x_1965); +lean_ctor_set(x_1966, 1, x_1964); +x_1967 = lean_array_push(x_1961, x_1966); +x_1968 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1969 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1969, 0, x_1968); +lean_ctor_set(x_1969, 1, x_1967); +lean_ctor_set(x_1950, 0, x_1969); +x_18 = x_1950; +goto block_28; +} +else +{ +lean_object* x_1970; lean_object* x_1971; lean_object* x_1972; lean_object* x_1973; lean_object* x_1974; lean_object* x_1975; lean_object* x_1976; lean_object* x_1977; lean_object* x_1978; lean_object* x_1979; lean_object* x_1980; lean_object* x_1981; lean_object* x_1982; lean_object* x_1983; lean_object* x_1984; lean_object* x_1985; lean_object* x_1986; lean_object* x_1987; lean_object* x_1988; lean_object* x_1989; +x_1970 = lean_ctor_get(x_1950, 0); +x_1971 = lean_ctor_get(x_1950, 1); +lean_inc(x_1971); +lean_inc(x_1970); +lean_dec(x_1950); +x_1972 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__4; +lean_inc(x_3); +x_1973 = lean_name_mk_string(x_3, x_1972); +lean_inc(x_1973); +x_1974 = l_Lean_addMacroScope(x_1970, x_1973, x_1948); +lean_inc(x_4); +x_1975 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1975, 0, x_1973); +lean_ctor_set(x_1975, 1, x_4); +lean_inc(x_5); +x_1976 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1976, 0, x_1975); +lean_ctor_set(x_1976, 1, x_5); +x_1977 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__3; +lean_inc(x_2); +x_1978 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1978, 0, x_2); +lean_ctor_set(x_1978, 1, x_1977); +lean_ctor_set(x_1978, 2, x_1974); +lean_ctor_set(x_1978, 3, x_1976); +x_1979 = l_Array_empty___closed__1; +x_1980 = lean_array_push(x_1979, x_1978); +x_1981 = lean_array_push(x_1979, x_10); +x_1982 = l_Lean_Elab_Term_Quotation_getAntiquotTerm(x_30); +lean_dec(x_30); +x_1983 = lean_array_push(x_1981, x_1982); +x_1984 = l_Lean_nullKind___closed__2; +x_1985 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1985, 0, x_1984); +lean_ctor_set(x_1985, 1, x_1983); +x_1986 = lean_array_push(x_1980, x_1985); +x_1987 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1988 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1988, 0, x_1987); +lean_ctor_set(x_1988, 1, x_1986); +x_1989 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1989, 0, x_1988); +lean_ctor_set(x_1989, 1, x_1971); +x_18 = x_1989; goto block_28; } } @@ -6397,7 +9033,7 @@ if (x_39 == 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; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; x_40 = lean_ctor_get(x_38, 0); -x_41 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__4; +x_41 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__4; lean_inc(x_3); x_42 = lean_name_mk_string(x_3, x_41); lean_inc(x_42); @@ -6410,7 +9046,7 @@ lean_inc(x_5); x_45 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_45, 0, x_44); lean_ctor_set(x_45, 1, x_5); -x_46 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__3; +x_46 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__3; lean_inc(x_2); x_47 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_47, 0, x_2); @@ -6442,7 +9078,7 @@ x_58 = lean_ctor_get(x_38, 1); lean_inc(x_58); lean_inc(x_57); lean_dec(x_38); -x_59 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__4; +x_59 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__4; lean_inc(x_3); x_60 = lean_name_mk_string(x_3, x_59); lean_inc(x_60); @@ -6455,7 +9091,7 @@ lean_inc(x_5); x_63 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_63, 0, x_62); lean_ctor_set(x_63, 1, x_5); -x_64 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__3; +x_64 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__3; lean_inc(x_2); x_65 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_65, 0, x_2); @@ -6511,7 +9147,7 @@ goto block_28; } else { -lean_object* x_1354; +lean_object* x_1990; lean_dec(x_16); lean_dec(x_15); lean_dec(x_14); @@ -6522,10 +9158,10 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_1354 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1354, 0, x_10); -lean_ctor_set(x_1354, 1, x_17); -return x_1354; +x_1990 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1990, 0, x_10); +lean_ctor_set(x_1990, 1, x_17); +return x_1990; } block_28: { @@ -6579,7 +9215,7 @@ return x_27; } } } -lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5(lean_object* x_1) { +lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__6(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -6595,7 +9231,7 @@ x_3 = lean_ctor_get(x_1, 0); x_4 = lean_ctor_get(x_1, 1); x_5 = l_Lean_instInhabitedSourceInfo___closed__1; x_6 = l_Lean_Syntax_mkStrLit(x_3, x_5); -x_7 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5(x_4); +x_7 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__6(x_4); x_8 = l_Lean_Syntax_mkApp___closed__1; x_9 = lean_array_push(x_8, x_6); x_10 = lean_array_push(x_9, x_7); @@ -6605,7 +9241,7 @@ return x_12; } } } -lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4(lean_object* x_1) { +lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -6622,14 +9258,14 @@ lean_inc(x_3); x_4 = lean_ctor_get(x_1, 1); lean_inc(x_4); lean_dec(x_1); -x_5 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4(x_4); +x_5 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5(x_4); x_6 = lean_ctor_get(x_3, 0); lean_inc(x_6); x_7 = lean_ctor_get(x_3, 1); lean_inc(x_7); lean_dec(x_3); x_8 = l___private_Init_Meta_0__Lean_quoteName(x_6); -x_9 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5(x_7); +x_9 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__6(x_7); lean_dec(x_7); x_10 = l_Lean_Syntax_mkApp___closed__1; x_11 = lean_array_push(x_10, x_8); @@ -6648,9 +9284,9 @@ static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quot _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__1; -x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__2; -x_3 = lean_unsigned_to_nat(145u); +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__1; +x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__2; +x_3 = lean_unsigned_to_nat(156u); x_4 = lean_unsigned_to_nat(22u); x_5 = l_Lean_Syntax_strLitToAtom___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -7336,7 +9972,7 @@ else { uint8_t x_93; lean_dec(x_13); -x_93 = l_Lean_Elab_Term_Quotation_isAntiquotSplice(x_1); +x_93 = l_Lean_Syntax_isAntiquotSplice(x_1); if (x_93 == 0) { lean_object* x_94; lean_object* x_95; @@ -7441,7 +10077,7 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); lean_inc(x_2); -x_79 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_13, x_24, x_78, x_23, x_23, x_70, x_71, x_76, x_77, x_27, x_2, x_3, x_4, x_5, x_6, x_7, x_20); +x_79 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4(x_13, x_24, x_78, x_23, x_23, x_70, x_71, x_76, x_77, x_27, x_2, x_3, x_4, x_5, x_6, x_7, x_20); lean_dec(x_71); lean_dec(x_70); if (lean_obj_tag(x_79) == 0) @@ -7627,9 +10263,9 @@ lean_ctor_set(x_120, 1, x_118); lean_ctor_set(x_120, 2, x_117); lean_ctor_set(x_120, 3, x_119); x_121 = lean_array_push(x_114, x_120); -x_122 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__22; +x_122 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__23; x_123 = l_Lean_addMacroScope(x_107, x_122, x_103); -x_124 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__21; +x_124 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22; x_125 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; x_126 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_126, 0, x_110); @@ -7712,9 +10348,9 @@ lean_ctor_set(x_164, 1, x_162); lean_ctor_set(x_164, 2, x_161); lean_ctor_set(x_164, 3, x_163); x_165 = lean_array_push(x_158, x_164); -x_166 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__22; +x_166 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__23; x_167 = l_Lean_addMacroScope(x_150, x_166, x_103); -x_168 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__21; +x_168 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22; x_169 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; x_170 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_170, 0, x_154); @@ -7823,9 +10459,9 @@ lean_ctor_set(x_215, 1, x_213); lean_ctor_set(x_215, 2, x_212); lean_ctor_set(x_215, 3, x_214); x_216 = lean_array_push(x_209, x_215); -x_217 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__22; +x_217 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__23; x_218 = l_Lean_addMacroScope(x_200, x_217, x_197); -x_219 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__21; +x_219 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22; x_220 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; x_221 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_221, 0, x_205); @@ -7947,11 +10583,11 @@ lean_ctor_set(x_275, 1, x_273); lean_ctor_set(x_275, 2, x_272); lean_ctor_set(x_275, 3, x_274); x_276 = lean_array_push(x_269, x_275); -x_277 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__22; +x_277 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__23; lean_inc(x_258); lean_inc(x_262); x_278 = l_Lean_addMacroScope(x_262, x_277, x_258); -x_279 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__21; +x_279 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22; x_280 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; x_281 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_281, 0, x_266); @@ -8037,7 +10673,7 @@ x_325 = lean_array_push(x_324, x_296); x_326 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_326, 0, x_298); lean_ctor_set(x_326, 1, x_325); -x_327 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4(x_255); +x_327 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5(x_255); x_328 = lean_ctor_get(x_248, 0); lean_inc(x_328); x_329 = lean_ctor_get(x_248, 1); @@ -8102,11 +10738,11 @@ lean_ctor_set(x_357, 1, x_355); lean_ctor_set(x_357, 2, x_354); lean_ctor_set(x_357, 3, x_356); x_358 = lean_array_push(x_351, x_357); -x_359 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__22; +x_359 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__23; lean_inc(x_258); lean_inc(x_343); x_360 = l_Lean_addMacroScope(x_343, x_359, x_258); -x_361 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__21; +x_361 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22; x_362 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; x_363 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_363, 0, x_348); @@ -8192,7 +10828,7 @@ x_407 = lean_array_push(x_406, x_378); x_408 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_408, 0, x_380); lean_ctor_set(x_408, 1, x_407); -x_409 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4(x_255); +x_409 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5(x_255); x_410 = lean_ctor_get(x_248, 0); lean_inc(x_410); x_411 = lean_ctor_get(x_248, 1); @@ -8298,11 +10934,11 @@ lean_ctor_set(x_454, 1, x_452); lean_ctor_set(x_454, 2, x_451); lean_ctor_set(x_454, 3, x_453); x_455 = lean_array_push(x_448, x_454); -x_456 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__22; +x_456 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__23; lean_inc(x_435); lean_inc(x_438); x_457 = l_Lean_addMacroScope(x_438, x_456, x_435); -x_458 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__21; +x_458 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22; x_459 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; x_460 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_460, 0, x_444); @@ -8388,7 +11024,7 @@ x_504 = lean_array_push(x_503, x_475); x_505 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_505, 0, x_477); lean_ctor_set(x_505, 1, x_504); -x_506 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4(x_432); +x_506 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5(x_432); x_507 = lean_ctor_get(x_426, 0); lean_inc(x_507); x_508 = lean_ctor_get(x_426, 1); @@ -8429,7 +11065,21 @@ return x_522; } } } -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l_ReaderT_pure___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_ReaderT_pure___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_9; +} +} +lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { size_t x_11; size_t x_12; lean_object* x_13; @@ -8437,35 +11087,21 @@ x_11 = lean_unbox_usize(x_1); lean_dec(x_1); x_12 = lean_unbox_usize(x_2); lean_dec(x_2); -x_13 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1(x_11, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_13 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__2(x_11, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_13; } } -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { _start: { -lean_object* x_14; -x_14 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); +lean_object* x_17; +x_17 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); lean_dec(x_8); lean_dec(x_7); -return x_14; +return x_17; } } -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { -_start: -{ -lean_object* x_16; -x_16 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); -lean_dec(x_7); -lean_dec(x_6); -return x_16; -} -} -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___boxed(lean_object** _args) { +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -8490,18 +11126,18 @@ x_18 = lean_unbox_usize(x_8); lean_dec(x_8); x_19 = lean_unbox_usize(x_9); lean_dec(x_9); -x_20 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_18, x_19, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); +x_20 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_18, x_19, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17); lean_dec(x_7); lean_dec(x_6); lean_dec(x_1); return x_20; } } -lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___boxed(lean_object* x_1) { +lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__6___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5(x_1); +x_2 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__6(x_1); lean_dec(x_1); return x_2; } @@ -9546,7 +12182,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_Term_Quotation_HeadInfo_kind___default() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_BasicHeadInfo_kind___default() { _start: { lean_object* x_1; @@ -9554,7 +12190,7 @@ x_1 = lean_box(0); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_HeadInfo_argPats___default() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_BasicHeadInfo_argPats___default() { _start: { lean_object* x_1; @@ -9562,7 +12198,7 @@ x_1 = lean_box(0); return x_1; } } -lean_object* l_Lean_Elab_Term_Quotation_HeadInfo_rhsFn___default(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* l_Lean_Elab_Term_Quotation_BasicHeadInfo_rhsFn___default(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; @@ -9572,11 +12208,11 @@ lean_ctor_set(x_9, 1, x_8); return x_9; } } -lean_object* l_Lean_Elab_Term_Quotation_HeadInfo_rhsFn___default___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l_Lean_Elab_Term_Quotation_BasicHeadInfo_rhsFn___default___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_Lean_Elab_Term_Quotation_HeadInfo_rhsFn___default(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_Lean_Elab_Term_Quotation_BasicHeadInfo_rhsFn___default(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -9586,29 +12222,11 @@ lean_dec(x_2); return x_9; } } -lean_object* l_ReaderT_pure___at_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___spec__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { -_start: -{ -lean_object* x_9; -x_9 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_9, 0, x_1); -lean_ctor_set(x_9, 1, x_8); -return x_9; -} -} -lean_object* l_ReaderT_pure___at_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___spec__1(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_ReaderT_pure___at_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___spec__1___rarg___boxed), 8, 0); -return x_2; -} -} static lean_object* _init_l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_ReaderT_pure___at_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___spec__1___rarg___boxed), 8, 0); +x_1 = lean_alloc_closure((void*)(l_ReaderT_pure___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1___rarg___boxed), 8, 0); return x_1; } } @@ -9625,147 +12243,215 @@ lean_ctor_set(x_3, 2, x_2); return x_3; } } +static lean_object* _init_l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___closed__2; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} static lean_object* _init_l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo() { _start: { lean_object* x_1; -x_1 = l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___closed__2; +x_1 = l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___closed__3; return x_1; } } -lean_object* l_ReaderT_pure___at_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___spec__1___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l_Lean_Elab_Term_Quotation_HeadInfo_generalizes_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { -lean_object* x_9; -x_9 = l_ReaderT_pure___at_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___spec__1___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -return x_9; -} -} -lean_object* l_Lean_Elab_Term_Quotation_HeadInfo_generalizes_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { -_start: +if (lean_obj_tag(x_1) == 0) { -lean_object* x_7; -x_7 = lean_ctor_get(x_1, 0); -lean_inc(x_7); -if (lean_obj_tag(x_7) == 0) -{ -lean_object* x_8; lean_object* x_9; lean_object* x_10; +lean_object* x_8; lean_object* x_9; lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -x_8 = lean_ctor_get(x_1, 1); +x_8 = lean_ctor_get(x_1, 0); lean_inc(x_8); -x_9 = lean_ctor_get(x_1, 2); +x_9 = lean_ctor_get(x_8, 0); lean_inc(x_9); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_4); lean_dec(x_1); -x_10 = lean_apply_3(x_3, x_2, x_8, x_9); -return x_10; +x_10 = lean_ctor_get(x_8, 1); +lean_inc(x_10); +x_11 = lean_ctor_get(x_8, 2); +lean_inc(x_11); +lean_dec(x_8); +x_12 = lean_apply_3(x_3, x_2, x_10, x_11); +return x_12; } else { -lean_object* x_11; -lean_dec(x_3); -x_11 = lean_ctor_get(x_1, 1); -lean_inc(x_11); -if (lean_obj_tag(x_11) == 0) -{ -lean_object* x_12; -lean_dec(x_5); -x_12 = lean_ctor_get(x_2, 0); -lean_inc(x_12); -if (lean_obj_tag(x_12) == 0) -{ lean_object* x_13; -lean_dec(x_7); -lean_dec(x_4); -x_13 = lean_apply_2(x_6, x_1, x_2); -return x_13; -} -else +lean_dec(x_3); +x_13 = lean_ctor_get(x_8, 1); +lean_inc(x_13); +if (lean_obj_tag(x_13) == 0) { -lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; -lean_dec(x_6); -x_14 = lean_ctor_get(x_1, 2); -lean_inc(x_14); -lean_dec(x_1); -x_15 = lean_ctor_get(x_7, 0); -lean_inc(x_15); -lean_dec(x_7); -x_16 = lean_ctor_get(x_2, 1); -lean_inc(x_16); -x_17 = lean_ctor_get(x_2, 2); -lean_inc(x_17); -lean_dec(x_2); -x_18 = lean_ctor_get(x_12, 0); -lean_inc(x_18); -lean_dec(x_12); -x_19 = lean_apply_5(x_4, x_15, x_18, x_14, x_16, x_17); -return x_19; -} -} -else -{ -lean_object* x_20; -lean_dec(x_4); -x_20 = lean_ctor_get(x_2, 0); -lean_inc(x_20); -if (lean_obj_tag(x_20) == 0) -{ -lean_object* x_21; -lean_dec(x_11); -lean_dec(x_7); lean_dec(x_5); -x_21 = lean_apply_2(x_6, x_1, x_2); -return x_21; +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_14; lean_object* x_15; +x_14 = lean_ctor_get(x_2, 0); +lean_inc(x_14); +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_16; +lean_dec(x_14); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_4); +x_16 = lean_apply_2(x_7, x_1, x_2); +return x_16; } else { -lean_object* x_22; -x_22 = lean_ctor_get(x_2, 1); -lean_inc(x_22); -if (lean_obj_tag(x_22) == 0) +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +lean_dec(x_7); +lean_dec(x_2); +lean_dec(x_1); +x_17 = lean_ctor_get(x_8, 2); +lean_inc(x_17); +lean_dec(x_8); +x_18 = lean_ctor_get(x_9, 0); +lean_inc(x_18); +lean_dec(x_9); +x_19 = lean_ctor_get(x_14, 1); +lean_inc(x_19); +x_20 = lean_ctor_get(x_14, 2); +lean_inc(x_20); +lean_dec(x_14); +x_21 = lean_ctor_get(x_15, 0); +lean_inc(x_21); +lean_dec(x_15); +x_22 = lean_apply_5(x_4, x_18, x_21, x_17, x_19, x_20); +return x_22; +} +} +else { lean_object* x_23; -lean_dec(x_20); -lean_dec(x_11); -lean_dec(x_7); -lean_dec(x_5); -x_23 = lean_apply_2(x_6, x_1, x_2); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_4); +x_23 = lean_apply_2(x_7, x_1, x_2); return x_23; } +} else { -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_dec(x_6); -x_24 = lean_ctor_get(x_1, 2); +lean_dec(x_4); +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_24; lean_object* x_25; +x_24 = lean_ctor_get(x_2, 0); lean_inc(x_24); -lean_dec(x_1); -x_25 = lean_ctor_get(x_7, 0); +x_25 = lean_ctor_get(x_24, 0); lean_inc(x_25); -lean_dec(x_7); -x_26 = lean_ctor_get(x_11, 0); -lean_inc(x_26); -lean_dec(x_11); -x_27 = lean_ctor_get(x_2, 2); +if (lean_obj_tag(x_25) == 0) +{ +lean_object* x_26; +lean_dec(x_24); +lean_dec(x_13); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_5); +x_26 = lean_apply_2(x_7, x_1, x_2); +return x_26; +} +else +{ +lean_object* x_27; +x_27 = lean_ctor_get(x_24, 1); lean_inc(x_27); +if (lean_obj_tag(x_27) == 0) +{ +lean_object* x_28; +lean_dec(x_25); +lean_dec(x_24); +lean_dec(x_13); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_5); +x_28 = lean_apply_2(x_7, x_1, x_2); +return x_28; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; +lean_dec(x_7); lean_dec(x_2); -x_28 = lean_ctor_get(x_20, 0); -lean_inc(x_28); -lean_dec(x_20); -x_29 = lean_ctor_get(x_22, 0); +lean_dec(x_1); +x_29 = lean_ctor_get(x_8, 2); lean_inc(x_29); -lean_dec(x_22); -x_30 = lean_apply_6(x_5, x_25, x_26, x_28, x_29, x_24, x_27); -return x_30; +lean_dec(x_8); +x_30 = lean_ctor_get(x_9, 0); +lean_inc(x_30); +lean_dec(x_9); +x_31 = lean_ctor_get(x_13, 0); +lean_inc(x_31); +lean_dec(x_13); +x_32 = lean_ctor_get(x_24, 2); +lean_inc(x_32); +lean_dec(x_24); +x_33 = lean_ctor_get(x_25, 0); +lean_inc(x_33); +lean_dec(x_25); +x_34 = lean_ctor_get(x_27, 0); +lean_inc(x_34); +lean_dec(x_27); +x_35 = lean_apply_6(x_5, x_30, x_31, x_33, x_34, x_29, x_32); +return x_35; } } } +else +{ +lean_object* x_36; +lean_dec(x_13); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_5); +x_36 = lean_apply_2(x_7, x_1, x_2); +return x_36; +} +} +} +} +else +{ +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_37; +lean_dec(x_6); +x_37 = lean_apply_2(x_7, x_1, x_2); +return x_37; +} +else +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; +lean_dec(x_7); +x_38 = lean_ctor_get(x_1, 0); +lean_inc(x_38); +lean_dec(x_1); +x_39 = lean_ctor_get(x_2, 0); +lean_inc(x_39); +lean_dec(x_2); +x_40 = lean_apply_2(x_6, x_38, x_39); +return x_40; +} } } } @@ -9773,91 +12459,132 @@ lean_object* l_Lean_Elab_Term_Quotation_HeadInfo_generalizes_match__1(lean_objec _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_HeadInfo_generalizes_match__1___rarg), 6, 0); +x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_HeadInfo_generalizes_match__1___rarg), 7, 0); return x_2; } } uint8_t l_Lean_Elab_Term_Quotation_HeadInfo_generalizes(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; -x_3 = lean_ctor_get(x_1, 0); -if (lean_obj_tag(x_3) == 0) +if (lean_obj_tag(x_1) == 0) { -uint8_t x_4; -x_4 = 1; -return x_4; +lean_object* x_3; lean_object* x_4; +x_3 = lean_ctor_get(x_1, 0); +x_4 = lean_ctor_get(x_3, 0); +if (lean_obj_tag(x_4) == 0) +{ +uint8_t x_5; +x_5 = 1; +return x_5; } else { -lean_object* x_5; -x_5 = lean_ctor_get(x_1, 1); -if (lean_obj_tag(x_5) == 0) -{ lean_object* x_6; -x_6 = lean_ctor_get(x_2, 0); +x_6 = lean_ctor_get(x_3, 1); if (lean_obj_tag(x_6) == 0) { -uint8_t x_7; -x_7 = 0; -return x_7; +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_7; lean_object* x_8; +x_7 = lean_ctor_get(x_2, 0); +x_8 = lean_ctor_get(x_7, 0); +if (lean_obj_tag(x_8) == 0) +{ +uint8_t x_9; +x_9 = 0; +return x_9; } else { -lean_object* x_8; lean_object* x_9; uint8_t x_10; -x_8 = lean_ctor_get(x_3, 0); -x_9 = lean_ctor_get(x_6, 0); -x_10 = lean_name_eq(x_8, x_9); -return x_10; -} -} -else -{ -lean_object* x_11; -x_11 = lean_ctor_get(x_2, 0); -if (lean_obj_tag(x_11) == 0) -{ -uint8_t x_12; -x_12 = 0; +lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_10 = lean_ctor_get(x_4, 0); +x_11 = lean_ctor_get(x_8, 0); +x_12 = lean_name_eq(x_10, x_11); return x_12; } -else -{ -lean_object* x_13; -x_13 = lean_ctor_get(x_2, 1); -if (lean_obj_tag(x_13) == 0) -{ -uint8_t x_14; -x_14 = 0; -return x_14; } else { -lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; -x_15 = lean_ctor_get(x_3, 0); -x_16 = lean_ctor_get(x_5, 0); -x_17 = lean_ctor_get(x_11, 0); -x_18 = lean_ctor_get(x_13, 0); -x_19 = lean_name_eq(x_15, x_17); -if (x_19 == 0) -{ -uint8_t x_20; -x_20 = 0; -return x_20; +uint8_t x_13; +x_13 = 0; +return x_13; +} } else { -lean_object* x_21; lean_object* x_22; uint8_t x_23; -x_21 = lean_array_get_size(x_16); -x_22 = lean_array_get_size(x_18); -x_23 = lean_nat_dec_eq(x_21, x_22); -lean_dec(x_22); -lean_dec(x_21); -return x_23; +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_14; lean_object* x_15; +x_14 = lean_ctor_get(x_2, 0); +x_15 = lean_ctor_get(x_14, 0); +if (lean_obj_tag(x_15) == 0) +{ +uint8_t x_16; +x_16 = 0; +return x_16; +} +else +{ +lean_object* x_17; +x_17 = lean_ctor_get(x_14, 1); +if (lean_obj_tag(x_17) == 0) +{ +uint8_t x_18; +x_18 = 0; +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; +x_19 = lean_ctor_get(x_4, 0); +x_20 = lean_ctor_get(x_6, 0); +x_21 = lean_ctor_get(x_15, 0); +x_22 = lean_ctor_get(x_17, 0); +x_23 = lean_name_eq(x_19, x_21); +if (x_23 == 0) +{ +uint8_t x_24; +x_24 = 0; +return x_24; +} +else +{ +lean_object* x_25; lean_object* x_26; uint8_t x_27; +x_25 = lean_array_get_size(x_20); +x_26 = lean_array_get_size(x_22); +x_27 = lean_nat_dec_eq(x_25, x_26); +lean_dec(x_26); +lean_dec(x_25); +return x_27; } } } } +else +{ +uint8_t x_28; +x_28 = 0; +return x_28; +} +} +} +} +else +{ +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_29; +x_29 = 0; +return x_29; +} +else +{ +lean_object* x_30; lean_object* x_31; uint8_t x_32; +x_30 = lean_ctor_get(x_1, 0); +x_31 = lean_ctor_get(x_2, 0); +x_32 = l_Lean_Syntax_structEq(x_30, x_31); +return x_32; +} } } } @@ -9872,172 +12599,275 @@ x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__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* l_Lean_Elab_Term_Quotation_mkTuple_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { -lean_object* x_9; -x_9 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_9, 0, x_1); -lean_ctor_set(x_9, 1, x_8); -return x_9; +lean_object* x_5; lean_object* x_6; uint8_t x_7; +x_5 = lean_array_get_size(x_1); +x_6 = lean_unsigned_to_nat(0u); +x_7 = lean_nat_dec_eq(x_5, x_6); +if (x_7 == 0) +{ +lean_object* x_8; uint8_t x_9; +lean_dec(x_2); +x_8 = lean_unsigned_to_nat(1u); +x_9 = lean_nat_dec_eq(x_5, x_8); +lean_dec(x_5); +if (x_9 == 0) +{ +lean_object* x_10; +lean_dec(x_3); +x_10 = lean_apply_1(x_4, x_1); +return x_10; +} +else +{ +lean_object* x_11; lean_object* x_12; +lean_dec(x_4); +x_11 = lean_array_fget(x_1, x_6); +lean_dec(x_1); +x_12 = lean_apply_1(x_3, x_11); +return x_12; } } -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +else +{ +lean_object* x_13; lean_object* x_14; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_13 = lean_box(0); +x_14 = lean_apply_1(x_2, x_13); +return x_14; +} +} +} +lean_object* l_Lean_Elab_Term_Quotation_mkTuple_match__1(lean_object* x_1) { _start: { -lean_object* x_9; -x_9 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_9, 0, x_1); -lean_ctor_set(x_9, 1, x_8); -return x_9; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("discr"); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__1; -x_2 = lean_string_utf8_byte_size(x_1); +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_mkTuple_match__1___rarg), 4, 0); return x_2; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_mkTuple___closed__1() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__1; -x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__2; -x_4 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_4, 0, x_1); -lean_ctor_set(x_4, 1, x_2); -lean_ctor_set(x_4, 2, x_3); -return x_4; +lean_object* x_1; +x_1 = lean_mk_string("tupleTail"); +return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_mkTuple___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__1; +x_1 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_2 = l_Lean_Elab_Term_Quotation_mkTuple___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +static lean_object* _init_l_Lean_Elab_Term_Quotation_mkTuple___closed__3() { _start: { -lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; -x_10 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); -x_11 = lean_ctor_get(x_10, 0); -lean_inc(x_11); -x_12 = lean_ctor_get(x_10, 1); -lean_inc(x_12); -lean_dec(x_10); -x_13 = l_Lean_Elab_Term_getMainModule___rarg(x_8, x_12); -x_14 = !lean_is_exclusive(x_13); -if (x_14 == 0) +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_myMacro____x40_Init_Notation___hyg_9707____closed__11; +x_2 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_mkTuple___closed__4() { +_start: { -lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; -x_15 = lean_ctor_get(x_13, 0); -x_16 = l_Array_empty___closed__1; -x_17 = lean_array_push(x_16, x_1); -x_18 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_19 = lean_array_push(x_17, x_18); -x_20 = lean_array_push(x_19, x_18); -x_21 = l_myMacro____x40_Init_Notation___hyg_12470____closed__14; -x_22 = lean_array_push(x_20, x_21); -x_23 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; -x_24 = l_Lean_addMacroScope(x_15, x_23, x_11); -x_25 = lean_box(0); -x_26 = l_Lean_instInhabitedSourceInfo___closed__1; -x_27 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3; -x_28 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_28, 0, x_26); -lean_ctor_set(x_28, 1, x_27); -lean_ctor_set(x_28, 2, x_24); -lean_ctor_set(x_28, 3, x_25); -x_29 = lean_array_push(x_22, x_28); -x_30 = l_myMacro____x40_Init_Notation___hyg_12470____closed__8; -x_31 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_31, 0, x_30); -lean_ctor_set(x_31, 1, x_29); -x_32 = lean_array_push(x_16, x_31); -x_33 = l_myMacro____x40_Init_Notation___hyg_12470____closed__6; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_Quotation_mkTuple___closed__3; +x_2 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_mkTuple___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; +x_2 = l_Lean_Elab_Term_Quotation_mkTuple___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; +} +} +lean_object* l_Lean_Elab_Term_Quotation_mkTuple(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; lean_object* x_10; uint8_t x_11; +x_9 = lean_array_get_size(x_1); +x_10 = lean_unsigned_to_nat(0u); +x_11 = lean_nat_dec_eq(x_9, x_10); +if (x_11 == 0) +{ +lean_object* x_12; uint8_t x_13; +x_12 = lean_unsigned_to_nat(1u); +x_13 = lean_nat_dec_eq(x_9, x_12); +lean_dec(x_9); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; +x_14 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_15 = lean_ctor_get(x_14, 1); +lean_inc(x_15); +lean_dec(x_14); +x_16 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_15); +x_17 = !lean_is_exclusive(x_16); +if (x_17 == 0) +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_18 = lean_ctor_get(x_16, 0); +lean_dec(x_18); +x_19 = l_Lean_instInhabitedSyntax; +x_20 = lean_array_get(x_19, x_1, x_10); +x_21 = l_Array_empty___closed__1; +x_22 = lean_array_push(x_21, x_20); +x_23 = l_Array_eraseIdx___rarg(x_1, x_10); +x_24 = l_Array_appendCore___rarg(x_21, x_23); +lean_dec(x_23); +x_25 = l_Lean_nullKind___closed__2; +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_25); +lean_ctor_set(x_26, 1, x_24); +x_27 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_492____closed__8; +x_28 = lean_array_push(x_27, x_26); +x_29 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; +x_30 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_28); +x_31 = lean_array_push(x_21, x_30); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_25); +lean_ctor_set(x_32, 1, x_31); +x_33 = lean_array_push(x_22, x_32); x_34 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_34, 0, x_33); -lean_ctor_set(x_34, 1, x_32); -x_35 = l_myMacro____x40_Init_Notation___hyg_12470____closed__4; +lean_ctor_set(x_34, 0, x_25); +lean_ctor_set(x_34, 1, x_33); +x_35 = l_myMacro____x40_Init_Notation___hyg_9707____closed__11; x_36 = lean_array_push(x_35, x_34); -x_37 = l_myMacro____x40_Init_Notation___hyg_12470____closed__18; +x_37 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; x_38 = lean_array_push(x_36, x_37); -x_39 = lean_array_push(x_38, x_2); -x_40 = l_myMacro____x40_Init_Notation___hyg_12470____closed__2; -x_41 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_41, 0, x_40); -lean_ctor_set(x_41, 1, x_39); -lean_ctor_set(x_13, 0, x_41); -return x_13; +x_39 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; +x_40 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_40, 0, x_39); +lean_ctor_set(x_40, 1, x_38); +lean_ctor_set(x_16, 0, x_40); +return x_16; } else { -lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_42 = lean_ctor_get(x_13, 0); -x_43 = lean_ctor_get(x_13, 1); -lean_inc(x_43); -lean_inc(x_42); -lean_dec(x_13); +lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_41 = lean_ctor_get(x_16, 1); +lean_inc(x_41); +lean_dec(x_16); +x_42 = l_Lean_instInhabitedSyntax; +x_43 = lean_array_get(x_42, x_1, x_10); x_44 = l_Array_empty___closed__1; -x_45 = lean_array_push(x_44, x_1); -x_46 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_47 = lean_array_push(x_45, x_46); -x_48 = lean_array_push(x_47, x_46); -x_49 = l_myMacro____x40_Init_Notation___hyg_12470____closed__14; -x_50 = lean_array_push(x_48, x_49); -x_51 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; -x_52 = l_Lean_addMacroScope(x_42, x_51, x_11); -x_53 = lean_box(0); -x_54 = l_Lean_instInhabitedSourceInfo___closed__1; -x_55 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3; -x_56 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_56, 0, x_54); -lean_ctor_set(x_56, 1, x_55); -lean_ctor_set(x_56, 2, x_52); -lean_ctor_set(x_56, 3, x_53); -x_57 = lean_array_push(x_50, x_56); -x_58 = l_myMacro____x40_Init_Notation___hyg_12470____closed__8; -x_59 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_59, 0, x_58); -lean_ctor_set(x_59, 1, x_57); -x_60 = lean_array_push(x_44, x_59); -x_61 = l_myMacro____x40_Init_Notation___hyg_12470____closed__6; -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_myMacro____x40_Init_Notation___hyg_12470____closed__4; -x_64 = lean_array_push(x_63, x_62); -x_65 = l_myMacro____x40_Init_Notation___hyg_12470____closed__18; -x_66 = lean_array_push(x_64, x_65); -x_67 = lean_array_push(x_66, x_2); -x_68 = l_myMacro____x40_Init_Notation___hyg_12470____closed__2; -x_69 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_69, 0, x_68); -lean_ctor_set(x_69, 1, x_67); -x_70 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_43); -return x_70; +x_45 = lean_array_push(x_44, x_43); +x_46 = l_Array_eraseIdx___rarg(x_1, x_10); +x_47 = l_Array_appendCore___rarg(x_44, x_46); +lean_dec(x_46); +x_48 = l_Lean_nullKind___closed__2; +x_49 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_49, 1, x_47); +x_50 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_492____closed__8; +x_51 = lean_array_push(x_50, x_49); +x_52 = l_Lean_Elab_Term_Quotation_mkTuple___closed__2; +x_53 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_53, 0, x_52); +lean_ctor_set(x_53, 1, x_51); +x_54 = lean_array_push(x_44, x_53); +x_55 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_55, 0, x_48); +lean_ctor_set(x_55, 1, x_54); +x_56 = lean_array_push(x_45, x_55); +x_57 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_57, 0, x_48); +lean_ctor_set(x_57, 1, x_56); +x_58 = l_myMacro____x40_Init_Notation___hyg_9707____closed__11; +x_59 = lean_array_push(x_58, x_57); +x_60 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_61 = lean_array_push(x_59, x_60); +x_62 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; +x_63 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_63, 0, x_62); +lean_ctor_set(x_63, 1, x_61); +x_64 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_64, 0, x_63); +lean_ctor_set(x_64, 1, x_41); +return x_64; } } +else +{ +lean_object* x_65; lean_object* x_66; +x_65 = lean_array_fget(x_1, x_10); +lean_dec(x_1); +x_66 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_66, 0, x_65); +lean_ctor_set(x_66, 1, x_8); +return x_66; +} +} +else +{ +lean_object* x_67; lean_object* x_68; lean_object* x_69; uint8_t x_70; +lean_dec(x_9); +lean_dec(x_1); +x_67 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_68 = lean_ctor_get(x_67, 1); +lean_inc(x_68); +lean_dec(x_67); +x_69 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_68); +x_70 = !lean_is_exclusive(x_69); +if (x_70 == 0) +{ +lean_object* x_71; lean_object* x_72; +x_71 = lean_ctor_get(x_69, 0); +lean_dec(x_71); +x_72 = l_Lean_Elab_Term_Quotation_mkTuple___closed__5; +lean_ctor_set(x_69, 0, x_72); +return x_69; +} +else +{ +lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_73 = lean_ctor_get(x_69, 1); +lean_inc(x_73); +lean_dec(x_69); +x_74 = l_Lean_Elab_Term_Quotation_mkTuple___closed__5; +x_75 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_75, 0, x_74); +lean_ctor_set(x_75, 1, x_73); +return x_75; +} +} +} +} +lean_object* l_Lean_Elab_Term_Quotation_mkTuple___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Elab_Term_Quotation_mkTuple(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_9; +} } lean_object* l_List_head_x21___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__1(lean_object* x_1) { _start: @@ -10092,39 +12922,6 @@ goto _start; } } } -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__3(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; lean_object* x_6; uint8_t x_7; -x_5 = lean_ctor_get(x_1, 0); -x_6 = l_List_head_x21___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__1(x_5); -x_7 = x_3 < x_2; -if (x_7 == 0) -{ -lean_object* x_8; -lean_dec(x_6); -x_8 = x_4; -return x_8; -} -else -{ -lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; size_t x_15; size_t x_16; lean_object* x_17; lean_object* x_18; -x_9 = lean_array_uget(x_4, x_3); -x_10 = lean_unsigned_to_nat(0u); -x_11 = lean_array_uset(x_4, x_3, x_10); -x_12 = x_9; -x_13 = lean_unsigned_to_nat(1u); -x_14 = l_Lean_Syntax_setArg(x_6, x_13, x_12); -x_15 = 1; -x_16 = x_3 + x_15; -x_17 = x_14; -x_18 = lean_array_uset(x_11, x_3, x_17); -x_3 = x_16; -x_4 = x_18; -goto _start; -} -} -} static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__1___closed__1() { _start: { @@ -10211,6 +13008,47 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("discr"); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__6; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__6; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__6; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { @@ -10268,9 +13106,9 @@ lean_ctor_set(x_44, 1, x_43); lean_ctor_set(x_44, 2, x_34); lean_ctor_set(x_44, 3, x_41); x_45 = lean_array_push(x_24, x_44); -x_46 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; +x_46 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; x_47 = l_Lean_addMacroScope(x_17, x_46, x_13); -x_48 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3; +x_48 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; x_49 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_49, 0, x_42); lean_ctor_set(x_49, 1, x_48); @@ -10353,9 +13191,9 @@ lean_ctor_set(x_93, 1, x_92); lean_ctor_set(x_93, 2, x_83); lean_ctor_set(x_93, 3, x_90); x_94 = lean_array_push(x_73, x_93); -x_95 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; +x_95 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; x_96 = l_Lean_addMacroScope(x_65, x_95, x_13); -x_97 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3; +x_97 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; x_98 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_98, 0, x_91); lean_ctor_set(x_98, 1, x_97); @@ -10430,7 +13268,202 @@ lean_dec(x_1); return x_15; } } -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; +x_12 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_13 = lean_ctor_get(x_12, 0); +lean_inc(x_13); +x_14 = lean_ctor_get(x_12, 1); +lean_inc(x_14); +lean_dec(x_12); +x_15 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_14); +x_16 = !lean_is_exclusive(x_15); +if (x_16 == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_17 = lean_ctor_get(x_15, 0); +x_18 = l_myMacro____x40_Init_Notation___hyg_12470____closed__1; +lean_inc(x_1); +x_19 = lean_name_mk_string(x_1, x_18); +lean_inc_n(x_2, 2); +x_20 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_20, 0, x_2); +lean_ctor_set(x_20, 1, x_2); +lean_ctor_set(x_20, 2, x_2); +lean_inc(x_20); +x_21 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_21, 0, x_20); +lean_ctor_set(x_21, 1, x_18); +x_22 = l_Array_empty___closed__1; +x_23 = lean_array_push(x_22, x_21); +x_24 = l_myMacro____x40_Init_Notation___hyg_12470____closed__5; +lean_inc(x_1); +x_25 = lean_name_mk_string(x_1, x_24); +x_26 = l_myMacro____x40_Init_Notation___hyg_12470____closed__7; +x_27 = lean_name_mk_string(x_1, x_26); +x_28 = lean_array_push(x_22, x_3); +x_29 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_30 = lean_array_push(x_28, x_29); +x_31 = lean_array_push(x_30, x_29); +x_32 = l_myMacro____x40_Init_Notation___hyg_12470____closed__13; +lean_inc(x_20); +x_33 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_33, 0, x_20); +lean_ctor_set(x_33, 1, x_32); +x_34 = lean_array_push(x_31, x_33); +x_35 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_36 = l_Lean_addMacroScope(x_17, x_35, x_13); +x_37 = lean_box(0); +x_38 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +lean_inc(x_20); +x_39 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_39, 0, x_20); +lean_ctor_set(x_39, 1, x_38); +lean_ctor_set(x_39, 2, x_36); +lean_ctor_set(x_39, 3, x_37); +x_40 = lean_array_push(x_34, x_39); +x_41 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_41, 0, x_27); +lean_ctor_set(x_41, 1, x_40); +x_42 = lean_array_push(x_22, x_41); +x_43 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_43, 0, x_25); +lean_ctor_set(x_43, 1, x_42); +x_44 = lean_array_push(x_23, x_43); +x_45 = l_myMacro____x40_Init_Notation___hyg_12470____closed__15; +x_46 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_46, 0, x_20); +lean_ctor_set(x_46, 1, x_45); +x_47 = lean_array_push(x_22, x_46); +x_48 = l_Lean_nullKind___closed__2; +x_49 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_49, 1, x_47); +x_50 = lean_array_push(x_44, x_49); +x_51 = lean_array_push(x_50, x_4); +x_52 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_52, 0, x_19); +lean_ctor_set(x_52, 1, x_51); +lean_ctor_set(x_15, 0, x_52); +return x_15; +} +else +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; 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; +x_53 = lean_ctor_get(x_15, 0); +x_54 = lean_ctor_get(x_15, 1); +lean_inc(x_54); +lean_inc(x_53); +lean_dec(x_15); +x_55 = l_myMacro____x40_Init_Notation___hyg_12470____closed__1; +lean_inc(x_1); +x_56 = lean_name_mk_string(x_1, x_55); +lean_inc_n(x_2, 2); +x_57 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_57, 0, x_2); +lean_ctor_set(x_57, 1, x_2); +lean_ctor_set(x_57, 2, x_2); +lean_inc(x_57); +x_58 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_58, 0, x_57); +lean_ctor_set(x_58, 1, x_55); +x_59 = l_Array_empty___closed__1; +x_60 = lean_array_push(x_59, x_58); +x_61 = l_myMacro____x40_Init_Notation___hyg_12470____closed__5; +lean_inc(x_1); +x_62 = lean_name_mk_string(x_1, x_61); +x_63 = l_myMacro____x40_Init_Notation___hyg_12470____closed__7; +x_64 = lean_name_mk_string(x_1, x_63); +x_65 = lean_array_push(x_59, x_3); +x_66 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_67 = lean_array_push(x_65, x_66); +x_68 = lean_array_push(x_67, x_66); +x_69 = l_myMacro____x40_Init_Notation___hyg_12470____closed__13; +lean_inc(x_57); +x_70 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_70, 0, x_57); +lean_ctor_set(x_70, 1, x_69); +x_71 = lean_array_push(x_68, x_70); +x_72 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_73 = l_Lean_addMacroScope(x_53, x_72, x_13); +x_74 = lean_box(0); +x_75 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +lean_inc(x_57); +x_76 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_76, 0, x_57); +lean_ctor_set(x_76, 1, x_75); +lean_ctor_set(x_76, 2, x_73); +lean_ctor_set(x_76, 3, x_74); +x_77 = lean_array_push(x_71, x_76); +x_78 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_78, 0, x_64); +lean_ctor_set(x_78, 1, x_77); +x_79 = lean_array_push(x_59, x_78); +x_80 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_80, 0, x_62); +lean_ctor_set(x_80, 1, x_79); +x_81 = lean_array_push(x_60, x_80); +x_82 = l_myMacro____x40_Init_Notation___hyg_12470____closed__15; +x_83 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_83, 0, x_57); +lean_ctor_set(x_83, 1, x_82); +x_84 = lean_array_push(x_59, x_83); +x_85 = l_Lean_nullKind___closed__2; +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_81, x_86); +x_88 = lean_array_push(x_87, x_4); +x_89 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_89, 0, x_56); +lean_ctor_set(x_89, 1, x_88); +x_90 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_90, 0, x_89); +lean_ctor_set(x_90, 1, x_54); +return x_90; +} +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("unexpected antiquotation scope"); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__1; +x_2 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__2; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; lean_object* x_11; +x_10 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__3; +x_11 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(x_1, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_11; +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; @@ -10439,7 +13472,7 @@ x_11 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabT return x_11; } } -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; @@ -10462,11 +13495,11 @@ x_19 = lean_array_push(x_17, x_18); x_20 = lean_array_push(x_19, x_18); x_21 = l_myMacro____x40_Init_Notation___hyg_12470____closed__14; x_22 = lean_array_push(x_20, x_21); -x_23 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; +x_23 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; x_24 = l_Lean_addMacroScope(x_15, x_23, x_11); x_25 = lean_box(0); x_26 = l_Lean_instInhabitedSourceInfo___closed__1; -x_27 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3; +x_27 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; x_28 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_28, 0, x_26); lean_ctor_set(x_28, 1, x_27); @@ -10509,11 +13542,11 @@ x_47 = lean_array_push(x_45, x_46); x_48 = lean_array_push(x_47, x_46); x_49 = l_myMacro____x40_Init_Notation___hyg_12470____closed__14; x_50 = lean_array_push(x_48, x_49); -x_51 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; +x_51 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; x_52 = l_Lean_addMacroScope(x_42, x_51, x_11); x_53 = lean_box(0); x_54 = l_Lean_instInhabitedSourceInfo___closed__1; -x_55 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3; +x_55 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; x_56 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_56, 0, x_54); lean_ctor_set(x_56, 1, x_55); @@ -10545,340 +13578,347 @@ return x_70; } } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__1___boxed), 8, 0); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__2___boxed), 8, 0); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_ReaderT_pure___at_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___spec__1___rarg___boxed), 8, 0); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__3; -x_3 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_1); -lean_ctor_set(x_3, 2, x_2); -return x_3; -} -} lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo(lean_object* x_1) { _start: { -lean_object* x_2; lean_object* x_3; uint8_t x_4; +lean_object* x_2; lean_object* x_3; lean_object* x_4; uint8_t x_9; x_2 = lean_ctor_get(x_1, 0); x_3 = l_List_head_x21___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__1(x_2); -x_4 = l_Lean_Syntax_isIdent(x_3); -if (x_4 == 0) +x_9 = l_Lean_Syntax_isIdent(x_3); +if (x_9 == 0) { -lean_object* x_5; uint8_t x_6; -x_5 = l_myMacro____x40_Init_Notation___hyg_11836____closed__13; +lean_object* x_10; uint8_t x_11; +x_10 = l_myMacro____x40_Init_Notation___hyg_11836____closed__13; lean_inc(x_3); -x_6 = l_Lean_Syntax_isOfKind(x_3, x_5); -if (x_6 == 0) +x_11 = l_Lean_Syntax_isOfKind(x_3, x_10); +if (x_11 == 0) { -uint8_t x_7; -x_7 = l_Lean_Syntax_isQuot(x_3); -if (x_7 == 0) +uint8_t x_12; +x_12 = l_Lean_Syntax_isQuot(x_3); +if (x_12 == 0) { -lean_object* x_8; lean_object* x_9; lean_object* x_10; -x_8 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__1___boxed), 9, 1); -lean_closure_set(x_8, 0, x_3); -x_9 = lean_box(0); -x_10 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_10, 0, x_9); -lean_ctor_set(x_10, 1, x_9); -lean_ctor_set(x_10, 2, x_8); -return x_10; +lean_object* x_13; +x_13 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__1___boxed), 9, 1); +lean_closure_set(x_13, 0, x_3); +x_4 = x_13; +goto block_8; } else { -lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_53; -x_11 = lean_unsigned_to_nat(1u); -x_12 = l_Lean_Syntax_getArg(x_3, x_11); +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_32; uint8_t x_40; +x_14 = lean_unsigned_to_nat(1u); +x_15 = l_Lean_Syntax_getArg(x_3, x_14); lean_dec(x_3); -x_53 = l_Lean_Syntax_isAtom(x_12); -if (x_53 == 0) +x_40 = l_Lean_Syntax_isAtom(x_15); +if (x_40 == 0) { -uint8_t x_54; uint8_t x_55; -x_54 = l_Lean_Syntax_isAntiquot(x_12); -x_55 = l_Lean_Elab_Term_Quotation_isEscapedAntiquot(x_12); -if (x_55 == 0) +uint8_t x_41; uint8_t x_42; +x_41 = l_Lean_Syntax_isAntiquot(x_15); +x_42 = l_Lean_Elab_Term_Quotation_isEscapedAntiquot(x_15); +if (x_42 == 0) { -if (x_54 == 0) +if (x_41 == 0) { -lean_object* x_56; -x_56 = lean_box(0); -x_13 = x_56; -goto block_52; +uint8_t x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; +lean_inc(x_15); +x_43 = l_Lean_Elab_Term_Quotation_isAntiquotSplicePat(x_15); +x_44 = l_Lean_Syntax_getArgs(x_15); +x_45 = lean_array_get_size(x_44); +lean_dec(x_44); +x_46 = lean_nat_dec_eq(x_45, x_14); +lean_dec(x_45); +if (x_43 == 0) +{ +if (x_46 == 0) +{ +lean_object* x_47; +x_47 = lean_box(0); +x_16 = x_47; +goto block_31; } else { -lean_object* x_57; lean_object* x_58; uint8_t x_59; lean_object* x_60; -x_57 = l_Lean_Elab_Term_Quotation_antiquotKind_x3f(x_12); -x_58 = l_Lean_Elab_Term_Quotation_getAntiquotTerm(x_12); -x_59 = l_Lean_Elab_Term_Quotation_isAntiquotSplice(x_12); -if (lean_obj_tag(x_57) == 0) +lean_object* x_48; lean_object* x_49; uint8_t x_50; +x_48 = lean_unsigned_to_nat(0u); +x_49 = l_Lean_Syntax_getArg(x_15, x_48); +x_50 = l_Lean_Elab_Term_Quotation_isAntiquotScope(x_49); +if (x_50 == 0) { -x_60 = x_57; -goto block_71; +lean_object* x_51; +lean_dec(x_49); +x_51 = lean_box(0); +x_16 = x_51; +goto block_31; } else { -lean_object* x_72; lean_object* x_73; uint8_t x_74; -x_72 = lean_ctor_get(x_57, 0); -lean_inc(x_72); +lean_object* x_52; +lean_dec(x_15); +x_52 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_52, 0, x_49); +return x_52; +} +} +} +else +{ +if (x_46 == 0) +{ +lean_object* x_53; +x_53 = lean_box(0); +x_16 = x_53; +goto block_31; +} +else +{ +lean_object* x_54; +x_54 = lean_box(0); +x_32 = x_54; +goto block_39; +} +} +} +else +{ +lean_object* x_55; lean_object* x_56; uint8_t x_57; lean_object* x_58; +x_55 = l_Lean_Elab_Term_Quotation_antiquotKind_x3f(x_15); +x_56 = l_Lean_Elab_Term_Quotation_getAntiquotTerm(x_15); +x_57 = l_Lean_Syntax_isAntiquotSplice(x_15); +if (lean_obj_tag(x_55) == 0) +{ +x_58 = x_55; +goto block_69; +} +else +{ +lean_object* x_70; lean_object* x_71; uint8_t x_72; +x_70 = lean_ctor_get(x_55, 0); +lean_inc(x_70); +x_71 = lean_box(0); +x_72 = lean_name_eq(x_70, x_71); +lean_dec(x_70); +if (x_72 == 0) +{ +x_58 = x_55; +goto block_69; +} +else +{ +lean_object* x_73; +lean_dec(x_55); x_73 = lean_box(0); -x_74 = lean_name_eq(x_72, x_73); -lean_dec(x_72); -if (x_74 == 0) -{ -x_60 = x_57; -goto block_71; -} -else -{ -lean_object* x_75; -lean_dec(x_57); -x_75 = lean_box(0); -x_60 = x_75; -goto block_71; +x_58 = x_73; +goto block_69; } } -block_71: +block_69: { +if (x_57 == 0) +{ +uint8_t x_59; +x_59 = l_Lean_Elab_Term_Quotation_isAntiquotScope(x_15); if (x_59 == 0) { -uint8_t x_61; -lean_dec(x_12); -x_61 = l_Lean_Syntax_isIdent(x_58); -if (x_61 == 0) +uint8_t x_60; +lean_dec(x_15); +x_60 = l_Lean_Syntax_isIdent(x_56); +if (x_60 == 0) { -lean_object* x_62; lean_object* x_63; lean_object* x_64; -lean_dec(x_60); -x_62 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3___boxed), 9, 1); -lean_closure_set(x_62, 0, x_58); -x_63 = lean_box(0); -x_64 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_64, 0, x_63); -lean_ctor_set(x_64, 1, x_63); -lean_ctor_set(x_64, 2, x_62); -return x_64; -} -else -{ -lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_65 = lean_box(0); -x_66 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___boxed), 9, 1); -lean_closure_set(x_66, 0, x_58); -x_67 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_67, 0, x_60); -lean_ctor_set(x_67, 1, x_65); -lean_ctor_set(x_67, 2, x_66); -return x_67; -} -} -else -{ -lean_object* x_68; lean_object* x_69; lean_object* x_70; -lean_dec(x_60); +lean_object* x_61; lean_dec(x_58); -x_68 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4___boxed), 9, 1); -lean_closure_set(x_68, 0, x_12); -x_69 = lean_box(0); -x_70 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_70, 0, x_69); -lean_ctor_set(x_70, 1, x_69); -lean_ctor_set(x_70, 2, x_68); -return x_70; +x_61 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3___boxed), 9, 1); +lean_closure_set(x_61, 0, x_56); +x_4 = x_61; +goto block_8; +} +else +{ +lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; +x_62 = lean_box(0); +x_63 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_64 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4___boxed), 11, 3); +lean_closure_set(x_64, 0, x_63); +lean_closure_set(x_64, 1, x_62); +lean_closure_set(x_64, 2, x_56); +x_65 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_65, 0, x_58); +lean_ctor_set(x_65, 1, x_62); +lean_ctor_set(x_65, 2, x_64); +x_66 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_66, 0, x_65); +return x_66; +} +} +else +{ +lean_object* x_67; +lean_dec(x_58); +lean_dec(x_56); +x_67 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___boxed), 9, 1); +lean_closure_set(x_67, 0, x_15); +x_4 = x_67; +goto block_8; +} +} +else +{ +lean_object* x_68; +lean_dec(x_58); +lean_dec(x_56); +x_68 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__6___boxed), 9, 1); +lean_closure_set(x_68, 0, x_15); +x_4 = x_68; +goto block_8; } } } } else { -lean_object* x_76; -x_76 = lean_box(0); -x_13 = x_76; -goto block_52; -} -} -else +uint8_t x_74; lean_object* x_75; lean_object* x_76; uint8_t x_77; +lean_inc(x_15); +x_74 = l_Lean_Elab_Term_Quotation_isAntiquotSplicePat(x_15); +x_75 = l_Lean_Syntax_getArgs(x_15); +x_76 = lean_array_get_size(x_75); +lean_dec(x_75); +x_77 = lean_nat_dec_eq(x_76, x_14); +lean_dec(x_76); +if (x_74 == 0) { -lean_object* x_77; -lean_dec(x_12); -x_77 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__4; -return x_77; -} -block_52: -{ -uint8_t x_14; -lean_dec(x_13); -lean_inc(x_12); -x_14 = l_Lean_Elab_Term_Quotation_isAntiquotSplicePat(x_12); -if (x_14 == 0) -{ -lean_object* x_15; lean_object* x_16; lean_object* x_17; size_t x_18; size_t x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_15 = l_Lean_Elab_Term_Quotation_unescapeAntiquot(x_12); -x_16 = l_Lean_Syntax_getArgs(x_15); -x_17 = lean_array_get_size(x_16); -x_18 = lean_usize_of_nat(x_17); -lean_dec(x_17); -x_19 = 0; -x_20 = x_16; -x_21 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__2(x_1, x_18, x_19, x_20); -x_22 = x_21; -x_23 = l_Lean_Syntax_getKind(x_15); -x_24 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_24, 0, x_23); -x_25 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_25, 0, x_22); -x_26 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__1; -x_27 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_27, 0, x_24); -lean_ctor_set(x_27, 1, x_25); -lean_ctor_set(x_27, 2, x_26); -return x_27; -} -else -{ -lean_object* x_28; lean_object* x_29; uint8_t x_30; -x_28 = l_Lean_Syntax_getArgs(x_12); -x_29 = lean_array_get_size(x_28); -lean_dec(x_28); -x_30 = lean_nat_dec_eq(x_29, x_11); -lean_dec(x_29); -if (x_30 == 0) -{ -lean_object* x_31; lean_object* x_32; lean_object* x_33; size_t x_34; size_t x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_31 = l_Lean_Elab_Term_Quotation_unescapeAntiquot(x_12); -x_32 = l_Lean_Syntax_getArgs(x_31); -x_33 = lean_array_get_size(x_32); -x_34 = lean_usize_of_nat(x_33); -lean_dec(x_33); -x_35 = 0; -x_36 = x_32; -x_37 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__3(x_1, x_34, x_35, x_36); -x_38 = x_37; -x_39 = l_Lean_Syntax_getKind(x_31); -x_40 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_40, 0, x_39); -x_41 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_41, 0, x_38); -x_42 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__2; -x_43 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_43, 0, x_40); -lean_ctor_set(x_43, 1, x_41); -lean_ctor_set(x_43, 2, x_42); -return x_43; -} -else -{ -lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; -x_44 = lean_unsigned_to_nat(0u); -x_45 = l_Lean_Syntax_getArg(x_12, x_44); -lean_dec(x_12); -x_46 = l_Lean_Elab_Term_Quotation_getAntiquotTerm(x_45); -lean_dec(x_45); -x_47 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; -x_48 = l_myMacro____x40_Init_Notation___hyg_38____closed__2; -x_49 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___boxed), 11, 3); -lean_closure_set(x_49, 0, x_47); -lean_closure_set(x_49, 1, x_46); -lean_closure_set(x_49, 2, x_48); -x_50 = lean_box(0); -x_51 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_51, 0, x_50); -lean_ctor_set(x_51, 1, x_50); -lean_ctor_set(x_51, 2, x_49); -return x_51; -} -} -} -} -} -else +if (x_77 == 0) { lean_object* x_78; -lean_dec(x_3); -x_78 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__4; -return x_78; +x_78 = lean_box(0); +x_16 = x_78; +goto block_31; +} +else +{ +lean_object* x_79; lean_object* x_80; uint8_t x_81; +x_79 = lean_unsigned_to_nat(0u); +x_80 = l_Lean_Syntax_getArg(x_15, x_79); +x_81 = l_Lean_Elab_Term_Quotation_isAntiquotScope(x_80); +if (x_81 == 0) +{ +lean_object* x_82; +lean_dec(x_80); +x_82 = lean_box(0); +x_16 = x_82; +goto block_31; +} +else +{ +lean_object* x_83; +lean_dec(x_15); +x_83 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_83, 0, x_80); +return x_83; +} } } else { -lean_object* x_79; lean_object* x_80; lean_object* x_81; -x_79 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___boxed), 9, 1); -lean_closure_set(x_79, 0, x_3); -x_80 = lean_box(0); -x_81 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_81, 0, x_80); -lean_ctor_set(x_81, 1, x_80); -lean_ctor_set(x_81, 2, x_79); -return x_81; -} -} -} -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { -_start: +if (x_77 == 0) { -lean_object* x_9; -x_9 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -return x_9; +lean_object* x_84; +x_84 = lean_box(0); +x_16 = x_84; +goto block_31; } -} -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { -_start: +else { -lean_object* x_9; -x_9 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -return x_9; +lean_object* x_85; +x_85 = lean_box(0); +x_32 = x_85; +goto block_39; } } -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { -_start: +} +} +else { -lean_object* x_10; -x_10 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); +lean_object* x_86; +lean_dec(x_15); +x_86 = l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___closed__1; +x_4 = x_86; +goto block_8; +} +block_31: +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; size_t x_20; size_t 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_dec(x_16); +x_17 = l_Lean_Elab_Term_Quotation_unescapeAntiquot(x_15); +x_18 = l_Lean_Syntax_getArgs(x_17); +x_19 = lean_array_get_size(x_18); +x_20 = lean_usize_of_nat(x_19); +lean_dec(x_19); +x_21 = 0; +x_22 = x_18; +x_23 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__2(x_1, x_20, x_21, x_22); +x_24 = x_23; +x_25 = l_Lean_Syntax_getKind(x_17); +x_26 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_26, 0, x_25); +x_27 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_27, 0, x_24); +x_28 = l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___closed__1; +x_29 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_29, 0, x_26); +lean_ctor_set(x_29, 1, x_27); +lean_ctor_set(x_29, 2, x_28); +x_30 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_30, 0, x_29); +return x_30; +} +block_39: +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; +lean_dec(x_32); +x_33 = lean_unsigned_to_nat(0u); +x_34 = l_Lean_Syntax_getArg(x_15, x_33); +lean_dec(x_15); +x_35 = l_Lean_Elab_Term_Quotation_getAntiquotTerm(x_34); +lean_dec(x_34); +x_36 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_37 = l_myMacro____x40_Init_Notation___hyg_38____closed__2; +x_38 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___boxed), 11, 3); +lean_closure_set(x_38, 0, x_36); +lean_closure_set(x_38, 1, x_35); +lean_closure_set(x_38, 2, x_37); +x_4 = x_38; +goto block_8; +} +} +} +else +{ +lean_object* x_87; lean_dec(x_3); -return x_10; +x_87 = l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___closed__1; +x_4 = x_87; +goto block_8; +} +} +else +{ +lean_object* x_88; +x_88 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__7___boxed), 9, 1); +lean_closure_set(x_88, 0, x_3); +x_4 = x_88; +goto block_8; +} +block_8: +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_5 = lean_box(0); +x_6 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_6, 0, x_5); +lean_ctor_set(x_6, 1, x_5); +lean_ctor_set(x_6, 2, x_4); +x_7 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_7, 0, x_6); +return x_7; +} } } lean_object* l_List_head_x21___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__1___boxed(lean_object* x_1) { @@ -10903,19 +13943,6 @@ lean_dec(x_1); return x_7; } } -lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -size_t x_5; size_t x_6; lean_object* x_7; -x_5 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_6 = lean_unbox_usize(x_3); -lean_dec(x_3); -x_7 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__3(x_1, x_5, x_6, x_4); -lean_dec(x_1); -return x_7; -} -} lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { @@ -10956,11 +13983,25 @@ lean_dec(x_2); return x_10; } } -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +return x_12; +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_8); lean_dec(x_6); lean_dec(x_5); @@ -10970,11 +14011,25 @@ lean_dec(x_1); return x_10; } } -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +return x_10; +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); @@ -11024,39 +14079,85 @@ x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Te return x_2; } } -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat_match__2___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat_match__2___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { -lean_object* x_4; lean_object* x_5; -x_4 = lean_ctor_get(x_1, 1); -lean_inc(x_4); -x_5 = lean_ctor_get(x_4, 0); +lean_object* x_5; +x_5 = lean_ctor_get(x_1, 0); lean_inc(x_5); if (lean_obj_tag(x_5) == 0) { -lean_object* x_6; -lean_dec(x_4); +lean_object* x_6; lean_object* x_7; +lean_dec(x_3); +x_6 = lean_ctor_get(x_1, 1); +lean_inc(x_6); +x_7 = lean_ctor_get(x_6, 0); +lean_inc(x_7); +if (lean_obj_tag(x_7) == 0) +{ +lean_object* x_8; +lean_dec(x_6); +lean_dec(x_5); lean_dec(x_2); -x_6 = lean_apply_1(x_3, x_1); -return x_6; +x_8 = lean_apply_1(x_4, x_1); +return x_8; } else { -lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; -lean_dec(x_3); -x_7 = lean_ctor_get(x_1, 0); -lean_inc(x_7); -lean_dec(x_1); -x_8 = lean_ctor_get(x_4, 1); -lean_inc(x_8); +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_dec(x_4); +lean_dec(x_1); x_9 = lean_ctor_get(x_5, 0); lean_inc(x_9); -x_10 = lean_ctor_get(x_5, 1); -lean_inc(x_10); lean_dec(x_5); -x_11 = lean_apply_4(x_2, x_7, x_9, x_10, x_8); -return x_11; +x_10 = lean_ctor_get(x_6, 1); +lean_inc(x_10); +lean_dec(x_6); +x_11 = lean_ctor_get(x_7, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_7, 1); +lean_inc(x_12); +lean_dec(x_7); +x_13 = lean_apply_4(x_2, x_9, x_11, x_12, x_10); +return x_13; +} +} +else +{ +lean_object* x_14; lean_object* x_15; +lean_dec(x_2); +x_14 = lean_ctor_get(x_1, 1); +lean_inc(x_14); +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); +if (lean_obj_tag(x_15) == 0) +{ +lean_object* x_16; +lean_dec(x_14); +lean_dec(x_5); +lean_dec(x_3); +x_16 = lean_apply_1(x_4, x_1); +return x_16; +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +lean_dec(x_4); +lean_dec(x_1); +x_17 = lean_ctor_get(x_5, 0); +lean_inc(x_17); +lean_dec(x_5); +x_18 = lean_ctor_get(x_14, 1); +lean_inc(x_18); +lean_dec(x_14); +x_19 = lean_ctor_get(x_15, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_15, 1); +lean_inc(x_20); +lean_dec(x_15); +x_21 = lean_apply_4(x_3, x_17, x_19, x_20, x_18); +return x_21; +} } } } @@ -11064,7 +14165,7 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explode _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat_match__2___rarg), 3, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat_match__2___rarg), 4, 0); return x_2; } } @@ -11114,9 +14215,9 @@ static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quot _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__1; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__1; x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___closed__1; -x_3 = lean_unsigned_to_nat(268u); +x_3 = lean_unsigned_to_nat(296u); x_4 = lean_unsigned_to_nat(9u); x_5 = l_Lean_Syntax_strLitToAtom___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -11155,332 +14256,402 @@ return x_2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { -lean_object* x_10; lean_object* x_11; -x_10 = lean_ctor_get(x_2, 1); +lean_object* x_10; +x_10 = lean_ctor_get(x_2, 0); lean_inc(x_10); -x_11 = lean_ctor_get(x_10, 0); +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_ctor_get(x_2, 1); 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_dec(x_10); lean_dec(x_2); -lean_dec(x_1); -x_12 = l_Lean_Elab_Term_getFVarLocalDecl_x21___closed__1; -x_13 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___closed__2; -x_14 = lean_panic_fn(x_12, x_13); -x_15 = lean_apply_7(x_14, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_15; -} -else +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +if (lean_obj_tag(x_12) == 0) { -lean_object* x_16; lean_object* x_17; -x_16 = lean_ctor_get(x_2, 0); -lean_inc(x_16); -lean_dec(x_2); -x_17 = lean_ctor_get(x_16, 1); -lean_inc(x_17); -if (lean_obj_tag(x_17) == 0) -{ -uint8_t x_18; -x_18 = !lean_is_exclusive(x_10); -if (x_18 == 0) -{ -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; -x_19 = lean_ctor_get(x_10, 1); -x_20 = lean_ctor_get(x_10, 0); -lean_dec(x_20); -x_21 = lean_ctor_get(x_11, 1); -lean_inc(x_21); +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_dec(x_11); -x_22 = lean_ctor_get(x_16, 2); -lean_inc(x_22); -lean_dec(x_16); -x_23 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___closed__5; -x_24 = l_List_replicate___rarg(x_1, x_23); -x_25 = lean_apply_8(x_22, x_19, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_25) == 0) -{ -uint8_t x_26; -x_26 = !lean_is_exclusive(x_25); -if (x_26 == 0) -{ -lean_object* x_27; lean_object* x_28; -x_27 = lean_ctor_get(x_25, 0); -x_28 = l_List_append___rarg(x_24, x_21); -lean_ctor_set(x_10, 1, x_27); -lean_ctor_set(x_10, 0, x_28); -lean_ctor_set(x_25, 0, x_10); -return x_25; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; -x_29 = lean_ctor_get(x_25, 0); -x_30 = lean_ctor_get(x_25, 1); -lean_inc(x_30); -lean_inc(x_29); -lean_dec(x_25); -x_31 = l_List_append___rarg(x_24, x_21); -lean_ctor_set(x_10, 1, x_29); -lean_ctor_set(x_10, 0, x_31); -x_32 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_32, 0, x_10); -lean_ctor_set(x_32, 1, x_30); -return x_32; -} -} -else -{ -uint8_t x_33; -lean_dec(x_24); -lean_dec(x_21); -lean_free_object(x_10); -x_33 = !lean_is_exclusive(x_25); -if (x_33 == 0) -{ -return x_25; -} -else -{ -lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_34 = lean_ctor_get(x_25, 0); -x_35 = lean_ctor_get(x_25, 1); -lean_inc(x_35); -lean_inc(x_34); -lean_dec(x_25); -x_36 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_36, 0, x_34); -lean_ctor_set(x_36, 1, x_35); -return x_36; -} -} -} -else -{ -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_10, 1); -lean_inc(x_37); lean_dec(x_10); +lean_dec(x_1); +x_13 = l_Lean_Elab_Term_getFVarLocalDecl_x21___closed__1; +x_14 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___closed__2; +x_15 = lean_panic_fn(x_13, x_14); +x_16 = lean_apply_7(x_15, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_16; +} +else +{ +lean_object* x_17; lean_object* x_18; +x_17 = lean_ctor_get(x_10, 0); +lean_inc(x_17); +lean_dec(x_10); +x_18 = lean_ctor_get(x_17, 1); +lean_inc(x_18); +if (lean_obj_tag(x_18) == 0) +{ +uint8_t x_19; +x_19 = !lean_is_exclusive(x_11); +if (x_19 == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_20 = lean_ctor_get(x_11, 1); +x_21 = lean_ctor_get(x_11, 0); +lean_dec(x_21); +x_22 = lean_ctor_get(x_12, 1); +lean_inc(x_22); +lean_dec(x_12); +x_23 = lean_ctor_get(x_17, 2); +lean_inc(x_23); +lean_dec(x_17); +x_24 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___closed__5; +x_25 = l_List_replicate___rarg(x_1, x_24); +x_26 = lean_apply_8(x_23, x_20, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_26) == 0) +{ +uint8_t x_27; +x_27 = !lean_is_exclusive(x_26); +if (x_27 == 0) +{ +lean_object* x_28; lean_object* x_29; +x_28 = lean_ctor_get(x_26, 0); +x_29 = l_List_append___rarg(x_25, x_22); +lean_ctor_set(x_11, 1, x_28); +lean_ctor_set(x_11, 0, x_29); +lean_ctor_set(x_26, 0, x_11); +return x_26; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_30 = lean_ctor_get(x_26, 0); +x_31 = lean_ctor_get(x_26, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_26); +x_32 = l_List_append___rarg(x_25, x_22); +lean_ctor_set(x_11, 1, x_30); +lean_ctor_set(x_11, 0, x_32); +x_33 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_33, 0, x_11); +lean_ctor_set(x_33, 1, x_31); +return x_33; +} +} +else +{ +uint8_t x_34; +lean_dec(x_25); +lean_dec(x_22); +lean_free_object(x_11); +x_34 = !lean_is_exclusive(x_26); +if (x_34 == 0) +{ +return x_26; +} +else +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_26, 0); +x_36 = lean_ctor_get(x_26, 1); +lean_inc(x_36); +lean_inc(x_35); +lean_dec(x_26); +x_37 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_37, 0, x_35); +lean_ctor_set(x_37, 1, x_36); +return x_37; +} +} +} +else +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; x_38 = lean_ctor_get(x_11, 1); lean_inc(x_38); lean_dec(x_11); -x_39 = lean_ctor_get(x_16, 2); +x_39 = lean_ctor_get(x_12, 1); lean_inc(x_39); -lean_dec(x_16); -x_40 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___closed__5; -x_41 = l_List_replicate___rarg(x_1, x_40); -x_42 = lean_apply_8(x_39, x_37, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_42) == 0) +lean_dec(x_12); +x_40 = lean_ctor_get(x_17, 2); +lean_inc(x_40); +lean_dec(x_17); +x_41 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___closed__5; +x_42 = l_List_replicate___rarg(x_1, x_41); +x_43 = lean_apply_8(x_40, x_38, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_43) == 0) { -lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; -x_43 = lean_ctor_get(x_42, 0); -lean_inc(x_43); -x_44 = lean_ctor_get(x_42, 1); +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_44 = lean_ctor_get(x_43, 0); lean_inc(x_44); -if (lean_is_exclusive(x_42)) { - lean_ctor_release(x_42, 0); - lean_ctor_release(x_42, 1); - x_45 = x_42; +x_45 = lean_ctor_get(x_43, 1); +lean_inc(x_45); +if (lean_is_exclusive(x_43)) { + lean_ctor_release(x_43, 0); + lean_ctor_release(x_43, 1); + x_46 = x_43; } else { - lean_dec_ref(x_42); - x_45 = lean_box(0); -} -x_46 = l_List_append___rarg(x_41, x_38); -x_47 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_47, 0, x_46); -lean_ctor_set(x_47, 1, x_43); -if (lean_is_scalar(x_45)) { - x_48 = lean_alloc_ctor(0, 2, 0); -} else { - x_48 = x_45; + lean_dec_ref(x_43); + x_46 = lean_box(0); } +x_47 = l_List_append___rarg(x_42, x_39); +x_48 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_44); -return x_48; +if (lean_is_scalar(x_46)) { + x_49 = lean_alloc_ctor(0, 2, 0); +} else { + x_49 = x_46; +} +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_49, 1, x_45); +return x_49; } else { -lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -lean_dec(x_41); -lean_dec(x_38); -x_49 = lean_ctor_get(x_42, 0); -lean_inc(x_49); -x_50 = lean_ctor_get(x_42, 1); +lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; +lean_dec(x_42); +lean_dec(x_39); +x_50 = lean_ctor_get(x_43, 0); lean_inc(x_50); -if (lean_is_exclusive(x_42)) { - lean_ctor_release(x_42, 0); - lean_ctor_release(x_42, 1); - x_51 = x_42; +x_51 = lean_ctor_get(x_43, 1); +lean_inc(x_51); +if (lean_is_exclusive(x_43)) { + lean_ctor_release(x_43, 0); + lean_ctor_release(x_43, 1); + x_52 = x_43; } else { - lean_dec_ref(x_42); - x_51 = lean_box(0); + lean_dec_ref(x_43); + x_52 = lean_box(0); } -if (lean_is_scalar(x_51)) { - x_52 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_52)) { + x_53 = lean_alloc_ctor(1, 2, 0); } else { - x_52 = x_51; + x_53 = x_52; } -lean_ctor_set(x_52, 0, x_49); -lean_ctor_set(x_52, 1, x_50); -return x_52; +lean_ctor_set(x_53, 0, x_50); +lean_ctor_set(x_53, 1, x_51); +return x_53; } } } else { -uint8_t x_53; +uint8_t x_54; lean_dec(x_1); -x_53 = !lean_is_exclusive(x_10); -if (x_53 == 0) +x_54 = !lean_is_exclusive(x_11); +if (x_54 == 0) { -lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_54 = lean_ctor_get(x_10, 1); -x_55 = lean_ctor_get(x_10, 0); -lean_dec(x_55); -x_56 = lean_ctor_get(x_11, 1); -lean_inc(x_56); -lean_dec(x_11); -x_57 = lean_ctor_get(x_16, 2); +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; +x_55 = lean_ctor_get(x_11, 1); +x_56 = lean_ctor_get(x_11, 0); +lean_dec(x_56); +x_57 = lean_ctor_get(x_12, 1); lean_inc(x_57); -lean_dec(x_16); -x_58 = lean_ctor_get(x_17, 0); +lean_dec(x_12); +x_58 = lean_ctor_get(x_17, 2); lean_inc(x_58); lean_dec(x_17); -x_59 = lean_array_to_list(lean_box(0), x_58); -x_60 = lean_apply_8(x_57, x_54, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_60) == 0) +x_59 = lean_ctor_get(x_18, 0); +lean_inc(x_59); +lean_dec(x_18); +x_60 = lean_array_to_list(lean_box(0), x_59); +x_61 = lean_apply_8(x_58, x_55, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_61) == 0) { -uint8_t x_61; -x_61 = !lean_is_exclusive(x_60); -if (x_61 == 0) +uint8_t x_62; +x_62 = !lean_is_exclusive(x_61); +if (x_62 == 0) { -lean_object* x_62; lean_object* x_63; -x_62 = lean_ctor_get(x_60, 0); -x_63 = l_List_append___rarg(x_59, x_56); -lean_ctor_set(x_10, 1, x_62); -lean_ctor_set(x_10, 0, x_63); -lean_ctor_set(x_60, 0, x_10); -return x_60; +lean_object* x_63; lean_object* x_64; +x_63 = lean_ctor_get(x_61, 0); +x_64 = l_List_append___rarg(x_60, x_57); +lean_ctor_set(x_11, 1, x_63); +lean_ctor_set(x_11, 0, x_64); +lean_ctor_set(x_61, 0, x_11); +return x_61; } else { -lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_64 = lean_ctor_get(x_60, 0); -x_65 = lean_ctor_get(x_60, 1); +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; +x_65 = lean_ctor_get(x_61, 0); +x_66 = lean_ctor_get(x_61, 1); +lean_inc(x_66); lean_inc(x_65); -lean_inc(x_64); +lean_dec(x_61); +x_67 = l_List_append___rarg(x_60, x_57); +lean_ctor_set(x_11, 1, x_65); +lean_ctor_set(x_11, 0, x_67); +x_68 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_68, 0, x_11); +lean_ctor_set(x_68, 1, x_66); +return x_68; +} +} +else +{ +uint8_t x_69; lean_dec(x_60); -x_66 = l_List_append___rarg(x_59, x_56); -lean_ctor_set(x_10, 1, x_64); -lean_ctor_set(x_10, 0, x_66); -x_67 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_67, 0, x_10); -lean_ctor_set(x_67, 1, x_65); -return x_67; -} +lean_dec(x_57); +lean_free_object(x_11); +x_69 = !lean_is_exclusive(x_61); +if (x_69 == 0) +{ +return x_61; } else { -uint8_t x_68; -lean_dec(x_59); -lean_dec(x_56); -lean_free_object(x_10); -x_68 = !lean_is_exclusive(x_60); -if (x_68 == 0) -{ -return x_60; -} -else -{ -lean_object* x_69; lean_object* x_70; lean_object* x_71; -x_69 = lean_ctor_get(x_60, 0); -x_70 = lean_ctor_get(x_60, 1); +lean_object* x_70; lean_object* x_71; lean_object* x_72; +x_70 = lean_ctor_get(x_61, 0); +x_71 = lean_ctor_get(x_61, 1); +lean_inc(x_71); lean_inc(x_70); -lean_inc(x_69); -lean_dec(x_60); -x_71 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_71, 0, x_69); -lean_ctor_set(x_71, 1, x_70); -return x_71; +lean_dec(x_61); +x_72 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_72, 0, x_70); +lean_ctor_set(x_72, 1, x_71); +return x_72; } } } else { -lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; -x_72 = lean_ctor_get(x_10, 1); -lean_inc(x_72); -lean_dec(x_10); +lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; x_73 = lean_ctor_get(x_11, 1); lean_inc(x_73); lean_dec(x_11); -x_74 = lean_ctor_get(x_16, 2); +x_74 = lean_ctor_get(x_12, 1); lean_inc(x_74); -lean_dec(x_16); -x_75 = lean_ctor_get(x_17, 0); +lean_dec(x_12); +x_75 = lean_ctor_get(x_17, 2); lean_inc(x_75); lean_dec(x_17); -x_76 = lean_array_to_list(lean_box(0), x_75); -x_77 = lean_apply_8(x_74, x_72, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_77) == 0) +x_76 = lean_ctor_get(x_18, 0); +lean_inc(x_76); +lean_dec(x_18); +x_77 = lean_array_to_list(lean_box(0), x_76); +x_78 = lean_apply_8(x_75, x_73, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_78) == 0) { -lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; -x_78 = lean_ctor_get(x_77, 0); -lean_inc(x_78); -x_79 = lean_ctor_get(x_77, 1); +lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_79 = lean_ctor_get(x_78, 0); lean_inc(x_79); -if (lean_is_exclusive(x_77)) { - lean_ctor_release(x_77, 0); - lean_ctor_release(x_77, 1); - x_80 = x_77; +x_80 = lean_ctor_get(x_78, 1); +lean_inc(x_80); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_81 = x_78; } else { - lean_dec_ref(x_77); - x_80 = lean_box(0); -} -x_81 = l_List_append___rarg(x_76, x_73); -x_82 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_82, 0, x_81); -lean_ctor_set(x_82, 1, x_78); -if (lean_is_scalar(x_80)) { - x_83 = lean_alloc_ctor(0, 2, 0); -} else { - x_83 = x_80; + lean_dec_ref(x_78); + x_81 = lean_box(0); } +x_82 = l_List_append___rarg(x_77, x_74); +x_83 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_83, 0, x_82); lean_ctor_set(x_83, 1, x_79); -return x_83; +if (lean_is_scalar(x_81)) { + x_84 = lean_alloc_ctor(0, 2, 0); +} else { + x_84 = x_81; +} +lean_ctor_set(x_84, 0, x_83); +lean_ctor_set(x_84, 1, x_80); +return x_84; } else { -lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; -lean_dec(x_76); -lean_dec(x_73); -x_84 = lean_ctor_get(x_77, 0); -lean_inc(x_84); -x_85 = lean_ctor_get(x_77, 1); +lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; +lean_dec(x_77); +lean_dec(x_74); +x_85 = lean_ctor_get(x_78, 0); lean_inc(x_85); -if (lean_is_exclusive(x_77)) { - lean_ctor_release(x_77, 0); - lean_ctor_release(x_77, 1); - x_86 = x_77; +x_86 = lean_ctor_get(x_78, 1); +lean_inc(x_86); +if (lean_is_exclusive(x_78)) { + lean_ctor_release(x_78, 0); + lean_ctor_release(x_78, 1); + x_87 = x_78; } else { - lean_dec_ref(x_77); - x_86 = lean_box(0); + lean_dec_ref(x_78); + x_87 = lean_box(0); } -if (lean_is_scalar(x_86)) { - x_87 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_87)) { + x_88 = lean_alloc_ctor(1, 2, 0); } else { - x_87 = x_86; + x_88 = x_87; } -lean_ctor_set(x_87, 0, x_84); -lean_ctor_set(x_87, 1, x_85); -return x_87; +lean_ctor_set(x_88, 0, x_85); +lean_ctor_set(x_88, 1, x_86); +return x_88; } } } } } +else +{ +lean_object* x_89; lean_object* x_90; +lean_dec(x_10); +lean_dec(x_1); +x_89 = lean_ctor_get(x_2, 1); +lean_inc(x_89); +lean_dec(x_2); +x_90 = lean_ctor_get(x_89, 0); +lean_inc(x_90); +if (lean_obj_tag(x_90) == 0) +{ +lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; +lean_dec(x_89); +x_91 = l_Lean_Elab_Term_getFVarLocalDecl_x21___closed__1; +x_92 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___closed__2; +x_93 = lean_panic_fn(x_91, x_92); +x_94 = lean_apply_7(x_93, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_94; +} +else +{ +uint8_t x_95; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_95 = !lean_is_exclusive(x_89); +if (x_95 == 0) +{ +lean_object* x_96; lean_object* x_97; lean_object* x_98; +x_96 = lean_ctor_get(x_89, 0); +lean_dec(x_96); +x_97 = lean_ctor_get(x_90, 1); +lean_inc(x_97); +lean_dec(x_90); +lean_ctor_set(x_89, 0, x_97); +x_98 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_98, 0, x_89); +lean_ctor_set(x_98, 1, x_9); +return x_98; +} +else +{ +lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; +x_99 = lean_ctor_get(x_89, 1); +lean_inc(x_99); +lean_dec(x_89); +x_100 = lean_ctor_get(x_90, 1); +lean_inc(x_100); +lean_dec(x_90); +x_101 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_101, 0, x_100); +lean_ctor_set(x_101, 1, x_99); +x_102 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_102, 0, x_101); +lean_ctor_set(x_102, 1, x_9); +return x_102; +} +} +} +} } lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: @@ -11498,20 +14669,41 @@ _start: if (lean_obj_tag(x_1) == 0) { lean_object* x_4; lean_object* x_5; +x_4 = lean_ctor_get(x_1, 0); +lean_inc(x_4); +x_5 = lean_ctor_get(x_4, 1); +lean_inc(x_5); +if (lean_obj_tag(x_5) == 0) +{ +lean_object* x_6; +lean_dec(x_4); lean_dec(x_2); -x_4 = lean_box(0); -x_5 = lean_apply_1(x_3, x_4); -return x_5; +x_6 = lean_apply_1(x_3, x_1); +return x_6; } else { -lean_object* x_6; lean_object* x_7; +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_dec(x_3); -x_6 = lean_ctor_get(x_1, 0); -lean_inc(x_6); lean_dec(x_1); -x_7 = lean_apply_1(x_2, x_6); -return x_7; +x_7 = lean_ctor_get(x_4, 0); +lean_inc(x_7); +x_8 = lean_ctor_get(x_4, 2); +lean_inc(x_8); +lean_dec(x_4); +x_9 = lean_ctor_get(x_5, 0); +lean_inc(x_9); +lean_dec(x_5); +x_10 = lean_apply_3(x_2, x_9, x_7, x_8); +return x_10; +} +} +else +{ +lean_object* x_11; +lean_dec(x_2); +x_11 = lean_apply_1(x_3, x_1); +return x_11; } } } @@ -11557,22 +14749,27 @@ return x_2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__3___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { -if (lean_obj_tag(x_1) == 0) +lean_object* x_4; lean_object* x_5; uint8_t x_6; +x_4 = lean_array_get_size(x_1); +x_5 = lean_unsigned_to_nat(1u); +x_6 = lean_nat_dec_eq(x_4, x_5); +lean_dec(x_4); +if (x_6 == 0) { -lean_object* x_4; +lean_object* x_7; lean_dec(x_2); -x_4 = lean_apply_1(x_3, x_1); -return x_4; +x_7 = lean_apply_1(x_3, x_1); +return x_7; } else { -lean_object* x_5; lean_object* x_6; +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_dec(x_3); -x_5 = lean_ctor_get(x_1, 0); -lean_inc(x_5); +x_8 = lean_unsigned_to_nat(0u); +x_9 = lean_array_fget(x_1, x_8); lean_dec(x_1); -x_6 = lean_apply_1(x_2, x_5); -return x_6; +x_10 = lean_apply_1(x_2, x_9); +return x_10; } } } @@ -11584,7 +14781,144 @@ x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Te return x_2; } } -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__4___rarg(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__4___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_4; +lean_dec(x_2); +x_4 = lean_apply_1(x_3, x_1); +return x_4; +} +else +{ +lean_object* x_5; +x_5 = lean_ctor_get(x_1, 0); +lean_inc(x_5); +if (lean_obj_tag(x_5) == 1) +{ +lean_object* x_6; +x_6 = lean_ctor_get(x_5, 0); +lean_inc(x_6); +if (lean_obj_tag(x_6) == 0) +{ +lean_object* x_7; size_t x_8; lean_object* x_9; uint8_t x_10; +x_7 = lean_ctor_get(x_5, 1); +lean_inc(x_7); +x_8 = lean_ctor_get_usize(x_5, 2); +lean_dec(x_5); +x_9 = l_myMacro____x40_Init_Notation___hyg_11399____closed__1; +x_10 = lean_string_dec_eq(x_7, x_9); +lean_dec(x_7); +if (x_10 == 0) +{ +lean_object* x_11; +lean_dec(x_2); +x_11 = lean_apply_1(x_3, x_1); +return x_11; +} +else +{ +lean_object* x_12; lean_object* x_13; +lean_dec(x_3); +lean_dec(x_1); +x_12 = lean_box_usize(x_8); +x_13 = lean_apply_1(x_2, x_12); +return x_13; +} +} +else +{ +lean_object* x_14; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_2); +x_14 = lean_apply_1(x_3, x_1); +return x_14; +} +} +else +{ +lean_object* x_15; +lean_dec(x_5); +lean_dec(x_2); +x_15 = lean_apply_1(x_3, x_1); +return x_15; +} +} +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__4(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__4___rarg), 3, 0); +return x_2; +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__5___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_5; lean_object* x_6; +lean_dec(x_4); +x_5 = lean_ctor_get(x_1, 0); +lean_inc(x_5); +lean_dec(x_1); +x_6 = lean_ctor_get(x_5, 0); +lean_inc(x_6); +if (lean_obj_tag(x_6) == 0) +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; +lean_dec(x_3); +x_7 = lean_ctor_get(x_5, 1); +lean_inc(x_7); +x_8 = lean_ctor_get(x_5, 2); +lean_inc(x_8); +lean_dec(x_5); +x_9 = lean_apply_2(x_2, x_7, x_8); +return x_9; +} +else +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +lean_dec(x_2); +x_10 = lean_ctor_get(x_5, 1); +lean_inc(x_10); +x_11 = lean_ctor_get(x_5, 2); +lean_inc(x_11); +lean_dec(x_5); +x_12 = lean_ctor_get(x_6, 0); +lean_inc(x_12); +lean_dec(x_6); +x_13 = lean_apply_3(x_3, x_12, x_10, x_11); +return x_13; +} +} +else +{ +lean_object* x_14; lean_object* x_15; +lean_dec(x_3); +lean_dec(x_2); +x_14 = lean_ctor_get(x_1, 0); +lean_inc(x_14); +lean_dec(x_1); +x_15 = lean_apply_1(x_4, x_14); +return x_15; +} +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__5(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__5___rarg), 4, 0); +return x_2; +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__6___rarg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; @@ -11597,15 +14931,15 @@ x_5 = lean_apply_2(x_2, x_3, x_4); return x_5; } } -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__4(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__6(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__4___rarg), 2, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__6___rarg), 2, 0); return x_2; } } -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__5___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__7___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { if (lean_obj_tag(x_1) == 0) @@ -11677,11 +15011,11 @@ return x_17; } } } -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__5(lean_object* x_1) { +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__7(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__5___rarg), 6, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__7___rarg), 6, 0); return x_2; } } @@ -12239,30 +15573,30 @@ return x_12; } } } -static lean_object* _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__1() { +static lean_object* _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__1() { _start: { lean_object* x_1; -x_1 = lean_mk_string("Syntax.getArg"); +x_1 = lean_mk_string("tuples.map"); return x_1; } } -static lean_object* _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__2() { +static lean_object* _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__1; +x_1 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__3() { +static lean_object* _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__1; +x_1 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__2; +x_3 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___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); @@ -12270,7 +15604,1577 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__4() { +static lean_object* _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("tuples"); +return x_1; +} +} +static lean_object* _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__4; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__5; +x_2 = l_myMacro____x40_Init_Notation___hyg_9405____closed__6; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("·"); +return x_1; +} +} +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* 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) { +_start: +{ +lean_object* x_19; uint8_t x_20; +x_19 = lean_ctor_get(x_8, 1); +x_20 = lean_nat_dec_le(x_19, x_10); +if (x_20 == 0) +{ +lean_object* x_21; uint8_t x_22; +x_21 = lean_unsigned_to_nat(0u); +x_22 = lean_nat_dec_eq(x_9, x_21); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; 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; +x_23 = lean_unsigned_to_nat(1u); +x_24 = lean_nat_sub(x_9, x_23); +lean_dec(x_9); +x_25 = lean_nat_add(x_10, x_23); +x_26 = l_Nat_repr(x_25); +x_27 = l_Lean_fieldIdxKind; +lean_inc(x_4); +x_28 = l_Lean_Syntax_mkLit(x_27, x_26, x_4); +x_29 = l_Lean_Elab_Term_getCurrMacroScope(x_12, x_13, x_14, x_15, x_16, x_17, x_18); +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_Elab_Term_getMainModule___rarg(x_17, x_31); +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_myMacro____x40_Init_Notation___hyg_12470____closed__1; +lean_inc(x_1); +x_36 = lean_name_mk_string(x_1, x_35); +lean_inc(x_4); +x_37 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_37, 0, x_4); +lean_ctor_set(x_37, 1, x_35); +lean_inc(x_3); +x_38 = lean_array_push(x_3, x_37); +x_39 = l_myMacro____x40_Init_Notation___hyg_12470____closed__5; +lean_inc(x_1); +x_40 = lean_name_mk_string(x_1, x_39); +x_41 = l_myMacro____x40_Init_Notation___hyg_12470____closed__7; +lean_inc(x_1); +x_42 = lean_name_mk_string(x_1, x_41); +x_43 = l_Lean_instInhabitedSyntax; +x_44 = lean_array_get(x_43, x_7, x_10); +lean_inc(x_3); +x_45 = lean_array_push(x_3, x_44); +lean_inc(x_3); +lean_inc(x_6); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_6); +lean_ctor_set(x_46, 1, x_3); +lean_inc(x_46); +x_47 = lean_array_push(x_45, x_46); +lean_inc(x_46); +x_48 = lean_array_push(x_47, x_46); +x_49 = l_myMacro____x40_Init_Notation___hyg_12470____closed__13; +lean_inc(x_4); +x_50 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_50, 0, x_4); +lean_ctor_set(x_50, 1, x_49); +x_51 = lean_array_push(x_48, x_50); +x_52 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__6; +x_53 = l_Lean_addMacroScope(x_33, x_52, x_30); +x_54 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__3; +lean_inc(x_5); +lean_inc(x_4); +x_55 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_55, 0, x_4); +lean_ctor_set(x_55, 1, x_54); +lean_ctor_set(x_55, 2, x_53); +lean_ctor_set(x_55, 3, x_5); +lean_inc(x_3); +x_56 = lean_array_push(x_3, x_55); +x_57 = l_myMacro____x40_Init_Notation___hyg_9707____closed__7; +lean_inc(x_1); +x_58 = lean_name_mk_string(x_1, x_57); +x_59 = l_myMacro____x40_Init_Notation___hyg_9707____closed__9; +lean_inc(x_4); +x_60 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_60, 0, x_4); +lean_ctor_set(x_60, 1, x_59); +lean_inc(x_3); +x_61 = lean_array_push(x_3, x_60); +x_62 = l_Lean_Expr_ctorName___closed__10; +lean_inc(x_1); +x_63 = lean_name_mk_string(x_1, x_62); +x_64 = l___regBuiltin_Lean_Elab_Term_elabBadCDot___closed__1; +lean_inc(x_1); +x_65 = lean_name_mk_string(x_1, x_64); +x_66 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__7; +lean_inc(x_4); +x_67 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_67, 0, x_4); +lean_ctor_set(x_67, 1, x_66); +lean_inc(x_3); +x_68 = lean_array_push(x_3, x_67); +x_69 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_69, 0, x_65); +lean_ctor_set(x_69, 1, x_68); +lean_inc(x_3); +x_70 = lean_array_push(x_3, x_69); +x_71 = l_Lean_Name_toString___closed__1; +lean_inc(x_4); +x_72 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_72, 0, x_4); +lean_ctor_set(x_72, 1, x_71); +x_73 = lean_array_push(x_70, x_72); +x_74 = lean_array_push(x_73, x_28); +x_75 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_75, 0, x_63); +lean_ctor_set(x_75, 1, x_74); +lean_inc(x_3); +x_76 = lean_array_push(x_3, x_75); +x_77 = lean_array_push(x_76, x_46); +lean_inc(x_6); +x_78 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_78, 0, x_6); +lean_ctor_set(x_78, 1, x_77); +x_79 = lean_array_push(x_61, x_78); +x_80 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; +lean_inc(x_4); +x_81 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_81, 0, x_4); +lean_ctor_set(x_81, 1, x_80); +x_82 = lean_array_push(x_79, x_81); +x_83 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_83, 0, x_58); +lean_ctor_set(x_83, 1, x_82); +lean_inc(x_3); +x_84 = lean_array_push(x_3, x_83); +lean_inc(x_6); +x_85 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_85, 0, x_6); +lean_ctor_set(x_85, 1, x_84); +x_86 = lean_array_push(x_56, x_85); +lean_inc(x_2); +x_87 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_87, 0, x_2); +lean_ctor_set(x_87, 1, x_86); +x_88 = lean_array_push(x_51, x_87); +x_89 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_89, 0, x_42); +lean_ctor_set(x_89, 1, x_88); +lean_inc(x_3); +x_90 = lean_array_push(x_3, x_89); +x_91 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_91, 0, x_40); +lean_ctor_set(x_91, 1, x_90); +x_92 = lean_array_push(x_38, x_91); +x_93 = l_myMacro____x40_Init_Notation___hyg_12470____closed__15; +lean_inc(x_4); +x_94 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_94, 0, x_4); +lean_ctor_set(x_94, 1, x_93); +lean_inc(x_3); +x_95 = lean_array_push(x_3, x_94); +lean_inc(x_6); +x_96 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_96, 0, x_6); +lean_ctor_set(x_96, 1, x_95); +x_97 = lean_array_push(x_92, x_96); +x_98 = lean_array_push(x_97, x_11); +x_99 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_99, 0, x_36); +lean_ctor_set(x_99, 1, x_98); +x_100 = lean_ctor_get(x_8, 2); +x_101 = lean_nat_add(x_10, x_100); +lean_dec(x_10); +x_9 = x_24; +x_10 = x_101; +x_11 = x_99; +x_18 = x_34; +goto _start; +} +else +{ +lean_object* x_103; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_103 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_103, 0, x_11); +lean_ctor_set(x_103, 1, x_18); +return x_103; +} +} +else +{ +lean_object* x_104; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_104 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_104, 0, x_11); +lean_ctor_set(x_104, 1, x_18); +return x_104; +} +} +} +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* 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) { +_start: +{ +lean_object* x_19; uint8_t x_20; +x_19 = lean_ctor_get(x_8, 1); +x_20 = lean_nat_dec_le(x_19, x_10); +if (x_20 == 0) +{ +lean_object* x_21; uint8_t x_22; +x_21 = lean_unsigned_to_nat(0u); +x_22 = lean_nat_dec_eq(x_9, x_21); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; 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; +x_23 = lean_unsigned_to_nat(1u); +x_24 = lean_nat_sub(x_9, x_23); +lean_dec(x_9); +x_25 = lean_nat_add(x_10, x_23); +x_26 = l_Nat_repr(x_25); +x_27 = l_Lean_fieldIdxKind; +lean_inc(x_4); +x_28 = l_Lean_Syntax_mkLit(x_27, x_26, x_4); +x_29 = l_Lean_Elab_Term_getCurrMacroScope(x_12, x_13, x_14, x_15, x_16, x_17, x_18); +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_Elab_Term_getMainModule___rarg(x_17, x_31); +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_myMacro____x40_Init_Notation___hyg_12470____closed__1; +lean_inc(x_1); +x_36 = lean_name_mk_string(x_1, x_35); +lean_inc(x_4); +x_37 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_37, 0, x_4); +lean_ctor_set(x_37, 1, x_35); +lean_inc(x_3); +x_38 = lean_array_push(x_3, x_37); +x_39 = l_myMacro____x40_Init_Notation___hyg_12470____closed__5; +lean_inc(x_1); +x_40 = lean_name_mk_string(x_1, x_39); +x_41 = l_myMacro____x40_Init_Notation___hyg_12470____closed__7; +lean_inc(x_1); +x_42 = lean_name_mk_string(x_1, x_41); +x_43 = l_Lean_instInhabitedSyntax; +x_44 = lean_array_get(x_43, x_7, x_10); +lean_inc(x_3); +x_45 = lean_array_push(x_3, x_44); +lean_inc(x_3); +lean_inc(x_6); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_6); +lean_ctor_set(x_46, 1, x_3); +lean_inc(x_46); +x_47 = lean_array_push(x_45, x_46); +lean_inc(x_46); +x_48 = lean_array_push(x_47, x_46); +x_49 = l_myMacro____x40_Init_Notation___hyg_12470____closed__13; +lean_inc(x_4); +x_50 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_50, 0, x_4); +lean_ctor_set(x_50, 1, x_49); +x_51 = lean_array_push(x_48, x_50); +x_52 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__6; +x_53 = l_Lean_addMacroScope(x_33, x_52, x_30); +x_54 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__3; +lean_inc(x_5); +lean_inc(x_4); +x_55 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_55, 0, x_4); +lean_ctor_set(x_55, 1, x_54); +lean_ctor_set(x_55, 2, x_53); +lean_ctor_set(x_55, 3, x_5); +lean_inc(x_3); +x_56 = lean_array_push(x_3, x_55); +x_57 = l_myMacro____x40_Init_Notation___hyg_9707____closed__7; +lean_inc(x_1); +x_58 = lean_name_mk_string(x_1, x_57); +x_59 = l_myMacro____x40_Init_Notation___hyg_9707____closed__9; +lean_inc(x_4); +x_60 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_60, 0, x_4); +lean_ctor_set(x_60, 1, x_59); +lean_inc(x_3); +x_61 = lean_array_push(x_3, x_60); +x_62 = l_Lean_Expr_ctorName___closed__10; +lean_inc(x_1); +x_63 = lean_name_mk_string(x_1, x_62); +x_64 = l___regBuiltin_Lean_Elab_Term_elabBadCDot___closed__1; +lean_inc(x_1); +x_65 = lean_name_mk_string(x_1, x_64); +x_66 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__7; +lean_inc(x_4); +x_67 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_67, 0, x_4); +lean_ctor_set(x_67, 1, x_66); +lean_inc(x_3); +x_68 = lean_array_push(x_3, x_67); +x_69 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_69, 0, x_65); +lean_ctor_set(x_69, 1, x_68); +lean_inc(x_3); +x_70 = lean_array_push(x_3, x_69); +x_71 = l_Lean_Name_toString___closed__1; +lean_inc(x_4); +x_72 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_72, 0, x_4); +lean_ctor_set(x_72, 1, x_71); +x_73 = lean_array_push(x_70, x_72); +x_74 = lean_array_push(x_73, x_28); +x_75 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_75, 0, x_63); +lean_ctor_set(x_75, 1, x_74); +lean_inc(x_3); +x_76 = lean_array_push(x_3, x_75); +x_77 = lean_array_push(x_76, x_46); +lean_inc(x_6); +x_78 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_78, 0, x_6); +lean_ctor_set(x_78, 1, x_77); +x_79 = lean_array_push(x_61, x_78); +x_80 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; +lean_inc(x_4); +x_81 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_81, 0, x_4); +lean_ctor_set(x_81, 1, x_80); +x_82 = lean_array_push(x_79, x_81); +x_83 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_83, 0, x_58); +lean_ctor_set(x_83, 1, x_82); +lean_inc(x_3); +x_84 = lean_array_push(x_3, x_83); +lean_inc(x_6); +x_85 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_85, 0, x_6); +lean_ctor_set(x_85, 1, x_84); +x_86 = lean_array_push(x_56, x_85); +lean_inc(x_2); +x_87 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_87, 0, x_2); +lean_ctor_set(x_87, 1, x_86); +x_88 = lean_array_push(x_51, x_87); +x_89 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_89, 0, x_42); +lean_ctor_set(x_89, 1, x_88); +lean_inc(x_3); +x_90 = lean_array_push(x_3, x_89); +x_91 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_91, 0, x_40); +lean_ctor_set(x_91, 1, x_90); +x_92 = lean_array_push(x_38, x_91); +x_93 = l_myMacro____x40_Init_Notation___hyg_12470____closed__15; +lean_inc(x_4); +x_94 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_94, 0, x_4); +lean_ctor_set(x_94, 1, x_93); +lean_inc(x_3); +x_95 = lean_array_push(x_3, x_94); +lean_inc(x_6); +x_96 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_96, 0, x_6); +lean_ctor_set(x_96, 1, x_95); +x_97 = lean_array_push(x_92, x_96); +x_98 = lean_array_push(x_97, x_11); +x_99 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_99, 0, x_36); +lean_ctor_set(x_99, 1, x_98); +x_100 = lean_ctor_get(x_8, 2); +x_101 = lean_nat_add(x_10, x_100); +lean_dec(x_10); +x_9 = x_24; +x_10 = x_101; +x_11 = x_99; +x_18 = x_34; +goto _start; +} +else +{ +lean_object* x_103; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_103 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_103, 0, x_11); +lean_ctor_set(x_103, 1, x_18); +return x_103; +} +} +else +{ +lean_object* x_104; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_104 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_104, 0, x_11); +lean_ctor_set(x_104, 1, x_18); +return x_104; +} +} +} +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, 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) { +_start: +{ +lean_object* x_19; uint8_t x_20; +x_19 = lean_ctor_get(x_8, 1); +x_20 = lean_nat_dec_le(x_19, x_10); +if (x_20 == 0) +{ +lean_object* x_21; uint8_t x_22; +x_21 = lean_unsigned_to_nat(0u); +x_22 = lean_nat_dec_eq(x_9, x_21); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; 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; +x_23 = lean_unsigned_to_nat(1u); +x_24 = lean_nat_sub(x_9, x_23); +lean_dec(x_9); +x_25 = lean_nat_add(x_10, x_23); +x_26 = l_Nat_repr(x_25); +x_27 = l_Lean_fieldIdxKind; +lean_inc(x_4); +x_28 = l_Lean_Syntax_mkLit(x_27, x_26, x_4); +x_29 = l_Lean_Elab_Term_getCurrMacroScope(x_12, x_13, x_14, x_15, x_16, x_17, x_18); +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_Elab_Term_getMainModule___rarg(x_17, x_31); +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_myMacro____x40_Init_Notation___hyg_12470____closed__1; +lean_inc(x_1); +x_36 = lean_name_mk_string(x_1, x_35); +lean_inc(x_4); +x_37 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_37, 0, x_4); +lean_ctor_set(x_37, 1, x_35); +lean_inc(x_3); +x_38 = lean_array_push(x_3, x_37); +x_39 = l_myMacro____x40_Init_Notation___hyg_12470____closed__5; +lean_inc(x_1); +x_40 = lean_name_mk_string(x_1, x_39); +x_41 = l_myMacro____x40_Init_Notation___hyg_12470____closed__7; +lean_inc(x_1); +x_42 = lean_name_mk_string(x_1, x_41); +x_43 = l_Lean_instInhabitedSyntax; +x_44 = lean_array_get(x_43, x_7, x_10); +lean_inc(x_3); +x_45 = lean_array_push(x_3, x_44); +lean_inc(x_3); +lean_inc(x_6); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_6); +lean_ctor_set(x_46, 1, x_3); +lean_inc(x_46); +x_47 = lean_array_push(x_45, x_46); +lean_inc(x_46); +x_48 = lean_array_push(x_47, x_46); +x_49 = l_myMacro____x40_Init_Notation___hyg_12470____closed__13; +lean_inc(x_4); +x_50 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_50, 0, x_4); +lean_ctor_set(x_50, 1, x_49); +x_51 = lean_array_push(x_48, x_50); +x_52 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__6; +x_53 = l_Lean_addMacroScope(x_33, x_52, x_30); +x_54 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__3; +lean_inc(x_5); +lean_inc(x_4); +x_55 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_55, 0, x_4); +lean_ctor_set(x_55, 1, x_54); +lean_ctor_set(x_55, 2, x_53); +lean_ctor_set(x_55, 3, x_5); +lean_inc(x_3); +x_56 = lean_array_push(x_3, x_55); +x_57 = l_myMacro____x40_Init_Notation___hyg_9707____closed__7; +lean_inc(x_1); +x_58 = lean_name_mk_string(x_1, x_57); +x_59 = l_myMacro____x40_Init_Notation___hyg_9707____closed__9; +lean_inc(x_4); +x_60 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_60, 0, x_4); +lean_ctor_set(x_60, 1, x_59); +lean_inc(x_3); +x_61 = lean_array_push(x_3, x_60); +x_62 = l_Lean_Expr_ctorName___closed__10; +lean_inc(x_1); +x_63 = lean_name_mk_string(x_1, x_62); +x_64 = l___regBuiltin_Lean_Elab_Term_elabBadCDot___closed__1; +lean_inc(x_1); +x_65 = lean_name_mk_string(x_1, x_64); +x_66 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__7; +lean_inc(x_4); +x_67 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_67, 0, x_4); +lean_ctor_set(x_67, 1, x_66); +lean_inc(x_3); +x_68 = lean_array_push(x_3, x_67); +x_69 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_69, 0, x_65); +lean_ctor_set(x_69, 1, x_68); +lean_inc(x_3); +x_70 = lean_array_push(x_3, x_69); +x_71 = l_Lean_Name_toString___closed__1; +lean_inc(x_4); +x_72 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_72, 0, x_4); +lean_ctor_set(x_72, 1, x_71); +x_73 = lean_array_push(x_70, x_72); +x_74 = lean_array_push(x_73, x_28); +x_75 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_75, 0, x_63); +lean_ctor_set(x_75, 1, x_74); +lean_inc(x_3); +x_76 = lean_array_push(x_3, x_75); +x_77 = lean_array_push(x_76, x_46); +lean_inc(x_6); +x_78 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_78, 0, x_6); +lean_ctor_set(x_78, 1, x_77); +x_79 = lean_array_push(x_61, x_78); +x_80 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; +lean_inc(x_4); +x_81 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_81, 0, x_4); +lean_ctor_set(x_81, 1, x_80); +x_82 = lean_array_push(x_79, x_81); +x_83 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_83, 0, x_58); +lean_ctor_set(x_83, 1, x_82); +lean_inc(x_3); +x_84 = lean_array_push(x_3, x_83); +lean_inc(x_6); +x_85 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_85, 0, x_6); +lean_ctor_set(x_85, 1, x_84); +x_86 = lean_array_push(x_56, x_85); +lean_inc(x_2); +x_87 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_87, 0, x_2); +lean_ctor_set(x_87, 1, x_86); +x_88 = lean_array_push(x_51, x_87); +x_89 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_89, 0, x_42); +lean_ctor_set(x_89, 1, x_88); +lean_inc(x_3); +x_90 = lean_array_push(x_3, x_89); +x_91 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_91, 0, x_40); +lean_ctor_set(x_91, 1, x_90); +x_92 = lean_array_push(x_38, x_91); +x_93 = l_myMacro____x40_Init_Notation___hyg_12470____closed__15; +lean_inc(x_4); +x_94 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_94, 0, x_4); +lean_ctor_set(x_94, 1, x_93); +lean_inc(x_3); +x_95 = lean_array_push(x_3, x_94); +lean_inc(x_6); +x_96 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_96, 0, x_6); +lean_ctor_set(x_96, 1, x_95); +x_97 = lean_array_push(x_92, x_96); +x_98 = lean_array_push(x_97, x_11); +x_99 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_99, 0, x_36); +lean_ctor_set(x_99, 1, x_98); +x_100 = lean_ctor_get(x_8, 2); +x_101 = lean_nat_add(x_10, x_100); +lean_dec(x_10); +x_9 = x_24; +x_10 = x_101; +x_11 = x_99; +x_18 = x_34; +goto _start; +} +else +{ +lean_object* x_103; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_103 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_103, 0, x_11); +lean_ctor_set(x_103, 1, x_18); +return x_103; +} +} +else +{ +lean_object* x_104; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_104 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_104, 0, x_11); +lean_ctor_set(x_104, 1, x_18); +return x_104; +} +} +} +static lean_object* _init_l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__6; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___closed__1; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +lean_object* l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_10; +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_2); +lean_ctor_set(x_10, 1, x_9); +return x_10; +} +else +{ +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; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_11 = lean_ctor_get(x_1, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_1, 1); +lean_inc(x_12); +lean_dec(x_1); +x_13 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +x_15 = lean_ctor_get(x_13, 1); +lean_inc(x_15); +lean_dec(x_13); +x_16 = l_Lean_Elab_Term_getMainModule___rarg(x_8, x_15); +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +x_18 = lean_ctor_get(x_16, 1); +lean_inc(x_18); +lean_dec(x_16); +x_19 = l_Array_empty___closed__1; +x_20 = lean_array_push(x_19, x_11); +x_21 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +lean_inc(x_20); +x_22 = lean_array_push(x_20, x_21); +x_23 = lean_array_push(x_22, x_21); +x_24 = l_myMacro____x40_Init_Notation___hyg_12470____closed__14; +x_25 = lean_array_push(x_23, x_24); +x_26 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__20; +x_27 = l_Lean_addMacroScope(x_17, x_26, x_14); +x_28 = l_Lean_instInhabitedSourceInfo___closed__1; +x_29 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__19; +x_30 = l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___closed__2; +x_31 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_31, 0, x_28); +lean_ctor_set(x_31, 1, x_29); +lean_ctor_set(x_31, 2, x_27); +lean_ctor_set(x_31, 3, x_30); +x_32 = lean_array_push(x_19, x_31); +x_33 = l_Lean_nullKind___closed__2; +x_34 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_34, 0, x_33); +lean_ctor_set(x_34, 1, x_20); +x_35 = lean_array_push(x_32, x_34); +x_36 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_37 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_37, 0, x_36); +lean_ctor_set(x_37, 1, x_35); +x_38 = lean_array_push(x_25, x_37); +x_39 = l_myMacro____x40_Init_Notation___hyg_12470____closed__8; +x_40 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_40, 0, x_39); +lean_ctor_set(x_40, 1, x_38); +x_41 = lean_array_push(x_19, x_40); +x_42 = l_myMacro____x40_Init_Notation___hyg_12470____closed__6; +x_43 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_43, 0, x_42); +lean_ctor_set(x_43, 1, x_41); +x_44 = l_myMacro____x40_Init_Notation___hyg_12470____closed__4; +x_45 = lean_array_push(x_44, x_43); +x_46 = l_myMacro____x40_Init_Notation___hyg_12470____closed__18; +x_47 = lean_array_push(x_45, x_46); +x_48 = lean_array_push(x_47, x_2); +x_49 = l_myMacro____x40_Init_Notation___hyg_12470____closed__2; +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_49); +lean_ctor_set(x_50, 1, x_48); +x_1 = x_12; +x_2 = x_50; +x_9 = x_18; +goto _start; +} +} +} +static lean_object* _init_l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__3; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___closed__1; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +lean_object* l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_10; +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_2); +lean_ctor_set(x_10, 1, x_9); +return x_10; +} +else +{ +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; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_11 = lean_ctor_get(x_1, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_1, 1); +lean_inc(x_12); +lean_dec(x_1); +x_13 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +x_15 = lean_ctor_get(x_13, 1); +lean_inc(x_15); +lean_dec(x_13); +x_16 = l_Lean_Elab_Term_getMainModule___rarg(x_8, x_15); +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +x_18 = lean_ctor_get(x_16, 1); +lean_inc(x_18); +lean_dec(x_16); +x_19 = l_Array_empty___closed__1; +x_20 = lean_array_push(x_19, x_11); +x_21 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_22 = lean_array_push(x_20, x_21); +x_23 = lean_array_push(x_22, x_21); +x_24 = l_myMacro____x40_Init_Notation___hyg_12470____closed__14; +x_25 = lean_array_push(x_23, x_24); +x_26 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__23; +x_27 = l_Lean_addMacroScope(x_17, x_26, x_14); +x_28 = l_Lean_instInhabitedSourceInfo___closed__1; +x_29 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22; +x_30 = l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___closed__2; +x_31 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_31, 0, x_28); +lean_ctor_set(x_31, 1, x_29); +lean_ctor_set(x_31, 2, x_27); +lean_ctor_set(x_31, 3, x_30); +x_32 = lean_array_push(x_25, x_31); +x_33 = l_myMacro____x40_Init_Notation___hyg_12470____closed__8; +x_34 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_34, 0, x_33); +lean_ctor_set(x_34, 1, x_32); +x_35 = lean_array_push(x_19, x_34); +x_36 = l_myMacro____x40_Init_Notation___hyg_12470____closed__6; +x_37 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_37, 0, x_36); +lean_ctor_set(x_37, 1, x_35); +x_38 = l_myMacro____x40_Init_Notation___hyg_12470____closed__4; +x_39 = lean_array_push(x_38, x_37); +x_40 = l_myMacro____x40_Init_Notation___hyg_12470____closed__18; +x_41 = lean_array_push(x_39, x_40); +x_42 = lean_array_push(x_41, x_2); +x_43 = l_myMacro____x40_Init_Notation___hyg_12470____closed__2; +x_44 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_44, 0, x_43); +lean_ctor_set(x_44, 1, x_42); +x_1 = x_12; +x_2 = x_44; +x_9 = x_18; +goto _start; +} +} +} +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__13(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { +_start: +{ +lean_object* x_19; uint8_t x_20; +x_19 = lean_ctor_get(x_8, 1); +x_20 = lean_nat_dec_le(x_19, x_10); +if (x_20 == 0) +{ +lean_object* x_21; uint8_t x_22; +x_21 = lean_unsigned_to_nat(0u); +x_22 = lean_nat_dec_eq(x_9, x_21); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; 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; +x_23 = lean_unsigned_to_nat(1u); +x_24 = lean_nat_sub(x_9, x_23); +lean_dec(x_9); +x_25 = lean_nat_add(x_10, x_23); +x_26 = l_Nat_repr(x_25); +x_27 = l_Lean_fieldIdxKind; +lean_inc(x_4); +x_28 = l_Lean_Syntax_mkLit(x_27, x_26, x_4); +x_29 = l_Lean_Elab_Term_getCurrMacroScope(x_12, x_13, x_14, x_15, x_16, x_17, x_18); +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_Elab_Term_getMainModule___rarg(x_17, x_31); +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_myMacro____x40_Init_Notation___hyg_12470____closed__1; +lean_inc(x_1); +x_36 = lean_name_mk_string(x_1, x_35); +lean_inc(x_4); +x_37 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_37, 0, x_4); +lean_ctor_set(x_37, 1, x_35); +lean_inc(x_3); +x_38 = lean_array_push(x_3, x_37); +x_39 = l_myMacro____x40_Init_Notation___hyg_12470____closed__5; +lean_inc(x_1); +x_40 = lean_name_mk_string(x_1, x_39); +x_41 = l_myMacro____x40_Init_Notation___hyg_12470____closed__7; +lean_inc(x_1); +x_42 = lean_name_mk_string(x_1, x_41); +x_43 = l_Lean_instInhabitedSyntax; +x_44 = lean_array_get(x_43, x_7, x_10); +lean_inc(x_3); +x_45 = lean_array_push(x_3, x_44); +lean_inc(x_3); +lean_inc(x_6); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_6); +lean_ctor_set(x_46, 1, x_3); +lean_inc(x_46); +x_47 = lean_array_push(x_45, x_46); +lean_inc(x_46); +x_48 = lean_array_push(x_47, x_46); +x_49 = l_myMacro____x40_Init_Notation___hyg_12470____closed__13; +lean_inc(x_4); +x_50 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_50, 0, x_4); +lean_ctor_set(x_50, 1, x_49); +x_51 = lean_array_push(x_48, x_50); +x_52 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__6; +x_53 = l_Lean_addMacroScope(x_33, x_52, x_30); +x_54 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__3; +lean_inc(x_5); +lean_inc(x_4); +x_55 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_55, 0, x_4); +lean_ctor_set(x_55, 1, x_54); +lean_ctor_set(x_55, 2, x_53); +lean_ctor_set(x_55, 3, x_5); +lean_inc(x_3); +x_56 = lean_array_push(x_3, x_55); +x_57 = l_myMacro____x40_Init_Notation___hyg_9707____closed__7; +lean_inc(x_1); +x_58 = lean_name_mk_string(x_1, x_57); +x_59 = l_myMacro____x40_Init_Notation___hyg_9707____closed__9; +lean_inc(x_4); +x_60 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_60, 0, x_4); +lean_ctor_set(x_60, 1, x_59); +lean_inc(x_3); +x_61 = lean_array_push(x_3, x_60); +x_62 = l_Lean_Expr_ctorName___closed__10; +lean_inc(x_1); +x_63 = lean_name_mk_string(x_1, x_62); +x_64 = l___regBuiltin_Lean_Elab_Term_elabBadCDot___closed__1; +lean_inc(x_1); +x_65 = lean_name_mk_string(x_1, x_64); +x_66 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__7; +lean_inc(x_4); +x_67 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_67, 0, x_4); +lean_ctor_set(x_67, 1, x_66); +lean_inc(x_3); +x_68 = lean_array_push(x_3, x_67); +x_69 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_69, 0, x_65); +lean_ctor_set(x_69, 1, x_68); +lean_inc(x_3); +x_70 = lean_array_push(x_3, x_69); +x_71 = l_Lean_Name_toString___closed__1; +lean_inc(x_4); +x_72 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_72, 0, x_4); +lean_ctor_set(x_72, 1, x_71); +x_73 = lean_array_push(x_70, x_72); +x_74 = lean_array_push(x_73, x_28); +x_75 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_75, 0, x_63); +lean_ctor_set(x_75, 1, x_74); +lean_inc(x_3); +x_76 = lean_array_push(x_3, x_75); +x_77 = lean_array_push(x_76, x_46); +lean_inc(x_6); +x_78 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_78, 0, x_6); +lean_ctor_set(x_78, 1, x_77); +x_79 = lean_array_push(x_61, x_78); +x_80 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; +lean_inc(x_4); +x_81 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_81, 0, x_4); +lean_ctor_set(x_81, 1, x_80); +x_82 = lean_array_push(x_79, x_81); +x_83 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_83, 0, x_58); +lean_ctor_set(x_83, 1, x_82); +lean_inc(x_3); +x_84 = lean_array_push(x_3, x_83); +lean_inc(x_6); +x_85 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_85, 0, x_6); +lean_ctor_set(x_85, 1, x_84); +x_86 = lean_array_push(x_56, x_85); +lean_inc(x_2); +x_87 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_87, 0, x_2); +lean_ctor_set(x_87, 1, x_86); +x_88 = lean_array_push(x_51, x_87); +x_89 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_89, 0, x_42); +lean_ctor_set(x_89, 1, x_88); +lean_inc(x_3); +x_90 = lean_array_push(x_3, x_89); +x_91 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_91, 0, x_40); +lean_ctor_set(x_91, 1, x_90); +x_92 = lean_array_push(x_38, x_91); +x_93 = l_myMacro____x40_Init_Notation___hyg_12470____closed__15; +lean_inc(x_4); +x_94 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_94, 0, x_4); +lean_ctor_set(x_94, 1, x_93); +lean_inc(x_3); +x_95 = lean_array_push(x_3, x_94); +lean_inc(x_6); +x_96 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_96, 0, x_6); +lean_ctor_set(x_96, 1, x_95); +x_97 = lean_array_push(x_92, x_96); +x_98 = lean_array_push(x_97, x_11); +x_99 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_99, 0, x_36); +lean_ctor_set(x_99, 1, x_98); +x_100 = lean_ctor_get(x_8, 2); +x_101 = lean_nat_add(x_10, x_100); +lean_dec(x_10); +x_9 = x_24; +x_10 = x_101; +x_11 = x_99; +x_18 = x_34; +goto _start; +} +else +{ +lean_object* x_103; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_103 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_103, 0, x_11); +lean_ctor_set(x_103, 1, x_18); +return x_103; +} +} +else +{ +lean_object* x_104; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_104 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_104, 0, x_11); +lean_ctor_set(x_104, 1, x_18); +return x_104; +} +} +} +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__14(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { +_start: +{ +lean_object* x_19; uint8_t x_20; +x_19 = lean_ctor_get(x_8, 1); +x_20 = lean_nat_dec_le(x_19, x_10); +if (x_20 == 0) +{ +lean_object* x_21; uint8_t x_22; +x_21 = lean_unsigned_to_nat(0u); +x_22 = lean_nat_dec_eq(x_9, x_21); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; 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; +x_23 = lean_unsigned_to_nat(1u); +x_24 = lean_nat_sub(x_9, x_23); +lean_dec(x_9); +x_25 = lean_nat_add(x_10, x_23); +x_26 = l_Nat_repr(x_25); +x_27 = l_Lean_fieldIdxKind; +lean_inc(x_4); +x_28 = l_Lean_Syntax_mkLit(x_27, x_26, x_4); +x_29 = l_Lean_Elab_Term_getCurrMacroScope(x_12, x_13, x_14, x_15, x_16, x_17, x_18); +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_Elab_Term_getMainModule___rarg(x_17, x_31); +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_myMacro____x40_Init_Notation___hyg_12470____closed__1; +lean_inc(x_1); +x_36 = lean_name_mk_string(x_1, x_35); +lean_inc(x_4); +x_37 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_37, 0, x_4); +lean_ctor_set(x_37, 1, x_35); +lean_inc(x_3); +x_38 = lean_array_push(x_3, x_37); +x_39 = l_myMacro____x40_Init_Notation___hyg_12470____closed__5; +lean_inc(x_1); +x_40 = lean_name_mk_string(x_1, x_39); +x_41 = l_myMacro____x40_Init_Notation___hyg_12470____closed__7; +lean_inc(x_1); +x_42 = lean_name_mk_string(x_1, x_41); +x_43 = l_Lean_instInhabitedSyntax; +x_44 = lean_array_get(x_43, x_7, x_10); +lean_inc(x_3); +x_45 = lean_array_push(x_3, x_44); +lean_inc(x_3); +lean_inc(x_6); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_6); +lean_ctor_set(x_46, 1, x_3); +lean_inc(x_46); +x_47 = lean_array_push(x_45, x_46); +lean_inc(x_46); +x_48 = lean_array_push(x_47, x_46); +x_49 = l_myMacro____x40_Init_Notation___hyg_12470____closed__13; +lean_inc(x_4); +x_50 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_50, 0, x_4); +lean_ctor_set(x_50, 1, x_49); +x_51 = lean_array_push(x_48, x_50); +x_52 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__6; +x_53 = l_Lean_addMacroScope(x_33, x_52, x_30); +x_54 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__3; +lean_inc(x_5); +lean_inc(x_4); +x_55 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_55, 0, x_4); +lean_ctor_set(x_55, 1, x_54); +lean_ctor_set(x_55, 2, x_53); +lean_ctor_set(x_55, 3, x_5); +lean_inc(x_3); +x_56 = lean_array_push(x_3, x_55); +x_57 = l_myMacro____x40_Init_Notation___hyg_9707____closed__7; +lean_inc(x_1); +x_58 = lean_name_mk_string(x_1, x_57); +x_59 = l_myMacro____x40_Init_Notation___hyg_9707____closed__9; +lean_inc(x_4); +x_60 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_60, 0, x_4); +lean_ctor_set(x_60, 1, x_59); +lean_inc(x_3); +x_61 = lean_array_push(x_3, x_60); +x_62 = l_Lean_Expr_ctorName___closed__10; +lean_inc(x_1); +x_63 = lean_name_mk_string(x_1, x_62); +x_64 = l___regBuiltin_Lean_Elab_Term_elabBadCDot___closed__1; +lean_inc(x_1); +x_65 = lean_name_mk_string(x_1, x_64); +x_66 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__7; +lean_inc(x_4); +x_67 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_67, 0, x_4); +lean_ctor_set(x_67, 1, x_66); +lean_inc(x_3); +x_68 = lean_array_push(x_3, x_67); +x_69 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_69, 0, x_65); +lean_ctor_set(x_69, 1, x_68); +lean_inc(x_3); +x_70 = lean_array_push(x_3, x_69); +x_71 = l_Lean_Name_toString___closed__1; +lean_inc(x_4); +x_72 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_72, 0, x_4); +lean_ctor_set(x_72, 1, x_71); +x_73 = lean_array_push(x_70, x_72); +x_74 = lean_array_push(x_73, x_28); +x_75 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_75, 0, x_63); +lean_ctor_set(x_75, 1, x_74); +lean_inc(x_3); +x_76 = lean_array_push(x_3, x_75); +x_77 = lean_array_push(x_76, x_46); +lean_inc(x_6); +x_78 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_78, 0, x_6); +lean_ctor_set(x_78, 1, x_77); +x_79 = lean_array_push(x_61, x_78); +x_80 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; +lean_inc(x_4); +x_81 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_81, 0, x_4); +lean_ctor_set(x_81, 1, x_80); +x_82 = lean_array_push(x_79, x_81); +x_83 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_83, 0, x_58); +lean_ctor_set(x_83, 1, x_82); +lean_inc(x_3); +x_84 = lean_array_push(x_3, x_83); +lean_inc(x_6); +x_85 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_85, 0, x_6); +lean_ctor_set(x_85, 1, x_84); +x_86 = lean_array_push(x_56, x_85); +lean_inc(x_2); +x_87 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_87, 0, x_2); +lean_ctor_set(x_87, 1, x_86); +x_88 = lean_array_push(x_51, x_87); +x_89 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_89, 0, x_42); +lean_ctor_set(x_89, 1, x_88); +lean_inc(x_3); +x_90 = lean_array_push(x_3, x_89); +x_91 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_91, 0, x_40); +lean_ctor_set(x_91, 1, x_90); +x_92 = lean_array_push(x_38, x_91); +x_93 = l_myMacro____x40_Init_Notation___hyg_12470____closed__15; +lean_inc(x_4); +x_94 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_94, 0, x_4); +lean_ctor_set(x_94, 1, x_93); +lean_inc(x_3); +x_95 = lean_array_push(x_3, x_94); +lean_inc(x_6); +x_96 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_96, 0, x_6); +lean_ctor_set(x_96, 1, x_95); +x_97 = lean_array_push(x_92, x_96); +x_98 = lean_array_push(x_97, x_11); +x_99 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_99, 0, x_36); +lean_ctor_set(x_99, 1, x_98); +x_100 = lean_ctor_get(x_8, 2); +x_101 = lean_nat_add(x_10, x_100); +lean_dec(x_10); +x_9 = x_24; +x_10 = x_101; +x_11 = x_99; +x_18 = x_34; +goto _start; +} +else +{ +lean_object* x_103; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_103 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_103, 0, x_11); +lean_ctor_set(x_103, 1, x_18); +return x_103; +} +} +else +{ +lean_object* x_104; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_104 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_104, 0, x_11); +lean_ctor_set(x_104, 1, x_18); +return x_104; +} +} +} +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { +_start: +{ +lean_object* x_19; uint8_t x_20; +x_19 = lean_ctor_get(x_8, 1); +x_20 = lean_nat_dec_le(x_19, x_10); +if (x_20 == 0) +{ +lean_object* x_21; uint8_t x_22; +x_21 = lean_unsigned_to_nat(0u); +x_22 = lean_nat_dec_eq(x_9, x_21); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; 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; +x_23 = lean_unsigned_to_nat(1u); +x_24 = lean_nat_sub(x_9, x_23); +lean_dec(x_9); +x_25 = lean_nat_add(x_10, x_23); +x_26 = l_Nat_repr(x_25); +x_27 = l_Lean_fieldIdxKind; +lean_inc(x_4); +x_28 = l_Lean_Syntax_mkLit(x_27, x_26, x_4); +x_29 = l_Lean_Elab_Term_getCurrMacroScope(x_12, x_13, x_14, x_15, x_16, x_17, x_18); +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_Elab_Term_getMainModule___rarg(x_17, x_31); +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_myMacro____x40_Init_Notation___hyg_12470____closed__1; +lean_inc(x_1); +x_36 = lean_name_mk_string(x_1, x_35); +lean_inc(x_4); +x_37 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_37, 0, x_4); +lean_ctor_set(x_37, 1, x_35); +lean_inc(x_3); +x_38 = lean_array_push(x_3, x_37); +x_39 = l_myMacro____x40_Init_Notation___hyg_12470____closed__5; +lean_inc(x_1); +x_40 = lean_name_mk_string(x_1, x_39); +x_41 = l_myMacro____x40_Init_Notation___hyg_12470____closed__7; +lean_inc(x_1); +x_42 = lean_name_mk_string(x_1, x_41); +x_43 = l_Lean_instInhabitedSyntax; +x_44 = lean_array_get(x_43, x_7, x_10); +lean_inc(x_3); +x_45 = lean_array_push(x_3, x_44); +lean_inc(x_3); +lean_inc(x_6); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_6); +lean_ctor_set(x_46, 1, x_3); +lean_inc(x_46); +x_47 = lean_array_push(x_45, x_46); +lean_inc(x_46); +x_48 = lean_array_push(x_47, x_46); +x_49 = l_myMacro____x40_Init_Notation___hyg_12470____closed__13; +lean_inc(x_4); +x_50 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_50, 0, x_4); +lean_ctor_set(x_50, 1, x_49); +x_51 = lean_array_push(x_48, x_50); +x_52 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__6; +x_53 = l_Lean_addMacroScope(x_33, x_52, x_30); +x_54 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__3; +lean_inc(x_5); +lean_inc(x_4); +x_55 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_55, 0, x_4); +lean_ctor_set(x_55, 1, x_54); +lean_ctor_set(x_55, 2, x_53); +lean_ctor_set(x_55, 3, x_5); +lean_inc(x_3); +x_56 = lean_array_push(x_3, x_55); +x_57 = l_myMacro____x40_Init_Notation___hyg_9707____closed__7; +lean_inc(x_1); +x_58 = lean_name_mk_string(x_1, x_57); +x_59 = l_myMacro____x40_Init_Notation___hyg_9707____closed__9; +lean_inc(x_4); +x_60 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_60, 0, x_4); +lean_ctor_set(x_60, 1, x_59); +lean_inc(x_3); +x_61 = lean_array_push(x_3, x_60); +x_62 = l_Lean_Expr_ctorName___closed__10; +lean_inc(x_1); +x_63 = lean_name_mk_string(x_1, x_62); +x_64 = l___regBuiltin_Lean_Elab_Term_elabBadCDot___closed__1; +lean_inc(x_1); +x_65 = lean_name_mk_string(x_1, x_64); +x_66 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__7; +lean_inc(x_4); +x_67 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_67, 0, x_4); +lean_ctor_set(x_67, 1, x_66); +lean_inc(x_3); +x_68 = lean_array_push(x_3, x_67); +x_69 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_69, 0, x_65); +lean_ctor_set(x_69, 1, x_68); +lean_inc(x_3); +x_70 = lean_array_push(x_3, x_69); +x_71 = l_Lean_Name_toString___closed__1; +lean_inc(x_4); +x_72 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_72, 0, x_4); +lean_ctor_set(x_72, 1, x_71); +x_73 = lean_array_push(x_70, x_72); +x_74 = lean_array_push(x_73, x_28); +x_75 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_75, 0, x_63); +lean_ctor_set(x_75, 1, x_74); +lean_inc(x_3); +x_76 = lean_array_push(x_3, x_75); +x_77 = lean_array_push(x_76, x_46); +lean_inc(x_6); +x_78 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_78, 0, x_6); +lean_ctor_set(x_78, 1, x_77); +x_79 = lean_array_push(x_61, x_78); +x_80 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; +lean_inc(x_4); +x_81 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_81, 0, x_4); +lean_ctor_set(x_81, 1, x_80); +x_82 = lean_array_push(x_79, x_81); +x_83 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_83, 0, x_58); +lean_ctor_set(x_83, 1, x_82); +lean_inc(x_3); +x_84 = lean_array_push(x_3, x_83); +lean_inc(x_6); +x_85 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_85, 0, x_6); +lean_ctor_set(x_85, 1, x_84); +x_86 = lean_array_push(x_56, x_85); +lean_inc(x_2); +x_87 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_87, 0, x_2); +lean_ctor_set(x_87, 1, x_86); +x_88 = lean_array_push(x_51, x_87); +x_89 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_89, 0, x_42); +lean_ctor_set(x_89, 1, x_88); +lean_inc(x_3); +x_90 = lean_array_push(x_3, x_89); +x_91 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_91, 0, x_40); +lean_ctor_set(x_91, 1, x_90); +x_92 = lean_array_push(x_38, x_91); +x_93 = l_myMacro____x40_Init_Notation___hyg_12470____closed__15; +lean_inc(x_4); +x_94 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_94, 0, x_4); +lean_ctor_set(x_94, 1, x_93); +lean_inc(x_3); +x_95 = lean_array_push(x_3, x_94); +lean_inc(x_6); +x_96 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_96, 0, x_6); +lean_ctor_set(x_96, 1, x_95); +x_97 = lean_array_push(x_92, x_96); +x_98 = lean_array_push(x_97, x_11); +x_99 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_99, 0, x_36); +lean_ctor_set(x_99, 1, x_98); +x_100 = lean_ctor_get(x_8, 2); +x_101 = lean_nat_add(x_10, x_100); +lean_dec(x_10); +x_9 = x_24; +x_10 = x_101; +x_11 = x_99; +x_18 = x_34; +goto _start; +} +else +{ +lean_object* x_103; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_103 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_103, 0, x_11); +lean_ctor_set(x_103, 1, x_18); +return x_103; +} +} +else +{ +lean_object* x_104; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_104 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_104, 0, x_11); +lean_ctor_set(x_104, 1, x_18); +return x_104; +} +} +} +static lean_object* _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Syntax.getArg"); +return x_1; +} +} +static lean_object* _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__1; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__1; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__2; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__4() { _start: { lean_object* x_1; @@ -12278,51 +17182,51 @@ x_1 = lean_mk_string("getArg"); return x_1; } } -static lean_object* _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__5() { +static lean_object* _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__12; -x_2 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__4; +x_2 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__6() { +static lean_object* _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_Elab_Util_0__Lean_Elab_evalSyntaxConstantUnsafe___closed__1; -x_2 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__4; +x_2 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__7() { +static lean_object* _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__6; +x_2 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__6; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__8() { +static lean_object* _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__7; +x_2 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__7; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { if (lean_obj_tag(x_1) == 0) @@ -12355,14 +17259,14 @@ lean_inc(x_18); x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); lean_dec(x_17); -x_20 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__5; +x_20 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__5; lean_inc(x_15); lean_inc(x_18); x_21 = l_Lean_addMacroScope(x_18, x_20, x_15); x_22 = lean_box(0); x_23 = l_Lean_instInhabitedSourceInfo___closed__1; -x_24 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__3; -x_25 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__8; +x_24 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__3; +x_25 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__8; x_26 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_26, 0, x_23); lean_ctor_set(x_26, 1, x_24); @@ -12370,9 +17274,9 @@ lean_ctor_set(x_26, 2, x_21); lean_ctor_set(x_26, 3, x_25); x_27 = l_Array_empty___closed__1; x_28 = lean_array_push(x_27, x_26); -x_29 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; +x_29 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; x_30 = l_Lean_addMacroScope(x_18, x_29, x_15); -x_31 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3; +x_31 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; x_32 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_32, 0, x_23); lean_ctor_set(x_32, 1, x_31); @@ -12392,7 +17296,7 @@ x_41 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; x_42 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_42, 0, x_41); lean_ctor_set(x_42, 1, x_40); -x_43 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8(x_13, x_2, x_3, x_4, x_5, x_6, x_7, x_19); +x_43 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16(x_13, x_2, x_3, x_4, x_5, x_6, x_7, x_19); x_44 = !lean_is_exclusive(x_43); if (x_44 == 0) { @@ -12439,14 +17343,14 @@ lean_inc(x_55); x_56 = lean_ctor_get(x_54, 1); lean_inc(x_56); lean_dec(x_54); -x_57 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__5; +x_57 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__5; lean_inc(x_52); lean_inc(x_55); x_58 = l_Lean_addMacroScope(x_55, x_57, x_52); x_59 = lean_box(0); x_60 = l_Lean_instInhabitedSourceInfo___closed__1; -x_61 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__3; -x_62 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__8; +x_61 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__3; +x_62 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__8; x_63 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_63, 0, x_60); lean_ctor_set(x_63, 1, x_61); @@ -12454,9 +17358,9 @@ lean_ctor_set(x_63, 2, x_58); lean_ctor_set(x_63, 3, x_62); x_64 = l_Array_empty___closed__1; x_65 = lean_array_push(x_64, x_63); -x_66 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; +x_66 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; x_67 = l_Lean_addMacroScope(x_55, x_66, x_52); -x_68 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3; +x_68 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; x_69 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_69, 0, x_60); lean_ctor_set(x_69, 1, x_68); @@ -12476,7 +17380,7 @@ x_78 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; x_79 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_79, 0, x_78); lean_ctor_set(x_79, 1, x_77); -x_80 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8(x_50, x_2, x_3, x_4, x_5, x_6, x_7, x_56); +x_80 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16(x_50, x_2, x_3, x_4, x_5, x_6, x_7, x_56); x_81 = lean_ctor_get(x_80, 0); lean_inc(x_81); x_82 = lean_ctor_get(x_80, 1); @@ -12504,6 +17408,225 @@ return x_85; } } } +lean_object* l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__17(lean_object* x_1) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_2; +x_2 = lean_box(0); +return x_2; +} +else +{ +uint8_t x_3; +x_3 = !lean_is_exclusive(x_1); +if (x_3 == 0) +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_4 = lean_ctor_get(x_1, 0); +x_5 = lean_ctor_get(x_1, 1); +x_6 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_6, 0, x_4); +x_7 = l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__17(x_5); +lean_ctor_set(x_1, 1, x_7); +lean_ctor_set(x_1, 0, x_6); +return x_1; +} +else +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_8 = lean_ctor_get(x_1, 0); +x_9 = lean_ctor_get(x_1, 1); +lean_inc(x_9); +lean_inc(x_8); +lean_dec(x_1); +x_10 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_10, 0, x_8); +x_11 = l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__17(x_9); +x_12 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_12, 0, x_10); +lean_ctor_set(x_12, 1, x_11); +return x_12; +} +} +} +} +lean_object* l_Lean_Format_joinSep___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__20(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_3; +lean_dec(x_2); +x_3 = lean_box(0); +return x_3; +} +else +{ +lean_object* x_4; +x_4 = lean_ctor_get(x_1, 1); +lean_inc(x_4); +if (lean_obj_tag(x_4) == 0) +{ +lean_object* x_5; lean_object* x_6; uint8_t x_7; lean_object* x_8; lean_object* x_9; +lean_dec(x_2); +x_5 = lean_ctor_get(x_1, 0); +lean_inc(x_5); +lean_dec(x_1); +x_6 = lean_box(0); +x_7 = 0; +x_8 = lean_unsigned_to_nat(0u); +x_9 = l_Lean_Syntax_formatStxAux(x_6, x_7, x_8, x_5); +return x_9; +} +else +{ +lean_object* x_10; lean_object* x_11; uint8_t x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_10 = lean_ctor_get(x_1, 0); +lean_inc(x_10); +lean_dec(x_1); +x_11 = lean_box(0); +x_12 = 0; +x_13 = lean_unsigned_to_nat(0u); +x_14 = l_Lean_Syntax_formatStxAux(x_11, x_12, x_13, x_10); +lean_inc(x_2); +x_15 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_2); +x_16 = l_Lean_Format_joinSep___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__20(x_4, x_2); +x_17 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_16); +return x_17; +} +} +} +} +lean_object* l_Lean_List_format___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__19(lean_object* x_1) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_2; +x_2 = l_Lean_List_format___rarg___closed__1; +return x_2; +} +else +{ +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; uint8_t x_11; lean_object* x_12; +x_3 = l_Lean_List_format___rarg___closed__3; +x_4 = l_Lean_Format_joinSep___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__20(x_1, x_3); +x_5 = l_Lean_Format_sbracket___closed__3; +x_6 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_6, 0, x_5); +lean_ctor_set(x_6, 1, x_4); +x_7 = l_Lean_Format_sbracket___closed__4; +x_8 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_8, 0, x_6); +lean_ctor_set(x_8, 1, x_7); +x_9 = l_Lean_Format_sbracket___closed__2; +x_10 = lean_alloc_ctor(3, 2, 0); +lean_ctor_set(x_10, 0, x_9); +lean_ctor_set(x_10, 1, x_8); +x_11 = 0; +x_12 = lean_alloc_ctor(5, 1, 1); +lean_ctor_set(x_12, 0, x_10); +lean_ctor_set_uint8(x_12, sizeof(void*)*1, x_11); +return x_12; +} +} +} +lean_object* l_Lean_fmt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__18(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; lean_object* x_21; +x_2 = lean_ctor_get(x_1, 0); +lean_inc(x_2); +x_3 = lean_ctor_get(x_1, 1); +lean_inc(x_3); +lean_dec(x_1); +x_4 = l_Lean_List_format___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__19(x_2); +x_5 = l_Lean_List_format___rarg___closed__2; +x_6 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_6, 0, x_4); +lean_ctor_set(x_6, 1, x_5); +x_7 = lean_box(1); +x_8 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_8, 0, x_6); +lean_ctor_set(x_8, 1, x_7); +x_9 = lean_box(0); +x_10 = 0; +x_11 = lean_unsigned_to_nat(0u); +x_12 = l_Lean_Syntax_formatStxAux(x_9, x_10, x_11, x_3); +x_13 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_13, 0, x_8); +lean_ctor_set(x_13, 1, x_12); +x_14 = l_Lean_Format_paren___closed__3; +x_15 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_13); +x_16 = l_Lean_Format_paren___closed__4; +x_17 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_16); +x_18 = l_Lean_Format_paren___closed__2; +x_19 = lean_alloc_ctor(3, 2, 0); +lean_ctor_set(x_19, 0, x_18); +lean_ctor_set(x_19, 1, x_17); +x_20 = 0; +x_21 = lean_alloc_ctor(5, 1, 1); +lean_ctor_set(x_21, 0, x_19); +lean_ctor_set_uint8(x_21, sizeof(void*)*1, x_20); +return x_21; +} +} +lean_object* l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__21(lean_object* x_1) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_2; +x_2 = lean_box(0); +return x_2; +} +else +{ +uint8_t x_3; +x_3 = !lean_is_exclusive(x_1); +if (x_3 == 0) +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_4 = lean_ctor_get(x_1, 0); +x_5 = lean_ctor_get(x_1, 1); +x_6 = l_Lean_fmt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__18(x_4); +x_7 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_7, 0, x_6); +x_8 = l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__21(x_5); +lean_ctor_set(x_1, 1, x_8); +lean_ctor_set(x_1, 0, x_7); +return x_1; +} +else +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_9 = lean_ctor_get(x_1, 0); +x_10 = lean_ctor_get(x_1, 1); +lean_inc(x_10); +lean_inc(x_9); +lean_dec(x_1); +x_11 = l_Lean_fmt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__18(x_9); +x_12 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_12, 0, x_11); +x_13 = l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__21(x_10); +x_14 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_14, 0, x_12); +lean_ctor_set(x_14, 1, x_13); +return x_14; +} +} +} +} static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1___closed__1() { _start: { @@ -12527,289 +17650,635 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; -x_13 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_12); -x_14 = lean_ctor_get(x_13, 0); -lean_inc(x_14); -x_15 = lean_ctor_get(x_13, 1); +lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; +x_14 = lean_st_ref_take(x_12, x_13); +x_15 = lean_ctor_get(x_14, 0); lean_inc(x_15); -lean_dec(x_13); -x_16 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_15); -x_17 = !lean_is_exclusive(x_16); +x_16 = lean_ctor_get(x_14, 1); +lean_inc(x_16); +lean_dec(x_14); +x_17 = !lean_is_exclusive(x_15); if (x_17 == 0) { -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; -x_18 = lean_ctor_get(x_16, 0); -x_19 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; -lean_inc(x_14); -lean_inc(x_18); -x_20 = l_Lean_addMacroScope(x_18, x_19, x_14); -x_21 = l_Lean_instInhabitedSourceInfo___closed__1; -x_22 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3; -lean_inc(x_1); -x_23 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_23, 0, x_21); -lean_ctor_set(x_23, 1, x_22); -lean_ctor_set(x_23, 2, x_20); -lean_ctor_set(x_23, 3, x_1); -x_24 = l_Array_empty___closed__1; -x_25 = lean_array_push(x_24, x_23); -x_26 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_27 = lean_array_push(x_25, x_26); -x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_12470____closed__14; -x_30 = lean_array_push(x_28, x_29); -x_31 = lean_array_push(x_30, x_2); -x_32 = l_myMacro____x40_Init_Notation___hyg_12470____closed__8; -x_33 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_33, 0, x_32); -lean_ctor_set(x_33, 1, x_31); -x_34 = lean_array_push(x_24, x_33); -x_35 = l_myMacro____x40_Init_Notation___hyg_12470____closed__6; -x_36 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_36, 0, x_35); -lean_ctor_set(x_36, 1, x_34); -x_37 = l_myMacro____x40_Init_Notation___hyg_12470____closed__4; -x_38 = lean_array_push(x_37, x_36); -x_39 = l_myMacro____x40_Init_Notation___hyg_12470____closed__18; -x_40 = lean_array_push(x_38, x_39); -x_41 = l_myMacro____x40_Init_Notation___hyg_10078____closed__4; -lean_inc(x_14); -lean_inc(x_18); -x_42 = l_Lean_addMacroScope(x_18, x_41, x_14); -lean_inc(x_1); -x_43 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_43, 0, x_41); -lean_ctor_set(x_43, 1, x_1); -lean_inc(x_1); -x_44 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_44, 1, x_1); -x_45 = l_myMacro____x40_Init_Notation___hyg_10078____closed__3; -x_46 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_46, 0, x_21); -lean_ctor_set(x_46, 1, x_45); -lean_ctor_set(x_46, 2, x_42); -lean_ctor_set(x_46, 3, x_44); -x_47 = lean_array_push(x_24, x_46); -x_48 = l_myMacro____x40_Init_Notation___hyg_4072____closed__4; -lean_inc(x_14); -lean_inc(x_18); -x_49 = l_Lean_addMacroScope(x_18, x_48, x_14); -lean_inc(x_1); -x_50 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_50, 0, x_48); -lean_ctor_set(x_50, 1, x_1); -lean_inc(x_1); -x_51 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_51, 0, x_50); -lean_ctor_set(x_51, 1, x_1); -x_52 = l_myMacro____x40_Init_Notation___hyg_4072____closed__3; -x_53 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_53, 0, x_21); -lean_ctor_set(x_53, 1, x_52); -lean_ctor_set(x_53, 2, x_49); -lean_ctor_set(x_53, 3, x_51); -x_54 = lean_array_push(x_24, x_53); -x_55 = lean_array_push(x_24, x_5); -x_56 = l_Lean_setOptionFromString___closed__3; -x_57 = l_Lean_addMacroScope(x_18, x_56, x_14); -x_58 = l_Lean_instQuoteBool___closed__5; -lean_inc(x_1); -x_59 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_59, 0, x_58); -lean_ctor_set(x_59, 1, x_1); -x_60 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_60, 0, x_59); -lean_ctor_set(x_60, 1, x_1); -x_61 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1___closed__2; -x_62 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_62, 0, x_21); -lean_ctor_set(x_62, 1, x_61); -lean_ctor_set(x_62, 2, x_57); -lean_ctor_set(x_62, 3, x_60); -x_63 = lean_array_push(x_55, x_62); -x_64 = l_Lean_nullKind___closed__2; -x_65 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_65, 0, x_64); -lean_ctor_set(x_65, 1, x_63); -x_66 = lean_array_push(x_54, x_65); -x_67 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_68 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_68, 0, x_67); -lean_ctor_set(x_68, 1, x_66); -x_69 = lean_array_push(x_24, x_68); -x_70 = lean_array_push(x_69, x_26); -x_71 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_71, 0, x_64); -lean_ctor_set(x_71, 1, x_70); -x_72 = l_myMacro____x40_Init_Notation___hyg_9707____closed__11; -x_73 = lean_array_push(x_72, x_71); -x_74 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; -x_75 = lean_array_push(x_73, x_74); -x_76 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; -x_77 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_77, 0, x_76); -lean_ctor_set(x_77, 1, x_75); -x_78 = lean_array_push(x_24, x_77); -x_79 = lean_array_push(x_78, x_3); -x_80 = lean_array_push(x_79, x_4); -x_81 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_81, 0, x_64); -lean_ctor_set(x_81, 1, x_80); -x_82 = lean_array_push(x_47, x_81); -x_83 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_83, 0, x_67); -lean_ctor_set(x_83, 1, x_82); -x_84 = lean_array_push(x_40, x_83); -x_85 = l_myMacro____x40_Init_Notation___hyg_12470____closed__2; -x_86 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_86, 0, x_85); -lean_ctor_set(x_86, 1, x_84); -lean_ctor_set(x_16, 0, x_86); -return x_16; +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; uint8_t x_27; uint8_t x_28; uint8_t x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_18 = lean_ctor_get(x_15, 1); +x_19 = lean_unsigned_to_nat(1u); +x_20 = lean_nat_add(x_18, x_19); +lean_ctor_set(x_15, 1, x_20); +x_21 = lean_st_ref_set(x_12, x_15, x_16); +x_22 = lean_ctor_get(x_21, 1); +lean_inc(x_22); +lean_dec(x_21); +x_23 = lean_ctor_get(x_7, 0); +x_24 = lean_ctor_get(x_7, 1); +x_25 = lean_ctor_get(x_7, 2); +x_26 = lean_ctor_get(x_7, 3); +x_27 = lean_ctor_get_uint8(x_7, sizeof(void*)*6); +x_28 = lean_ctor_get_uint8(x_7, sizeof(void*)*6 + 1); +x_29 = lean_ctor_get_uint8(x_7, sizeof(void*)*6 + 2); +x_30 = lean_ctor_get(x_7, 5); +lean_inc(x_30); +lean_inc(x_26); +lean_inc(x_25); +lean_inc(x_24); +lean_inc(x_23); +x_31 = lean_alloc_ctor(0, 6, 3); +lean_ctor_set(x_31, 0, x_23); +lean_ctor_set(x_31, 1, x_24); +lean_ctor_set(x_31, 2, x_25); +lean_ctor_set(x_31, 3, x_26); +lean_ctor_set(x_31, 4, x_18); +lean_ctor_set(x_31, 5, x_30); +lean_ctor_set_uint8(x_31, sizeof(void*)*6, x_27); +lean_ctor_set_uint8(x_31, sizeof(void*)*6 + 1, x_28); +lean_ctor_set_uint8(x_31, sizeof(void*)*6 + 2, x_29); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_32 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch(x_1, x_2, x_31, x_8, x_9, x_10, x_11, x_12, x_22); +if (lean_obj_tag(x_32) == 0) +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; +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_Elab_Term_getCurrMacroScope(x_7, x_8, x_9, x_10, x_11, x_12, x_34); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +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 = l_Lean_Elab_Term_getMainModule___rarg(x_12, x_37); +lean_dec(x_12); +x_39 = !lean_is_exclusive(x_38); +if (x_39 == 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; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; 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; +x_40 = lean_ctor_get(x_38, 0); +x_41 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +lean_inc(x_36); +lean_inc(x_40); +x_42 = l_Lean_addMacroScope(x_40, x_41, x_36); +x_43 = l_Lean_instInhabitedSourceInfo___closed__1; +x_44 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +lean_inc(x_3); +x_45 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set(x_45, 1, x_44); +lean_ctor_set(x_45, 2, x_42); +lean_ctor_set(x_45, 3, x_3); +x_46 = l_Array_empty___closed__1; +x_47 = lean_array_push(x_46, x_45); +x_48 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_49 = lean_array_push(x_47, x_48); +x_50 = lean_array_push(x_49, x_48); +x_51 = l_myMacro____x40_Init_Notation___hyg_12470____closed__14; +x_52 = lean_array_push(x_50, x_51); +x_53 = lean_array_push(x_52, x_4); +x_54 = l_myMacro____x40_Init_Notation___hyg_12470____closed__8; +x_55 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_55, 0, x_54); +lean_ctor_set(x_55, 1, x_53); +x_56 = lean_array_push(x_46, x_55); +x_57 = l_myMacro____x40_Init_Notation___hyg_12470____closed__6; +x_58 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_58, 0, x_57); +lean_ctor_set(x_58, 1, x_56); +x_59 = l_myMacro____x40_Init_Notation___hyg_12470____closed__4; +x_60 = lean_array_push(x_59, x_58); +x_61 = l_myMacro____x40_Init_Notation___hyg_12470____closed__18; +x_62 = lean_array_push(x_60, x_61); +x_63 = l_myMacro____x40_Init_Notation___hyg_10078____closed__4; +lean_inc(x_36); +lean_inc(x_40); +x_64 = l_Lean_addMacroScope(x_40, x_63, x_36); +lean_inc(x_3); +x_65 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_65, 0, x_63); +lean_ctor_set(x_65, 1, x_3); +lean_inc(x_3); +x_66 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_66, 0, x_65); +lean_ctor_set(x_66, 1, x_3); +x_67 = l_myMacro____x40_Init_Notation___hyg_10078____closed__3; +x_68 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_68, 0, x_43); +lean_ctor_set(x_68, 1, x_67); +lean_ctor_set(x_68, 2, x_64); +lean_ctor_set(x_68, 3, x_66); +x_69 = lean_array_push(x_46, x_68); +x_70 = l_myMacro____x40_Init_Notation___hyg_4072____closed__4; +lean_inc(x_36); +lean_inc(x_40); +x_71 = l_Lean_addMacroScope(x_40, x_70, x_36); +lean_inc(x_3); +x_72 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_72, 0, x_70); +lean_ctor_set(x_72, 1, x_3); +lean_inc(x_3); +x_73 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_73, 0, x_72); +lean_ctor_set(x_73, 1, x_3); +x_74 = l_myMacro____x40_Init_Notation___hyg_4072____closed__3; +x_75 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_75, 0, x_43); +lean_ctor_set(x_75, 1, x_74); +lean_ctor_set(x_75, 2, x_71); +lean_ctor_set(x_75, 3, x_73); +x_76 = lean_array_push(x_46, x_75); +x_77 = lean_array_push(x_46, x_6); +x_78 = l_Lean_setOptionFromString___closed__3; +x_79 = l_Lean_addMacroScope(x_40, x_78, x_36); +x_80 = l_Lean_instQuoteBool___closed__5; +lean_inc(x_3); +x_81 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_81, 0, x_80); +lean_ctor_set(x_81, 1, x_3); +x_82 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_82, 0, x_81); +lean_ctor_set(x_82, 1, x_3); +x_83 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1___closed__2; +x_84 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_84, 0, x_43); +lean_ctor_set(x_84, 1, x_83); +lean_ctor_set(x_84, 2, x_79); +lean_ctor_set(x_84, 3, x_82); +x_85 = lean_array_push(x_77, x_84); +x_86 = l_Lean_nullKind___closed__2; +x_87 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_87, 0, x_86); +lean_ctor_set(x_87, 1, x_85); +x_88 = lean_array_push(x_76, x_87); +x_89 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_90 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_90, 0, x_89); +lean_ctor_set(x_90, 1, x_88); +x_91 = lean_array_push(x_46, x_90); +x_92 = lean_array_push(x_91, x_48); +x_93 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_93, 0, x_86); +lean_ctor_set(x_93, 1, x_92); +x_94 = l_myMacro____x40_Init_Notation___hyg_9707____closed__11; +x_95 = lean_array_push(x_94, x_93); +x_96 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_97 = lean_array_push(x_95, x_96); +x_98 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; +x_99 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_99, 0, x_98); +lean_ctor_set(x_99, 1, x_97); +x_100 = lean_array_push(x_46, x_99); +x_101 = lean_array_push(x_100, x_5); +x_102 = lean_array_push(x_101, x_33); +x_103 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_103, 0, x_86); +lean_ctor_set(x_103, 1, x_102); +x_104 = lean_array_push(x_69, x_103); +x_105 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_105, 0, x_89); +lean_ctor_set(x_105, 1, x_104); +x_106 = lean_array_push(x_62, x_105); +x_107 = l_myMacro____x40_Init_Notation___hyg_12470____closed__2; +x_108 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_108, 0, x_107); +lean_ctor_set(x_108, 1, x_106); +lean_ctor_set(x_38, 0, x_108); +return x_38; } else { -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; -x_87 = lean_ctor_get(x_16, 0); -x_88 = lean_ctor_get(x_16, 1); -lean_inc(x_88); -lean_inc(x_87); -lean_dec(x_16); -x_89 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; -lean_inc(x_14); -lean_inc(x_87); -x_90 = l_Lean_addMacroScope(x_87, x_89, x_14); -x_91 = l_Lean_instInhabitedSourceInfo___closed__1; -x_92 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3; -lean_inc(x_1); -x_93 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_93, 0, x_91); -lean_ctor_set(x_93, 1, x_92); -lean_ctor_set(x_93, 2, x_90); -lean_ctor_set(x_93, 3, x_1); -x_94 = l_Array_empty___closed__1; -x_95 = lean_array_push(x_94, x_93); -x_96 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_97 = lean_array_push(x_95, x_96); -x_98 = lean_array_push(x_97, x_96); -x_99 = l_myMacro____x40_Init_Notation___hyg_12470____closed__14; -x_100 = lean_array_push(x_98, x_99); -x_101 = lean_array_push(x_100, x_2); -x_102 = l_myMacro____x40_Init_Notation___hyg_12470____closed__8; -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_94, x_103); -x_105 = l_myMacro____x40_Init_Notation___hyg_12470____closed__6; -x_106 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_106, 0, x_105); -lean_ctor_set(x_106, 1, x_104); -x_107 = l_myMacro____x40_Init_Notation___hyg_12470____closed__4; -x_108 = lean_array_push(x_107, x_106); -x_109 = l_myMacro____x40_Init_Notation___hyg_12470____closed__18; -x_110 = lean_array_push(x_108, x_109); -x_111 = l_myMacro____x40_Init_Notation___hyg_10078____closed__4; -lean_inc(x_14); -lean_inc(x_87); -x_112 = l_Lean_addMacroScope(x_87, x_111, x_14); -lean_inc(x_1); -x_113 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_113, 0, x_111); -lean_ctor_set(x_113, 1, x_1); -lean_inc(x_1); -x_114 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_114, 0, x_113); -lean_ctor_set(x_114, 1, x_1); -x_115 = l_myMacro____x40_Init_Notation___hyg_10078____closed__3; -x_116 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_116, 0, x_91); -lean_ctor_set(x_116, 1, x_115); -lean_ctor_set(x_116, 2, x_112); -lean_ctor_set(x_116, 3, x_114); -x_117 = lean_array_push(x_94, x_116); -x_118 = l_myMacro____x40_Init_Notation___hyg_4072____closed__4; -lean_inc(x_14); -lean_inc(x_87); -x_119 = l_Lean_addMacroScope(x_87, x_118, x_14); -lean_inc(x_1); -x_120 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_120, 0, x_118); -lean_ctor_set(x_120, 1, x_1); -lean_inc(x_1); -x_121 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_121, 0, x_120); -lean_ctor_set(x_121, 1, x_1); -x_122 = l_myMacro____x40_Init_Notation___hyg_4072____closed__3; -x_123 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_123, 0, x_91); -lean_ctor_set(x_123, 1, x_122); -lean_ctor_set(x_123, 2, x_119); -lean_ctor_set(x_123, 3, x_121); -x_124 = lean_array_push(x_94, x_123); -x_125 = lean_array_push(x_94, x_5); -x_126 = l_Lean_setOptionFromString___closed__3; -x_127 = l_Lean_addMacroScope(x_87, x_126, x_14); -x_128 = l_Lean_instQuoteBool___closed__5; -lean_inc(x_1); -x_129 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_129, 0, x_128); -lean_ctor_set(x_129, 1, x_1); -x_130 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_130, 0, x_129); -lean_ctor_set(x_130, 1, x_1); -x_131 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1___closed__2; -x_132 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_132, 0, x_91); -lean_ctor_set(x_132, 1, x_131); -lean_ctor_set(x_132, 2, x_127); -lean_ctor_set(x_132, 3, x_130); -x_133 = lean_array_push(x_125, x_132); -x_134 = l_Lean_nullKind___closed__2; -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 = lean_array_push(x_124, x_135); -x_137 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_138 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_138, 0, x_137); -lean_ctor_set(x_138, 1, x_136); -x_139 = lean_array_push(x_94, x_138); -x_140 = lean_array_push(x_139, x_96); -x_141 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_141, 0, x_134); -lean_ctor_set(x_141, 1, x_140); -x_142 = l_myMacro____x40_Init_Notation___hyg_9707____closed__11; -x_143 = lean_array_push(x_142, x_141); -x_144 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; -x_145 = lean_array_push(x_143, x_144); -x_146 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; -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_94, x_147); -x_149 = lean_array_push(x_148, x_3); -x_150 = lean_array_push(x_149, x_4); -x_151 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_151, 0, x_134); -lean_ctor_set(x_151, 1, x_150); -x_152 = lean_array_push(x_117, x_151); -x_153 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_153, 0, x_137); -lean_ctor_set(x_153, 1, x_152); -x_154 = lean_array_push(x_110, x_153); -x_155 = l_myMacro____x40_Init_Notation___hyg_12470____closed__2; -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_alloc_ctor(0, 2, 0); +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; +x_109 = lean_ctor_get(x_38, 0); +x_110 = lean_ctor_get(x_38, 1); +lean_inc(x_110); +lean_inc(x_109); +lean_dec(x_38); +x_111 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +lean_inc(x_36); +lean_inc(x_109); +x_112 = l_Lean_addMacroScope(x_109, x_111, x_36); +x_113 = l_Lean_instInhabitedSourceInfo___closed__1; +x_114 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +lean_inc(x_3); +x_115 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_115, 0, x_113); +lean_ctor_set(x_115, 1, x_114); +lean_ctor_set(x_115, 2, x_112); +lean_ctor_set(x_115, 3, x_3); +x_116 = l_Array_empty___closed__1; +x_117 = lean_array_push(x_116, x_115); +x_118 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_119 = lean_array_push(x_117, x_118); +x_120 = lean_array_push(x_119, x_118); +x_121 = l_myMacro____x40_Init_Notation___hyg_12470____closed__14; +x_122 = lean_array_push(x_120, x_121); +x_123 = lean_array_push(x_122, x_4); +x_124 = l_myMacro____x40_Init_Notation___hyg_12470____closed__8; +x_125 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_125, 0, x_124); +lean_ctor_set(x_125, 1, x_123); +x_126 = lean_array_push(x_116, x_125); +x_127 = l_myMacro____x40_Init_Notation___hyg_12470____closed__6; +x_128 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_128, 0, x_127); +lean_ctor_set(x_128, 1, x_126); +x_129 = l_myMacro____x40_Init_Notation___hyg_12470____closed__4; +x_130 = lean_array_push(x_129, x_128); +x_131 = l_myMacro____x40_Init_Notation___hyg_12470____closed__18; +x_132 = lean_array_push(x_130, x_131); +x_133 = l_myMacro____x40_Init_Notation___hyg_10078____closed__4; +lean_inc(x_36); +lean_inc(x_109); +x_134 = l_Lean_addMacroScope(x_109, x_133, x_36); +lean_inc(x_3); +x_135 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_135, 0, x_133); +lean_ctor_set(x_135, 1, x_3); +lean_inc(x_3); +x_136 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_136, 0, x_135); +lean_ctor_set(x_136, 1, x_3); +x_137 = l_myMacro____x40_Init_Notation___hyg_10078____closed__3; +x_138 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_138, 0, x_113); +lean_ctor_set(x_138, 1, x_137); +lean_ctor_set(x_138, 2, x_134); +lean_ctor_set(x_138, 3, x_136); +x_139 = lean_array_push(x_116, x_138); +x_140 = l_myMacro____x40_Init_Notation___hyg_4072____closed__4; +lean_inc(x_36); +lean_inc(x_109); +x_141 = l_Lean_addMacroScope(x_109, x_140, x_36); +lean_inc(x_3); +x_142 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_142, 0, x_140); +lean_ctor_set(x_142, 1, x_3); +lean_inc(x_3); +x_143 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_143, 0, x_142); +lean_ctor_set(x_143, 1, x_3); +x_144 = l_myMacro____x40_Init_Notation___hyg_4072____closed__3; +x_145 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_145, 0, x_113); +lean_ctor_set(x_145, 1, x_144); +lean_ctor_set(x_145, 2, x_141); +lean_ctor_set(x_145, 3, x_143); +x_146 = lean_array_push(x_116, x_145); +x_147 = lean_array_push(x_116, x_6); +x_148 = l_Lean_setOptionFromString___closed__3; +x_149 = l_Lean_addMacroScope(x_109, x_148, x_36); +x_150 = l_Lean_instQuoteBool___closed__5; +lean_inc(x_3); +x_151 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_151, 0, x_150); +lean_ctor_set(x_151, 1, x_3); +x_152 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_152, 0, x_151); +lean_ctor_set(x_152, 1, x_3); +x_153 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1___closed__2; +x_154 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_154, 0, x_113); +lean_ctor_set(x_154, 1, x_153); +lean_ctor_set(x_154, 2, x_149); +lean_ctor_set(x_154, 3, x_152); +x_155 = lean_array_push(x_147, x_154); +x_156 = l_Lean_nullKind___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_88); -return x_157; +lean_ctor_set(x_157, 1, x_155); +x_158 = lean_array_push(x_146, x_157); +x_159 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_160 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_160, 0, x_159); +lean_ctor_set(x_160, 1, x_158); +x_161 = lean_array_push(x_116, x_160); +x_162 = lean_array_push(x_161, x_118); +x_163 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_163, 0, x_156); +lean_ctor_set(x_163, 1, x_162); +x_164 = l_myMacro____x40_Init_Notation___hyg_9707____closed__11; +x_165 = lean_array_push(x_164, x_163); +x_166 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_167 = lean_array_push(x_165, x_166); +x_168 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; +x_169 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_169, 0, x_168); +lean_ctor_set(x_169, 1, x_167); +x_170 = lean_array_push(x_116, x_169); +x_171 = lean_array_push(x_170, x_5); +x_172 = lean_array_push(x_171, x_33); +x_173 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_173, 0, x_156); +lean_ctor_set(x_173, 1, x_172); +x_174 = lean_array_push(x_139, x_173); +x_175 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_175, 0, x_159); +lean_ctor_set(x_175, 1, x_174); +x_176 = lean_array_push(x_132, x_175); +x_177 = l_myMacro____x40_Init_Notation___hyg_12470____closed__2; +x_178 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_178, 0, x_177); +lean_ctor_set(x_178, 1, x_176); +x_179 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_179, 0, x_178); +lean_ctor_set(x_179, 1, x_110); +return x_179; +} +} +else +{ +uint8_t x_180; +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_180 = !lean_is_exclusive(x_32); +if (x_180 == 0) +{ +return x_32; +} +else +{ +lean_object* x_181; lean_object* x_182; lean_object* x_183; +x_181 = lean_ctor_get(x_32, 0); +x_182 = lean_ctor_get(x_32, 1); +lean_inc(x_182); +lean_inc(x_181); +lean_dec(x_32); +x_183 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_183, 0, x_181); +lean_ctor_set(x_183, 1, x_182); +return x_183; +} +} +} +else +{ +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; uint8_t x_197; uint8_t x_198; uint8_t x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; +x_184 = lean_ctor_get(x_15, 0); +x_185 = lean_ctor_get(x_15, 1); +x_186 = lean_ctor_get(x_15, 2); +x_187 = lean_ctor_get(x_15, 3); +lean_inc(x_187); +lean_inc(x_186); +lean_inc(x_185); +lean_inc(x_184); +lean_dec(x_15); +x_188 = lean_unsigned_to_nat(1u); +x_189 = lean_nat_add(x_185, x_188); +x_190 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_190, 0, x_184); +lean_ctor_set(x_190, 1, x_189); +lean_ctor_set(x_190, 2, x_186); +lean_ctor_set(x_190, 3, x_187); +x_191 = lean_st_ref_set(x_12, x_190, x_16); +x_192 = lean_ctor_get(x_191, 1); +lean_inc(x_192); +lean_dec(x_191); +x_193 = lean_ctor_get(x_7, 0); +x_194 = lean_ctor_get(x_7, 1); +x_195 = lean_ctor_get(x_7, 2); +x_196 = lean_ctor_get(x_7, 3); +x_197 = lean_ctor_get_uint8(x_7, sizeof(void*)*6); +x_198 = lean_ctor_get_uint8(x_7, sizeof(void*)*6 + 1); +x_199 = lean_ctor_get_uint8(x_7, sizeof(void*)*6 + 2); +x_200 = lean_ctor_get(x_7, 5); +lean_inc(x_200); +lean_inc(x_196); +lean_inc(x_195); +lean_inc(x_194); +lean_inc(x_193); +x_201 = lean_alloc_ctor(0, 6, 3); +lean_ctor_set(x_201, 0, x_193); +lean_ctor_set(x_201, 1, x_194); +lean_ctor_set(x_201, 2, x_195); +lean_ctor_set(x_201, 3, x_196); +lean_ctor_set(x_201, 4, x_185); +lean_ctor_set(x_201, 5, x_200); +lean_ctor_set_uint8(x_201, sizeof(void*)*6, x_197); +lean_ctor_set_uint8(x_201, sizeof(void*)*6 + 1, x_198); +lean_ctor_set_uint8(x_201, sizeof(void*)*6 + 2, x_199); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_202 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch(x_1, x_2, x_201, x_8, x_9, x_10, x_11, x_12, x_192); +if (lean_obj_tag(x_202) == 0) +{ +lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; 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; +x_203 = lean_ctor_get(x_202, 0); +lean_inc(x_203); +x_204 = lean_ctor_get(x_202, 1); +lean_inc(x_204); +lean_dec(x_202); +x_205 = l_Lean_Elab_Term_getCurrMacroScope(x_7, x_8, x_9, x_10, x_11, x_12, x_204); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +x_206 = lean_ctor_get(x_205, 0); +lean_inc(x_206); +x_207 = lean_ctor_get(x_205, 1); +lean_inc(x_207); +lean_dec(x_205); +x_208 = l_Lean_Elab_Term_getMainModule___rarg(x_12, x_207); +lean_dec(x_12); +x_209 = lean_ctor_get(x_208, 0); +lean_inc(x_209); +x_210 = lean_ctor_get(x_208, 1); +lean_inc(x_210); +if (lean_is_exclusive(x_208)) { + lean_ctor_release(x_208, 0); + lean_ctor_release(x_208, 1); + x_211 = x_208; +} else { + lean_dec_ref(x_208); + x_211 = lean_box(0); +} +x_212 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +lean_inc(x_206); +lean_inc(x_209); +x_213 = l_Lean_addMacroScope(x_209, x_212, x_206); +x_214 = l_Lean_instInhabitedSourceInfo___closed__1; +x_215 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +lean_inc(x_3); +x_216 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_216, 0, x_214); +lean_ctor_set(x_216, 1, x_215); +lean_ctor_set(x_216, 2, x_213); +lean_ctor_set(x_216, 3, x_3); +x_217 = l_Array_empty___closed__1; +x_218 = lean_array_push(x_217, x_216); +x_219 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_220 = lean_array_push(x_218, x_219); +x_221 = lean_array_push(x_220, x_219); +x_222 = l_myMacro____x40_Init_Notation___hyg_12470____closed__14; +x_223 = lean_array_push(x_221, x_222); +x_224 = lean_array_push(x_223, x_4); +x_225 = l_myMacro____x40_Init_Notation___hyg_12470____closed__8; +x_226 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_226, 0, x_225); +lean_ctor_set(x_226, 1, x_224); +x_227 = lean_array_push(x_217, x_226); +x_228 = l_myMacro____x40_Init_Notation___hyg_12470____closed__6; +x_229 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_229, 0, x_228); +lean_ctor_set(x_229, 1, x_227); +x_230 = l_myMacro____x40_Init_Notation___hyg_12470____closed__4; +x_231 = lean_array_push(x_230, x_229); +x_232 = l_myMacro____x40_Init_Notation___hyg_12470____closed__18; +x_233 = lean_array_push(x_231, x_232); +x_234 = l_myMacro____x40_Init_Notation___hyg_10078____closed__4; +lean_inc(x_206); +lean_inc(x_209); +x_235 = l_Lean_addMacroScope(x_209, x_234, x_206); +lean_inc(x_3); +x_236 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_236, 0, x_234); +lean_ctor_set(x_236, 1, x_3); +lean_inc(x_3); +x_237 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_237, 0, x_236); +lean_ctor_set(x_237, 1, x_3); +x_238 = l_myMacro____x40_Init_Notation___hyg_10078____closed__3; +x_239 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_239, 0, x_214); +lean_ctor_set(x_239, 1, x_238); +lean_ctor_set(x_239, 2, x_235); +lean_ctor_set(x_239, 3, x_237); +x_240 = lean_array_push(x_217, x_239); +x_241 = l_myMacro____x40_Init_Notation___hyg_4072____closed__4; +lean_inc(x_206); +lean_inc(x_209); +x_242 = l_Lean_addMacroScope(x_209, x_241, x_206); +lean_inc(x_3); +x_243 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_243, 0, x_241); +lean_ctor_set(x_243, 1, x_3); +lean_inc(x_3); +x_244 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_244, 0, x_243); +lean_ctor_set(x_244, 1, x_3); +x_245 = l_myMacro____x40_Init_Notation___hyg_4072____closed__3; +x_246 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_246, 0, x_214); +lean_ctor_set(x_246, 1, x_245); +lean_ctor_set(x_246, 2, x_242); +lean_ctor_set(x_246, 3, x_244); +x_247 = lean_array_push(x_217, x_246); +x_248 = lean_array_push(x_217, x_6); +x_249 = l_Lean_setOptionFromString___closed__3; +x_250 = l_Lean_addMacroScope(x_209, x_249, x_206); +x_251 = l_Lean_instQuoteBool___closed__5; +lean_inc(x_3); +x_252 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_252, 0, x_251); +lean_ctor_set(x_252, 1, x_3); +x_253 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_253, 0, x_252); +lean_ctor_set(x_253, 1, x_3); +x_254 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1___closed__2; +x_255 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_255, 0, x_214); +lean_ctor_set(x_255, 1, x_254); +lean_ctor_set(x_255, 2, x_250); +lean_ctor_set(x_255, 3, x_253); +x_256 = lean_array_push(x_248, x_255); +x_257 = l_Lean_nullKind___closed__2; +x_258 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_258, 0, x_257); +lean_ctor_set(x_258, 1, x_256); +x_259 = lean_array_push(x_247, x_258); +x_260 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_261 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_261, 0, x_260); +lean_ctor_set(x_261, 1, x_259); +x_262 = lean_array_push(x_217, x_261); +x_263 = lean_array_push(x_262, x_219); +x_264 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_264, 0, x_257); +lean_ctor_set(x_264, 1, x_263); +x_265 = l_myMacro____x40_Init_Notation___hyg_9707____closed__11; +x_266 = lean_array_push(x_265, x_264); +x_267 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_268 = lean_array_push(x_266, x_267); +x_269 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; +x_270 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_270, 0, x_269); +lean_ctor_set(x_270, 1, x_268); +x_271 = lean_array_push(x_217, x_270); +x_272 = lean_array_push(x_271, x_5); +x_273 = lean_array_push(x_272, x_203); +x_274 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_274, 0, x_257); +lean_ctor_set(x_274, 1, x_273); +x_275 = lean_array_push(x_240, x_274); +x_276 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_276, 0, x_260); +lean_ctor_set(x_276, 1, x_275); +x_277 = lean_array_push(x_233, x_276); +x_278 = l_myMacro____x40_Init_Notation___hyg_12470____closed__2; +x_279 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_279, 0, x_278); +lean_ctor_set(x_279, 1, x_277); +if (lean_is_scalar(x_211)) { + x_280 = lean_alloc_ctor(0, 2, 0); +} else { + x_280 = x_211; +} +lean_ctor_set(x_280, 0, x_279); +lean_ctor_set(x_280, 1, x_210); +return x_280; +} +else +{ +lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_281 = lean_ctor_get(x_202, 0); +lean_inc(x_281); +x_282 = lean_ctor_get(x_202, 1); +lean_inc(x_282); +if (lean_is_exclusive(x_202)) { + lean_ctor_release(x_202, 0); + lean_ctor_release(x_202, 1); + x_283 = x_202; +} else { + lean_dec_ref(x_202); + x_283 = lean_box(0); +} +if (lean_is_scalar(x_283)) { + x_284 = lean_alloc_ctor(1, 2, 0); +} else { + x_284 = x_283; +} +lean_ctor_set(x_284, 0, x_281); +lean_ctor_set(x_284, 1, x_282); +return x_284; +} } } } @@ -12817,7 +18286,7 @@ static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quot _start: { lean_object* x_1; -x_1 = lean_mk_string("Syntax.isOfKind"); +x_1 = lean_mk_string("sequenceMap"); return x_1; } } @@ -12847,56 +18316,1376 @@ return x_4; static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__4() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("isOfKind"); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; } } static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__5() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__12; -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__4; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string("match_syntax"); +return x_1; } } static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__6() { _start: { +lean_object* x_1; +x_1 = lean_mk_string("`("); +return x_1; +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19) { +_start: +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; +x_20 = l_Lean_Elab_Term_getCurrMacroScope(x_13, x_14, x_15, x_16, x_17, x_18, x_19); +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +x_22 = lean_ctor_get(x_20, 1); +lean_inc(x_22); +lean_dec(x_20); +x_23 = l_Lean_Elab_Term_getMainModule___rarg(x_18, x_22); +x_24 = !lean_is_exclusive(x_23); +if (x_24 == 0) +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; 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; +x_25 = lean_ctor_get(x_23, 0); +x_26 = l_Lean_Parser_Tactic_match___closed__1; +lean_inc(x_1); +x_27 = lean_name_mk_string(x_1, x_26); +lean_inc(x_2); +x_28 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_28, 0, x_2); +lean_ctor_set(x_28, 1, x_26); +lean_inc(x_3); +x_29 = lean_array_push(x_3, x_28); +x_30 = l_Lean_Parser_Tactic_match___closed__5; +lean_inc(x_1); +x_31 = lean_name_mk_string(x_1, x_30); +lean_inc(x_3); +lean_inc(x_4); +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_4); +lean_ctor_set(x_32, 1, x_3); +lean_inc(x_32); +lean_inc(x_3); +x_33 = lean_array_push(x_3, x_32); +x_34 = l_myMacro____x40_Init_Notation___hyg_9707____closed__7; +lean_inc(x_1); +x_35 = lean_name_mk_string(x_1, x_34); +x_36 = l_myMacro____x40_Init_Notation___hyg_9707____closed__9; +lean_inc(x_2); +x_37 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_37, 0, x_2); +lean_ctor_set(x_37, 1, x_36); +lean_inc(x_3); +x_38 = lean_array_push(x_3, x_37); +x_39 = l_Lean_Expr_ctorName___closed__10; +lean_inc(x_1); +x_40 = lean_name_mk_string(x_1, x_39); +lean_inc(x_3); +x_41 = lean_array_push(x_3, x_5); +x_42 = l_Lean_Name_toString___closed__1; +lean_inc(x_2); +x_43 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_43, 0, x_2); +lean_ctor_set(x_43, 1, x_42); +x_44 = lean_array_push(x_41, x_43); +x_45 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__4; +lean_inc(x_21); +lean_inc(x_25); +x_46 = l_Lean_addMacroScope(x_25, x_45, x_21); +x_47 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__3; +lean_inc(x_6); +lean_inc(x_2); +x_48 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_48, 0, x_2); +lean_ctor_set(x_48, 1, x_47); +lean_ctor_set(x_48, 2, x_46); +lean_ctor_set(x_48, 3, x_6); +x_49 = lean_array_push(x_44, x_48); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_40); +lean_ctor_set(x_50, 1, x_49); +lean_inc(x_3); +x_51 = lean_array_push(x_3, x_50); +x_52 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; +lean_inc(x_1); +x_53 = lean_name_mk_string(x_1, x_52); +lean_inc(x_2); +x_54 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_54, 0, x_2); +lean_ctor_set(x_54, 1, x_52); +lean_inc(x_3); +x_55 = lean_array_push(x_3, x_54); +x_56 = l_myMacro____x40_Init_Notation___hyg_9707____closed__16; +lean_inc(x_1); +x_57 = lean_name_mk_string(x_1, x_56); +x_58 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +lean_inc(x_21); +lean_inc(x_25); +x_59 = l_Lean_addMacroScope(x_25, x_58, x_21); +x_60 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +lean_inc(x_6); +lean_inc(x_2); +x_61 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_61, 0, x_2); +lean_ctor_set(x_61, 1, x_60); +lean_ctor_set(x_61, 2, x_59); +lean_ctor_set(x_61, 3, x_6); +lean_inc(x_61); +lean_inc(x_3); +x_62 = lean_array_push(x_3, x_61); +lean_inc(x_4); +x_63 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_63, 0, x_4); +lean_ctor_set(x_63, 1, x_62); +lean_inc(x_3); +x_64 = lean_array_push(x_3, x_63); +x_65 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; +lean_inc(x_2); +x_66 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_66, 0, x_2); +lean_ctor_set(x_66, 1, x_65); +lean_inc(x_66); +x_67 = lean_array_push(x_64, x_66); +x_68 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__5; +lean_inc(x_1); +x_69 = lean_name_mk_string(x_1, x_68); +lean_inc(x_2); +x_70 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_70, 0, x_2); +lean_ctor_set(x_70, 1, x_68); +lean_inc(x_3); +x_71 = lean_array_push(x_3, x_70); +x_72 = lean_array_push(x_71, x_61); +x_73 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__15; +lean_inc(x_2); +x_74 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_74, 0, x_2); +lean_ctor_set(x_74, 1, x_73); +lean_inc(x_74); +x_75 = lean_array_push(x_72, x_74); +x_76 = l_Lean_Parser_Tactic_matchAlts___closed__1; +lean_inc(x_1); +x_77 = lean_name_mk_string(x_1, x_76); +x_78 = l_Lean_Parser_Tactic_intro___closed__7; +lean_inc(x_2); +x_79 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_79, 0, x_2); +lean_ctor_set(x_79, 1, x_78); +lean_inc(x_79); +lean_inc(x_3); +x_80 = lean_array_push(x_3, x_79); +lean_inc(x_4); +x_81 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_81, 0, x_4); +lean_ctor_set(x_81, 1, x_80); +lean_inc(x_3); +x_82 = lean_array_push(x_3, x_81); +x_83 = l_Lean_Parser_Tactic_matchAlt___closed__1; +lean_inc(x_1); +x_84 = lean_name_mk_string(x_1, x_83); +x_85 = l_Lean_Syntax_isQuot_match__1___rarg___closed__1; +lean_inc(x_1); +x_86 = lean_name_mk_string(x_1, x_85); +x_87 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__6; +lean_inc(x_2); +x_88 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_88, 0, x_2); +lean_ctor_set(x_88, 1, x_87); +lean_inc(x_3); +x_89 = lean_array_push(x_3, x_88); +x_90 = l_Lean_instInhabitedSyntax; +x_91 = lean_unsigned_to_nat(0u); +x_92 = lean_array_get(x_90, x_7, x_91); +x_93 = lean_array_push(x_89, x_92); +x_94 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; +lean_inc(x_2); +x_95 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_95, 0, x_2); +lean_ctor_set(x_95, 1, x_94); +lean_inc(x_95); +x_96 = lean_array_push(x_93, x_95); +x_97 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_97, 0, x_86); +lean_ctor_set(x_97, 1, x_96); +lean_inc(x_3); +x_98 = lean_array_push(x_3, x_97); +lean_inc(x_4); +x_99 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_99, 0, x_4); +lean_ctor_set(x_99, 1, x_98); +lean_inc(x_3); +x_100 = lean_array_push(x_3, x_99); +lean_inc(x_66); +x_101 = lean_array_push(x_100, x_66); +x_102 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__20; +lean_inc(x_21); +lean_inc(x_25); +x_103 = l_Lean_addMacroScope(x_25, x_102, x_21); +x_104 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__6; +lean_inc(x_6); +x_105 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_105, 0, x_104); +lean_ctor_set(x_105, 1, x_6); +lean_inc(x_6); +x_106 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_106, 0, x_105); +lean_ctor_set(x_106, 1, x_6); +x_107 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__19; +lean_inc(x_2); +x_108 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_108, 0, x_2); +lean_ctor_set(x_108, 1, x_107); +lean_ctor_set(x_108, 2, x_103); +lean_ctor_set(x_108, 3, x_106); +lean_inc(x_3); +x_109 = lean_array_push(x_3, x_108); +lean_inc(x_3); +x_110 = lean_array_push(x_3, x_8); +lean_inc(x_4); +x_111 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_111, 0, x_4); +lean_ctor_set(x_111, 1, x_110); +lean_inc(x_109); +x_112 = lean_array_push(x_109, x_111); +lean_inc(x_9); +x_113 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_113, 0, x_9); +lean_ctor_set(x_113, 1, x_112); +x_114 = lean_array_push(x_101, x_113); +lean_inc(x_84); +x_115 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_115, 0, x_84); +lean_ctor_set(x_115, 1, x_114); +lean_inc(x_3); +x_116 = lean_array_push(x_3, x_115); +lean_inc(x_79); +x_117 = lean_array_push(x_116, x_79); +x_118 = l_myMacro____x40_Init_Notation___hyg_11836____closed__12; +x_119 = lean_name_mk_string(x_1, x_118); +x_120 = l_myMacro____x40_Init_Notation___hyg_11836____closed__14; +lean_inc(x_2); +x_121 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_121, 0, x_2); +lean_ctor_set(x_121, 1, x_120); +lean_inc(x_3); +x_122 = lean_array_push(x_3, x_121); +x_123 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_123, 0, x_119); +lean_ctor_set(x_123, 1, x_122); +lean_inc(x_3); +x_124 = lean_array_push(x_3, x_123); +lean_inc(x_4); +x_125 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_125, 0, x_4); +lean_ctor_set(x_125, 1, x_124); +lean_inc(x_3); +x_126 = lean_array_push(x_3, x_125); +lean_inc(x_66); +x_127 = lean_array_push(x_126, x_66); +x_128 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__23; +x_129 = l_Lean_addMacroScope(x_25, x_128, x_21); +x_130 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__3; +lean_inc(x_6); +x_131 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_131, 0, x_130); +lean_ctor_set(x_131, 1, x_6); +x_132 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_132, 0, x_131); +lean_ctor_set(x_132, 1, x_6); +x_133 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22; +x_134 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_134, 0, x_2); +lean_ctor_set(x_134, 1, x_133); +lean_ctor_set(x_134, 2, x_129); +lean_ctor_set(x_134, 3, x_132); +lean_inc(x_134); +x_135 = lean_array_push(x_127, x_134); +lean_inc(x_84); +x_136 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_136, 0, x_84); +lean_ctor_set(x_136, 1, x_135); +x_137 = lean_array_push(x_117, x_136); +lean_inc(x_4); +x_138 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_138, 0, x_4); +lean_ctor_set(x_138, 1, x_137); +lean_inc(x_82); +x_139 = lean_array_push(x_82, x_138); +lean_inc(x_77); +x_140 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_140, 0, x_77); +lean_ctor_set(x_140, 1, x_139); +x_141 = lean_array_push(x_75, x_140); +x_142 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_142, 0, x_69); +lean_ctor_set(x_142, 1, x_141); +x_143 = lean_array_push(x_67, x_142); +x_144 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_144, 0, x_57); +lean_ctor_set(x_144, 1, x_143); +x_145 = lean_array_push(x_55, x_144); +x_146 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_146, 0, x_53); +lean_ctor_set(x_146, 1, x_145); +lean_inc(x_3); +x_147 = lean_array_push(x_3, x_146); +lean_inc(x_4); +x_148 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_148, 0, x_4); +lean_ctor_set(x_148, 1, x_147); +x_149 = lean_array_push(x_51, x_148); +lean_inc(x_9); +x_150 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_150, 0, x_9); +lean_ctor_set(x_150, 1, x_149); +lean_inc(x_3); +x_151 = lean_array_push(x_3, x_150); +lean_inc(x_32); +x_152 = lean_array_push(x_151, x_32); +lean_inc(x_4); +x_153 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_153, 0, x_4); +lean_ctor_set(x_153, 1, x_152); +x_154 = lean_array_push(x_38, x_153); +x_155 = lean_array_push(x_154, x_95); +x_156 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_156, 0, x_35); +lean_ctor_set(x_156, 1, x_155); +x_157 = lean_array_push(x_33, x_156); +x_158 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_158, 0, x_31); +lean_ctor_set(x_158, 1, x_157); +lean_inc(x_3); +x_159 = lean_array_push(x_3, x_158); +lean_inc(x_4); +x_160 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_160, 0, x_4); +lean_ctor_set(x_160, 1, x_159); +x_161 = lean_array_push(x_29, x_160); +x_162 = lean_array_push(x_161, x_32); +x_163 = lean_array_push(x_162, x_74); +lean_inc(x_3); +x_164 = lean_array_push(x_3, x_12); +lean_inc(x_4); +x_165 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_165, 0, x_4); +lean_ctor_set(x_165, 1, x_164); +x_166 = lean_array_push(x_109, x_165); +x_167 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_167, 0, x_9); +lean_ctor_set(x_167, 1, x_166); +lean_inc(x_3); +x_168 = lean_array_push(x_3, x_167); +lean_inc(x_4); +x_169 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_169, 0, x_4); +lean_ctor_set(x_169, 1, x_168); +lean_inc(x_3); +x_170 = lean_array_push(x_3, x_169); +lean_inc(x_66); +x_171 = lean_array_push(x_170, x_66); +x_172 = lean_array_push(x_171, x_11); +lean_inc(x_84); +x_173 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_173, 0, x_84); +lean_ctor_set(x_173, 1, x_172); +lean_inc(x_3); +x_174 = lean_array_push(x_3, x_173); +x_175 = lean_array_push(x_174, x_79); +lean_inc(x_3); +x_176 = lean_array_push(x_3, x_134); +lean_inc(x_4); +x_177 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_177, 0, x_4); +lean_ctor_set(x_177, 1, x_176); +x_178 = lean_array_push(x_3, x_177); +x_179 = lean_array_push(x_178, x_66); +x_180 = lean_array_push(x_179, x_10); +x_181 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_181, 0, x_84); +lean_ctor_set(x_181, 1, x_180); +x_182 = lean_array_push(x_175, x_181); +x_183 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_183, 0, x_4); +lean_ctor_set(x_183, 1, x_182); +x_184 = lean_array_push(x_82, x_183); +x_185 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_185, 0, x_77); +lean_ctor_set(x_185, 1, x_184); +x_186 = lean_array_push(x_163, x_185); +x_187 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_187, 0, x_27); +lean_ctor_set(x_187, 1, x_186); +lean_ctor_set(x_23, 0, x_187); +return x_23; +} +else +{ +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; 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; +x_188 = lean_ctor_get(x_23, 0); +x_189 = lean_ctor_get(x_23, 1); +lean_inc(x_189); +lean_inc(x_188); +lean_dec(x_23); +x_190 = l_Lean_Parser_Tactic_match___closed__1; +lean_inc(x_1); +x_191 = lean_name_mk_string(x_1, x_190); +lean_inc(x_2); +x_192 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_192, 0, x_2); +lean_ctor_set(x_192, 1, x_190); +lean_inc(x_3); +x_193 = lean_array_push(x_3, x_192); +x_194 = l_Lean_Parser_Tactic_match___closed__5; +lean_inc(x_1); +x_195 = lean_name_mk_string(x_1, x_194); +lean_inc(x_3); +lean_inc(x_4); +x_196 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_196, 0, x_4); +lean_ctor_set(x_196, 1, x_3); +lean_inc(x_196); +lean_inc(x_3); +x_197 = lean_array_push(x_3, x_196); +x_198 = l_myMacro____x40_Init_Notation___hyg_9707____closed__7; +lean_inc(x_1); +x_199 = lean_name_mk_string(x_1, x_198); +x_200 = l_myMacro____x40_Init_Notation___hyg_9707____closed__9; +lean_inc(x_2); +x_201 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_201, 0, x_2); +lean_ctor_set(x_201, 1, x_200); +lean_inc(x_3); +x_202 = lean_array_push(x_3, x_201); +x_203 = l_Lean_Expr_ctorName___closed__10; +lean_inc(x_1); +x_204 = lean_name_mk_string(x_1, x_203); +lean_inc(x_3); +x_205 = lean_array_push(x_3, x_5); +x_206 = l_Lean_Name_toString___closed__1; +lean_inc(x_2); +x_207 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_207, 0, x_2); +lean_ctor_set(x_207, 1, x_206); +x_208 = lean_array_push(x_205, x_207); +x_209 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__4; +lean_inc(x_21); +lean_inc(x_188); +x_210 = l_Lean_addMacroScope(x_188, x_209, x_21); +x_211 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__3; +lean_inc(x_6); +lean_inc(x_2); +x_212 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_212, 0, x_2); +lean_ctor_set(x_212, 1, x_211); +lean_ctor_set(x_212, 2, x_210); +lean_ctor_set(x_212, 3, x_6); +x_213 = lean_array_push(x_208, x_212); +x_214 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_214, 0, x_204); +lean_ctor_set(x_214, 1, x_213); +lean_inc(x_3); +x_215 = lean_array_push(x_3, x_214); +x_216 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; +lean_inc(x_1); +x_217 = lean_name_mk_string(x_1, x_216); +lean_inc(x_2); +x_218 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_218, 0, x_2); +lean_ctor_set(x_218, 1, x_216); +lean_inc(x_3); +x_219 = lean_array_push(x_3, x_218); +x_220 = l_myMacro____x40_Init_Notation___hyg_9707____closed__16; +lean_inc(x_1); +x_221 = lean_name_mk_string(x_1, x_220); +x_222 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +lean_inc(x_21); +lean_inc(x_188); +x_223 = l_Lean_addMacroScope(x_188, x_222, x_21); +x_224 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +lean_inc(x_6); +lean_inc(x_2); +x_225 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_225, 0, x_2); +lean_ctor_set(x_225, 1, x_224); +lean_ctor_set(x_225, 2, x_223); +lean_ctor_set(x_225, 3, x_6); +lean_inc(x_225); +lean_inc(x_3); +x_226 = lean_array_push(x_3, x_225); +lean_inc(x_4); +x_227 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_227, 0, x_4); +lean_ctor_set(x_227, 1, x_226); +lean_inc(x_3); +x_228 = lean_array_push(x_3, x_227); +x_229 = l_myMacro____x40_Init_Notation___hyg_9707____closed__18; +lean_inc(x_2); +x_230 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_230, 0, x_2); +lean_ctor_set(x_230, 1, x_229); +lean_inc(x_230); +x_231 = lean_array_push(x_228, x_230); +x_232 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__5; +lean_inc(x_1); +x_233 = lean_name_mk_string(x_1, x_232); +lean_inc(x_2); +x_234 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_234, 0, x_2); +lean_ctor_set(x_234, 1, x_232); +lean_inc(x_3); +x_235 = lean_array_push(x_3, x_234); +x_236 = lean_array_push(x_235, x_225); +x_237 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__15; +lean_inc(x_2); +x_238 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_238, 0, x_2); +lean_ctor_set(x_238, 1, x_237); +lean_inc(x_238); +x_239 = lean_array_push(x_236, x_238); +x_240 = l_Lean_Parser_Tactic_matchAlts___closed__1; +lean_inc(x_1); +x_241 = lean_name_mk_string(x_1, x_240); +x_242 = l_Lean_Parser_Tactic_intro___closed__7; +lean_inc(x_2); +x_243 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_243, 0, x_2); +lean_ctor_set(x_243, 1, x_242); +lean_inc(x_243); +lean_inc(x_3); +x_244 = lean_array_push(x_3, x_243); +lean_inc(x_4); +x_245 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_245, 0, x_4); +lean_ctor_set(x_245, 1, x_244); +lean_inc(x_3); +x_246 = lean_array_push(x_3, x_245); +x_247 = l_Lean_Parser_Tactic_matchAlt___closed__1; +lean_inc(x_1); +x_248 = lean_name_mk_string(x_1, x_247); +x_249 = l_Lean_Syntax_isQuot_match__1___rarg___closed__1; +lean_inc(x_1); +x_250 = lean_name_mk_string(x_1, x_249); +x_251 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__6; +lean_inc(x_2); +x_252 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_252, 0, x_2); +lean_ctor_set(x_252, 1, x_251); +lean_inc(x_3); +x_253 = lean_array_push(x_3, x_252); +x_254 = l_Lean_instInhabitedSyntax; +x_255 = lean_unsigned_to_nat(0u); +x_256 = lean_array_get(x_254, x_7, x_255); +x_257 = lean_array_push(x_253, x_256); +x_258 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; +lean_inc(x_2); +x_259 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_259, 0, x_2); +lean_ctor_set(x_259, 1, x_258); +lean_inc(x_259); +x_260 = lean_array_push(x_257, x_259); +x_261 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_261, 0, x_250); +lean_ctor_set(x_261, 1, x_260); +lean_inc(x_3); +x_262 = lean_array_push(x_3, x_261); +lean_inc(x_4); +x_263 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_263, 0, x_4); +lean_ctor_set(x_263, 1, x_262); +lean_inc(x_3); +x_264 = lean_array_push(x_3, x_263); +lean_inc(x_230); +x_265 = lean_array_push(x_264, x_230); +x_266 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__20; +lean_inc(x_21); +lean_inc(x_188); +x_267 = l_Lean_addMacroScope(x_188, x_266, x_21); +x_268 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__6; +lean_inc(x_6); +x_269 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_269, 0, x_268); +lean_ctor_set(x_269, 1, x_6); +lean_inc(x_6); +x_270 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_270, 0, x_269); +lean_ctor_set(x_270, 1, x_6); +x_271 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__19; +lean_inc(x_2); +x_272 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_272, 0, x_2); +lean_ctor_set(x_272, 1, x_271); +lean_ctor_set(x_272, 2, x_267); +lean_ctor_set(x_272, 3, x_270); +lean_inc(x_3); +x_273 = lean_array_push(x_3, x_272); +lean_inc(x_3); +x_274 = lean_array_push(x_3, x_8); +lean_inc(x_4); +x_275 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_275, 0, x_4); +lean_ctor_set(x_275, 1, x_274); +lean_inc(x_273); +x_276 = lean_array_push(x_273, x_275); +lean_inc(x_9); +x_277 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_277, 0, x_9); +lean_ctor_set(x_277, 1, x_276); +x_278 = lean_array_push(x_265, x_277); +lean_inc(x_248); +x_279 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_279, 0, x_248); +lean_ctor_set(x_279, 1, x_278); +lean_inc(x_3); +x_280 = lean_array_push(x_3, x_279); +lean_inc(x_243); +x_281 = lean_array_push(x_280, x_243); +x_282 = l_myMacro____x40_Init_Notation___hyg_11836____closed__12; +x_283 = lean_name_mk_string(x_1, x_282); +x_284 = l_myMacro____x40_Init_Notation___hyg_11836____closed__14; +lean_inc(x_2); +x_285 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_285, 0, x_2); +lean_ctor_set(x_285, 1, x_284); +lean_inc(x_3); +x_286 = lean_array_push(x_3, x_285); +x_287 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_287, 0, x_283); +lean_ctor_set(x_287, 1, x_286); +lean_inc(x_3); +x_288 = lean_array_push(x_3, x_287); +lean_inc(x_4); +x_289 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_289, 0, x_4); +lean_ctor_set(x_289, 1, x_288); +lean_inc(x_3); +x_290 = lean_array_push(x_3, x_289); +lean_inc(x_230); +x_291 = lean_array_push(x_290, x_230); +x_292 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__23; +x_293 = l_Lean_addMacroScope(x_188, x_292, x_21); +x_294 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__3; +lean_inc(x_6); +x_295 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_295, 0, x_294); +lean_ctor_set(x_295, 1, x_6); +x_296 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_296, 0, x_295); +lean_ctor_set(x_296, 1, x_6); +x_297 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22; +x_298 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_298, 0, x_2); +lean_ctor_set(x_298, 1, x_297); +lean_ctor_set(x_298, 2, x_293); +lean_ctor_set(x_298, 3, x_296); +lean_inc(x_298); +x_299 = lean_array_push(x_291, x_298); +lean_inc(x_248); +x_300 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_300, 0, x_248); +lean_ctor_set(x_300, 1, x_299); +x_301 = lean_array_push(x_281, x_300); +lean_inc(x_4); +x_302 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_302, 0, x_4); +lean_ctor_set(x_302, 1, x_301); +lean_inc(x_246); +x_303 = lean_array_push(x_246, x_302); +lean_inc(x_241); +x_304 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_304, 0, x_241); +lean_ctor_set(x_304, 1, x_303); +x_305 = lean_array_push(x_239, x_304); +x_306 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_306, 0, x_233); +lean_ctor_set(x_306, 1, x_305); +x_307 = lean_array_push(x_231, x_306); +x_308 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_308, 0, x_221); +lean_ctor_set(x_308, 1, x_307); +x_309 = lean_array_push(x_219, x_308); +x_310 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_310, 0, x_217); +lean_ctor_set(x_310, 1, x_309); +lean_inc(x_3); +x_311 = lean_array_push(x_3, x_310); +lean_inc(x_4); +x_312 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_312, 0, x_4); +lean_ctor_set(x_312, 1, x_311); +x_313 = lean_array_push(x_215, x_312); +lean_inc(x_9); +x_314 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_314, 0, x_9); +lean_ctor_set(x_314, 1, x_313); +lean_inc(x_3); +x_315 = lean_array_push(x_3, x_314); +lean_inc(x_196); +x_316 = lean_array_push(x_315, x_196); +lean_inc(x_4); +x_317 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_317, 0, x_4); +lean_ctor_set(x_317, 1, x_316); +x_318 = lean_array_push(x_202, x_317); +x_319 = lean_array_push(x_318, x_259); +x_320 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_320, 0, x_199); +lean_ctor_set(x_320, 1, x_319); +x_321 = lean_array_push(x_197, x_320); +x_322 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_322, 0, x_195); +lean_ctor_set(x_322, 1, x_321); +lean_inc(x_3); +x_323 = lean_array_push(x_3, x_322); +lean_inc(x_4); +x_324 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_324, 0, x_4); +lean_ctor_set(x_324, 1, x_323); +x_325 = lean_array_push(x_193, x_324); +x_326 = lean_array_push(x_325, x_196); +x_327 = lean_array_push(x_326, x_238); +lean_inc(x_3); +x_328 = lean_array_push(x_3, x_12); +lean_inc(x_4); +x_329 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_329, 0, x_4); +lean_ctor_set(x_329, 1, x_328); +x_330 = lean_array_push(x_273, x_329); +x_331 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_331, 0, x_9); +lean_ctor_set(x_331, 1, x_330); +lean_inc(x_3); +x_332 = lean_array_push(x_3, x_331); +lean_inc(x_4); +x_333 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_333, 0, x_4); +lean_ctor_set(x_333, 1, x_332); +lean_inc(x_3); +x_334 = lean_array_push(x_3, x_333); +lean_inc(x_230); +x_335 = lean_array_push(x_334, x_230); +x_336 = lean_array_push(x_335, x_11); +lean_inc(x_248); +x_337 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_337, 0, x_248); +lean_ctor_set(x_337, 1, x_336); +lean_inc(x_3); +x_338 = lean_array_push(x_3, x_337); +x_339 = lean_array_push(x_338, x_243); +lean_inc(x_3); +x_340 = lean_array_push(x_3, x_298); +lean_inc(x_4); +x_341 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_341, 0, x_4); +lean_ctor_set(x_341, 1, x_340); +x_342 = lean_array_push(x_3, x_341); +x_343 = lean_array_push(x_342, x_230); +x_344 = lean_array_push(x_343, x_10); +x_345 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_345, 0, x_248); +lean_ctor_set(x_345, 1, x_344); +x_346 = lean_array_push(x_339, x_345); +x_347 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_347, 0, x_4); +lean_ctor_set(x_347, 1, x_346); +x_348 = lean_array_push(x_246, x_347); +x_349 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_349, 0, x_241); +lean_ctor_set(x_349, 1, x_348); +x_350 = lean_array_push(x_327, x_349); +x_351 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_351, 0, x_191); +lean_ctor_set(x_351, 1, x_350); +x_352 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_352, 0, x_351); +lean_ctor_set(x_352, 1, x_189); +return x_352; +} +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__4; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__4; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__1; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19) { +_start: +{ +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; uint8_t x_28; +x_20 = l_List_redLength___rarg(x_1); +x_21 = lean_mk_empty_array_with_capacity(x_20); +lean_dec(x_20); +x_22 = l_List_toArrayAux___rarg(x_1, x_21); +lean_inc(x_22); +x_23 = l_Lean_Elab_Term_Quotation_mkTuple(x_22, x_13, x_14, x_15, x_16, x_17, x_18, x_19); +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_22); +x_27 = lean_unsigned_to_nat(1u); +x_28 = lean_nat_dec_eq(x_26, x_27); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_29 = lean_unsigned_to_nat(0u); +lean_inc(x_26); +x_30 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_26); +lean_ctor_set(x_30, 2, x_27); +lean_inc(x_5); +lean_inc(x_6); +lean_inc(x_3); +lean_inc(x_4); +lean_inc(x_8); +lean_inc(x_2); +x_31 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8(x_2, x_8, x_4, x_3, x_6, x_5, x_22, x_30, x_26, x_29, x_10, x_13, x_14, x_15, x_16, x_17, x_18, x_25); +lean_dec(x_30); +lean_dec(x_22); +x_32 = lean_ctor_get(x_31, 0); +lean_inc(x_32); +x_33 = lean_ctor_get(x_31, 1); +lean_inc(x_33); +lean_dec(x_31); +x_34 = l_Lean_Elab_Term_getCurrMacroScope(x_13, x_14, x_15, x_16, x_17, x_18, x_33); +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_Elab_Term_getMainModule___rarg(x_18, x_36); +x_38 = lean_ctor_get(x_37, 0); +lean_inc(x_38); +x_39 = lean_ctor_get(x_37, 1); +lean_inc(x_39); +lean_dec(x_37); +x_40 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__5; +x_41 = l_Lean_addMacroScope(x_38, x_40, x_35); +x_42 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__2; +lean_inc(x_6); +lean_inc(x_3); +x_43 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_43, 0, x_3); +lean_ctor_set(x_43, 1, x_42); +lean_ctor_set(x_43, 2, x_41); +lean_ctor_set(x_43, 3, x_6); +x_44 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2(x_2, x_3, x_4, x_5, x_11, x_6, x_7, x_24, x_8, x_9, x_32, x_43, x_13, x_14, x_15, x_16, x_17, x_18, x_39); +return x_44; +} +else +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; +lean_dec(x_26); +x_45 = lean_unsigned_to_nat(0u); +x_46 = lean_array_fget(x_22, x_45); +lean_dec(x_22); +x_47 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2(x_2, x_3, x_4, x_5, x_11, x_6, x_7, x_24, x_8, x_9, x_10, x_46, x_13, x_14, x_15, x_16, x_17, x_18, x_25); +return x_47; +} +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19) { +_start: +{ +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; uint8_t x_28; +x_20 = l_List_redLength___rarg(x_1); +x_21 = lean_mk_empty_array_with_capacity(x_20); +lean_dec(x_20); +x_22 = l_List_toArrayAux___rarg(x_1, x_21); +lean_inc(x_22); +x_23 = l_Lean_Elab_Term_Quotation_mkTuple(x_22, x_13, x_14, x_15, x_16, x_17, x_18, x_19); +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_22); +x_27 = lean_unsigned_to_nat(1u); +x_28 = lean_nat_dec_eq(x_26, x_27); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_29 = lean_unsigned_to_nat(0u); +lean_inc(x_26); +x_30 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_26); +lean_ctor_set(x_30, 2, x_27); +lean_inc(x_5); +lean_inc(x_6); +lean_inc(x_3); +lean_inc(x_4); +lean_inc(x_8); +lean_inc(x_2); +x_31 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__9(x_2, x_8, x_4, x_3, x_6, x_5, x_22, x_30, x_26, x_29, x_10, x_13, x_14, x_15, x_16, x_17, x_18, x_25); +lean_dec(x_30); +lean_dec(x_22); +x_32 = lean_ctor_get(x_31, 0); +lean_inc(x_32); +x_33 = lean_ctor_get(x_31, 1); +lean_inc(x_33); +lean_dec(x_31); +x_34 = l_Lean_Elab_Term_getCurrMacroScope(x_13, x_14, x_15, x_16, x_17, x_18, x_33); +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_Elab_Term_getMainModule___rarg(x_18, x_36); +x_38 = lean_ctor_get(x_37, 0); +lean_inc(x_38); +x_39 = lean_ctor_get(x_37, 1); +lean_inc(x_39); +lean_dec(x_37); +x_40 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__5; +x_41 = l_Lean_addMacroScope(x_38, x_40, x_35); +x_42 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__2; +lean_inc(x_6); +lean_inc(x_3); +x_43 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_43, 0, x_3); +lean_ctor_set(x_43, 1, x_42); +lean_ctor_set(x_43, 2, x_41); +lean_ctor_set(x_43, 3, x_6); +x_44 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2(x_2, x_3, x_4, x_5, x_11, x_6, x_7, x_24, x_8, x_9, x_32, x_43, x_13, x_14, x_15, x_16, x_17, x_18, x_39); +return x_44; +} +else +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; +lean_dec(x_26); +x_45 = lean_unsigned_to_nat(0u); +x_46 = lean_array_fget(x_22, x_45); +lean_dec(x_22); +x_47 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2(x_2, x_3, x_4, x_5, x_11, x_6, x_7, x_24, x_8, x_9, x_10, x_46, x_13, x_14, x_15, x_16, x_17, x_18, x_25); +return x_47; +} +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19) { +_start: +{ +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; uint8_t x_28; +x_20 = l_List_redLength___rarg(x_1); +x_21 = lean_mk_empty_array_with_capacity(x_20); +lean_dec(x_20); +x_22 = l_List_toArrayAux___rarg(x_1, x_21); +lean_inc(x_22); +x_23 = l_Lean_Elab_Term_Quotation_mkTuple(x_22, x_13, x_14, x_15, x_16, x_17, x_18, x_19); +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_22); +x_27 = lean_unsigned_to_nat(1u); +x_28 = lean_nat_dec_eq(x_26, x_27); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_29 = lean_unsigned_to_nat(0u); +lean_inc(x_26); +x_30 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_26); +lean_ctor_set(x_30, 2, x_27); +lean_inc(x_5); +lean_inc(x_6); +lean_inc(x_3); +lean_inc(x_4); +lean_inc(x_8); +lean_inc(x_2); +x_31 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10(x_2, x_8, x_4, x_3, x_6, x_5, x_22, x_30, x_26, x_29, x_10, x_13, x_14, x_15, x_16, x_17, x_18, x_25); +lean_dec(x_30); +lean_dec(x_22); +x_32 = lean_ctor_get(x_31, 0); +lean_inc(x_32); +x_33 = lean_ctor_get(x_31, 1); +lean_inc(x_33); +lean_dec(x_31); +x_34 = l_Lean_Elab_Term_getCurrMacroScope(x_13, x_14, x_15, x_16, x_17, x_18, x_33); +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_Elab_Term_getMainModule___rarg(x_18, x_36); +x_38 = lean_ctor_get(x_37, 0); +lean_inc(x_38); +x_39 = lean_ctor_get(x_37, 1); +lean_inc(x_39); +lean_dec(x_37); +x_40 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__5; +x_41 = l_Lean_addMacroScope(x_38, x_40, x_35); +x_42 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__2; +lean_inc(x_6); +lean_inc(x_3); +x_43 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_43, 0, x_3); +lean_ctor_set(x_43, 1, x_42); +lean_ctor_set(x_43, 2, x_41); +lean_ctor_set(x_43, 3, x_6); +x_44 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2(x_2, x_3, x_4, x_5, x_11, x_6, x_7, x_24, x_8, x_9, x_32, x_43, x_13, x_14, x_15, x_16, x_17, x_18, x_39); +return x_44; +} +else +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; +lean_dec(x_26); +x_45 = lean_unsigned_to_nat(0u); +x_46 = lean_array_fget(x_22, x_45); +lean_dec(x_22); +x_47 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2(x_2, x_3, x_4, x_5, x_11, x_6, x_7, x_24, x_8, x_9, x_10, x_46, x_13, x_14, x_15, x_16, x_17, x_18, x_25); +return x_47; +} +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, 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) { +_start: +{ +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; uint8_t x_28; +x_20 = l_List_redLength___rarg(x_1); +x_21 = lean_mk_empty_array_with_capacity(x_20); +lean_dec(x_20); +x_22 = l_List_toArrayAux___rarg(x_1, x_21); +lean_inc(x_22); +x_23 = l_Lean_Elab_Term_Quotation_mkTuple(x_22, x_13, x_14, x_15, x_16, x_17, x_18, x_19); +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_22); +x_27 = lean_unsigned_to_nat(1u); +x_28 = lean_nat_dec_eq(x_26, x_27); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_29 = lean_unsigned_to_nat(0u); +lean_inc(x_26); +x_30 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_26); +lean_ctor_set(x_30, 2, x_27); +lean_inc(x_5); +lean_inc(x_6); +lean_inc(x_3); +lean_inc(x_4); +lean_inc(x_8); +lean_inc(x_2); +x_31 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__13(x_2, x_8, x_4, x_3, x_6, x_5, x_22, x_30, x_26, x_29, x_10, x_13, x_14, x_15, x_16, x_17, x_18, x_25); +lean_dec(x_30); +lean_dec(x_22); +x_32 = lean_ctor_get(x_31, 0); +lean_inc(x_32); +x_33 = lean_ctor_get(x_31, 1); +lean_inc(x_33); +lean_dec(x_31); +x_34 = l_Lean_Elab_Term_getCurrMacroScope(x_13, x_14, x_15, x_16, x_17, x_18, x_33); +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_Elab_Term_getMainModule___rarg(x_18, x_36); +x_38 = lean_ctor_get(x_37, 0); +lean_inc(x_38); +x_39 = lean_ctor_get(x_37, 1); +lean_inc(x_39); +lean_dec(x_37); +x_40 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__5; +x_41 = l_Lean_addMacroScope(x_38, x_40, x_35); +x_42 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__2; +lean_inc(x_6); +lean_inc(x_3); +x_43 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_43, 0, x_3); +lean_ctor_set(x_43, 1, x_42); +lean_ctor_set(x_43, 2, x_41); +lean_ctor_set(x_43, 3, x_6); +x_44 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2(x_2, x_3, x_4, x_5, x_11, x_6, x_7, x_24, x_8, x_9, x_32, x_43, x_13, x_14, x_15, x_16, x_17, x_18, x_39); +return x_44; +} +else +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; +lean_dec(x_26); +x_45 = lean_unsigned_to_nat(0u); +x_46 = lean_array_fget(x_22, x_45); +lean_dec(x_22); +x_47 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2(x_2, x_3, x_4, x_5, x_11, x_6, x_7, x_24, x_8, x_9, x_10, x_46, x_13, x_14, x_15, x_16, x_17, x_18, x_25); +return x_47; +} +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, 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) { +_start: +{ +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; uint8_t x_28; +x_20 = l_List_redLength___rarg(x_1); +x_21 = lean_mk_empty_array_with_capacity(x_20); +lean_dec(x_20); +x_22 = l_List_toArrayAux___rarg(x_1, x_21); +lean_inc(x_22); +x_23 = l_Lean_Elab_Term_Quotation_mkTuple(x_22, x_13, x_14, x_15, x_16, x_17, x_18, x_19); +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_22); +x_27 = lean_unsigned_to_nat(1u); +x_28 = lean_nat_dec_eq(x_26, x_27); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_29 = lean_unsigned_to_nat(0u); +lean_inc(x_26); +x_30 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_26); +lean_ctor_set(x_30, 2, x_27); +lean_inc(x_5); +lean_inc(x_6); +lean_inc(x_3); +lean_inc(x_4); +lean_inc(x_8); +lean_inc(x_2); +x_31 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__14(x_2, x_8, x_4, x_3, x_6, x_5, x_22, x_30, x_26, x_29, x_10, x_13, x_14, x_15, x_16, x_17, x_18, x_25); +lean_dec(x_30); +lean_dec(x_22); +x_32 = lean_ctor_get(x_31, 0); +lean_inc(x_32); +x_33 = lean_ctor_get(x_31, 1); +lean_inc(x_33); +lean_dec(x_31); +x_34 = l_Lean_Elab_Term_getCurrMacroScope(x_13, x_14, x_15, x_16, x_17, x_18, x_33); +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_Elab_Term_getMainModule___rarg(x_18, x_36); +x_38 = lean_ctor_get(x_37, 0); +lean_inc(x_38); +x_39 = lean_ctor_get(x_37, 1); +lean_inc(x_39); +lean_dec(x_37); +x_40 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__5; +x_41 = l_Lean_addMacroScope(x_38, x_40, x_35); +x_42 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__2; +lean_inc(x_6); +lean_inc(x_3); +x_43 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_43, 0, x_3); +lean_ctor_set(x_43, 1, x_42); +lean_ctor_set(x_43, 2, x_41); +lean_ctor_set(x_43, 3, x_6); +x_44 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2(x_2, x_3, x_4, x_5, x_11, x_6, x_7, x_24, x_8, x_9, x_32, x_43, x_13, x_14, x_15, x_16, x_17, x_18, x_39); +return x_44; +} +else +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; +lean_dec(x_26); +x_45 = lean_unsigned_to_nat(0u); +x_46 = lean_array_fget(x_22, x_45); +lean_dec(x_22); +x_47 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2(x_2, x_3, x_4, x_5, x_11, x_6, x_7, x_24, x_8, x_9, x_10, x_46, x_13, x_14, x_15, x_16, x_17, x_18, x_25); +return x_47; +} +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* 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) { +_start: +{ +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; uint8_t x_28; +x_20 = l_List_redLength___rarg(x_1); +x_21 = lean_mk_empty_array_with_capacity(x_20); +lean_dec(x_20); +x_22 = l_List_toArrayAux___rarg(x_1, x_21); +lean_inc(x_22); +x_23 = l_Lean_Elab_Term_Quotation_mkTuple(x_22, x_13, x_14, x_15, x_16, x_17, x_18, x_19); +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_22); +x_27 = lean_unsigned_to_nat(1u); +x_28 = lean_nat_dec_eq(x_26, x_27); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_29 = lean_unsigned_to_nat(0u); +lean_inc(x_26); +x_30 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_26); +lean_ctor_set(x_30, 2, x_27); +lean_inc(x_5); +lean_inc(x_6); +lean_inc(x_3); +lean_inc(x_4); +lean_inc(x_8); +lean_inc(x_2); +x_31 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15(x_2, x_8, x_4, x_3, x_6, x_5, x_22, x_30, x_26, x_29, x_10, x_13, x_14, x_15, x_16, x_17, x_18, x_25); +lean_dec(x_30); +lean_dec(x_22); +x_32 = lean_ctor_get(x_31, 0); +lean_inc(x_32); +x_33 = lean_ctor_get(x_31, 1); +lean_inc(x_33); +lean_dec(x_31); +x_34 = l_Lean_Elab_Term_getCurrMacroScope(x_13, x_14, x_15, x_16, x_17, x_18, x_33); +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +lean_dec(x_34); +x_37 = l_Lean_Elab_Term_getMainModule___rarg(x_18, x_36); +x_38 = lean_ctor_get(x_37, 0); +lean_inc(x_38); +x_39 = lean_ctor_get(x_37, 1); +lean_inc(x_39); +lean_dec(x_37); +x_40 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__5; +x_41 = l_Lean_addMacroScope(x_38, x_40, x_35); +x_42 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__2; +lean_inc(x_6); +lean_inc(x_3); +x_43 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_43, 0, x_3); +lean_ctor_set(x_43, 1, x_42); +lean_ctor_set(x_43, 2, x_41); +lean_ctor_set(x_43, 3, x_6); +x_44 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2(x_2, x_3, x_4, x_5, x_11, x_6, x_7, x_24, x_8, x_9, x_32, x_43, x_13, x_14, x_15, x_16, x_17, x_18, x_39); +return x_44; +} +else +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; +lean_dec(x_26); +x_45 = lean_unsigned_to_nat(0u); +x_46 = lean_array_fget(x_22, x_45); +lean_dec(x_22); +x_47 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2(x_2, x_3, x_4, x_5, x_11, x_6, x_7, x_24, x_8, x_9, x_10, x_46, x_13, x_14, x_15, x_16, x_17, x_18, x_25); +return x_47; +} +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Syntax.isOfKind"); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__1; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__1; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__2; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("isOfKind"); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__5() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Util_0__Lean_Elab_evalSyntaxConstantUnsafe___closed__1; -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__4; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__12; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__7() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Util_0__Lean_Elab_evalSyntaxConstantUnsafe___closed__1; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__4; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__6; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__6; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__8() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__7; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__7; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__9() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -12908,19 +19697,19 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__10() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__9; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__9; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__11() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -12932,19 +19721,19 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__12() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__11; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__11; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__13() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__13() { _start: { lean_object* x_1; @@ -12952,22 +19741,22 @@ x_1 = lean_mk_string("Array.size"); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__14() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__14() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__13; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__13; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__15() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__13; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__13; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__14; +x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__14; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -12975,7 +19764,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__16() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -12985,31 +19774,31 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__17() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__16; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__16; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__18() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__18() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__17; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__17; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__19() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -13019,31 +19808,335 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__20() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__20() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__19; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__19; 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___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__21() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__20; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__20; 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___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__22() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Array.getSepElems"); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__23() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__22; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__22; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__23; +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___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__25() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("getSepElems"); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_term_____x5b___x3a___x5d___closed__2; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__25; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__27() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; +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___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__27; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__29() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_instInhabitedSourceInfo___closed__1; +x_2 = l_termIf_____x3a__Then__Else_____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___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__30() { +_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_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__29; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__31() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("discr.isNone"); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__32() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__31; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__33() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__31; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__32; +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___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__34() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("isNone"); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__35() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__34; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__36() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("then"); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__37() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_instInhabitedSourceInfo___closed__1; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__36; +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_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__38() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("else"); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__39() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_instInhabitedSourceInfo___closed__1; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__38; +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_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__40() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__5; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__41() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_instInhabitedSourceInfo___closed__1; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___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___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42() { +_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_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__41; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_instInhabitedSourceInfo___closed__1; +x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__15; +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_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_instInhabitedSourceInfo___closed__1; +x_2 = l_Lean_Parser_Tactic_intro___closed__7; +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_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__45() { +_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_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__46() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_nullKind___closed__2; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__45; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__47() { +_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_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__46; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__48() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_instInhabitedSourceInfo___closed__1; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___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_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__49() { +_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_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__48; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__50() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_expandExplicitBindersAux_loop___closed__3; +x_2 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; lean_object* x_14; lean_object* x_15; @@ -13121,790 +20214,1342 @@ lean_inc(x_7); x_37 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch(x_18, x_16, x_36, x_7, x_8, x_9, x_10, x_11, x_27); if (lean_obj_tag(x_37) == 0) { -lean_object* x_38; -x_38 = lean_ctor_get(x_1, 0); +lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_38 = lean_ctor_get(x_37, 0); lean_inc(x_38); -if (lean_obj_tag(x_38) == 0) +x_39 = lean_ctor_get(x_37, 1); +lean_inc(x_39); +lean_dec(x_37); +x_40 = l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__6(x_1, x_2, x_13); +x_41 = l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7(x_40); +lean_inc(x_4); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_4); +lean_ctor_set(x_42, 1, x_3); +if (lean_obj_tag(x_1) == 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; uint8_t x_45; +lean_object* x_43; lean_object* x_44; lean_dec(x_35); lean_dec(x_31); lean_dec(x_30); lean_dec(x_29); lean_dec(x_28); -lean_dec(x_3); -lean_dec(x_2); +x_43 = lean_ctor_get(x_1, 0); +lean_inc(x_43); lean_dec(x_1); -x_39 = lean_ctor_get(x_37, 0); -lean_inc(x_39); -x_40 = lean_ctor_get(x_37, 1); -lean_inc(x_40); -lean_dec(x_37); -x_41 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_40); +x_44 = lean_ctor_get(x_43, 0); +lean_inc(x_44); +if (lean_obj_tag(x_44) == 0) +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; uint8_t x_49; +lean_dec(x_43); +lean_dec(x_42); +lean_dec(x_41); +x_45 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_39); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); -x_42 = lean_ctor_get(x_41, 0); -lean_inc(x_42); -x_43 = lean_ctor_get(x_41, 1); -lean_inc(x_43); -lean_dec(x_41); -x_44 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_43); +x_46 = lean_ctor_get(x_45, 0); +lean_inc(x_46); +x_47 = lean_ctor_get(x_45, 1); +lean_inc(x_47); +lean_dec(x_45); +x_48 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_47); lean_dec(x_11); -x_45 = !lean_is_exclusive(x_44); -if (x_45 == 0) +x_49 = !lean_is_exclusive(x_48); +if (x_49 == 0) { -lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; 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; -x_46 = lean_ctor_get(x_44, 0); -x_47 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; -x_48 = l_Lean_addMacroScope(x_46, x_47, x_42); -x_49 = l_Lean_instInhabitedSourceInfo___closed__1; -x_50 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3; -x_51 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_51, 0, x_49); -lean_ctor_set(x_51, 1, x_50); -lean_ctor_set(x_51, 2, x_48); -lean_ctor_set(x_51, 3, x_13); -x_52 = l_Array_empty___closed__1; -x_53 = lean_array_push(x_52, x_51); -x_54 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_55 = lean_array_push(x_53, x_54); -x_56 = lean_array_push(x_55, x_54); -x_57 = l_myMacro____x40_Init_Notation___hyg_12470____closed__14; -x_58 = lean_array_push(x_56, x_57); -x_59 = lean_array_push(x_58, x_4); -x_60 = l_myMacro____x40_Init_Notation___hyg_12470____closed__8; -x_61 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_61, 0, x_60); -lean_ctor_set(x_61, 1, x_59); -x_62 = lean_array_push(x_52, x_61); -x_63 = l_myMacro____x40_Init_Notation___hyg_12470____closed__6; -x_64 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_64, 0, x_63); -lean_ctor_set(x_64, 1, x_62); -x_65 = l_myMacro____x40_Init_Notation___hyg_12470____closed__4; -x_66 = lean_array_push(x_65, x_64); -x_67 = l_myMacro____x40_Init_Notation___hyg_12470____closed__18; -x_68 = lean_array_push(x_66, x_67); -x_69 = lean_array_push(x_68, x_39); -x_70 = l_myMacro____x40_Init_Notation___hyg_12470____closed__2; -x_71 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_71, 0, x_70); -lean_ctor_set(x_71, 1, x_69); -lean_ctor_set(x_44, 0, x_71); -return x_44; +lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_50 = lean_ctor_get(x_48, 0); +x_51 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_52 = l_Lean_addMacroScope(x_50, x_51, x_46); +x_53 = l_Lean_instInhabitedSourceInfo___closed__1; +x_54 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_55 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_55, 0, x_53); +lean_ctor_set(x_55, 1, x_54); +lean_ctor_set(x_55, 2, x_52); +lean_ctor_set(x_55, 3, x_13); +x_56 = l_Array_empty___closed__1; +x_57 = lean_array_push(x_56, x_55); +x_58 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_59 = lean_array_push(x_57, x_58); +x_60 = lean_array_push(x_59, x_58); +x_61 = l_myMacro____x40_Init_Notation___hyg_12470____closed__14; +x_62 = lean_array_push(x_60, x_61); +x_63 = lean_array_push(x_62, x_4); +x_64 = l_myMacro____x40_Init_Notation___hyg_12470____closed__8; +x_65 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_65, 0, x_64); +lean_ctor_set(x_65, 1, x_63); +x_66 = lean_array_push(x_56, x_65); +x_67 = l_myMacro____x40_Init_Notation___hyg_12470____closed__6; +x_68 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_68, 0, x_67); +lean_ctor_set(x_68, 1, x_66); +x_69 = l_myMacro____x40_Init_Notation___hyg_12470____closed__4; +x_70 = lean_array_push(x_69, x_68); +x_71 = l_myMacro____x40_Init_Notation___hyg_12470____closed__18; +x_72 = lean_array_push(x_70, x_71); +x_73 = lean_array_push(x_72, x_38); +x_74 = l_myMacro____x40_Init_Notation___hyg_12470____closed__2; +x_75 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_75, 0, x_74); +lean_ctor_set(x_75, 1, x_73); +lean_ctor_set(x_48, 0, x_75); +return x_48; } else { -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; -x_72 = lean_ctor_get(x_44, 0); -x_73 = lean_ctor_get(x_44, 1); -lean_inc(x_73); -lean_inc(x_72); +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; +x_76 = lean_ctor_get(x_48, 0); +x_77 = lean_ctor_get(x_48, 1); +lean_inc(x_77); +lean_inc(x_76); +lean_dec(x_48); +x_78 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_79 = l_Lean_addMacroScope(x_76, x_78, x_46); +x_80 = l_Lean_instInhabitedSourceInfo___closed__1; +x_81 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_82 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_82, 0, x_80); +lean_ctor_set(x_82, 1, x_81); +lean_ctor_set(x_82, 2, x_79); +lean_ctor_set(x_82, 3, x_13); +x_83 = l_Array_empty___closed__1; +x_84 = lean_array_push(x_83, x_82); +x_85 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_86 = lean_array_push(x_84, x_85); +x_87 = lean_array_push(x_86, x_85); +x_88 = l_myMacro____x40_Init_Notation___hyg_12470____closed__14; +x_89 = lean_array_push(x_87, x_88); +x_90 = lean_array_push(x_89, x_4); +x_91 = l_myMacro____x40_Init_Notation___hyg_12470____closed__8; +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_83, x_92); +x_94 = l_myMacro____x40_Init_Notation___hyg_12470____closed__6; +x_95 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_95, 0, x_94); +lean_ctor_set(x_95, 1, x_93); +x_96 = l_myMacro____x40_Init_Notation___hyg_12470____closed__4; +x_97 = lean_array_push(x_96, x_95); +x_98 = l_myMacro____x40_Init_Notation___hyg_12470____closed__18; +x_99 = lean_array_push(x_97, x_98); +x_100 = lean_array_push(x_99, x_38); +x_101 = l_myMacro____x40_Init_Notation___hyg_12470____closed__2; +x_102 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_102, 0, x_101); +lean_ctor_set(x_102, 1, x_100); +x_103 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_103, 0, x_102); +lean_ctor_set(x_103, 1, x_77); +return x_103; +} +} +else +{ +lean_object* x_104; +x_104 = lean_ctor_get(x_43, 1); +lean_inc(x_104); +lean_dec(x_43); +if (lean_obj_tag(x_104) == 0) +{ +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; +x_105 = lean_ctor_get(x_44, 0); +lean_inc(x_105); lean_dec(x_44); -x_74 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; -x_75 = l_Lean_addMacroScope(x_72, x_74, x_42); -x_76 = l_Lean_instInhabitedSourceInfo___closed__1; -x_77 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3; -x_78 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_78, 0, x_76); -lean_ctor_set(x_78, 1, x_77); -lean_ctor_set(x_78, 2, x_75); -lean_ctor_set(x_78, 3, x_13); -x_79 = l_Array_empty___closed__1; -x_80 = lean_array_push(x_79, x_78); -x_81 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_82 = lean_array_push(x_80, x_81); -x_83 = lean_array_push(x_82, x_81); -x_84 = l_myMacro____x40_Init_Notation___hyg_12470____closed__14; -x_85 = lean_array_push(x_83, x_84); -x_86 = lean_array_push(x_85, x_4); -x_87 = l_myMacro____x40_Init_Notation___hyg_12470____closed__8; -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 = lean_array_push(x_79, x_88); -x_90 = l_myMacro____x40_Init_Notation___hyg_12470____closed__6; -x_91 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_91, 0, x_90); -lean_ctor_set(x_91, 1, x_89); -x_92 = l_myMacro____x40_Init_Notation___hyg_12470____closed__4; -x_93 = lean_array_push(x_92, x_91); -x_94 = l_myMacro____x40_Init_Notation___hyg_12470____closed__18; -x_95 = lean_array_push(x_93, x_94); -x_96 = lean_array_push(x_95, x_39); -x_97 = l_myMacro____x40_Init_Notation___hyg_12470____closed__2; -x_98 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_98, 0, x_97); -lean_ctor_set(x_98, 1, x_96); -x_99 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_99, 0, x_98); -lean_ctor_set(x_99, 1, x_73); -return x_99; -} -} -else -{ -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; uint8_t x_109; -x_100 = lean_ctor_get(x_37, 0); -lean_inc(x_100); -x_101 = lean_ctor_get(x_37, 1); -lean_inc(x_101); -lean_dec(x_37); -x_102 = lean_ctor_get(x_38, 0); -lean_inc(x_102); -lean_dec(x_38); -x_103 = l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__6(x_1, x_2, x_13); -x_104 = l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7(x_103); -lean_inc(x_4); -x_105 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_105, 0, x_4); -lean_ctor_set(x_105, 1, x_3); -x_106 = lean_st_ref_take(x_11, x_101); +x_106 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_39); x_107 = lean_ctor_get(x_106, 0); lean_inc(x_107); x_108 = lean_ctor_get(x_106, 1); lean_inc(x_108); lean_dec(x_106); -x_109 = !lean_is_exclusive(x_107); -if (x_109 == 0) +x_109 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_108); +x_110 = lean_ctor_get(x_109, 0); +lean_inc(x_110); +x_111 = lean_ctor_get(x_109, 1); +lean_inc(x_111); +lean_dec(x_109); +x_112 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__5; +lean_inc(x_107); +lean_inc(x_110); +x_113 = l_Lean_addMacroScope(x_110, x_112, x_107); +x_114 = l_Lean_instInhabitedSourceInfo___closed__1; +x_115 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__3; +x_116 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__8; +x_117 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_117, 0, x_114); +lean_ctor_set(x_117, 1, x_115); +lean_ctor_set(x_117, 2, x_113); +lean_ctor_set(x_117, 3, x_116); +x_118 = l_Array_empty___closed__1; +x_119 = lean_array_push(x_118, x_117); +x_120 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_121 = l_Lean_addMacroScope(x_110, x_120, x_107); +x_122 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_123 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_123, 0, x_114); +lean_ctor_set(x_123, 1, x_122); +lean_ctor_set(x_123, 2, x_121); +lean_ctor_set(x_123, 3, x_13); +x_124 = lean_array_push(x_118, x_123); +x_125 = l___private_Init_Meta_0__Lean_quoteName(x_105); +x_126 = lean_array_push(x_124, x_125); +x_127 = l_Lean_nullKind___closed__2; +x_128 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_128, 0, x_127); +lean_ctor_set(x_128, 1, x_126); +x_129 = lean_array_push(x_119, x_128); +x_130 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_131 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_131, 0, x_130); +lean_ctor_set(x_131, 1, x_129); +x_132 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1(x_42, x_41, x_13, x_4, x_38, x_131, x_6, x_7, x_8, x_9, x_10, x_11, x_111); +lean_dec(x_6); +return x_132; +} +else { -lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; -x_110 = lean_ctor_get(x_107, 1); -x_111 = lean_nat_add(x_110, x_24); -lean_ctor_set(x_107, 1, x_111); -x_112 = lean_st_ref_set(x_11, x_107, x_108); -x_113 = lean_ctor_get(x_112, 1); -lean_inc(x_113); -lean_dec(x_112); -x_114 = lean_alloc_ctor(0, 6, 3); -lean_ctor_set(x_114, 0, x_28); -lean_ctor_set(x_114, 1, x_29); -lean_ctor_set(x_114, 2, x_30); -lean_ctor_set(x_114, 3, x_31); -lean_ctor_set(x_114, 4, x_110); -lean_ctor_set(x_114, 5, x_35); -lean_ctor_set_uint8(x_114, sizeof(void*)*6, x_32); -lean_ctor_set_uint8(x_114, sizeof(void*)*6 + 1, x_33); -lean_ctor_set_uint8(x_114, sizeof(void*)*6 + 2, x_34); +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_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; +x_133 = lean_ctor_get(x_44, 0); +lean_inc(x_133); +lean_dec(x_44); +x_134 = lean_ctor_get(x_104, 0); +lean_inc(x_134); +lean_dec(x_104); +x_135 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_39); +x_136 = lean_ctor_get(x_135, 0); +lean_inc(x_136); +x_137 = lean_ctor_get(x_135, 1); +lean_inc(x_137); +lean_dec(x_135); +x_138 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_137); +x_139 = lean_ctor_get(x_138, 0); +lean_inc(x_139); +x_140 = lean_ctor_get(x_138, 1); +lean_inc(x_140); +lean_dec(x_138); +x_141 = l_myMacro____x40_Init_Notation___hyg_6459____closed__4; +lean_inc(x_136); +lean_inc(x_139); +x_142 = l_Lean_addMacroScope(x_139, x_141, x_136); +x_143 = l_Lean_instInhabitedSourceInfo___closed__1; +x_144 = l_myMacro____x40_Init_Notation___hyg_6459____closed__3; +x_145 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__10; +x_146 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_146, 0, x_143); +lean_ctor_set(x_146, 1, x_144); +lean_ctor_set(x_146, 2, x_142); +lean_ctor_set(x_146, 3, x_145); +x_147 = l_Array_empty___closed__1; +x_148 = lean_array_push(x_147, x_146); +x_149 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__5; +lean_inc(x_136); +lean_inc(x_139); +x_150 = l_Lean_addMacroScope(x_139, x_149, x_136); +x_151 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__3; +x_152 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__8; +x_153 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_153, 0, x_143); +lean_ctor_set(x_153, 1, x_151); +lean_ctor_set(x_153, 2, x_150); +lean_ctor_set(x_153, 3, x_152); +x_154 = lean_array_push(x_147, x_153); +x_155 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +lean_inc(x_136); +lean_inc(x_139); +x_156 = l_Lean_addMacroScope(x_139, x_155, x_136); +x_157 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_158 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_158, 0, x_143); +lean_ctor_set(x_158, 1, x_157); +lean_ctor_set(x_158, 2, x_156); +lean_ctor_set(x_158, 3, x_13); +x_159 = lean_array_push(x_147, x_158); +x_160 = l___private_Init_Meta_0__Lean_quoteName(x_133); +lean_inc(x_159); +x_161 = lean_array_push(x_159, x_160); +x_162 = l_Lean_nullKind___closed__2; +x_163 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_163, 0, x_162); +lean_ctor_set(x_163, 1, x_161); +x_164 = lean_array_push(x_154, x_163); +x_165 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +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_147, x_166); +x_168 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_169 = lean_array_push(x_167, x_168); +x_170 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_170, 0, x_162); +lean_ctor_set(x_170, 1, x_169); +x_171 = l_myMacro____x40_Init_Notation___hyg_9707____closed__11; +x_172 = lean_array_push(x_171, x_170); +x_173 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_174 = lean_array_push(x_172, x_173); +x_175 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; +x_176 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_176, 0, x_175); +lean_ctor_set(x_176, 1, x_174); +x_177 = lean_array_push(x_147, x_176); +x_178 = l_myMacro____x40_Init_Notation___hyg_4340____closed__7; +lean_inc(x_136); +lean_inc(x_139); +x_179 = l_Lean_addMacroScope(x_139, x_178, x_136); +x_180 = l_myMacro____x40_Init_Notation___hyg_4340____closed__3; +x_181 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__12; +x_182 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_182, 0, x_143); +lean_ctor_set(x_182, 1, x_180); +lean_ctor_set(x_182, 2, x_179); +lean_ctor_set(x_182, 3, x_181); +x_183 = lean_array_push(x_147, x_182); +x_184 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__16; +lean_inc(x_136); +lean_inc(x_139); +x_185 = l_Lean_addMacroScope(x_139, x_184, x_136); +x_186 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__15; +x_187 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__18; +x_188 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_188, 0, x_143); +lean_ctor_set(x_188, 1, x_186); +lean_ctor_set(x_188, 2, x_185); +lean_ctor_set(x_188, 3, x_187); +x_189 = lean_array_push(x_147, x_188); +x_190 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_191 = l_Lean_addMacroScope(x_139, x_190, x_136); +x_192 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_193 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_194 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_194, 0, x_143); +lean_ctor_set(x_194, 1, x_192); +lean_ctor_set(x_194, 2, x_191); +lean_ctor_set(x_194, 3, x_193); +x_195 = lean_array_push(x_147, x_194); +x_196 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_196, 0, x_162); +lean_ctor_set(x_196, 1, x_159); +x_197 = lean_array_push(x_195, x_196); +x_198 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_198, 0, x_165); +lean_ctor_set(x_198, 1, x_197); +x_199 = lean_array_push(x_147, x_198); +x_200 = lean_array_push(x_199, x_168); +x_201 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_201, 0, x_162); +lean_ctor_set(x_201, 1, x_200); +x_202 = lean_array_push(x_171, x_201); +x_203 = lean_array_push(x_202, x_173); +x_204 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_204, 0, x_175); +lean_ctor_set(x_204, 1, x_203); +x_205 = lean_array_push(x_147, x_204); +x_206 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_206, 0, x_162); +lean_ctor_set(x_206, 1, x_205); +x_207 = lean_array_push(x_189, x_206); +x_208 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_208, 0, x_165); +lean_ctor_set(x_208, 1, x_207); +x_209 = lean_array_push(x_147, x_208); +x_210 = lean_array_push(x_209, x_168); +x_211 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_211, 0, x_162); +lean_ctor_set(x_211, 1, x_210); +x_212 = lean_array_push(x_171, x_211); +x_213 = lean_array_push(x_212, x_173); +x_214 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_214, 0, x_175); +lean_ctor_set(x_214, 1, x_213); +x_215 = lean_array_push(x_147, x_214); +x_216 = lean_array_get_size(x_134); +lean_dec(x_134); +x_217 = l_Nat_repr(x_216); +x_218 = l_Lean_numLitKind; +x_219 = l_Lean_Syntax_mkLit(x_218, x_217, x_143); +x_220 = lean_array_push(x_215, x_219); +x_221 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_221, 0, x_162); +lean_ctor_set(x_221, 1, x_220); +x_222 = lean_array_push(x_183, x_221); +x_223 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_223, 0, x_165); +lean_ctor_set(x_223, 1, x_222); +x_224 = lean_array_push(x_147, x_223); +x_225 = lean_array_push(x_224, x_168); +x_226 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_226, 0, x_162); +lean_ctor_set(x_226, 1, x_225); +x_227 = lean_array_push(x_171, x_226); +x_228 = lean_array_push(x_227, x_173); +x_229 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_229, 0, x_175); +lean_ctor_set(x_229, 1, x_228); +x_230 = lean_array_push(x_177, x_229); +x_231 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_231, 0, x_162); +lean_ctor_set(x_231, 1, x_230); +x_232 = lean_array_push(x_148, x_231); +x_233 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_233, 0, x_165); +lean_ctor_set(x_233, 1, x_232); +x_234 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1(x_42, x_41, x_13, x_4, x_38, x_233, x_6, x_7, x_8, x_9, x_10, x_11, x_140); +lean_dec(x_6); +return x_234; +} +} +} +else +{ +lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; +x_235 = lean_ctor_get(x_1, 0); +lean_inc(x_235); +lean_dec(x_1); +x_236 = l_Lean_Elab_Term_Quotation_antiquotScopeKind_x3f(x_235); +x_237 = l_Lean_Elab_Term_Quotation_getAntiquotScopeContents(x_235); +lean_inc(x_10); +lean_inc(x_6); +x_238 = l_Lean_Elab_Term_Quotation_getAntiquotationIds(x_235, x_6, x_7, x_8, x_9, x_10, x_11, x_39); +if (lean_obj_tag(x_238) == 0) +{ +lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; uint8_t x_244; +x_239 = lean_ctor_get(x_238, 0); +lean_inc(x_239); +x_240 = lean_ctor_get(x_238, 1); +lean_inc(x_240); +lean_dec(x_238); +x_241 = lean_st_ref_take(x_11, x_240); +x_242 = lean_ctor_get(x_241, 0); +lean_inc(x_242); +x_243 = lean_ctor_get(x_241, 1); +lean_inc(x_243); +lean_dec(x_241); +x_244 = !lean_is_exclusive(x_242); +if (x_244 == 0) +{ +lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; +x_245 = lean_ctor_get(x_242, 1); +x_246 = lean_nat_add(x_245, x_24); +lean_ctor_set(x_242, 1, x_246); +x_247 = lean_st_ref_set(x_11, x_242, x_243); +x_248 = lean_ctor_get(x_247, 1); +lean_inc(x_248); +lean_dec(x_247); +x_249 = lean_alloc_ctor(0, 6, 3); +lean_ctor_set(x_249, 0, x_28); +lean_ctor_set(x_249, 1, x_29); +lean_ctor_set(x_249, 2, x_30); +lean_ctor_set(x_249, 3, x_31); +lean_ctor_set(x_249, 4, x_245); +lean_ctor_set(x_249, 5, x_35); +lean_ctor_set_uint8(x_249, sizeof(void*)*6, x_32); +lean_ctor_set_uint8(x_249, sizeof(void*)*6 + 1, x_33); +lean_ctor_set_uint8(x_249, sizeof(void*)*6 + 2, x_34); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_115 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch(x_105, x_104, x_114, x_7, x_8, x_9, x_10, x_11, x_113); -if (lean_obj_tag(x_115) == 0) +x_250 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch(x_42, x_41, x_249, x_7, x_8, x_9, x_10, x_11, x_248); +if (lean_obj_tag(x_250) == 0) { -lean_object* x_116; -x_116 = lean_ctor_get(x_1, 1); -lean_inc(x_116); -lean_dec(x_1); -if (lean_obj_tag(x_116) == 0) +if (lean_obj_tag(x_236) == 0) { -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; -x_117 = lean_ctor_get(x_115, 0); -lean_inc(x_117); -x_118 = lean_ctor_get(x_115, 1); -lean_inc(x_118); -lean_dec(x_115); -x_119 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_118); -x_120 = lean_ctor_get(x_119, 0); -lean_inc(x_120); -x_121 = lean_ctor_get(x_119, 1); -lean_inc(x_121); -lean_dec(x_119); -x_122 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_121); -x_123 = lean_ctor_get(x_122, 0); -lean_inc(x_123); -x_124 = lean_ctor_get(x_122, 1); -lean_inc(x_124); -lean_dec(x_122); -x_125 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__5; -lean_inc(x_120); -lean_inc(x_123); -x_126 = l_Lean_addMacroScope(x_123, x_125, x_120); -x_127 = l_Lean_instInhabitedSourceInfo___closed__1; -x_128 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__3; -x_129 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__8; -x_130 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_130, 0, x_127); -lean_ctor_set(x_130, 1, x_128); -lean_ctor_set(x_130, 2, x_126); -lean_ctor_set(x_130, 3, x_129); -x_131 = l_Array_empty___closed__1; -x_132 = lean_array_push(x_131, x_130); -x_133 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; -x_134 = l_Lean_addMacroScope(x_123, x_133, x_120); -x_135 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3; -x_136 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_136, 0, x_127); -lean_ctor_set(x_136, 1, x_135); -lean_ctor_set(x_136, 2, x_134); -lean_ctor_set(x_136, 3, x_13); -x_137 = lean_array_push(x_131, x_136); -x_138 = l___private_Init_Meta_0__Lean_quoteName(x_102); -x_139 = lean_array_push(x_137, x_138); -x_140 = l_Lean_nullKind___closed__2; -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_132, x_141); -x_143 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_144 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_144, 0, x_143); -lean_ctor_set(x_144, 1, x_142); -x_145 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1(x_13, x_4, x_100, x_117, x_144, x_6, x_7, x_8, x_9, x_10, x_11, x_124); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -return x_145; -} -else -{ -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_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_146 = lean_ctor_get(x_115, 0); -lean_inc(x_146); -x_147 = lean_ctor_get(x_115, 1); -lean_inc(x_147); -lean_dec(x_115); -x_148 = lean_ctor_get(x_116, 0); -lean_inc(x_148); -lean_dec(x_116); -x_149 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_147); -x_150 = lean_ctor_get(x_149, 0); -lean_inc(x_150); -x_151 = lean_ctor_get(x_149, 1); -lean_inc(x_151); -lean_dec(x_149); -x_152 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_151); -x_153 = lean_ctor_get(x_152, 0); -lean_inc(x_153); -x_154 = lean_ctor_get(x_152, 1); -lean_inc(x_154); -lean_dec(x_152); -x_155 = l_myMacro____x40_Init_Notation___hyg_6459____closed__4; -lean_inc(x_150); -lean_inc(x_153); -x_156 = l_Lean_addMacroScope(x_153, x_155, x_150); -x_157 = l_Lean_instInhabitedSourceInfo___closed__1; -x_158 = l_myMacro____x40_Init_Notation___hyg_6459____closed__3; -x_159 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__10; -x_160 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_160, 0, x_157); -lean_ctor_set(x_160, 1, x_158); -lean_ctor_set(x_160, 2, x_156); -lean_ctor_set(x_160, 3, x_159); -x_161 = l_Array_empty___closed__1; -x_162 = lean_array_push(x_161, x_160); -x_163 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__5; -lean_inc(x_150); -lean_inc(x_153); -x_164 = l_Lean_addMacroScope(x_153, x_163, x_150); -x_165 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__3; -x_166 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__8; -x_167 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_167, 0, x_157); -lean_ctor_set(x_167, 1, x_165); -lean_ctor_set(x_167, 2, x_164); -lean_ctor_set(x_167, 3, x_166); -x_168 = lean_array_push(x_161, x_167); -x_169 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; -lean_inc(x_150); -lean_inc(x_153); -x_170 = l_Lean_addMacroScope(x_153, x_169, x_150); -x_171 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3; -x_172 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_172, 0, x_157); -lean_ctor_set(x_172, 1, x_171); -lean_ctor_set(x_172, 2, x_170); -lean_ctor_set(x_172, 3, x_13); -x_173 = lean_array_push(x_161, x_172); -x_174 = l___private_Init_Meta_0__Lean_quoteName(x_102); -lean_inc(x_173); -x_175 = lean_array_push(x_173, x_174); -x_176 = l_Lean_nullKind___closed__2; -x_177 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_177, 0, x_176); -lean_ctor_set(x_177, 1, x_175); -x_178 = lean_array_push(x_168, x_177); -x_179 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_180 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_180, 0, x_179); -lean_ctor_set(x_180, 1, x_178); -x_181 = lean_array_push(x_161, x_180); -x_182 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_183 = lean_array_push(x_181, x_182); -x_184 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_184, 0, x_176); -lean_ctor_set(x_184, 1, x_183); -x_185 = l_myMacro____x40_Init_Notation___hyg_9707____closed__11; -x_186 = lean_array_push(x_185, x_184); -x_187 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; -x_188 = lean_array_push(x_186, x_187); -x_189 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; -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 = lean_array_push(x_161, x_190); -x_192 = l_myMacro____x40_Init_Notation___hyg_4340____closed__7; -lean_inc(x_150); -lean_inc(x_153); -x_193 = l_Lean_addMacroScope(x_153, x_192, x_150); -x_194 = l_myMacro____x40_Init_Notation___hyg_4340____closed__3; -x_195 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__12; -x_196 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_196, 0, x_157); -lean_ctor_set(x_196, 1, x_194); -lean_ctor_set(x_196, 2, x_193); -lean_ctor_set(x_196, 3, x_195); -x_197 = lean_array_push(x_161, x_196); -x_198 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__16; -lean_inc(x_150); -lean_inc(x_153); -x_199 = l_Lean_addMacroScope(x_153, x_198, x_150); -x_200 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__15; -x_201 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__18; -x_202 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_202, 0, x_157); -lean_ctor_set(x_202, 1, x_200); -lean_ctor_set(x_202, 2, x_199); -lean_ctor_set(x_202, 3, x_201); -x_203 = lean_array_push(x_161, x_202); -x_204 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; -x_205 = l_Lean_addMacroScope(x_153, x_204, x_150); -x_206 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; -x_207 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__21; -x_208 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_208, 0, x_157); -lean_ctor_set(x_208, 1, x_206); -lean_ctor_set(x_208, 2, x_205); -lean_ctor_set(x_208, 3, x_207); -x_209 = lean_array_push(x_161, x_208); -x_210 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_210, 0, x_176); -lean_ctor_set(x_210, 1, x_173); -x_211 = lean_array_push(x_209, x_210); -x_212 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_212, 0, x_179); -lean_ctor_set(x_212, 1, x_211); -x_213 = lean_array_push(x_161, x_212); -x_214 = lean_array_push(x_213, x_182); -x_215 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_215, 0, x_176); -lean_ctor_set(x_215, 1, x_214); -x_216 = lean_array_push(x_185, x_215); -x_217 = lean_array_push(x_216, x_187); -x_218 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_218, 0, x_189); -lean_ctor_set(x_218, 1, x_217); -x_219 = lean_array_push(x_161, x_218); -x_220 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_220, 0, x_176); -lean_ctor_set(x_220, 1, x_219); -x_221 = lean_array_push(x_203, x_220); -x_222 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_222, 0, x_179); -lean_ctor_set(x_222, 1, x_221); -x_223 = lean_array_push(x_161, x_222); -x_224 = lean_array_push(x_223, x_182); -x_225 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_225, 0, x_176); -lean_ctor_set(x_225, 1, x_224); -x_226 = lean_array_push(x_185, x_225); -x_227 = lean_array_push(x_226, x_187); -x_228 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_228, 0, x_189); -lean_ctor_set(x_228, 1, x_227); -x_229 = lean_array_push(x_161, x_228); -x_230 = lean_array_get_size(x_148); -lean_dec(x_148); -x_231 = l_Nat_repr(x_230); -x_232 = l_Lean_numLitKind; -x_233 = l_Lean_Syntax_mkLit(x_232, x_231, x_157); -x_234 = lean_array_push(x_229, x_233); -x_235 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_235, 0, x_176); -lean_ctor_set(x_235, 1, x_234); -x_236 = lean_array_push(x_197, x_235); -x_237 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_237, 0, x_179); -lean_ctor_set(x_237, 1, x_236); -x_238 = lean_array_push(x_161, x_237); -x_239 = lean_array_push(x_238, x_182); -x_240 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_240, 0, x_176); -lean_ctor_set(x_240, 1, x_239); -x_241 = lean_array_push(x_185, x_240); -x_242 = lean_array_push(x_241, x_187); -x_243 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_243, 0, x_189); -lean_ctor_set(x_243, 1, x_242); -x_244 = lean_array_push(x_191, x_243); -x_245 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_245, 0, x_176); -lean_ctor_set(x_245, 1, x_244); -x_246 = lean_array_push(x_162, x_245); -x_247 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_247, 0, x_179); -lean_ctor_set(x_247, 1, x_246); -x_248 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1(x_13, x_4, x_100, x_146, x_247, x_6, x_7, x_8, x_9, x_10, x_11, x_154); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -return x_248; -} -} -else -{ -uint8_t x_249; -lean_dec(x_102); -lean_dec(x_100); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_4); -lean_dec(x_1); -x_249 = !lean_is_exclusive(x_115); -if (x_249 == 0) -{ -return x_115; -} -else -{ -lean_object* x_250; lean_object* x_251; lean_object* x_252; -x_250 = lean_ctor_get(x_115, 0); -x_251 = lean_ctor_get(x_115, 1); +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; +x_251 = lean_ctor_get(x_250, 0); lean_inc(x_251); -lean_inc(x_250); -lean_dec(x_115); -x_252 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_252, 0, x_250); -lean_ctor_set(x_252, 1, x_251); -return x_252; -} -} -} -else -{ -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; -x_253 = lean_ctor_get(x_107, 0); -x_254 = lean_ctor_get(x_107, 1); -x_255 = lean_ctor_get(x_107, 2); -x_256 = lean_ctor_get(x_107, 3); -lean_inc(x_256); -lean_inc(x_255); +x_252 = lean_ctor_get(x_250, 1); +lean_inc(x_252); +lean_dec(x_250); +x_253 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_252); +x_254 = lean_ctor_get(x_253, 0); lean_inc(x_254); -lean_inc(x_253); -lean_dec(x_107); -x_257 = lean_nat_add(x_254, x_24); -x_258 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_258, 0, x_253); -lean_ctor_set(x_258, 1, x_257); -lean_ctor_set(x_258, 2, x_255); -lean_ctor_set(x_258, 3, x_256); -x_259 = lean_st_ref_set(x_11, x_258, x_108); -x_260 = lean_ctor_get(x_259, 1); -lean_inc(x_260); -lean_dec(x_259); -x_261 = lean_alloc_ctor(0, 6, 3); -lean_ctor_set(x_261, 0, x_28); -lean_ctor_set(x_261, 1, x_29); -lean_ctor_set(x_261, 2, x_30); -lean_ctor_set(x_261, 3, x_31); -lean_ctor_set(x_261, 4, x_254); -lean_ctor_set(x_261, 5, x_35); -lean_ctor_set_uint8(x_261, sizeof(void*)*6, x_32); -lean_ctor_set_uint8(x_261, sizeof(void*)*6 + 1, x_33); -lean_ctor_set_uint8(x_261, sizeof(void*)*6 + 2, x_34); -lean_inc(x_11); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_262 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch(x_105, x_104, x_261, x_7, x_8, x_9, x_10, x_11, x_260); -if (lean_obj_tag(x_262) == 0) -{ -lean_object* x_263; -x_263 = lean_ctor_get(x_1, 1); -lean_inc(x_263); -lean_dec(x_1); -if (lean_obj_tag(x_263) == 0) -{ -lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; -x_264 = lean_ctor_get(x_262, 0); -lean_inc(x_264); -x_265 = lean_ctor_get(x_262, 1); -lean_inc(x_265); -lean_dec(x_262); -x_266 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_265); -x_267 = lean_ctor_get(x_266, 0); -lean_inc(x_267); -x_268 = lean_ctor_get(x_266, 1); -lean_inc(x_268); -lean_dec(x_266); -x_269 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_268); -x_270 = lean_ctor_get(x_269, 0); -lean_inc(x_270); -x_271 = lean_ctor_get(x_269, 1); -lean_inc(x_271); -lean_dec(x_269); -x_272 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__5; -lean_inc(x_267); -lean_inc(x_270); -x_273 = l_Lean_addMacroScope(x_270, x_272, x_267); -x_274 = l_Lean_instInhabitedSourceInfo___closed__1; -x_275 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__3; -x_276 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__8; -x_277 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_277, 0, x_274); -lean_ctor_set(x_277, 1, x_275); -lean_ctor_set(x_277, 2, x_273); -lean_ctor_set(x_277, 3, x_276); -x_278 = l_Array_empty___closed__1; -x_279 = lean_array_push(x_278, x_277); -x_280 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; -x_281 = l_Lean_addMacroScope(x_270, x_280, x_267); -x_282 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3; -x_283 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_283, 0, x_274); -lean_ctor_set(x_283, 1, x_282); -lean_ctor_set(x_283, 2, x_281); -lean_ctor_set(x_283, 3, x_13); -x_284 = lean_array_push(x_278, x_283); -x_285 = l___private_Init_Meta_0__Lean_quoteName(x_102); -x_286 = lean_array_push(x_284, x_285); -x_287 = l_Lean_nullKind___closed__2; -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_279, x_288); -x_290 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -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_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1(x_13, x_4, x_100, x_264, x_291, x_6, x_7, x_8, x_9, x_10, x_11, x_271); +x_255 = lean_ctor_get(x_253, 1); +lean_inc(x_255); +lean_dec(x_253); +x_256 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_255); +x_257 = lean_ctor_get(x_256, 0); +lean_inc(x_257); +x_258 = lean_ctor_get(x_256, 1); +lean_inc(x_258); +lean_dec(x_256); +x_259 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_260 = l_Lean_addMacroScope(x_257, x_259, x_254); +x_261 = l_Lean_instInhabitedSourceInfo___closed__1; +x_262 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_263 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_264 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_264, 0, x_261); +lean_ctor_set(x_264, 1, x_262); +lean_ctor_set(x_264, 2, x_260); +lean_ctor_set(x_264, 3, x_263); +x_265 = l_Array_empty___closed__1; +x_266 = lean_array_push(x_265, x_264); +x_267 = lean_array_push(x_265, x_4); +x_268 = l_Lean_nullKind___closed__2; +x_269 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_269, 0, x_268); +lean_ctor_set(x_269, 1, x_267); +x_270 = lean_array_push(x_266, x_269); +x_271 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_272 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_272, 0, x_271); +lean_ctor_set(x_272, 1, x_270); +x_273 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_274 = lean_box(0); +x_275 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3(x_239, x_273, x_261, x_265, x_268, x_13, x_237, x_271, x_251, x_38, x_272, x_274, x_6, x_7, x_8, x_9, x_10, x_11, x_258); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); -return x_292; +lean_dec(x_237); +return x_275; } else { -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_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; -x_293 = lean_ctor_get(x_262, 0); -lean_inc(x_293); -x_294 = lean_ctor_get(x_262, 1); -lean_inc(x_294); -lean_dec(x_262); -x_295 = lean_ctor_get(x_263, 0); -lean_inc(x_295); -lean_dec(x_263); -x_296 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_294); -x_297 = lean_ctor_get(x_296, 0); -lean_inc(x_297); -x_298 = lean_ctor_get(x_296, 1); -lean_inc(x_298); -lean_dec(x_296); -x_299 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_298); -x_300 = lean_ctor_get(x_299, 0); -lean_inc(x_300); -x_301 = lean_ctor_get(x_299, 1); -lean_inc(x_301); -lean_dec(x_299); -x_302 = l_myMacro____x40_Init_Notation___hyg_6459____closed__4; -lean_inc(x_297); -lean_inc(x_300); -x_303 = l_Lean_addMacroScope(x_300, x_302, x_297); -x_304 = l_Lean_instInhabitedSourceInfo___closed__1; -x_305 = l_myMacro____x40_Init_Notation___hyg_6459____closed__3; -x_306 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__10; -x_307 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_307, 0, x_304); -lean_ctor_set(x_307, 1, x_305); -lean_ctor_set(x_307, 2, x_303); -lean_ctor_set(x_307, 3, x_306); -x_308 = l_Array_empty___closed__1; -x_309 = lean_array_push(x_308, x_307); -x_310 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__5; -lean_inc(x_297); -lean_inc(x_300); -x_311 = l_Lean_addMacroScope(x_300, x_310, x_297); -x_312 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__3; -x_313 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__8; +lean_object* x_276; +x_276 = lean_ctor_get(x_236, 0); +lean_inc(x_276); +lean_dec(x_236); +switch (lean_obj_tag(x_276)) { +case 0: +{ +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; uint8_t x_300; +x_277 = lean_ctor_get(x_250, 0); +lean_inc(x_277); +x_278 = lean_ctor_get(x_250, 1); +lean_inc(x_278); +lean_dec(x_250); +x_279 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_278); +x_280 = lean_ctor_get(x_279, 0); +lean_inc(x_280); +x_281 = lean_ctor_get(x_279, 1); +lean_inc(x_281); +lean_dec(x_279); +x_282 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_281); +x_283 = lean_ctor_get(x_282, 0); +lean_inc(x_283); +x_284 = lean_ctor_get(x_282, 1); +lean_inc(x_284); +lean_dec(x_282); +x_285 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_286 = l_Lean_addMacroScope(x_283, x_285, x_280); +x_287 = l_Lean_instInhabitedSourceInfo___closed__1; +x_288 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_289 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_290 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_290, 0, x_287); +lean_ctor_set(x_290, 1, x_288); +lean_ctor_set(x_290, 2, x_286); +lean_ctor_set(x_290, 3, x_289); +x_291 = l_Array_empty___closed__1; +x_292 = lean_array_push(x_291, x_290); +x_293 = lean_array_push(x_291, x_4); +x_294 = l_Lean_nullKind___closed__2; +x_295 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_295, 0, x_294); +lean_ctor_set(x_295, 1, x_293); +x_296 = lean_array_push(x_292, x_295); +x_297 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_298 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_298, 0, x_297); +lean_ctor_set(x_298, 1, x_296); +x_299 = l_term_x5b___x2c_x5d___closed__6; +x_300 = lean_name_eq(x_276, x_299); +if (x_300 == 0) +{ +lean_object* x_301; lean_object* x_302; lean_object* x_303; +x_301 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_302 = lean_box(0); +x_303 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__4(x_239, x_301, x_287, x_291, x_294, x_13, x_237, x_297, x_277, x_38, x_298, x_302, x_6, x_7, x_8, x_9, x_10, x_11, x_284); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_237); +return x_303; +} +else +{ +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; +x_304 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_284); +x_305 = lean_ctor_get(x_304, 0); +lean_inc(x_305); +x_306 = lean_ctor_get(x_304, 1); +lean_inc(x_306); +lean_dec(x_304); +x_307 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_306); +x_308 = lean_ctor_get(x_307, 0); +lean_inc(x_308); +x_309 = lean_ctor_get(x_307, 1); +lean_inc(x_309); +lean_dec(x_307); +x_310 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; +x_311 = l_Lean_addMacroScope(x_308, x_310, x_305); +x_312 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; +x_313 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; x_314 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_314, 0, x_304); +lean_ctor_set(x_314, 0, x_287); lean_ctor_set(x_314, 1, x_312); lean_ctor_set(x_314, 2, x_311); lean_ctor_set(x_314, 3, x_313); -x_315 = lean_array_push(x_308, x_314); -x_316 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; -lean_inc(x_297); -lean_inc(x_300); -x_317 = l_Lean_addMacroScope(x_300, x_316, x_297); -x_318 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3; -x_319 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_319, 0, x_304); +x_315 = lean_array_push(x_291, x_314); +x_316 = lean_array_push(x_291, x_298); +x_317 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_317, 0, x_294); +lean_ctor_set(x_317, 1, x_316); +x_318 = lean_array_push(x_315, x_317); +x_319 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_319, 0, x_297); lean_ctor_set(x_319, 1, x_318); -lean_ctor_set(x_319, 2, x_317); -lean_ctor_set(x_319, 3, x_13); -x_320 = lean_array_push(x_308, x_319); -x_321 = l___private_Init_Meta_0__Lean_quoteName(x_102); -lean_inc(x_320); -x_322 = lean_array_push(x_320, x_321); -x_323 = l_Lean_nullKind___closed__2; -x_324 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_324, 0, x_323); -lean_ctor_set(x_324, 1, x_322); -x_325 = lean_array_push(x_315, x_324); -x_326 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_327 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_327, 0, x_326); -lean_ctor_set(x_327, 1, x_325); -x_328 = lean_array_push(x_308, x_327); -x_329 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_330 = lean_array_push(x_328, x_329); -x_331 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_331, 0, x_323); -lean_ctor_set(x_331, 1, x_330); -x_332 = l_myMacro____x40_Init_Notation___hyg_9707____closed__11; -x_333 = lean_array_push(x_332, x_331); -x_334 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; -x_335 = lean_array_push(x_333, x_334); -x_336 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; -x_337 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_337, 0, x_336); -lean_ctor_set(x_337, 1, x_335); -x_338 = lean_array_push(x_308, x_337); -x_339 = l_myMacro____x40_Init_Notation___hyg_4340____closed__7; -lean_inc(x_297); -lean_inc(x_300); -x_340 = l_Lean_addMacroScope(x_300, x_339, x_297); -x_341 = l_myMacro____x40_Init_Notation___hyg_4340____closed__3; -x_342 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__12; -x_343 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_343, 0, x_304); -lean_ctor_set(x_343, 1, x_341); -lean_ctor_set(x_343, 2, x_340); -lean_ctor_set(x_343, 3, x_342); -x_344 = lean_array_push(x_308, x_343); -x_345 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__16; -lean_inc(x_297); -lean_inc(x_300); -x_346 = l_Lean_addMacroScope(x_300, x_345, x_297); -x_347 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__15; -x_348 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__18; -x_349 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_349, 0, x_304); -lean_ctor_set(x_349, 1, x_347); -lean_ctor_set(x_349, 2, x_346); -lean_ctor_set(x_349, 3, x_348); -x_350 = lean_array_push(x_308, x_349); -x_351 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; -x_352 = l_Lean_addMacroScope(x_300, x_351, x_297); -x_353 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; -x_354 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__21; -x_355 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_355, 0, x_304); -lean_ctor_set(x_355, 1, x_353); -lean_ctor_set(x_355, 2, x_352); -lean_ctor_set(x_355, 3, x_354); -x_356 = lean_array_push(x_308, x_355); -x_357 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_357, 0, x_323); -lean_ctor_set(x_357, 1, x_320); -x_358 = lean_array_push(x_356, x_357); -x_359 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_359, 0, x_326); -lean_ctor_set(x_359, 1, x_358); -x_360 = lean_array_push(x_308, x_359); -x_361 = lean_array_push(x_360, x_329); -x_362 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_362, 0, x_323); -lean_ctor_set(x_362, 1, x_361); -x_363 = lean_array_push(x_332, x_362); -x_364 = lean_array_push(x_363, x_334); -x_365 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_365, 0, x_336); -lean_ctor_set(x_365, 1, x_364); -x_366 = lean_array_push(x_308, x_365); -x_367 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_367, 0, x_323); -lean_ctor_set(x_367, 1, x_366); -x_368 = lean_array_push(x_350, x_367); -x_369 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_369, 0, x_326); -lean_ctor_set(x_369, 1, x_368); -x_370 = lean_array_push(x_308, x_369); -x_371 = lean_array_push(x_370, x_329); -x_372 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_372, 0, x_323); -lean_ctor_set(x_372, 1, x_371); -x_373 = lean_array_push(x_332, x_372); -x_374 = lean_array_push(x_373, x_334); -x_375 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_375, 0, x_336); -lean_ctor_set(x_375, 1, x_374); -x_376 = lean_array_push(x_308, x_375); -x_377 = lean_array_get_size(x_295); -lean_dec(x_295); -x_378 = l_Nat_repr(x_377); -x_379 = l_Lean_numLitKind; -x_380 = l_Lean_Syntax_mkLit(x_379, x_378, x_304); -x_381 = lean_array_push(x_376, x_380); -x_382 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_382, 0, x_323); -lean_ctor_set(x_382, 1, x_381); -x_383 = lean_array_push(x_344, x_382); -x_384 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_384, 0, x_326); -lean_ctor_set(x_384, 1, x_383); -x_385 = lean_array_push(x_308, x_384); -x_386 = lean_array_push(x_385, x_329); -x_387 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_387, 0, x_323); -lean_ctor_set(x_387, 1, x_386); -x_388 = lean_array_push(x_332, x_387); -x_389 = lean_array_push(x_388, x_334); -x_390 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_390, 0, x_336); -lean_ctor_set(x_390, 1, x_389); -x_391 = lean_array_push(x_338, x_390); -x_392 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_392, 0, x_323); -lean_ctor_set(x_392, 1, x_391); -x_393 = lean_array_push(x_309, x_392); -x_394 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_394, 0, x_326); -lean_ctor_set(x_394, 1, x_393); -x_395 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1(x_13, x_4, x_100, x_293, x_394, x_6, x_7, x_8, x_9, x_10, x_11, x_301); +x_320 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_321 = lean_box(0); +x_322 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__4(x_239, x_320, x_287, x_291, x_294, x_13, x_237, x_297, x_277, x_38, x_319, x_321, x_6, x_7, x_8, x_9, x_10, x_11, x_309); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); -return x_395; +lean_dec(x_237); +return x_322; +} +} +case 1: +{ +lean_object* x_323; +x_323 = lean_ctor_get(x_276, 0); +lean_inc(x_323); +switch (lean_obj_tag(x_323)) { +case 0: +{ +lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; uint8_t x_328; +x_324 = lean_ctor_get(x_250, 0); +lean_inc(x_324); +x_325 = lean_ctor_get(x_250, 1); +lean_inc(x_325); +lean_dec(x_250); +x_326 = lean_ctor_get(x_276, 1); +lean_inc(x_326); +x_327 = l_myMacro____x40_Init_Notation___hyg_11399____closed__1; +x_328 = lean_string_dec_eq(x_326, x_327); +lean_dec(x_326); +if (x_328 == 0) +{ +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; uint8_t x_350; +x_329 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_325); +x_330 = lean_ctor_get(x_329, 0); +lean_inc(x_330); +x_331 = lean_ctor_get(x_329, 1); +lean_inc(x_331); +lean_dec(x_329); +x_332 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_331); +x_333 = lean_ctor_get(x_332, 0); +lean_inc(x_333); +x_334 = lean_ctor_get(x_332, 1); +lean_inc(x_334); +lean_dec(x_332); +x_335 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_336 = l_Lean_addMacroScope(x_333, x_335, x_330); +x_337 = l_Lean_instInhabitedSourceInfo___closed__1; +x_338 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_339 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_340 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_340, 0, x_337); +lean_ctor_set(x_340, 1, x_338); +lean_ctor_set(x_340, 2, x_336); +lean_ctor_set(x_340, 3, x_339); +x_341 = l_Array_empty___closed__1; +x_342 = lean_array_push(x_341, x_340); +x_343 = lean_array_push(x_341, x_4); +x_344 = l_Lean_nullKind___closed__2; +x_345 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_345, 0, x_344); +lean_ctor_set(x_345, 1, x_343); +x_346 = lean_array_push(x_342, x_345); +x_347 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_348 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_348, 0, x_347); +lean_ctor_set(x_348, 1, x_346); +x_349 = l_term_x5b___x2c_x5d___closed__6; +x_350 = lean_name_eq(x_276, x_349); +lean_dec(x_276); +if (x_350 == 0) +{ +lean_object* x_351; lean_object* x_352; lean_object* x_353; +x_351 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_352 = lean_box(0); +x_353 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5(x_239, x_351, x_337, x_341, x_344, x_13, x_237, x_347, x_324, x_38, x_348, x_352, x_6, x_7, x_8, x_9, x_10, x_11, x_334); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_237); +return x_353; +} +else +{ +lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_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; +x_354 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_334); +x_355 = lean_ctor_get(x_354, 0); +lean_inc(x_355); +x_356 = lean_ctor_get(x_354, 1); +lean_inc(x_356); +lean_dec(x_354); +x_357 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_356); +x_358 = lean_ctor_get(x_357, 0); +lean_inc(x_358); +x_359 = lean_ctor_get(x_357, 1); +lean_inc(x_359); +lean_dec(x_357); +x_360 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; +x_361 = l_Lean_addMacroScope(x_358, x_360, x_355); +x_362 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; +x_363 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; +x_364 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_364, 0, x_337); +lean_ctor_set(x_364, 1, x_362); +lean_ctor_set(x_364, 2, x_361); +lean_ctor_set(x_364, 3, x_363); +x_365 = lean_array_push(x_341, x_364); +x_366 = lean_array_push(x_341, x_348); +x_367 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_367, 0, x_344); +lean_ctor_set(x_367, 1, x_366); +x_368 = lean_array_push(x_365, x_367); +x_369 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_369, 0, x_347); +lean_ctor_set(x_369, 1, x_368); +x_370 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_371 = lean_box(0); +x_372 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5(x_239, x_370, x_337, x_341, x_344, x_13, x_237, x_347, x_324, x_38, x_369, x_371, x_6, x_7, x_8, x_9, x_10, x_11, x_359); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_237); +return x_372; } } else { -lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; -lean_dec(x_102); -lean_dec(x_100); +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; uint8_t x_383; +lean_dec(x_276); +lean_inc(x_38); +lean_inc(x_239); +x_373 = l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11(x_239, x_38, x_6, x_7, x_8, x_9, x_10, x_11, x_325); +x_374 = lean_ctor_get(x_373, 0); +lean_inc(x_374); +x_375 = lean_ctor_get(x_373, 1); +lean_inc(x_375); +lean_dec(x_373); +x_376 = l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12(x_239, x_38, x_6, x_7, x_8, x_9, x_10, x_11, x_375); +x_377 = lean_ctor_get(x_376, 0); +lean_inc(x_377); +x_378 = lean_ctor_get(x_376, 1); +lean_inc(x_378); +lean_dec(x_376); +x_379 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_378); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_380 = lean_ctor_get(x_379, 0); +lean_inc(x_380); +x_381 = lean_ctor_get(x_379, 1); +lean_inc(x_381); +lean_dec(x_379); +x_382 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_381); +lean_dec(x_11); +x_383 = !lean_is_exclusive(x_382); +if (x_383 == 0) +{ +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; +x_384 = lean_ctor_get(x_382, 0); +x_385 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +lean_inc(x_380); +lean_inc(x_384); +x_386 = l_Lean_addMacroScope(x_384, x_385, x_380); +x_387 = l_Lean_instInhabitedSourceInfo___closed__1; +x_388 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_389 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_389, 0, x_387); +lean_ctor_set(x_389, 1, x_388); +lean_ctor_set(x_389, 2, x_386); +lean_ctor_set(x_389, 3, x_13); +x_390 = l_Array_empty___closed__1; +lean_inc(x_389); +x_391 = lean_array_push(x_390, x_389); +x_392 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_393 = lean_array_push(x_391, x_392); +x_394 = lean_array_push(x_393, x_392); +x_395 = l_myMacro____x40_Init_Notation___hyg_12470____closed__14; +x_396 = lean_array_push(x_394, x_395); +x_397 = lean_array_push(x_396, x_4); +x_398 = l_myMacro____x40_Init_Notation___hyg_12470____closed__8; +x_399 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_399, 0, x_398); +lean_ctor_set(x_399, 1, x_397); +x_400 = lean_array_push(x_390, x_399); +x_401 = l_myMacro____x40_Init_Notation___hyg_12470____closed__6; +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 = l_myMacro____x40_Init_Notation___hyg_12470____closed__4; +x_404 = lean_array_push(x_403, x_402); +x_405 = l_myMacro____x40_Init_Notation___hyg_12470____closed__18; +x_406 = lean_array_push(x_404, x_405); +x_407 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__35; +x_408 = l_Lean_addMacroScope(x_384, x_407, x_380); +x_409 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__33; +x_410 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_410, 0, x_387); +lean_ctor_set(x_410, 1, x_409); +lean_ctor_set(x_410, 2, x_408); +lean_ctor_set(x_410, 3, x_13); +x_411 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__30; +x_412 = lean_array_push(x_411, x_410); +x_413 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__37; +x_414 = lean_array_push(x_412, x_413); +x_415 = lean_array_push(x_414, x_377); +x_416 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__39; +x_417 = lean_array_push(x_415, x_416); +x_418 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; +x_419 = lean_array_push(x_418, x_389); +x_420 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; +x_421 = lean_array_push(x_419, x_420); +x_422 = l_Lean_nullKind; +x_423 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_423, 0, x_422); +lean_ctor_set(x_423, 1, x_237); +x_424 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__49; +x_425 = lean_array_push(x_424, x_423); +x_426 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_427 = lean_array_push(x_425, x_426); +x_428 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_429 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_429, 0, x_428); +lean_ctor_set(x_429, 1, x_427); +x_430 = lean_array_push(x_390, x_429); +x_431 = l_Lean_nullKind___closed__2; +x_432 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_432, 0, x_431); +lean_ctor_set(x_432, 1, x_430); +x_433 = lean_array_push(x_390, x_432); +x_434 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_435 = lean_array_push(x_433, x_434); +x_436 = lean_array_push(x_435, x_374); +x_437 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; +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_390, x_438); +x_440 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44; +x_441 = lean_array_push(x_439, x_440); +x_442 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__50; +x_443 = lean_array_push(x_442, x_324); +x_444 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_444, 0, x_437); +lean_ctor_set(x_444, 1, x_443); +x_445 = lean_array_push(x_441, x_444); +x_446 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_446, 0, x_431); +lean_ctor_set(x_446, 1, x_445); +x_447 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__47; +x_448 = lean_array_push(x_447, x_446); +x_449 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; +x_450 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_450, 0, x_449); +lean_ctor_set(x_450, 1, x_448); +x_451 = lean_array_push(x_421, x_450); +x_452 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__40; +x_453 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_453, 0, x_452); +lean_ctor_set(x_453, 1, x_451); +x_454 = lean_array_push(x_417, x_453); +x_455 = l_termIf__Then__Else_____closed__2; +x_456 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_456, 0, x_455); +lean_ctor_set(x_456, 1, x_454); +x_457 = lean_array_push(x_406, x_456); +x_458 = l_myMacro____x40_Init_Notation___hyg_12470____closed__2; +x_459 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_459, 0, x_458); +lean_ctor_set(x_459, 1, x_457); +lean_ctor_set(x_382, 0, x_459); +return x_382; +} +else +{ +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_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; +x_460 = lean_ctor_get(x_382, 0); +x_461 = lean_ctor_get(x_382, 1); +lean_inc(x_461); +lean_inc(x_460); +lean_dec(x_382); +x_462 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +lean_inc(x_380); +lean_inc(x_460); +x_463 = l_Lean_addMacroScope(x_460, x_462, x_380); +x_464 = l_Lean_instInhabitedSourceInfo___closed__1; +x_465 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_466 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_466, 0, x_464); +lean_ctor_set(x_466, 1, x_465); +lean_ctor_set(x_466, 2, x_463); +lean_ctor_set(x_466, 3, x_13); +x_467 = l_Array_empty___closed__1; +lean_inc(x_466); +x_468 = lean_array_push(x_467, x_466); +x_469 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_470 = lean_array_push(x_468, x_469); +x_471 = lean_array_push(x_470, x_469); +x_472 = l_myMacro____x40_Init_Notation___hyg_12470____closed__14; +x_473 = lean_array_push(x_471, x_472); +x_474 = lean_array_push(x_473, x_4); +x_475 = l_myMacro____x40_Init_Notation___hyg_12470____closed__8; +x_476 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_476, 0, x_475); +lean_ctor_set(x_476, 1, x_474); +x_477 = lean_array_push(x_467, x_476); +x_478 = l_myMacro____x40_Init_Notation___hyg_12470____closed__6; +x_479 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_479, 0, x_478); +lean_ctor_set(x_479, 1, x_477); +x_480 = l_myMacro____x40_Init_Notation___hyg_12470____closed__4; +x_481 = lean_array_push(x_480, x_479); +x_482 = l_myMacro____x40_Init_Notation___hyg_12470____closed__18; +x_483 = lean_array_push(x_481, x_482); +x_484 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__35; +x_485 = l_Lean_addMacroScope(x_460, x_484, x_380); +x_486 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__33; +x_487 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_487, 0, x_464); +lean_ctor_set(x_487, 1, x_486); +lean_ctor_set(x_487, 2, x_485); +lean_ctor_set(x_487, 3, x_13); +x_488 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__30; +x_489 = lean_array_push(x_488, x_487); +x_490 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__37; +x_491 = lean_array_push(x_489, x_490); +x_492 = lean_array_push(x_491, x_377); +x_493 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__39; +x_494 = lean_array_push(x_492, x_493); +x_495 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; +x_496 = lean_array_push(x_495, x_466); +x_497 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; +x_498 = lean_array_push(x_496, x_497); +x_499 = l_Lean_nullKind; +x_500 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_500, 0, x_499); +lean_ctor_set(x_500, 1, x_237); +x_501 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__49; +x_502 = lean_array_push(x_501, x_500); +x_503 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_504 = lean_array_push(x_502, x_503); +x_505 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_506 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_506, 0, x_505); +lean_ctor_set(x_506, 1, x_504); +x_507 = lean_array_push(x_467, x_506); +x_508 = l_Lean_nullKind___closed__2; +x_509 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_509, 0, x_508); +lean_ctor_set(x_509, 1, x_507); +x_510 = lean_array_push(x_467, x_509); +x_511 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_512 = lean_array_push(x_510, x_511); +x_513 = lean_array_push(x_512, x_374); +x_514 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; +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 = lean_array_push(x_467, x_515); +x_517 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44; +x_518 = lean_array_push(x_516, x_517); +x_519 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__50; +x_520 = lean_array_push(x_519, x_324); +x_521 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_521, 0, x_514); +lean_ctor_set(x_521, 1, x_520); +x_522 = lean_array_push(x_518, x_521); +x_523 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_523, 0, x_508); +lean_ctor_set(x_523, 1, x_522); +x_524 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__47; +x_525 = lean_array_push(x_524, x_523); +x_526 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; +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 = lean_array_push(x_498, x_527); +x_529 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__40; +x_530 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_530, 0, x_529); +lean_ctor_set(x_530, 1, x_528); +x_531 = lean_array_push(x_494, x_530); +x_532 = l_termIf__Then__Else_____closed__2; +x_533 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_533, 0, x_532); +lean_ctor_set(x_533, 1, x_531); +x_534 = lean_array_push(x_483, x_533); +x_535 = l_myMacro____x40_Init_Notation___hyg_12470____closed__2; +x_536 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_536, 0, x_535); +lean_ctor_set(x_536, 1, x_534); +x_537 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_537, 0, x_536); +lean_ctor_set(x_537, 1, x_461); +return x_537; +} +} +} +case 1: +{ +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; uint8_t x_561; +lean_dec(x_323); +x_538 = lean_ctor_get(x_250, 0); +lean_inc(x_538); +x_539 = lean_ctor_get(x_250, 1); +lean_inc(x_539); +lean_dec(x_250); +x_540 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_539); +x_541 = lean_ctor_get(x_540, 0); +lean_inc(x_541); +x_542 = lean_ctor_get(x_540, 1); +lean_inc(x_542); +lean_dec(x_540); +x_543 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_542); +x_544 = lean_ctor_get(x_543, 0); +lean_inc(x_544); +x_545 = lean_ctor_get(x_543, 1); +lean_inc(x_545); +lean_dec(x_543); +x_546 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_547 = l_Lean_addMacroScope(x_544, x_546, x_541); +x_548 = l_Lean_instInhabitedSourceInfo___closed__1; +x_549 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_550 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_551 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_551, 0, x_548); +lean_ctor_set(x_551, 1, x_549); +lean_ctor_set(x_551, 2, x_547); +lean_ctor_set(x_551, 3, x_550); +x_552 = l_Array_empty___closed__1; +x_553 = lean_array_push(x_552, x_551); +x_554 = lean_array_push(x_552, x_4); +x_555 = l_Lean_nullKind___closed__2; +x_556 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_556, 0, x_555); +lean_ctor_set(x_556, 1, x_554); +x_557 = lean_array_push(x_553, x_556); +x_558 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_559 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_559, 0, x_558); +lean_ctor_set(x_559, 1, x_557); +x_560 = l_term_x5b___x2c_x5d___closed__6; +x_561 = lean_name_eq(x_276, x_560); +lean_dec(x_276); +if (x_561 == 0) +{ +lean_object* x_562; lean_object* x_563; lean_object* x_564; +x_562 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_563 = lean_box(0); +x_564 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__6(x_239, x_562, x_548, x_552, x_555, x_13, x_237, x_558, x_538, x_38, x_559, x_563, x_6, x_7, x_8, x_9, x_10, x_11, x_545); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_237); +return x_564; +} +else +{ +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; +x_565 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_545); +x_566 = lean_ctor_get(x_565, 0); +lean_inc(x_566); +x_567 = lean_ctor_get(x_565, 1); +lean_inc(x_567); +lean_dec(x_565); +x_568 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_567); +x_569 = lean_ctor_get(x_568, 0); +lean_inc(x_569); +x_570 = lean_ctor_get(x_568, 1); +lean_inc(x_570); +lean_dec(x_568); +x_571 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; +x_572 = l_Lean_addMacroScope(x_569, x_571, x_566); +x_573 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; +x_574 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; +x_575 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_575, 0, x_548); +lean_ctor_set(x_575, 1, x_573); +lean_ctor_set(x_575, 2, x_572); +lean_ctor_set(x_575, 3, x_574); +x_576 = lean_array_push(x_552, x_575); +x_577 = lean_array_push(x_552, x_559); +x_578 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_578, 0, x_555); +lean_ctor_set(x_578, 1, x_577); +x_579 = lean_array_push(x_576, x_578); +x_580 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_580, 0, x_558); +lean_ctor_set(x_580, 1, x_579); +x_581 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_582 = lean_box(0); +x_583 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__6(x_239, x_581, x_548, x_552, x_555, x_13, x_237, x_558, x_538, x_38, x_580, x_582, x_6, x_7, x_8, x_9, x_10, x_11, x_570); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_237); +return x_583; +} +} +default: +{ +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; uint8_t x_607; +lean_dec(x_323); +x_584 = lean_ctor_get(x_250, 0); +lean_inc(x_584); +x_585 = lean_ctor_get(x_250, 1); +lean_inc(x_585); +lean_dec(x_250); +x_586 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_585); +x_587 = lean_ctor_get(x_586, 0); +lean_inc(x_587); +x_588 = lean_ctor_get(x_586, 1); +lean_inc(x_588); +lean_dec(x_586); +x_589 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_588); +x_590 = lean_ctor_get(x_589, 0); +lean_inc(x_590); +x_591 = lean_ctor_get(x_589, 1); +lean_inc(x_591); +lean_dec(x_589); +x_592 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_593 = l_Lean_addMacroScope(x_590, x_592, x_587); +x_594 = l_Lean_instInhabitedSourceInfo___closed__1; +x_595 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_596 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_597 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_597, 0, x_594); +lean_ctor_set(x_597, 1, x_595); +lean_ctor_set(x_597, 2, x_593); +lean_ctor_set(x_597, 3, x_596); +x_598 = l_Array_empty___closed__1; +x_599 = lean_array_push(x_598, x_597); +x_600 = lean_array_push(x_598, x_4); +x_601 = l_Lean_nullKind___closed__2; +x_602 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_602, 0, x_601); +lean_ctor_set(x_602, 1, x_600); +x_603 = lean_array_push(x_599, x_602); +x_604 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_605 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_605, 0, x_604); +lean_ctor_set(x_605, 1, x_603); +x_606 = l_term_x5b___x2c_x5d___closed__6; +x_607 = lean_name_eq(x_276, x_606); +lean_dec(x_276); +if (x_607 == 0) +{ +lean_object* x_608; lean_object* x_609; lean_object* x_610; +x_608 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_609 = lean_box(0); +x_610 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__7(x_239, x_608, x_594, x_598, x_601, x_13, x_237, x_604, x_584, x_38, x_605, x_609, x_6, x_7, x_8, x_9, x_10, x_11, x_591); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_237); +return x_610; +} +else +{ +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; +x_611 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_591); +x_612 = lean_ctor_get(x_611, 0); +lean_inc(x_612); +x_613 = lean_ctor_get(x_611, 1); +lean_inc(x_613); +lean_dec(x_611); +x_614 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_613); +x_615 = lean_ctor_get(x_614, 0); +lean_inc(x_615); +x_616 = lean_ctor_get(x_614, 1); +lean_inc(x_616); +lean_dec(x_614); +x_617 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; +x_618 = l_Lean_addMacroScope(x_615, x_617, x_612); +x_619 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; +x_620 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; +x_621 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_621, 0, x_594); +lean_ctor_set(x_621, 1, x_619); +lean_ctor_set(x_621, 2, x_618); +lean_ctor_set(x_621, 3, x_620); +x_622 = lean_array_push(x_598, x_621); +x_623 = lean_array_push(x_598, x_605); +x_624 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_624, 0, x_601); +lean_ctor_set(x_624, 1, x_623); +x_625 = lean_array_push(x_622, x_624); +x_626 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_626, 0, x_604); +lean_ctor_set(x_626, 1, x_625); +x_627 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_628 = lean_box(0); +x_629 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__7(x_239, x_627, x_594, x_598, x_601, x_13, x_237, x_604, x_584, x_38, x_626, x_628, x_6, x_7, x_8, x_9, x_10, x_11, x_616); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_237); +return x_629; +} +} +} +} +default: +{ +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; uint8_t x_653; +x_630 = lean_ctor_get(x_250, 0); +lean_inc(x_630); +x_631 = lean_ctor_get(x_250, 1); +lean_inc(x_631); +lean_dec(x_250); +x_632 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_631); +x_633 = lean_ctor_get(x_632, 0); +lean_inc(x_633); +x_634 = lean_ctor_get(x_632, 1); +lean_inc(x_634); +lean_dec(x_632); +x_635 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_634); +x_636 = lean_ctor_get(x_635, 0); +lean_inc(x_636); +x_637 = lean_ctor_get(x_635, 1); +lean_inc(x_637); +lean_dec(x_635); +x_638 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_639 = l_Lean_addMacroScope(x_636, x_638, x_633); +x_640 = l_Lean_instInhabitedSourceInfo___closed__1; +x_641 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_642 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_643 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_643, 0, x_640); +lean_ctor_set(x_643, 1, x_641); +lean_ctor_set(x_643, 2, x_639); +lean_ctor_set(x_643, 3, x_642); +x_644 = l_Array_empty___closed__1; +x_645 = lean_array_push(x_644, x_643); +x_646 = lean_array_push(x_644, x_4); +x_647 = l_Lean_nullKind___closed__2; +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_645, x_648); +x_650 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +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 = l_term_x5b___x2c_x5d___closed__6; +x_653 = lean_name_eq(x_276, x_652); +lean_dec(x_276); +if (x_653 == 0) +{ +lean_object* x_654; lean_object* x_655; lean_object* x_656; +x_654 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_655 = lean_box(0); +x_656 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__8(x_239, x_654, x_640, x_644, x_647, x_13, x_237, x_650, x_630, x_38, x_651, x_655, x_6, x_7, x_8, x_9, x_10, x_11, x_637); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_237); +return x_656; +} +else +{ +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; +x_657 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_637); +x_658 = lean_ctor_get(x_657, 0); +lean_inc(x_658); +x_659 = lean_ctor_get(x_657, 1); +lean_inc(x_659); +lean_dec(x_657); +x_660 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_659); +x_661 = lean_ctor_get(x_660, 0); +lean_inc(x_661); +x_662 = lean_ctor_get(x_660, 1); +lean_inc(x_662); +lean_dec(x_660); +x_663 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; +x_664 = l_Lean_addMacroScope(x_661, x_663, x_658); +x_665 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; +x_666 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; +x_667 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_667, 0, x_640); +lean_ctor_set(x_667, 1, x_665); +lean_ctor_set(x_667, 2, x_664); +lean_ctor_set(x_667, 3, x_666); +x_668 = lean_array_push(x_644, x_667); +x_669 = lean_array_push(x_644, x_651); +x_670 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_670, 0, x_647); +lean_ctor_set(x_670, 1, x_669); +x_671 = lean_array_push(x_668, x_670); +x_672 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_672, 0, x_650); +lean_ctor_set(x_672, 1, x_671); +x_673 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_674 = lean_box(0); +x_675 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__8(x_239, x_673, x_640, x_644, x_647, x_13, x_237, x_650, x_630, x_38, x_672, x_674, x_6, x_7, x_8, x_9, x_10, x_11, x_662); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_237); +return x_675; +} +} +} +} +} +else +{ +uint8_t x_676; +lean_dec(x_239); +lean_dec(x_237); +lean_dec(x_236); +lean_dec(x_38); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -13912,34 +21557,921 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_4); -lean_dec(x_1); -x_396 = lean_ctor_get(x_262, 0); -lean_inc(x_396); -x_397 = lean_ctor_get(x_262, 1); -lean_inc(x_397); -if (lean_is_exclusive(x_262)) { - lean_ctor_release(x_262, 0); - lean_ctor_release(x_262, 1); - x_398 = x_262; -} else { - lean_dec_ref(x_262); - x_398 = lean_box(0); +x_676 = !lean_is_exclusive(x_250); +if (x_676 == 0) +{ +return x_250; } -if (lean_is_scalar(x_398)) { - x_399 = lean_alloc_ctor(1, 2, 0); -} else { - x_399 = x_398; +else +{ +lean_object* x_677; lean_object* x_678; lean_object* x_679; +x_677 = lean_ctor_get(x_250, 0); +x_678 = lean_ctor_get(x_250, 1); +lean_inc(x_678); +lean_inc(x_677); +lean_dec(x_250); +x_679 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_679, 0, x_677); +lean_ctor_set(x_679, 1, x_678); +return x_679; +} +} +} +else +{ +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; +x_680 = lean_ctor_get(x_242, 0); +x_681 = lean_ctor_get(x_242, 1); +x_682 = lean_ctor_get(x_242, 2); +x_683 = lean_ctor_get(x_242, 3); +lean_inc(x_683); +lean_inc(x_682); +lean_inc(x_681); +lean_inc(x_680); +lean_dec(x_242); +x_684 = lean_nat_add(x_681, x_24); +x_685 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_685, 0, x_680); +lean_ctor_set(x_685, 1, x_684); +lean_ctor_set(x_685, 2, x_682); +lean_ctor_set(x_685, 3, x_683); +x_686 = lean_st_ref_set(x_11, x_685, x_243); +x_687 = lean_ctor_get(x_686, 1); +lean_inc(x_687); +lean_dec(x_686); +x_688 = lean_alloc_ctor(0, 6, 3); +lean_ctor_set(x_688, 0, x_28); +lean_ctor_set(x_688, 1, x_29); +lean_ctor_set(x_688, 2, x_30); +lean_ctor_set(x_688, 3, x_31); +lean_ctor_set(x_688, 4, x_681); +lean_ctor_set(x_688, 5, x_35); +lean_ctor_set_uint8(x_688, sizeof(void*)*6, x_32); +lean_ctor_set_uint8(x_688, sizeof(void*)*6 + 1, x_33); +lean_ctor_set_uint8(x_688, sizeof(void*)*6 + 2, x_34); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_689 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch(x_42, x_41, x_688, x_7, x_8, x_9, x_10, x_11, x_687); +if (lean_obj_tag(x_689) == 0) +{ +if (lean_obj_tag(x_236) == 0) +{ +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; +x_690 = lean_ctor_get(x_689, 0); +lean_inc(x_690); +x_691 = lean_ctor_get(x_689, 1); +lean_inc(x_691); +lean_dec(x_689); +x_692 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_691); +x_693 = lean_ctor_get(x_692, 0); +lean_inc(x_693); +x_694 = lean_ctor_get(x_692, 1); +lean_inc(x_694); +lean_dec(x_692); +x_695 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_694); +x_696 = lean_ctor_get(x_695, 0); +lean_inc(x_696); +x_697 = lean_ctor_get(x_695, 1); +lean_inc(x_697); +lean_dec(x_695); +x_698 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_699 = l_Lean_addMacroScope(x_696, x_698, x_693); +x_700 = l_Lean_instInhabitedSourceInfo___closed__1; +x_701 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_702 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_703 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_703, 0, x_700); +lean_ctor_set(x_703, 1, x_701); +lean_ctor_set(x_703, 2, x_699); +lean_ctor_set(x_703, 3, x_702); +x_704 = l_Array_empty___closed__1; +x_705 = lean_array_push(x_704, x_703); +x_706 = lean_array_push(x_704, x_4); +x_707 = l_Lean_nullKind___closed__2; +x_708 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_708, 0, x_707); +lean_ctor_set(x_708, 1, x_706); +x_709 = lean_array_push(x_705, x_708); +x_710 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_711 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_711, 0, x_710); +lean_ctor_set(x_711, 1, x_709); +x_712 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_713 = lean_box(0); +x_714 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3(x_239, x_712, x_700, x_704, x_707, x_13, x_237, x_710, x_690, x_38, x_711, x_713, x_6, x_7, x_8, x_9, x_10, x_11, x_697); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_237); +return x_714; +} +else +{ +lean_object* x_715; +x_715 = lean_ctor_get(x_236, 0); +lean_inc(x_715); +lean_dec(x_236); +switch (lean_obj_tag(x_715)) { +case 0: +{ +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; uint8_t x_739; +x_716 = lean_ctor_get(x_689, 0); +lean_inc(x_716); +x_717 = lean_ctor_get(x_689, 1); +lean_inc(x_717); +lean_dec(x_689); +x_718 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_717); +x_719 = lean_ctor_get(x_718, 0); +lean_inc(x_719); +x_720 = lean_ctor_get(x_718, 1); +lean_inc(x_720); +lean_dec(x_718); +x_721 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_720); +x_722 = lean_ctor_get(x_721, 0); +lean_inc(x_722); +x_723 = lean_ctor_get(x_721, 1); +lean_inc(x_723); +lean_dec(x_721); +x_724 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_725 = l_Lean_addMacroScope(x_722, x_724, x_719); +x_726 = l_Lean_instInhabitedSourceInfo___closed__1; +x_727 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_728 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_729 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_729, 0, x_726); +lean_ctor_set(x_729, 1, x_727); +lean_ctor_set(x_729, 2, x_725); +lean_ctor_set(x_729, 3, x_728); +x_730 = l_Array_empty___closed__1; +x_731 = lean_array_push(x_730, x_729); +x_732 = lean_array_push(x_730, x_4); +x_733 = l_Lean_nullKind___closed__2; +x_734 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_734, 0, x_733); +lean_ctor_set(x_734, 1, x_732); +x_735 = lean_array_push(x_731, x_734); +x_736 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_737 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_737, 0, x_736); +lean_ctor_set(x_737, 1, x_735); +x_738 = l_term_x5b___x2c_x5d___closed__6; +x_739 = lean_name_eq(x_715, x_738); +if (x_739 == 0) +{ +lean_object* x_740; lean_object* x_741; lean_object* x_742; +x_740 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_741 = lean_box(0); +x_742 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__4(x_239, x_740, x_726, x_730, x_733, x_13, x_237, x_736, x_716, x_38, x_737, x_741, x_6, x_7, x_8, x_9, x_10, x_11, x_723); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_237); +return x_742; +} +else +{ +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; +x_743 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_723); +x_744 = lean_ctor_get(x_743, 0); +lean_inc(x_744); +x_745 = lean_ctor_get(x_743, 1); +lean_inc(x_745); +lean_dec(x_743); +x_746 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_745); +x_747 = lean_ctor_get(x_746, 0); +lean_inc(x_747); +x_748 = lean_ctor_get(x_746, 1); +lean_inc(x_748); +lean_dec(x_746); +x_749 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; +x_750 = l_Lean_addMacroScope(x_747, x_749, x_744); +x_751 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; +x_752 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; +x_753 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_753, 0, x_726); +lean_ctor_set(x_753, 1, x_751); +lean_ctor_set(x_753, 2, x_750); +lean_ctor_set(x_753, 3, x_752); +x_754 = lean_array_push(x_730, x_753); +x_755 = lean_array_push(x_730, x_737); +x_756 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_756, 0, x_733); +lean_ctor_set(x_756, 1, x_755); +x_757 = lean_array_push(x_754, x_756); +x_758 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_758, 0, x_736); +lean_ctor_set(x_758, 1, x_757); +x_759 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_760 = lean_box(0); +x_761 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__4(x_239, x_759, x_726, x_730, x_733, x_13, x_237, x_736, x_716, x_38, x_758, x_760, x_6, x_7, x_8, x_9, x_10, x_11, x_748); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_237); +return x_761; +} +} +case 1: +{ +lean_object* x_762; +x_762 = lean_ctor_get(x_715, 0); +lean_inc(x_762); +switch (lean_obj_tag(x_762)) { +case 0: +{ +lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; uint8_t x_767; +x_763 = lean_ctor_get(x_689, 0); +lean_inc(x_763); +x_764 = lean_ctor_get(x_689, 1); +lean_inc(x_764); +lean_dec(x_689); +x_765 = lean_ctor_get(x_715, 1); +lean_inc(x_765); +x_766 = l_myMacro____x40_Init_Notation___hyg_11399____closed__1; +x_767 = lean_string_dec_eq(x_765, x_766); +lean_dec(x_765); +if (x_767 == 0) +{ +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; uint8_t x_789; +x_768 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_764); +x_769 = lean_ctor_get(x_768, 0); +lean_inc(x_769); +x_770 = lean_ctor_get(x_768, 1); +lean_inc(x_770); +lean_dec(x_768); +x_771 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_770); +x_772 = lean_ctor_get(x_771, 0); +lean_inc(x_772); +x_773 = lean_ctor_get(x_771, 1); +lean_inc(x_773); +lean_dec(x_771); +x_774 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_775 = l_Lean_addMacroScope(x_772, x_774, x_769); +x_776 = l_Lean_instInhabitedSourceInfo___closed__1; +x_777 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_778 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_779 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_779, 0, x_776); +lean_ctor_set(x_779, 1, x_777); +lean_ctor_set(x_779, 2, x_775); +lean_ctor_set(x_779, 3, x_778); +x_780 = l_Array_empty___closed__1; +x_781 = lean_array_push(x_780, x_779); +x_782 = lean_array_push(x_780, x_4); +x_783 = l_Lean_nullKind___closed__2; +x_784 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_784, 0, x_783); +lean_ctor_set(x_784, 1, x_782); +x_785 = lean_array_push(x_781, x_784); +x_786 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_787 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_787, 0, x_786); +lean_ctor_set(x_787, 1, x_785); +x_788 = l_term_x5b___x2c_x5d___closed__6; +x_789 = lean_name_eq(x_715, x_788); +lean_dec(x_715); +if (x_789 == 0) +{ +lean_object* x_790; lean_object* x_791; lean_object* x_792; +x_790 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_791 = lean_box(0); +x_792 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5(x_239, x_790, x_776, x_780, x_783, x_13, x_237, x_786, x_763, x_38, x_787, x_791, x_6, x_7, x_8, x_9, x_10, x_11, x_773); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_237); +return x_792; +} +else +{ +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; +x_793 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_773); +x_794 = lean_ctor_get(x_793, 0); +lean_inc(x_794); +x_795 = lean_ctor_get(x_793, 1); +lean_inc(x_795); +lean_dec(x_793); +x_796 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_795); +x_797 = lean_ctor_get(x_796, 0); +lean_inc(x_797); +x_798 = lean_ctor_get(x_796, 1); +lean_inc(x_798); +lean_dec(x_796); +x_799 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; +x_800 = l_Lean_addMacroScope(x_797, x_799, x_794); +x_801 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; +x_802 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; +x_803 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_803, 0, x_776); +lean_ctor_set(x_803, 1, x_801); +lean_ctor_set(x_803, 2, x_800); +lean_ctor_set(x_803, 3, x_802); +x_804 = lean_array_push(x_780, x_803); +x_805 = lean_array_push(x_780, x_787); +x_806 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_806, 0, x_783); +lean_ctor_set(x_806, 1, x_805); +x_807 = lean_array_push(x_804, x_806); +x_808 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_808, 0, x_786); +lean_ctor_set(x_808, 1, x_807); +x_809 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_810 = lean_box(0); +x_811 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5(x_239, x_809, x_776, x_780, x_783, x_13, x_237, x_786, x_763, x_38, x_808, x_810, x_6, x_7, x_8, x_9, x_10, x_11, x_798); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_237); +return x_811; +} +} +else +{ +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_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_dec(x_715); +lean_inc(x_38); +lean_inc(x_239); +x_812 = l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11(x_239, x_38, x_6, x_7, x_8, x_9, x_10, x_11, x_764); +x_813 = lean_ctor_get(x_812, 0); +lean_inc(x_813); +x_814 = lean_ctor_get(x_812, 1); +lean_inc(x_814); +lean_dec(x_812); +x_815 = l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12(x_239, x_38, x_6, x_7, x_8, x_9, x_10, x_11, x_814); +x_816 = lean_ctor_get(x_815, 0); +lean_inc(x_816); +x_817 = lean_ctor_get(x_815, 1); +lean_inc(x_817); +lean_dec(x_815); +x_818 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_817); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_819 = lean_ctor_get(x_818, 0); +lean_inc(x_819); +x_820 = lean_ctor_get(x_818, 1); +lean_inc(x_820); +lean_dec(x_818); +x_821 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_820); +lean_dec(x_11); +x_822 = lean_ctor_get(x_821, 0); +lean_inc(x_822); +x_823 = lean_ctor_get(x_821, 1); +lean_inc(x_823); +if (lean_is_exclusive(x_821)) { + lean_ctor_release(x_821, 0); + lean_ctor_release(x_821, 1); + x_824 = x_821; +} else { + lean_dec_ref(x_821); + x_824 = lean_box(0); +} +x_825 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +lean_inc(x_819); +lean_inc(x_822); +x_826 = l_Lean_addMacroScope(x_822, x_825, x_819); +x_827 = l_Lean_instInhabitedSourceInfo___closed__1; +x_828 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_829 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_829, 0, x_827); +lean_ctor_set(x_829, 1, x_828); +lean_ctor_set(x_829, 2, x_826); +lean_ctor_set(x_829, 3, x_13); +x_830 = l_Array_empty___closed__1; +lean_inc(x_829); +x_831 = lean_array_push(x_830, x_829); +x_832 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_833 = lean_array_push(x_831, x_832); +x_834 = lean_array_push(x_833, x_832); +x_835 = l_myMacro____x40_Init_Notation___hyg_12470____closed__14; +x_836 = lean_array_push(x_834, x_835); +x_837 = lean_array_push(x_836, x_4); +x_838 = l_myMacro____x40_Init_Notation___hyg_12470____closed__8; +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_830, x_839); +x_841 = l_myMacro____x40_Init_Notation___hyg_12470____closed__6; +x_842 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_842, 0, x_841); +lean_ctor_set(x_842, 1, x_840); +x_843 = l_myMacro____x40_Init_Notation___hyg_12470____closed__4; +x_844 = lean_array_push(x_843, x_842); +x_845 = l_myMacro____x40_Init_Notation___hyg_12470____closed__18; +x_846 = lean_array_push(x_844, x_845); +x_847 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__35; +x_848 = l_Lean_addMacroScope(x_822, x_847, x_819); +x_849 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__33; +x_850 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_850, 0, x_827); +lean_ctor_set(x_850, 1, x_849); +lean_ctor_set(x_850, 2, x_848); +lean_ctor_set(x_850, 3, x_13); +x_851 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__30; +x_852 = lean_array_push(x_851, x_850); +x_853 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__37; +x_854 = lean_array_push(x_852, x_853); +x_855 = lean_array_push(x_854, x_816); +x_856 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__39; +x_857 = lean_array_push(x_855, x_856); +x_858 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; +x_859 = lean_array_push(x_858, x_829); +x_860 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; +x_861 = lean_array_push(x_859, x_860); +x_862 = l_Lean_nullKind; +x_863 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_863, 0, x_862); +lean_ctor_set(x_863, 1, x_237); +x_864 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__49; +x_865 = lean_array_push(x_864, x_863); +x_866 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_867 = lean_array_push(x_865, x_866); +x_868 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_869 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_869, 0, x_868); +lean_ctor_set(x_869, 1, x_867); +x_870 = lean_array_push(x_830, x_869); +x_871 = l_Lean_nullKind___closed__2; +x_872 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_872, 0, x_871); +lean_ctor_set(x_872, 1, x_870); +x_873 = lean_array_push(x_830, x_872); +x_874 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_875 = lean_array_push(x_873, x_874); +x_876 = lean_array_push(x_875, x_813); +x_877 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; +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_830, x_878); +x_880 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44; +x_881 = lean_array_push(x_879, x_880); +x_882 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__50; +x_883 = lean_array_push(x_882, x_763); +x_884 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_884, 0, x_877); +lean_ctor_set(x_884, 1, x_883); +x_885 = lean_array_push(x_881, x_884); +x_886 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_886, 0, x_871); +lean_ctor_set(x_886, 1, x_885); +x_887 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__47; +x_888 = lean_array_push(x_887, x_886); +x_889 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; +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_861, x_890); +x_892 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__40; +x_893 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_893, 0, x_892); +lean_ctor_set(x_893, 1, x_891); +x_894 = lean_array_push(x_857, x_893); +x_895 = l_termIf__Then__Else_____closed__2; +x_896 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_896, 0, x_895); +lean_ctor_set(x_896, 1, x_894); +x_897 = lean_array_push(x_846, x_896); +x_898 = l_myMacro____x40_Init_Notation___hyg_12470____closed__2; +x_899 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_899, 0, x_898); +lean_ctor_set(x_899, 1, x_897); +if (lean_is_scalar(x_824)) { + x_900 = lean_alloc_ctor(0, 2, 0); +} else { + x_900 = x_824; +} +lean_ctor_set(x_900, 0, x_899); +lean_ctor_set(x_900, 1, x_823); +return x_900; +} +} +case 1: +{ +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; uint8_t x_924; +lean_dec(x_762); +x_901 = lean_ctor_get(x_689, 0); +lean_inc(x_901); +x_902 = lean_ctor_get(x_689, 1); +lean_inc(x_902); +lean_dec(x_689); +x_903 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_902); +x_904 = lean_ctor_get(x_903, 0); +lean_inc(x_904); +x_905 = lean_ctor_get(x_903, 1); +lean_inc(x_905); +lean_dec(x_903); +x_906 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_905); +x_907 = lean_ctor_get(x_906, 0); +lean_inc(x_907); +x_908 = lean_ctor_get(x_906, 1); +lean_inc(x_908); +lean_dec(x_906); +x_909 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_910 = l_Lean_addMacroScope(x_907, x_909, x_904); +x_911 = l_Lean_instInhabitedSourceInfo___closed__1; +x_912 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_913 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_914 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_914, 0, x_911); +lean_ctor_set(x_914, 1, x_912); +lean_ctor_set(x_914, 2, x_910); +lean_ctor_set(x_914, 3, x_913); +x_915 = l_Array_empty___closed__1; +x_916 = lean_array_push(x_915, x_914); +x_917 = lean_array_push(x_915, x_4); +x_918 = l_Lean_nullKind___closed__2; +x_919 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_919, 0, x_918); +lean_ctor_set(x_919, 1, x_917); +x_920 = lean_array_push(x_916, x_919); +x_921 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_922 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_922, 0, x_921); +lean_ctor_set(x_922, 1, x_920); +x_923 = l_term_x5b___x2c_x5d___closed__6; +x_924 = lean_name_eq(x_715, x_923); +lean_dec(x_715); +if (x_924 == 0) +{ +lean_object* x_925; lean_object* x_926; lean_object* x_927; +x_925 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_926 = lean_box(0); +x_927 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__6(x_239, x_925, x_911, x_915, x_918, x_13, x_237, x_921, x_901, x_38, x_922, x_926, x_6, x_7, x_8, x_9, x_10, x_11, x_908); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_237); +return x_927; +} +else +{ +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; +x_928 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_908); +x_929 = lean_ctor_get(x_928, 0); +lean_inc(x_929); +x_930 = lean_ctor_get(x_928, 1); +lean_inc(x_930); +lean_dec(x_928); +x_931 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_930); +x_932 = lean_ctor_get(x_931, 0); +lean_inc(x_932); +x_933 = lean_ctor_get(x_931, 1); +lean_inc(x_933); +lean_dec(x_931); +x_934 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; +x_935 = l_Lean_addMacroScope(x_932, x_934, x_929); +x_936 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; +x_937 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; +x_938 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_938, 0, x_911); +lean_ctor_set(x_938, 1, x_936); +lean_ctor_set(x_938, 2, x_935); +lean_ctor_set(x_938, 3, x_937); +x_939 = lean_array_push(x_915, x_938); +x_940 = lean_array_push(x_915, x_922); +x_941 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_941, 0, x_918); +lean_ctor_set(x_941, 1, x_940); +x_942 = lean_array_push(x_939, x_941); +x_943 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_943, 0, x_921); +lean_ctor_set(x_943, 1, x_942); +x_944 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_945 = lean_box(0); +x_946 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__6(x_239, x_944, x_911, x_915, x_918, x_13, x_237, x_921, x_901, x_38, x_943, x_945, x_6, x_7, x_8, x_9, x_10, x_11, x_933); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_237); +return x_946; +} +} +default: +{ +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; uint8_t x_970; +lean_dec(x_762); +x_947 = lean_ctor_get(x_689, 0); +lean_inc(x_947); +x_948 = lean_ctor_get(x_689, 1); +lean_inc(x_948); +lean_dec(x_689); +x_949 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_948); +x_950 = lean_ctor_get(x_949, 0); +lean_inc(x_950); +x_951 = lean_ctor_get(x_949, 1); +lean_inc(x_951); +lean_dec(x_949); +x_952 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_951); +x_953 = lean_ctor_get(x_952, 0); +lean_inc(x_953); +x_954 = lean_ctor_get(x_952, 1); +lean_inc(x_954); +lean_dec(x_952); +x_955 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_956 = l_Lean_addMacroScope(x_953, x_955, x_950); +x_957 = l_Lean_instInhabitedSourceInfo___closed__1; +x_958 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_959 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_960 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_960, 0, x_957); +lean_ctor_set(x_960, 1, x_958); +lean_ctor_set(x_960, 2, x_956); +lean_ctor_set(x_960, 3, x_959); +x_961 = l_Array_empty___closed__1; +x_962 = lean_array_push(x_961, x_960); +x_963 = lean_array_push(x_961, x_4); +x_964 = l_Lean_nullKind___closed__2; +x_965 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_965, 0, x_964); +lean_ctor_set(x_965, 1, x_963); +x_966 = lean_array_push(x_962, x_965); +x_967 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_968 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_968, 0, x_967); +lean_ctor_set(x_968, 1, x_966); +x_969 = l_term_x5b___x2c_x5d___closed__6; +x_970 = lean_name_eq(x_715, x_969); +lean_dec(x_715); +if (x_970 == 0) +{ +lean_object* x_971; lean_object* x_972; lean_object* x_973; +x_971 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_972 = lean_box(0); +x_973 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__7(x_239, x_971, x_957, x_961, x_964, x_13, x_237, x_967, x_947, x_38, x_968, x_972, x_6, x_7, x_8, x_9, x_10, x_11, x_954); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_237); +return x_973; +} +else +{ +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; +x_974 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_954); +x_975 = lean_ctor_get(x_974, 0); +lean_inc(x_975); +x_976 = lean_ctor_get(x_974, 1); +lean_inc(x_976); +lean_dec(x_974); +x_977 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_976); +x_978 = lean_ctor_get(x_977, 0); +lean_inc(x_978); +x_979 = lean_ctor_get(x_977, 1); +lean_inc(x_979); +lean_dec(x_977); +x_980 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; +x_981 = l_Lean_addMacroScope(x_978, x_980, x_975); +x_982 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; +x_983 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; +x_984 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_984, 0, x_957); +lean_ctor_set(x_984, 1, x_982); +lean_ctor_set(x_984, 2, x_981); +lean_ctor_set(x_984, 3, x_983); +x_985 = lean_array_push(x_961, x_984); +x_986 = lean_array_push(x_961, x_968); +x_987 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_987, 0, x_964); +lean_ctor_set(x_987, 1, x_986); +x_988 = lean_array_push(x_985, x_987); +x_989 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_989, 0, x_967); +lean_ctor_set(x_989, 1, x_988); +x_990 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_991 = lean_box(0); +x_992 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__7(x_239, x_990, x_957, x_961, x_964, x_13, x_237, x_967, x_947, x_38, x_989, x_991, x_6, x_7, x_8, x_9, x_10, x_11, x_979); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_237); +return x_992; +} +} +} +} +default: +{ +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; uint8_t x_1016; +x_993 = lean_ctor_get(x_689, 0); +lean_inc(x_993); +x_994 = lean_ctor_get(x_689, 1); +lean_inc(x_994); +lean_dec(x_689); +x_995 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_994); +x_996 = lean_ctor_get(x_995, 0); +lean_inc(x_996); +x_997 = lean_ctor_get(x_995, 1); +lean_inc(x_997); +lean_dec(x_995); +x_998 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_997); +x_999 = lean_ctor_get(x_998, 0); +lean_inc(x_999); +x_1000 = lean_ctor_get(x_998, 1); +lean_inc(x_1000); +lean_dec(x_998); +x_1001 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_1002 = l_Lean_addMacroScope(x_999, x_1001, x_996); +x_1003 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1004 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_1005 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_1006 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1006, 0, x_1003); +lean_ctor_set(x_1006, 1, x_1004); +lean_ctor_set(x_1006, 2, x_1002); +lean_ctor_set(x_1006, 3, x_1005); +x_1007 = l_Array_empty___closed__1; +x_1008 = lean_array_push(x_1007, x_1006); +x_1009 = lean_array_push(x_1007, x_4); +x_1010 = l_Lean_nullKind___closed__2; +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 = lean_array_push(x_1008, x_1011); +x_1013 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1014 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1014, 0, x_1013); +lean_ctor_set(x_1014, 1, x_1012); +x_1015 = l_term_x5b___x2c_x5d___closed__6; +x_1016 = lean_name_eq(x_715, x_1015); +lean_dec(x_715); +if (x_1016 == 0) +{ +lean_object* x_1017; lean_object* x_1018; lean_object* x_1019; +x_1017 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_1018 = lean_box(0); +x_1019 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__8(x_239, x_1017, x_1003, x_1007, x_1010, x_13, x_237, x_1013, x_993, x_38, x_1014, x_1018, x_6, x_7, x_8, x_9, x_10, x_11, x_1000); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_237); +return x_1019; +} +else +{ +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; +x_1020 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1000); +x_1021 = lean_ctor_get(x_1020, 0); +lean_inc(x_1021); +x_1022 = lean_ctor_get(x_1020, 1); +lean_inc(x_1022); +lean_dec(x_1020); +x_1023 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1022); +x_1024 = lean_ctor_get(x_1023, 0); +lean_inc(x_1024); +x_1025 = lean_ctor_get(x_1023, 1); +lean_inc(x_1025); +lean_dec(x_1023); +x_1026 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; +x_1027 = l_Lean_addMacroScope(x_1024, x_1026, x_1021); +x_1028 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; +x_1029 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; +x_1030 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1030, 0, x_1003); +lean_ctor_set(x_1030, 1, x_1028); +lean_ctor_set(x_1030, 2, x_1027); +lean_ctor_set(x_1030, 3, x_1029); +x_1031 = lean_array_push(x_1007, x_1030); +x_1032 = lean_array_push(x_1007, x_1014); +x_1033 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1033, 0, x_1010); +lean_ctor_set(x_1033, 1, x_1032); +x_1034 = lean_array_push(x_1031, x_1033); +x_1035 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1035, 0, x_1013); +lean_ctor_set(x_1035, 1, x_1034); +x_1036 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_1037 = lean_box(0); +x_1038 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__8(x_239, x_1036, x_1003, x_1007, x_1010, x_13, x_237, x_1013, x_993, x_38, x_1035, x_1037, x_6, x_7, x_8, x_9, x_10, x_11, x_1025); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_237); +return x_1038; } -lean_ctor_set(x_399, 0, x_396); -lean_ctor_set(x_399, 1, x_397); -return x_399; } } } } else { -uint8_t x_400; +lean_object* x_1039; lean_object* x_1040; lean_object* x_1041; lean_object* x_1042; +lean_dec(x_239); +lean_dec(x_237); +lean_dec(x_236); +lean_dec(x_38); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +x_1039 = lean_ctor_get(x_689, 0); +lean_inc(x_1039); +x_1040 = lean_ctor_get(x_689, 1); +lean_inc(x_1040); +if (lean_is_exclusive(x_689)) { + lean_ctor_release(x_689, 0); + lean_ctor_release(x_689, 1); + x_1041 = x_689; +} else { + lean_dec_ref(x_689); + x_1041 = lean_box(0); +} +if (lean_is_scalar(x_1041)) { + x_1042 = lean_alloc_ctor(1, 2, 0); +} else { + x_1042 = x_1041; +} +lean_ctor_set(x_1042, 0, x_1039); +lean_ctor_set(x_1042, 1, x_1040); +return x_1042; +} +} +} +else +{ +uint8_t x_1043; +lean_dec(x_237); +lean_dec(x_236); +lean_dec(x_42); +lean_dec(x_41); +lean_dec(x_38); +lean_dec(x_35); +lean_dec(x_31); +lean_dec(x_30); +lean_dec(x_29); +lean_dec(x_28); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +x_1043 = !lean_is_exclusive(x_238); +if (x_1043 == 0) +{ +return x_238; +} +else +{ +lean_object* x_1044; lean_object* x_1045; lean_object* x_1046; +x_1044 = lean_ctor_get(x_238, 0); +x_1045 = lean_ctor_get(x_238, 1); +lean_inc(x_1045); +lean_inc(x_1044); +lean_dec(x_238); +x_1046 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1046, 0, x_1044); +lean_ctor_set(x_1046, 1, x_1045); +return x_1046; +} +} +} +} +else +{ +uint8_t x_1047; lean_dec(x_35); lean_dec(x_31); lean_dec(x_30); @@ -13955,516 +22487,1295 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_400 = !lean_is_exclusive(x_37); -if (x_400 == 0) +x_1047 = !lean_is_exclusive(x_37); +if (x_1047 == 0) { return x_37; } else { -lean_object* x_401; lean_object* x_402; lean_object* x_403; -x_401 = lean_ctor_get(x_37, 0); -x_402 = lean_ctor_get(x_37, 1); -lean_inc(x_402); -lean_inc(x_401); +lean_object* x_1048; lean_object* x_1049; lean_object* x_1050; +x_1048 = lean_ctor_get(x_37, 0); +x_1049 = lean_ctor_get(x_37, 1); +lean_inc(x_1049); +lean_inc(x_1048); lean_dec(x_37); -x_403 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_403, 0, x_401); -lean_ctor_set(x_403, 1, x_402); -return x_403; +x_1050 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1050, 0, x_1048); +lean_ctor_set(x_1050, 1, x_1049); +return x_1050; } } } else { -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; uint8_t x_417; uint8_t x_418; uint8_t x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; -x_404 = lean_ctor_get(x_20, 0); -x_405 = lean_ctor_get(x_20, 1); -x_406 = lean_ctor_get(x_20, 2); -x_407 = lean_ctor_get(x_20, 3); -lean_inc(x_407); -lean_inc(x_406); -lean_inc(x_405); -lean_inc(x_404); +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; uint8_t x_1064; uint8_t x_1065; uint8_t x_1066; lean_object* x_1067; lean_object* x_1068; lean_object* x_1069; +x_1051 = lean_ctor_get(x_20, 0); +x_1052 = lean_ctor_get(x_20, 1); +x_1053 = lean_ctor_get(x_20, 2); +x_1054 = lean_ctor_get(x_20, 3); +lean_inc(x_1054); +lean_inc(x_1053); +lean_inc(x_1052); +lean_inc(x_1051); lean_dec(x_20); -x_408 = lean_unsigned_to_nat(1u); -x_409 = lean_nat_add(x_405, x_408); -x_410 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_410, 0, x_404); -lean_ctor_set(x_410, 1, x_409); -lean_ctor_set(x_410, 2, x_406); -lean_ctor_set(x_410, 3, x_407); -x_411 = lean_st_ref_set(x_11, x_410, x_21); -x_412 = lean_ctor_get(x_411, 1); -lean_inc(x_412); -lean_dec(x_411); -x_413 = lean_ctor_get(x_6, 0); -lean_inc(x_413); -x_414 = lean_ctor_get(x_6, 1); -lean_inc(x_414); -x_415 = lean_ctor_get(x_6, 2); -lean_inc(x_415); -x_416 = lean_ctor_get(x_6, 3); -lean_inc(x_416); -x_417 = lean_ctor_get_uint8(x_6, sizeof(void*)*6); -x_418 = lean_ctor_get_uint8(x_6, sizeof(void*)*6 + 1); -x_419 = lean_ctor_get_uint8(x_6, sizeof(void*)*6 + 2); -x_420 = lean_ctor_get(x_6, 5); -lean_inc(x_420); -lean_inc(x_420); -lean_inc(x_416); -lean_inc(x_415); -lean_inc(x_414); -lean_inc(x_413); -x_421 = lean_alloc_ctor(0, 6, 3); -lean_ctor_set(x_421, 0, x_413); -lean_ctor_set(x_421, 1, x_414); -lean_ctor_set(x_421, 2, x_415); -lean_ctor_set(x_421, 3, x_416); -lean_ctor_set(x_421, 4, x_405); -lean_ctor_set(x_421, 5, x_420); -lean_ctor_set_uint8(x_421, sizeof(void*)*6, x_417); -lean_ctor_set_uint8(x_421, sizeof(void*)*6 + 1, x_418); -lean_ctor_set_uint8(x_421, sizeof(void*)*6 + 2, x_419); +x_1055 = lean_unsigned_to_nat(1u); +x_1056 = lean_nat_add(x_1052, x_1055); +x_1057 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_1057, 0, x_1051); +lean_ctor_set(x_1057, 1, x_1056); +lean_ctor_set(x_1057, 2, x_1053); +lean_ctor_set(x_1057, 3, x_1054); +x_1058 = lean_st_ref_set(x_11, x_1057, x_21); +x_1059 = lean_ctor_get(x_1058, 1); +lean_inc(x_1059); +lean_dec(x_1058); +x_1060 = lean_ctor_get(x_6, 0); +lean_inc(x_1060); +x_1061 = lean_ctor_get(x_6, 1); +lean_inc(x_1061); +x_1062 = lean_ctor_get(x_6, 2); +lean_inc(x_1062); +x_1063 = lean_ctor_get(x_6, 3); +lean_inc(x_1063); +x_1064 = lean_ctor_get_uint8(x_6, sizeof(void*)*6); +x_1065 = lean_ctor_get_uint8(x_6, sizeof(void*)*6 + 1); +x_1066 = lean_ctor_get_uint8(x_6, sizeof(void*)*6 + 2); +x_1067 = lean_ctor_get(x_6, 5); +lean_inc(x_1067); +lean_inc(x_1067); +lean_inc(x_1063); +lean_inc(x_1062); +lean_inc(x_1061); +lean_inc(x_1060); +x_1068 = lean_alloc_ctor(0, 6, 3); +lean_ctor_set(x_1068, 0, x_1060); +lean_ctor_set(x_1068, 1, x_1061); +lean_ctor_set(x_1068, 2, x_1062); +lean_ctor_set(x_1068, 3, x_1063); +lean_ctor_set(x_1068, 4, x_1052); +lean_ctor_set(x_1068, 5, x_1067); +lean_ctor_set_uint8(x_1068, sizeof(void*)*6, x_1064); +lean_ctor_set_uint8(x_1068, sizeof(void*)*6 + 1, x_1065); +lean_ctor_set_uint8(x_1068, sizeof(void*)*6 + 2, x_1066); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_422 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch(x_18, x_16, x_421, x_7, x_8, x_9, x_10, x_11, x_412); -if (lean_obj_tag(x_422) == 0) +x_1069 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch(x_18, x_16, x_1068, x_7, x_8, x_9, x_10, x_11, x_1059); +if (lean_obj_tag(x_1069) == 0) { -lean_object* x_423; -x_423 = lean_ctor_get(x_1, 0); -lean_inc(x_423); -if (lean_obj_tag(x_423) == 0) -{ -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_dec(x_420); -lean_dec(x_416); -lean_dec(x_415); -lean_dec(x_414); -lean_dec(x_413); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_424 = lean_ctor_get(x_422, 0); -lean_inc(x_424); -x_425 = lean_ctor_get(x_422, 1); -lean_inc(x_425); -lean_dec(x_422); -x_426 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_425); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -x_427 = lean_ctor_get(x_426, 0); -lean_inc(x_427); -x_428 = lean_ctor_get(x_426, 1); -lean_inc(x_428); -lean_dec(x_426); -x_429 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_428); -lean_dec(x_11); -x_430 = lean_ctor_get(x_429, 0); -lean_inc(x_430); -x_431 = lean_ctor_get(x_429, 1); -lean_inc(x_431); -if (lean_is_exclusive(x_429)) { - lean_ctor_release(x_429, 0); - lean_ctor_release(x_429, 1); - x_432 = x_429; -} else { - lean_dec_ref(x_429); - x_432 = lean_box(0); -} -x_433 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; -x_434 = l_Lean_addMacroScope(x_430, x_433, x_427); -x_435 = l_Lean_instInhabitedSourceInfo___closed__1; -x_436 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3; -x_437 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_437, 0, x_435); -lean_ctor_set(x_437, 1, x_436); -lean_ctor_set(x_437, 2, x_434); -lean_ctor_set(x_437, 3, x_13); -x_438 = l_Array_empty___closed__1; -x_439 = lean_array_push(x_438, x_437); -x_440 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_441 = lean_array_push(x_439, x_440); -x_442 = lean_array_push(x_441, x_440); -x_443 = l_myMacro____x40_Init_Notation___hyg_12470____closed__14; -x_444 = lean_array_push(x_442, x_443); -x_445 = lean_array_push(x_444, x_4); -x_446 = l_myMacro____x40_Init_Notation___hyg_12470____closed__8; -x_447 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_447, 0, x_446); -lean_ctor_set(x_447, 1, x_445); -x_448 = lean_array_push(x_438, x_447); -x_449 = l_myMacro____x40_Init_Notation___hyg_12470____closed__6; -x_450 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_450, 0, x_449); -lean_ctor_set(x_450, 1, x_448); -x_451 = l_myMacro____x40_Init_Notation___hyg_12470____closed__4; -x_452 = lean_array_push(x_451, x_450); -x_453 = l_myMacro____x40_Init_Notation___hyg_12470____closed__18; -x_454 = lean_array_push(x_452, x_453); -x_455 = lean_array_push(x_454, x_424); -x_456 = l_myMacro____x40_Init_Notation___hyg_12470____closed__2; -x_457 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_457, 0, x_456); -lean_ctor_set(x_457, 1, x_455); -if (lean_is_scalar(x_432)) { - x_458 = lean_alloc_ctor(0, 2, 0); -} else { - x_458 = x_432; -} -lean_ctor_set(x_458, 0, x_457); -lean_ctor_set(x_458, 1, x_431); -return x_458; -} -else -{ -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; -x_459 = lean_ctor_get(x_422, 0); -lean_inc(x_459); -x_460 = lean_ctor_get(x_422, 1); -lean_inc(x_460); -lean_dec(x_422); -x_461 = lean_ctor_get(x_423, 0); -lean_inc(x_461); -lean_dec(x_423); -x_462 = l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__6(x_1, x_2, x_13); -x_463 = l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7(x_462); +lean_object* x_1070; lean_object* x_1071; lean_object* x_1072; lean_object* x_1073; lean_object* x_1074; +x_1070 = lean_ctor_get(x_1069, 0); +lean_inc(x_1070); +x_1071 = lean_ctor_get(x_1069, 1); +lean_inc(x_1071); +lean_dec(x_1069); +x_1072 = l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__6(x_1, x_2, x_13); +x_1073 = l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7(x_1072); lean_inc(x_4); -x_464 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_464, 0, x_4); -lean_ctor_set(x_464, 1, x_3); -x_465 = lean_st_ref_take(x_11, x_460); -x_466 = lean_ctor_get(x_465, 0); -lean_inc(x_466); -x_467 = lean_ctor_get(x_465, 1); -lean_inc(x_467); -lean_dec(x_465); -x_468 = lean_ctor_get(x_466, 0); -lean_inc(x_468); -x_469 = lean_ctor_get(x_466, 1); -lean_inc(x_469); -x_470 = lean_ctor_get(x_466, 2); -lean_inc(x_470); -x_471 = lean_ctor_get(x_466, 3); -lean_inc(x_471); -if (lean_is_exclusive(x_466)) { - lean_ctor_release(x_466, 0); - lean_ctor_release(x_466, 1); - lean_ctor_release(x_466, 2); - lean_ctor_release(x_466, 3); - x_472 = x_466; +x_1074 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1074, 0, x_4); +lean_ctor_set(x_1074, 1, x_3); +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_1075; lean_object* x_1076; +lean_dec(x_1067); +lean_dec(x_1063); +lean_dec(x_1062); +lean_dec(x_1061); +lean_dec(x_1060); +x_1075 = lean_ctor_get(x_1, 0); +lean_inc(x_1075); +lean_dec(x_1); +x_1076 = lean_ctor_get(x_1075, 0); +lean_inc(x_1076); +if (lean_obj_tag(x_1076) == 0) +{ +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_dec(x_1075); +lean_dec(x_1074); +lean_dec(x_1073); +x_1077 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1071); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_1078 = lean_ctor_get(x_1077, 0); +lean_inc(x_1078); +x_1079 = lean_ctor_get(x_1077, 1); +lean_inc(x_1079); +lean_dec(x_1077); +x_1080 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1079); +lean_dec(x_11); +x_1081 = lean_ctor_get(x_1080, 0); +lean_inc(x_1081); +x_1082 = lean_ctor_get(x_1080, 1); +lean_inc(x_1082); +if (lean_is_exclusive(x_1080)) { + lean_ctor_release(x_1080, 0); + lean_ctor_release(x_1080, 1); + x_1083 = x_1080; } else { - lean_dec_ref(x_466); - x_472 = lean_box(0); + lean_dec_ref(x_1080); + x_1083 = lean_box(0); } -x_473 = lean_nat_add(x_469, x_408); -if (lean_is_scalar(x_472)) { - x_474 = lean_alloc_ctor(0, 4, 0); +x_1084 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_1085 = l_Lean_addMacroScope(x_1081, x_1084, x_1078); +x_1086 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1087 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_1088 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1088, 0, x_1086); +lean_ctor_set(x_1088, 1, x_1087); +lean_ctor_set(x_1088, 2, x_1085); +lean_ctor_set(x_1088, 3, x_13); +x_1089 = l_Array_empty___closed__1; +x_1090 = lean_array_push(x_1089, x_1088); +x_1091 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_1092 = lean_array_push(x_1090, x_1091); +x_1093 = lean_array_push(x_1092, x_1091); +x_1094 = l_myMacro____x40_Init_Notation___hyg_12470____closed__14; +x_1095 = lean_array_push(x_1093, x_1094); +x_1096 = lean_array_push(x_1095, x_4); +x_1097 = l_myMacro____x40_Init_Notation___hyg_12470____closed__8; +x_1098 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1098, 0, x_1097); +lean_ctor_set(x_1098, 1, x_1096); +x_1099 = lean_array_push(x_1089, x_1098); +x_1100 = l_myMacro____x40_Init_Notation___hyg_12470____closed__6; +x_1101 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1101, 0, x_1100); +lean_ctor_set(x_1101, 1, x_1099); +x_1102 = l_myMacro____x40_Init_Notation___hyg_12470____closed__4; +x_1103 = lean_array_push(x_1102, x_1101); +x_1104 = l_myMacro____x40_Init_Notation___hyg_12470____closed__18; +x_1105 = lean_array_push(x_1103, x_1104); +x_1106 = lean_array_push(x_1105, x_1070); +x_1107 = l_myMacro____x40_Init_Notation___hyg_12470____closed__2; +x_1108 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1108, 0, x_1107); +lean_ctor_set(x_1108, 1, x_1106); +if (lean_is_scalar(x_1083)) { + x_1109 = lean_alloc_ctor(0, 2, 0); } else { - x_474 = x_472; + x_1109 = x_1083; } -lean_ctor_set(x_474, 0, x_468); -lean_ctor_set(x_474, 1, x_473); -lean_ctor_set(x_474, 2, x_470); -lean_ctor_set(x_474, 3, x_471); -x_475 = lean_st_ref_set(x_11, x_474, x_467); -x_476 = lean_ctor_get(x_475, 1); -lean_inc(x_476); -lean_dec(x_475); -x_477 = lean_alloc_ctor(0, 6, 3); -lean_ctor_set(x_477, 0, x_413); -lean_ctor_set(x_477, 1, x_414); -lean_ctor_set(x_477, 2, x_415); -lean_ctor_set(x_477, 3, x_416); -lean_ctor_set(x_477, 4, x_469); -lean_ctor_set(x_477, 5, x_420); -lean_ctor_set_uint8(x_477, sizeof(void*)*6, x_417); -lean_ctor_set_uint8(x_477, sizeof(void*)*6 + 1, x_418); -lean_ctor_set_uint8(x_477, sizeof(void*)*6 + 2, x_419); +lean_ctor_set(x_1109, 0, x_1108); +lean_ctor_set(x_1109, 1, x_1082); +return x_1109; +} +else +{ +lean_object* x_1110; +x_1110 = lean_ctor_get(x_1075, 1); +lean_inc(x_1110); +lean_dec(x_1075); +if (lean_obj_tag(x_1110) == 0) +{ +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; +x_1111 = lean_ctor_get(x_1076, 0); +lean_inc(x_1111); +lean_dec(x_1076); +x_1112 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1071); +x_1113 = lean_ctor_get(x_1112, 0); +lean_inc(x_1113); +x_1114 = lean_ctor_get(x_1112, 1); +lean_inc(x_1114); +lean_dec(x_1112); +x_1115 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1114); +x_1116 = lean_ctor_get(x_1115, 0); +lean_inc(x_1116); +x_1117 = lean_ctor_get(x_1115, 1); +lean_inc(x_1117); +lean_dec(x_1115); +x_1118 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__5; +lean_inc(x_1113); +lean_inc(x_1116); +x_1119 = l_Lean_addMacroScope(x_1116, x_1118, x_1113); +x_1120 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1121 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__3; +x_1122 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__8; +x_1123 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1123, 0, x_1120); +lean_ctor_set(x_1123, 1, x_1121); +lean_ctor_set(x_1123, 2, x_1119); +lean_ctor_set(x_1123, 3, x_1122); +x_1124 = l_Array_empty___closed__1; +x_1125 = lean_array_push(x_1124, x_1123); +x_1126 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_1127 = l_Lean_addMacroScope(x_1116, x_1126, x_1113); +x_1128 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_1129 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1129, 0, x_1120); +lean_ctor_set(x_1129, 1, x_1128); +lean_ctor_set(x_1129, 2, x_1127); +lean_ctor_set(x_1129, 3, x_13); +x_1130 = lean_array_push(x_1124, x_1129); +x_1131 = l___private_Init_Meta_0__Lean_quoteName(x_1111); +x_1132 = lean_array_push(x_1130, x_1131); +x_1133 = l_Lean_nullKind___closed__2; +x_1134 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1134, 0, x_1133); +lean_ctor_set(x_1134, 1, x_1132); +x_1135 = lean_array_push(x_1125, x_1134); +x_1136 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1137 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1137, 0, x_1136); +lean_ctor_set(x_1137, 1, x_1135); +x_1138 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1(x_1074, x_1073, x_13, x_4, x_1070, x_1137, x_6, x_7, x_8, x_9, x_10, x_11, x_1117); +lean_dec(x_6); +return x_1138; +} +else +{ +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_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; +x_1139 = lean_ctor_get(x_1076, 0); +lean_inc(x_1139); +lean_dec(x_1076); +x_1140 = lean_ctor_get(x_1110, 0); +lean_inc(x_1140); +lean_dec(x_1110); +x_1141 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1071); +x_1142 = lean_ctor_get(x_1141, 0); +lean_inc(x_1142); +x_1143 = lean_ctor_get(x_1141, 1); +lean_inc(x_1143); +lean_dec(x_1141); +x_1144 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1143); +x_1145 = lean_ctor_get(x_1144, 0); +lean_inc(x_1145); +x_1146 = lean_ctor_get(x_1144, 1); +lean_inc(x_1146); +lean_dec(x_1144); +x_1147 = l_myMacro____x40_Init_Notation___hyg_6459____closed__4; +lean_inc(x_1142); +lean_inc(x_1145); +x_1148 = l_Lean_addMacroScope(x_1145, x_1147, x_1142); +x_1149 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1150 = l_myMacro____x40_Init_Notation___hyg_6459____closed__3; +x_1151 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__10; +x_1152 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1152, 0, x_1149); +lean_ctor_set(x_1152, 1, x_1150); +lean_ctor_set(x_1152, 2, x_1148); +lean_ctor_set(x_1152, 3, x_1151); +x_1153 = l_Array_empty___closed__1; +x_1154 = lean_array_push(x_1153, x_1152); +x_1155 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__5; +lean_inc(x_1142); +lean_inc(x_1145); +x_1156 = l_Lean_addMacroScope(x_1145, x_1155, x_1142); +x_1157 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__3; +x_1158 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__8; +x_1159 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1159, 0, x_1149); +lean_ctor_set(x_1159, 1, x_1157); +lean_ctor_set(x_1159, 2, x_1156); +lean_ctor_set(x_1159, 3, x_1158); +x_1160 = lean_array_push(x_1153, x_1159); +x_1161 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +lean_inc(x_1142); +lean_inc(x_1145); +x_1162 = l_Lean_addMacroScope(x_1145, x_1161, x_1142); +x_1163 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_1164 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1164, 0, x_1149); +lean_ctor_set(x_1164, 1, x_1163); +lean_ctor_set(x_1164, 2, x_1162); +lean_ctor_set(x_1164, 3, x_13); +x_1165 = lean_array_push(x_1153, x_1164); +x_1166 = l___private_Init_Meta_0__Lean_quoteName(x_1139); +lean_inc(x_1165); +x_1167 = lean_array_push(x_1165, x_1166); +x_1168 = l_Lean_nullKind___closed__2; +x_1169 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1169, 0, x_1168); +lean_ctor_set(x_1169, 1, x_1167); +x_1170 = lean_array_push(x_1160, x_1169); +x_1171 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1172 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1172, 0, x_1171); +lean_ctor_set(x_1172, 1, x_1170); +x_1173 = lean_array_push(x_1153, x_1172); +x_1174 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_1175 = lean_array_push(x_1173, x_1174); +x_1176 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1176, 0, x_1168); +lean_ctor_set(x_1176, 1, x_1175); +x_1177 = l_myMacro____x40_Init_Notation___hyg_9707____closed__11; +x_1178 = lean_array_push(x_1177, x_1176); +x_1179 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_1180 = lean_array_push(x_1178, x_1179); +x_1181 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; +x_1182 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1182, 0, x_1181); +lean_ctor_set(x_1182, 1, x_1180); +x_1183 = lean_array_push(x_1153, x_1182); +x_1184 = l_myMacro____x40_Init_Notation___hyg_4340____closed__7; +lean_inc(x_1142); +lean_inc(x_1145); +x_1185 = l_Lean_addMacroScope(x_1145, x_1184, x_1142); +x_1186 = l_myMacro____x40_Init_Notation___hyg_4340____closed__3; +x_1187 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__12; +x_1188 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1188, 0, x_1149); +lean_ctor_set(x_1188, 1, x_1186); +lean_ctor_set(x_1188, 2, x_1185); +lean_ctor_set(x_1188, 3, x_1187); +x_1189 = lean_array_push(x_1153, x_1188); +x_1190 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__16; +lean_inc(x_1142); +lean_inc(x_1145); +x_1191 = l_Lean_addMacroScope(x_1145, x_1190, x_1142); +x_1192 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__15; +x_1193 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__18; +x_1194 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1194, 0, x_1149); +lean_ctor_set(x_1194, 1, x_1192); +lean_ctor_set(x_1194, 2, x_1191); +lean_ctor_set(x_1194, 3, x_1193); +x_1195 = lean_array_push(x_1153, x_1194); +x_1196 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_1197 = l_Lean_addMacroScope(x_1145, x_1196, x_1142); +x_1198 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_1199 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_1200 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1200, 0, x_1149); +lean_ctor_set(x_1200, 1, x_1198); +lean_ctor_set(x_1200, 2, x_1197); +lean_ctor_set(x_1200, 3, x_1199); +x_1201 = lean_array_push(x_1153, x_1200); +x_1202 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1202, 0, x_1168); +lean_ctor_set(x_1202, 1, x_1165); +x_1203 = lean_array_push(x_1201, x_1202); +x_1204 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1204, 0, x_1171); +lean_ctor_set(x_1204, 1, x_1203); +x_1205 = lean_array_push(x_1153, x_1204); +x_1206 = lean_array_push(x_1205, x_1174); +x_1207 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1207, 0, x_1168); +lean_ctor_set(x_1207, 1, x_1206); +x_1208 = lean_array_push(x_1177, x_1207); +x_1209 = lean_array_push(x_1208, x_1179); +x_1210 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1210, 0, x_1181); +lean_ctor_set(x_1210, 1, x_1209); +x_1211 = lean_array_push(x_1153, x_1210); +x_1212 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1212, 0, x_1168); +lean_ctor_set(x_1212, 1, x_1211); +x_1213 = lean_array_push(x_1195, x_1212); +x_1214 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1214, 0, x_1171); +lean_ctor_set(x_1214, 1, x_1213); +x_1215 = lean_array_push(x_1153, x_1214); +x_1216 = lean_array_push(x_1215, x_1174); +x_1217 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1217, 0, x_1168); +lean_ctor_set(x_1217, 1, x_1216); +x_1218 = lean_array_push(x_1177, x_1217); +x_1219 = lean_array_push(x_1218, x_1179); +x_1220 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1220, 0, x_1181); +lean_ctor_set(x_1220, 1, x_1219); +x_1221 = lean_array_push(x_1153, x_1220); +x_1222 = lean_array_get_size(x_1140); +lean_dec(x_1140); +x_1223 = l_Nat_repr(x_1222); +x_1224 = l_Lean_numLitKind; +x_1225 = l_Lean_Syntax_mkLit(x_1224, x_1223, x_1149); +x_1226 = lean_array_push(x_1221, x_1225); +x_1227 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1227, 0, x_1168); +lean_ctor_set(x_1227, 1, x_1226); +x_1228 = lean_array_push(x_1189, x_1227); +x_1229 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1229, 0, x_1171); +lean_ctor_set(x_1229, 1, x_1228); +x_1230 = lean_array_push(x_1153, x_1229); +x_1231 = lean_array_push(x_1230, x_1174); +x_1232 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1232, 0, x_1168); +lean_ctor_set(x_1232, 1, x_1231); +x_1233 = lean_array_push(x_1177, x_1232); +x_1234 = lean_array_push(x_1233, x_1179); +x_1235 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1235, 0, x_1181); +lean_ctor_set(x_1235, 1, x_1234); +x_1236 = lean_array_push(x_1183, x_1235); +x_1237 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1237, 0, x_1168); +lean_ctor_set(x_1237, 1, x_1236); +x_1238 = lean_array_push(x_1154, x_1237); +x_1239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1239, 0, x_1171); +lean_ctor_set(x_1239, 1, x_1238); +x_1240 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1(x_1074, x_1073, x_13, x_4, x_1070, x_1239, x_6, x_7, x_8, x_9, x_10, x_11, x_1146); +lean_dec(x_6); +return x_1240; +} +} +} +else +{ +lean_object* x_1241; lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; +x_1241 = lean_ctor_get(x_1, 0); +lean_inc(x_1241); +lean_dec(x_1); +x_1242 = l_Lean_Elab_Term_Quotation_antiquotScopeKind_x3f(x_1241); +x_1243 = l_Lean_Elab_Term_Quotation_getAntiquotScopeContents(x_1241); +lean_inc(x_10); +lean_inc(x_6); +x_1244 = l_Lean_Elab_Term_Quotation_getAntiquotationIds(x_1241, x_6, x_7, x_8, x_9, x_10, x_11, x_1071); +if (lean_obj_tag(x_1244) == 0) +{ +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; +x_1245 = lean_ctor_get(x_1244, 0); +lean_inc(x_1245); +x_1246 = lean_ctor_get(x_1244, 1); +lean_inc(x_1246); +lean_dec(x_1244); +x_1247 = lean_st_ref_take(x_11, x_1246); +x_1248 = lean_ctor_get(x_1247, 0); +lean_inc(x_1248); +x_1249 = lean_ctor_get(x_1247, 1); +lean_inc(x_1249); +lean_dec(x_1247); +x_1250 = lean_ctor_get(x_1248, 0); +lean_inc(x_1250); +x_1251 = lean_ctor_get(x_1248, 1); +lean_inc(x_1251); +x_1252 = lean_ctor_get(x_1248, 2); +lean_inc(x_1252); +x_1253 = lean_ctor_get(x_1248, 3); +lean_inc(x_1253); +if (lean_is_exclusive(x_1248)) { + lean_ctor_release(x_1248, 0); + lean_ctor_release(x_1248, 1); + lean_ctor_release(x_1248, 2); + lean_ctor_release(x_1248, 3); + x_1254 = x_1248; +} else { + lean_dec_ref(x_1248); + x_1254 = lean_box(0); +} +x_1255 = lean_nat_add(x_1251, x_1055); +if (lean_is_scalar(x_1254)) { + x_1256 = lean_alloc_ctor(0, 4, 0); +} else { + x_1256 = x_1254; +} +lean_ctor_set(x_1256, 0, x_1250); +lean_ctor_set(x_1256, 1, x_1255); +lean_ctor_set(x_1256, 2, x_1252); +lean_ctor_set(x_1256, 3, x_1253); +x_1257 = lean_st_ref_set(x_11, x_1256, x_1249); +x_1258 = lean_ctor_get(x_1257, 1); +lean_inc(x_1258); +lean_dec(x_1257); +x_1259 = lean_alloc_ctor(0, 6, 3); +lean_ctor_set(x_1259, 0, x_1060); +lean_ctor_set(x_1259, 1, x_1061); +lean_ctor_set(x_1259, 2, x_1062); +lean_ctor_set(x_1259, 3, x_1063); +lean_ctor_set(x_1259, 4, x_1251); +lean_ctor_set(x_1259, 5, x_1067); +lean_ctor_set_uint8(x_1259, sizeof(void*)*6, x_1064); +lean_ctor_set_uint8(x_1259, sizeof(void*)*6 + 1, x_1065); +lean_ctor_set_uint8(x_1259, sizeof(void*)*6 + 2, x_1066); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_478 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch(x_464, x_463, x_477, x_7, x_8, x_9, x_10, x_11, x_476); -if (lean_obj_tag(x_478) == 0) +x_1260 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch(x_1074, x_1073, x_1259, x_7, x_8, x_9, x_10, x_11, x_1258); +if (lean_obj_tag(x_1260) == 0) { -lean_object* x_479; -x_479 = lean_ctor_get(x_1, 1); -lean_inc(x_479); -lean_dec(x_1); -if (lean_obj_tag(x_479) == 0) +if (lean_obj_tag(x_1242) == 0) { -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; -x_480 = lean_ctor_get(x_478, 0); -lean_inc(x_480); -x_481 = lean_ctor_get(x_478, 1); -lean_inc(x_481); -lean_dec(x_478); -x_482 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_481); -x_483 = lean_ctor_get(x_482, 0); -lean_inc(x_483); -x_484 = lean_ctor_get(x_482, 1); -lean_inc(x_484); -lean_dec(x_482); -x_485 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_484); -x_486 = lean_ctor_get(x_485, 0); -lean_inc(x_486); -x_487 = lean_ctor_get(x_485, 1); -lean_inc(x_487); -lean_dec(x_485); -x_488 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__5; -lean_inc(x_483); -lean_inc(x_486); -x_489 = l_Lean_addMacroScope(x_486, x_488, x_483); -x_490 = l_Lean_instInhabitedSourceInfo___closed__1; -x_491 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__3; -x_492 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__8; -x_493 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_493, 0, x_490); -lean_ctor_set(x_493, 1, x_491); -lean_ctor_set(x_493, 2, x_489); -lean_ctor_set(x_493, 3, x_492); -x_494 = l_Array_empty___closed__1; -x_495 = lean_array_push(x_494, x_493); -x_496 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; -x_497 = l_Lean_addMacroScope(x_486, x_496, x_483); -x_498 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3; -x_499 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_499, 0, x_490); -lean_ctor_set(x_499, 1, x_498); -lean_ctor_set(x_499, 2, x_497); -lean_ctor_set(x_499, 3, x_13); -x_500 = lean_array_push(x_494, x_499); -x_501 = l___private_Init_Meta_0__Lean_quoteName(x_461); -x_502 = lean_array_push(x_500, x_501); -x_503 = l_Lean_nullKind___closed__2; -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_495, x_504); -x_506 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_507 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_507, 0, x_506); -lean_ctor_set(x_507, 1, x_505); -x_508 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1(x_13, x_4, x_459, x_480, x_507, x_6, x_7, x_8, x_9, x_10, x_11, x_487); +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; +x_1261 = lean_ctor_get(x_1260, 0); +lean_inc(x_1261); +x_1262 = lean_ctor_get(x_1260, 1); +lean_inc(x_1262); +lean_dec(x_1260); +x_1263 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1262); +x_1264 = lean_ctor_get(x_1263, 0); +lean_inc(x_1264); +x_1265 = lean_ctor_get(x_1263, 1); +lean_inc(x_1265); +lean_dec(x_1263); +x_1266 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1265); +x_1267 = lean_ctor_get(x_1266, 0); +lean_inc(x_1267); +x_1268 = lean_ctor_get(x_1266, 1); +lean_inc(x_1268); +lean_dec(x_1266); +x_1269 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_1270 = l_Lean_addMacroScope(x_1267, x_1269, x_1264); +x_1271 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1272 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_1273 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_1274 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1274, 0, x_1271); +lean_ctor_set(x_1274, 1, x_1272); +lean_ctor_set(x_1274, 2, x_1270); +lean_ctor_set(x_1274, 3, x_1273); +x_1275 = l_Array_empty___closed__1; +x_1276 = lean_array_push(x_1275, x_1274); +x_1277 = lean_array_push(x_1275, x_4); +x_1278 = l_Lean_nullKind___closed__2; +x_1279 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1279, 0, x_1278); +lean_ctor_set(x_1279, 1, x_1277); +x_1280 = lean_array_push(x_1276, x_1279); +x_1281 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +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_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_1284 = lean_box(0); +x_1285 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3(x_1245, x_1283, x_1271, x_1275, x_1278, x_13, x_1243, x_1281, x_1261, x_1070, x_1282, x_1284, x_6, x_7, x_8, x_9, x_10, x_11, x_1268); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); -return x_508; +lean_dec(x_1243); +return x_1285; } else { -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_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; -x_509 = lean_ctor_get(x_478, 0); -lean_inc(x_509); -x_510 = lean_ctor_get(x_478, 1); -lean_inc(x_510); -lean_dec(x_478); -x_511 = lean_ctor_get(x_479, 0); -lean_inc(x_511); -lean_dec(x_479); -x_512 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_510); -x_513 = lean_ctor_get(x_512, 0); -lean_inc(x_513); -x_514 = lean_ctor_get(x_512, 1); -lean_inc(x_514); -lean_dec(x_512); -x_515 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_514); -x_516 = lean_ctor_get(x_515, 0); -lean_inc(x_516); -x_517 = lean_ctor_get(x_515, 1); -lean_inc(x_517); -lean_dec(x_515); -x_518 = l_myMacro____x40_Init_Notation___hyg_6459____closed__4; -lean_inc(x_513); -lean_inc(x_516); -x_519 = l_Lean_addMacroScope(x_516, x_518, x_513); -x_520 = l_Lean_instInhabitedSourceInfo___closed__1; -x_521 = l_myMacro____x40_Init_Notation___hyg_6459____closed__3; -x_522 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__10; -x_523 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_523, 0, x_520); -lean_ctor_set(x_523, 1, x_521); -lean_ctor_set(x_523, 2, x_519); -lean_ctor_set(x_523, 3, x_522); -x_524 = l_Array_empty___closed__1; -x_525 = lean_array_push(x_524, x_523); -x_526 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__5; -lean_inc(x_513); -lean_inc(x_516); -x_527 = l_Lean_addMacroScope(x_516, x_526, x_513); -x_528 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__3; -x_529 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__8; -x_530 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_530, 0, x_520); -lean_ctor_set(x_530, 1, x_528); -lean_ctor_set(x_530, 2, x_527); -lean_ctor_set(x_530, 3, x_529); -x_531 = lean_array_push(x_524, x_530); -x_532 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4; -lean_inc(x_513); -lean_inc(x_516); -x_533 = l_Lean_addMacroScope(x_516, x_532, x_513); -x_534 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3; -x_535 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_535, 0, x_520); -lean_ctor_set(x_535, 1, x_534); -lean_ctor_set(x_535, 2, x_533); -lean_ctor_set(x_535, 3, x_13); -x_536 = lean_array_push(x_524, x_535); -x_537 = l___private_Init_Meta_0__Lean_quoteName(x_461); -lean_inc(x_536); -x_538 = lean_array_push(x_536, x_537); -x_539 = l_Lean_nullKind___closed__2; -x_540 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_540, 0, x_539); -lean_ctor_set(x_540, 1, x_538); -x_541 = lean_array_push(x_531, x_540); -x_542 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -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 = lean_array_push(x_524, x_543); -x_545 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_546 = lean_array_push(x_544, x_545); -x_547 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_547, 0, x_539); -lean_ctor_set(x_547, 1, x_546); -x_548 = l_myMacro____x40_Init_Notation___hyg_9707____closed__11; -x_549 = lean_array_push(x_548, x_547); -x_550 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; -x_551 = lean_array_push(x_549, x_550); -x_552 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; -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_524, x_553); -x_555 = l_myMacro____x40_Init_Notation___hyg_4340____closed__7; -lean_inc(x_513); -lean_inc(x_516); -x_556 = l_Lean_addMacroScope(x_516, x_555, x_513); -x_557 = l_myMacro____x40_Init_Notation___hyg_4340____closed__3; -x_558 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__12; -x_559 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_559, 0, x_520); -lean_ctor_set(x_559, 1, x_557); -lean_ctor_set(x_559, 2, x_556); -lean_ctor_set(x_559, 3, x_558); -x_560 = lean_array_push(x_524, x_559); -x_561 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__16; -lean_inc(x_513); -lean_inc(x_516); -x_562 = l_Lean_addMacroScope(x_516, x_561, x_513); -x_563 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__15; -x_564 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__18; -x_565 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_565, 0, x_520); -lean_ctor_set(x_565, 1, x_563); -lean_ctor_set(x_565, 2, x_562); -lean_ctor_set(x_565, 3, x_564); -x_566 = lean_array_push(x_524, x_565); -x_567 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; -x_568 = l_Lean_addMacroScope(x_516, x_567, x_513); -x_569 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; -x_570 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__21; -x_571 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_571, 0, x_520); -lean_ctor_set(x_571, 1, x_569); -lean_ctor_set(x_571, 2, x_568); -lean_ctor_set(x_571, 3, x_570); -x_572 = lean_array_push(x_524, x_571); -x_573 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_573, 0, x_539); -lean_ctor_set(x_573, 1, x_536); -x_574 = lean_array_push(x_572, x_573); -x_575 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_575, 0, x_542); -lean_ctor_set(x_575, 1, x_574); -x_576 = lean_array_push(x_524, x_575); -x_577 = lean_array_push(x_576, x_545); -x_578 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_578, 0, x_539); -lean_ctor_set(x_578, 1, x_577); -x_579 = lean_array_push(x_548, x_578); -x_580 = lean_array_push(x_579, x_550); -x_581 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_581, 0, x_552); -lean_ctor_set(x_581, 1, x_580); -x_582 = lean_array_push(x_524, x_581); -x_583 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_583, 0, x_539); -lean_ctor_set(x_583, 1, x_582); -x_584 = lean_array_push(x_566, x_583); -x_585 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_585, 0, x_542); -lean_ctor_set(x_585, 1, x_584); -x_586 = lean_array_push(x_524, x_585); -x_587 = lean_array_push(x_586, x_545); -x_588 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_588, 0, x_539); -lean_ctor_set(x_588, 1, x_587); -x_589 = lean_array_push(x_548, x_588); -x_590 = lean_array_push(x_589, x_550); -x_591 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_591, 0, x_552); -lean_ctor_set(x_591, 1, x_590); -x_592 = lean_array_push(x_524, x_591); -x_593 = lean_array_get_size(x_511); -lean_dec(x_511); -x_594 = l_Nat_repr(x_593); -x_595 = l_Lean_numLitKind; -x_596 = l_Lean_Syntax_mkLit(x_595, x_594, x_520); -x_597 = lean_array_push(x_592, x_596); -x_598 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_598, 0, x_539); -lean_ctor_set(x_598, 1, x_597); -x_599 = lean_array_push(x_560, x_598); -x_600 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_600, 0, x_542); -lean_ctor_set(x_600, 1, x_599); -x_601 = lean_array_push(x_524, x_600); -x_602 = lean_array_push(x_601, x_545); -x_603 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_603, 0, x_539); -lean_ctor_set(x_603, 1, x_602); -x_604 = lean_array_push(x_548, x_603); -x_605 = lean_array_push(x_604, x_550); -x_606 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_606, 0, x_552); -lean_ctor_set(x_606, 1, x_605); -x_607 = lean_array_push(x_554, x_606); -x_608 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_608, 0, x_539); -lean_ctor_set(x_608, 1, x_607); -x_609 = lean_array_push(x_525, x_608); -x_610 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_610, 0, x_542); -lean_ctor_set(x_610, 1, x_609); -x_611 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1(x_13, x_4, x_459, x_509, x_610, x_6, x_7, x_8, x_9, x_10, x_11, x_517); +lean_object* x_1286; +x_1286 = lean_ctor_get(x_1242, 0); +lean_inc(x_1286); +lean_dec(x_1242); +switch (lean_obj_tag(x_1286)) { +case 0: +{ +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; uint8_t x_1310; +x_1287 = lean_ctor_get(x_1260, 0); +lean_inc(x_1287); +x_1288 = lean_ctor_get(x_1260, 1); +lean_inc(x_1288); +lean_dec(x_1260); +x_1289 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1288); +x_1290 = lean_ctor_get(x_1289, 0); +lean_inc(x_1290); +x_1291 = lean_ctor_get(x_1289, 1); +lean_inc(x_1291); +lean_dec(x_1289); +x_1292 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1291); +x_1293 = lean_ctor_get(x_1292, 0); +lean_inc(x_1293); +x_1294 = lean_ctor_get(x_1292, 1); +lean_inc(x_1294); +lean_dec(x_1292); +x_1295 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_1296 = l_Lean_addMacroScope(x_1293, x_1295, x_1290); +x_1297 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1298 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_1299 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_1300 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1300, 0, x_1297); +lean_ctor_set(x_1300, 1, x_1298); +lean_ctor_set(x_1300, 2, x_1296); +lean_ctor_set(x_1300, 3, x_1299); +x_1301 = l_Array_empty___closed__1; +x_1302 = lean_array_push(x_1301, x_1300); +x_1303 = lean_array_push(x_1301, x_4); +x_1304 = l_Lean_nullKind___closed__2; +x_1305 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1305, 0, x_1304); +lean_ctor_set(x_1305, 1, x_1303); +x_1306 = lean_array_push(x_1302, x_1305); +x_1307 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1308 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1308, 0, x_1307); +lean_ctor_set(x_1308, 1, x_1306); +x_1309 = l_term_x5b___x2c_x5d___closed__6; +x_1310 = lean_name_eq(x_1286, x_1309); +if (x_1310 == 0) +{ +lean_object* x_1311; lean_object* x_1312; lean_object* x_1313; +x_1311 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_1312 = lean_box(0); +x_1313 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__4(x_1245, x_1311, x_1297, x_1301, x_1304, x_13, x_1243, x_1307, x_1287, x_1070, x_1308, x_1312, x_6, x_7, x_8, x_9, x_10, x_11, x_1294); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); -return x_611; +lean_dec(x_1243); +return x_1313; +} +else +{ +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; +x_1314 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1294); +x_1315 = lean_ctor_get(x_1314, 0); +lean_inc(x_1315); +x_1316 = lean_ctor_get(x_1314, 1); +lean_inc(x_1316); +lean_dec(x_1314); +x_1317 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1316); +x_1318 = lean_ctor_get(x_1317, 0); +lean_inc(x_1318); +x_1319 = lean_ctor_get(x_1317, 1); +lean_inc(x_1319); +lean_dec(x_1317); +x_1320 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; +x_1321 = l_Lean_addMacroScope(x_1318, x_1320, x_1315); +x_1322 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; +x_1323 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; +x_1324 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1324, 0, x_1297); +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_1301, x_1324); +x_1326 = lean_array_push(x_1301, x_1308); +x_1327 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1327, 0, x_1304); +lean_ctor_set(x_1327, 1, x_1326); +x_1328 = lean_array_push(x_1325, x_1327); +x_1329 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1329, 0, x_1307); +lean_ctor_set(x_1329, 1, x_1328); +x_1330 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_1331 = lean_box(0); +x_1332 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__4(x_1245, x_1330, x_1297, x_1301, x_1304, x_13, x_1243, x_1307, x_1287, x_1070, x_1329, x_1331, x_6, x_7, x_8, x_9, x_10, x_11, x_1319); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1243); +return x_1332; +} +} +case 1: +{ +lean_object* x_1333; +x_1333 = lean_ctor_get(x_1286, 0); +lean_inc(x_1333); +switch (lean_obj_tag(x_1333)) { +case 0: +{ +lean_object* x_1334; lean_object* x_1335; lean_object* x_1336; lean_object* x_1337; uint8_t x_1338; +x_1334 = lean_ctor_get(x_1260, 0); +lean_inc(x_1334); +x_1335 = lean_ctor_get(x_1260, 1); +lean_inc(x_1335); +lean_dec(x_1260); +x_1336 = lean_ctor_get(x_1286, 1); +lean_inc(x_1336); +x_1337 = l_myMacro____x40_Init_Notation___hyg_11399____closed__1; +x_1338 = lean_string_dec_eq(x_1336, x_1337); +lean_dec(x_1336); +if (x_1338 == 0) +{ +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; uint8_t x_1360; +x_1339 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1335); +x_1340 = lean_ctor_get(x_1339, 0); +lean_inc(x_1340); +x_1341 = lean_ctor_get(x_1339, 1); +lean_inc(x_1341); +lean_dec(x_1339); +x_1342 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1341); +x_1343 = lean_ctor_get(x_1342, 0); +lean_inc(x_1343); +x_1344 = lean_ctor_get(x_1342, 1); +lean_inc(x_1344); +lean_dec(x_1342); +x_1345 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_1346 = l_Lean_addMacroScope(x_1343, x_1345, x_1340); +x_1347 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1348 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_1349 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_1350 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1350, 0, x_1347); +lean_ctor_set(x_1350, 1, x_1348); +lean_ctor_set(x_1350, 2, x_1346); +lean_ctor_set(x_1350, 3, x_1349); +x_1351 = l_Array_empty___closed__1; +x_1352 = lean_array_push(x_1351, x_1350); +x_1353 = lean_array_push(x_1351, x_4); +x_1354 = l_Lean_nullKind___closed__2; +x_1355 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1355, 0, x_1354); +lean_ctor_set(x_1355, 1, x_1353); +x_1356 = lean_array_push(x_1352, x_1355); +x_1357 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1358 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1358, 0, x_1357); +lean_ctor_set(x_1358, 1, x_1356); +x_1359 = l_term_x5b___x2c_x5d___closed__6; +x_1360 = lean_name_eq(x_1286, x_1359); +lean_dec(x_1286); +if (x_1360 == 0) +{ +lean_object* x_1361; lean_object* x_1362; lean_object* x_1363; +x_1361 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_1362 = lean_box(0); +x_1363 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5(x_1245, x_1361, x_1347, x_1351, x_1354, x_13, x_1243, x_1357, x_1334, x_1070, x_1358, x_1362, x_6, x_7, x_8, x_9, x_10, x_11, x_1344); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1243); +return x_1363; +} +else +{ +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; +x_1364 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1344); +x_1365 = lean_ctor_get(x_1364, 0); +lean_inc(x_1365); +x_1366 = lean_ctor_get(x_1364, 1); +lean_inc(x_1366); +lean_dec(x_1364); +x_1367 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1366); +x_1368 = lean_ctor_get(x_1367, 0); +lean_inc(x_1368); +x_1369 = lean_ctor_get(x_1367, 1); +lean_inc(x_1369); +lean_dec(x_1367); +x_1370 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; +x_1371 = l_Lean_addMacroScope(x_1368, x_1370, x_1365); +x_1372 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; +x_1373 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; +x_1374 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1374, 0, x_1347); +lean_ctor_set(x_1374, 1, x_1372); +lean_ctor_set(x_1374, 2, x_1371); +lean_ctor_set(x_1374, 3, x_1373); +x_1375 = lean_array_push(x_1351, x_1374); +x_1376 = lean_array_push(x_1351, x_1358); +x_1377 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1377, 0, x_1354); +lean_ctor_set(x_1377, 1, x_1376); +x_1378 = lean_array_push(x_1375, x_1377); +x_1379 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1379, 0, x_1357); +lean_ctor_set(x_1379, 1, x_1378); +x_1380 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_1381 = lean_box(0); +x_1382 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5(x_1245, x_1380, x_1347, x_1351, x_1354, x_13, x_1243, x_1357, x_1334, x_1070, x_1379, x_1381, x_6, x_7, x_8, x_9, x_10, x_11, x_1369); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1243); +return x_1382; } } else { -lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; -lean_dec(x_461); -lean_dec(x_459); +lean_object* x_1383; lean_object* x_1384; lean_object* x_1385; lean_object* x_1386; lean_object* x_1387; lean_object* x_1388; lean_object* x_1389; lean_object* x_1390; lean_object* x_1391; lean_object* x_1392; lean_object* x_1393; lean_object* x_1394; lean_object* x_1395; lean_object* x_1396; lean_object* x_1397; lean_object* x_1398; lean_object* x_1399; lean_object* x_1400; lean_object* x_1401; lean_object* x_1402; lean_object* x_1403; lean_object* x_1404; lean_object* x_1405; lean_object* x_1406; lean_object* x_1407; lean_object* x_1408; lean_object* x_1409; lean_object* x_1410; lean_object* x_1411; lean_object* x_1412; lean_object* x_1413; lean_object* x_1414; lean_object* x_1415; lean_object* x_1416; lean_object* x_1417; lean_object* x_1418; lean_object* x_1419; lean_object* x_1420; lean_object* x_1421; lean_object* x_1422; lean_object* x_1423; lean_object* x_1424; lean_object* x_1425; lean_object* x_1426; lean_object* x_1427; lean_object* x_1428; lean_object* x_1429; lean_object* x_1430; lean_object* x_1431; lean_object* x_1432; lean_object* x_1433; lean_object* x_1434; lean_object* x_1435; lean_object* x_1436; lean_object* x_1437; lean_object* x_1438; lean_object* x_1439; lean_object* x_1440; lean_object* x_1441; lean_object* x_1442; lean_object* x_1443; lean_object* x_1444; lean_object* x_1445; lean_object* x_1446; lean_object* x_1447; lean_object* x_1448; lean_object* x_1449; lean_object* x_1450; lean_object* x_1451; lean_object* x_1452; lean_object* x_1453; lean_object* x_1454; lean_object* x_1455; lean_object* x_1456; lean_object* x_1457; lean_object* x_1458; lean_object* x_1459; lean_object* x_1460; lean_object* x_1461; lean_object* x_1462; lean_object* x_1463; lean_object* x_1464; lean_object* x_1465; lean_object* x_1466; lean_object* x_1467; lean_object* x_1468; lean_object* x_1469; lean_object* x_1470; lean_object* x_1471; +lean_dec(x_1286); +lean_inc(x_1070); +lean_inc(x_1245); +x_1383 = l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11(x_1245, x_1070, x_6, x_7, x_8, x_9, x_10, x_11, x_1335); +x_1384 = lean_ctor_get(x_1383, 0); +lean_inc(x_1384); +x_1385 = lean_ctor_get(x_1383, 1); +lean_inc(x_1385); +lean_dec(x_1383); +x_1386 = l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12(x_1245, x_1070, x_6, x_7, x_8, x_9, x_10, x_11, x_1385); +x_1387 = lean_ctor_get(x_1386, 0); +lean_inc(x_1387); +x_1388 = lean_ctor_get(x_1386, 1); +lean_inc(x_1388); +lean_dec(x_1386); +x_1389 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1388); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_1390 = lean_ctor_get(x_1389, 0); +lean_inc(x_1390); +x_1391 = lean_ctor_get(x_1389, 1); +lean_inc(x_1391); +lean_dec(x_1389); +x_1392 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1391); +lean_dec(x_11); +x_1393 = lean_ctor_get(x_1392, 0); +lean_inc(x_1393); +x_1394 = lean_ctor_get(x_1392, 1); +lean_inc(x_1394); +if (lean_is_exclusive(x_1392)) { + lean_ctor_release(x_1392, 0); + lean_ctor_release(x_1392, 1); + x_1395 = x_1392; +} else { + lean_dec_ref(x_1392); + x_1395 = lean_box(0); +} +x_1396 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +lean_inc(x_1390); +lean_inc(x_1393); +x_1397 = l_Lean_addMacroScope(x_1393, x_1396, x_1390); +x_1398 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1399 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_1400 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1400, 0, x_1398); +lean_ctor_set(x_1400, 1, x_1399); +lean_ctor_set(x_1400, 2, x_1397); +lean_ctor_set(x_1400, 3, x_13); +x_1401 = l_Array_empty___closed__1; +lean_inc(x_1400); +x_1402 = lean_array_push(x_1401, x_1400); +x_1403 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_1404 = lean_array_push(x_1402, x_1403); +x_1405 = lean_array_push(x_1404, x_1403); +x_1406 = l_myMacro____x40_Init_Notation___hyg_12470____closed__14; +x_1407 = lean_array_push(x_1405, x_1406); +x_1408 = lean_array_push(x_1407, x_4); +x_1409 = l_myMacro____x40_Init_Notation___hyg_12470____closed__8; +x_1410 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1410, 0, x_1409); +lean_ctor_set(x_1410, 1, x_1408); +x_1411 = lean_array_push(x_1401, x_1410); +x_1412 = l_myMacro____x40_Init_Notation___hyg_12470____closed__6; +x_1413 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1413, 0, x_1412); +lean_ctor_set(x_1413, 1, x_1411); +x_1414 = l_myMacro____x40_Init_Notation___hyg_12470____closed__4; +x_1415 = lean_array_push(x_1414, x_1413); +x_1416 = l_myMacro____x40_Init_Notation___hyg_12470____closed__18; +x_1417 = lean_array_push(x_1415, x_1416); +x_1418 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__35; +x_1419 = l_Lean_addMacroScope(x_1393, x_1418, x_1390); +x_1420 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__33; +x_1421 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1421, 0, x_1398); +lean_ctor_set(x_1421, 1, x_1420); +lean_ctor_set(x_1421, 2, x_1419); +lean_ctor_set(x_1421, 3, x_13); +x_1422 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__30; +x_1423 = lean_array_push(x_1422, x_1421); +x_1424 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__37; +x_1425 = lean_array_push(x_1423, x_1424); +x_1426 = lean_array_push(x_1425, x_1387); +x_1427 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__39; +x_1428 = lean_array_push(x_1426, x_1427); +x_1429 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; +x_1430 = lean_array_push(x_1429, x_1400); +x_1431 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; +x_1432 = lean_array_push(x_1430, x_1431); +x_1433 = l_Lean_nullKind; +x_1434 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1434, 0, x_1433); +lean_ctor_set(x_1434, 1, x_1243); +x_1435 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__49; +x_1436 = lean_array_push(x_1435, x_1434); +x_1437 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_1438 = lean_array_push(x_1436, x_1437); +x_1439 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_1440 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1440, 0, x_1439); +lean_ctor_set(x_1440, 1, x_1438); +x_1441 = lean_array_push(x_1401, x_1440); +x_1442 = l_Lean_nullKind___closed__2; +x_1443 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1443, 0, x_1442); +lean_ctor_set(x_1443, 1, x_1441); +x_1444 = lean_array_push(x_1401, x_1443); +x_1445 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; +x_1446 = lean_array_push(x_1444, x_1445); +x_1447 = lean_array_push(x_1446, x_1384); +x_1448 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; +x_1449 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1449, 0, x_1448); +lean_ctor_set(x_1449, 1, x_1447); +x_1450 = lean_array_push(x_1401, x_1449); +x_1451 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44; +x_1452 = lean_array_push(x_1450, x_1451); +x_1453 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__50; +x_1454 = lean_array_push(x_1453, x_1334); +x_1455 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1455, 0, x_1448); +lean_ctor_set(x_1455, 1, x_1454); +x_1456 = lean_array_push(x_1452, x_1455); +x_1457 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1457, 0, x_1442); +lean_ctor_set(x_1457, 1, x_1456); +x_1458 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__47; +x_1459 = lean_array_push(x_1458, x_1457); +x_1460 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; +x_1461 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1461, 0, x_1460); +lean_ctor_set(x_1461, 1, x_1459); +x_1462 = lean_array_push(x_1432, x_1461); +x_1463 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__40; +x_1464 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1464, 0, x_1463); +lean_ctor_set(x_1464, 1, x_1462); +x_1465 = lean_array_push(x_1428, x_1464); +x_1466 = l_termIf__Then__Else_____closed__2; +x_1467 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1467, 0, x_1466); +lean_ctor_set(x_1467, 1, x_1465); +x_1468 = lean_array_push(x_1417, x_1467); +x_1469 = l_myMacro____x40_Init_Notation___hyg_12470____closed__2; +x_1470 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1470, 0, x_1469); +lean_ctor_set(x_1470, 1, x_1468); +if (lean_is_scalar(x_1395)) { + x_1471 = lean_alloc_ctor(0, 2, 0); +} else { + x_1471 = x_1395; +} +lean_ctor_set(x_1471, 0, x_1470); +lean_ctor_set(x_1471, 1, x_1394); +return x_1471; +} +} +case 1: +{ +lean_object* x_1472; lean_object* x_1473; lean_object* x_1474; lean_object* x_1475; lean_object* x_1476; lean_object* x_1477; lean_object* x_1478; lean_object* x_1479; lean_object* x_1480; lean_object* x_1481; lean_object* x_1482; lean_object* x_1483; lean_object* x_1484; lean_object* x_1485; lean_object* x_1486; lean_object* x_1487; lean_object* x_1488; lean_object* x_1489; lean_object* x_1490; lean_object* x_1491; lean_object* x_1492; lean_object* x_1493; lean_object* x_1494; uint8_t x_1495; +lean_dec(x_1333); +x_1472 = lean_ctor_get(x_1260, 0); +lean_inc(x_1472); +x_1473 = lean_ctor_get(x_1260, 1); +lean_inc(x_1473); +lean_dec(x_1260); +x_1474 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1473); +x_1475 = lean_ctor_get(x_1474, 0); +lean_inc(x_1475); +x_1476 = lean_ctor_get(x_1474, 1); +lean_inc(x_1476); +lean_dec(x_1474); +x_1477 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1476); +x_1478 = lean_ctor_get(x_1477, 0); +lean_inc(x_1478); +x_1479 = lean_ctor_get(x_1477, 1); +lean_inc(x_1479); +lean_dec(x_1477); +x_1480 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_1481 = l_Lean_addMacroScope(x_1478, x_1480, x_1475); +x_1482 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1483 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_1484 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_1485 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1485, 0, x_1482); +lean_ctor_set(x_1485, 1, x_1483); +lean_ctor_set(x_1485, 2, x_1481); +lean_ctor_set(x_1485, 3, x_1484); +x_1486 = l_Array_empty___closed__1; +x_1487 = lean_array_push(x_1486, x_1485); +x_1488 = lean_array_push(x_1486, x_4); +x_1489 = l_Lean_nullKind___closed__2; +x_1490 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1490, 0, x_1489); +lean_ctor_set(x_1490, 1, x_1488); +x_1491 = lean_array_push(x_1487, x_1490); +x_1492 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1493 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1493, 0, x_1492); +lean_ctor_set(x_1493, 1, x_1491); +x_1494 = l_term_x5b___x2c_x5d___closed__6; +x_1495 = lean_name_eq(x_1286, x_1494); +lean_dec(x_1286); +if (x_1495 == 0) +{ +lean_object* x_1496; lean_object* x_1497; lean_object* x_1498; +x_1496 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_1497 = lean_box(0); +x_1498 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__6(x_1245, x_1496, x_1482, x_1486, x_1489, x_13, x_1243, x_1492, x_1472, x_1070, x_1493, x_1497, x_6, x_7, x_8, x_9, x_10, x_11, x_1479); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1243); +return x_1498; +} +else +{ +lean_object* x_1499; lean_object* x_1500; lean_object* x_1501; lean_object* x_1502; lean_object* x_1503; lean_object* x_1504; lean_object* x_1505; lean_object* x_1506; lean_object* x_1507; lean_object* x_1508; lean_object* x_1509; lean_object* x_1510; lean_object* x_1511; lean_object* x_1512; lean_object* x_1513; lean_object* x_1514; lean_object* x_1515; lean_object* x_1516; lean_object* x_1517; +x_1499 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1479); +x_1500 = lean_ctor_get(x_1499, 0); +lean_inc(x_1500); +x_1501 = lean_ctor_get(x_1499, 1); +lean_inc(x_1501); +lean_dec(x_1499); +x_1502 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1501); +x_1503 = lean_ctor_get(x_1502, 0); +lean_inc(x_1503); +x_1504 = lean_ctor_get(x_1502, 1); +lean_inc(x_1504); +lean_dec(x_1502); +x_1505 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; +x_1506 = l_Lean_addMacroScope(x_1503, x_1505, x_1500); +x_1507 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; +x_1508 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; +x_1509 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1509, 0, x_1482); +lean_ctor_set(x_1509, 1, x_1507); +lean_ctor_set(x_1509, 2, x_1506); +lean_ctor_set(x_1509, 3, x_1508); +x_1510 = lean_array_push(x_1486, x_1509); +x_1511 = lean_array_push(x_1486, x_1493); +x_1512 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1512, 0, x_1489); +lean_ctor_set(x_1512, 1, x_1511); +x_1513 = lean_array_push(x_1510, x_1512); +x_1514 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1514, 0, x_1492); +lean_ctor_set(x_1514, 1, x_1513); +x_1515 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_1516 = lean_box(0); +x_1517 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__6(x_1245, x_1515, x_1482, x_1486, x_1489, x_13, x_1243, x_1492, x_1472, x_1070, x_1514, x_1516, x_6, x_7, x_8, x_9, x_10, x_11, x_1504); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1243); +return x_1517; +} +} +default: +{ +lean_object* x_1518; lean_object* x_1519; lean_object* x_1520; lean_object* x_1521; lean_object* x_1522; lean_object* x_1523; lean_object* x_1524; lean_object* x_1525; lean_object* x_1526; lean_object* x_1527; lean_object* x_1528; lean_object* x_1529; lean_object* x_1530; lean_object* x_1531; lean_object* x_1532; lean_object* x_1533; lean_object* x_1534; lean_object* x_1535; lean_object* x_1536; lean_object* x_1537; lean_object* x_1538; lean_object* x_1539; lean_object* x_1540; uint8_t x_1541; +lean_dec(x_1333); +x_1518 = lean_ctor_get(x_1260, 0); +lean_inc(x_1518); +x_1519 = lean_ctor_get(x_1260, 1); +lean_inc(x_1519); +lean_dec(x_1260); +x_1520 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1519); +x_1521 = lean_ctor_get(x_1520, 0); +lean_inc(x_1521); +x_1522 = lean_ctor_get(x_1520, 1); +lean_inc(x_1522); +lean_dec(x_1520); +x_1523 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1522); +x_1524 = lean_ctor_get(x_1523, 0); +lean_inc(x_1524); +x_1525 = lean_ctor_get(x_1523, 1); +lean_inc(x_1525); +lean_dec(x_1523); +x_1526 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_1527 = l_Lean_addMacroScope(x_1524, x_1526, x_1521); +x_1528 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1529 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_1530 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_1531 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1531, 0, x_1528); +lean_ctor_set(x_1531, 1, x_1529); +lean_ctor_set(x_1531, 2, x_1527); +lean_ctor_set(x_1531, 3, x_1530); +x_1532 = l_Array_empty___closed__1; +x_1533 = lean_array_push(x_1532, x_1531); +x_1534 = lean_array_push(x_1532, x_4); +x_1535 = l_Lean_nullKind___closed__2; +x_1536 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1536, 0, x_1535); +lean_ctor_set(x_1536, 1, x_1534); +x_1537 = lean_array_push(x_1533, x_1536); +x_1538 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1539 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1539, 0, x_1538); +lean_ctor_set(x_1539, 1, x_1537); +x_1540 = l_term_x5b___x2c_x5d___closed__6; +x_1541 = lean_name_eq(x_1286, x_1540); +lean_dec(x_1286); +if (x_1541 == 0) +{ +lean_object* x_1542; lean_object* x_1543; lean_object* x_1544; +x_1542 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_1543 = lean_box(0); +x_1544 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__7(x_1245, x_1542, x_1528, x_1532, x_1535, x_13, x_1243, x_1538, x_1518, x_1070, x_1539, x_1543, x_6, x_7, x_8, x_9, x_10, x_11, x_1525); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1243); +return x_1544; +} +else +{ +lean_object* x_1545; lean_object* x_1546; lean_object* x_1547; lean_object* x_1548; lean_object* x_1549; lean_object* x_1550; lean_object* x_1551; lean_object* x_1552; lean_object* x_1553; lean_object* x_1554; lean_object* x_1555; lean_object* x_1556; lean_object* x_1557; lean_object* x_1558; lean_object* x_1559; lean_object* x_1560; lean_object* x_1561; lean_object* x_1562; lean_object* x_1563; +x_1545 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1525); +x_1546 = lean_ctor_get(x_1545, 0); +lean_inc(x_1546); +x_1547 = lean_ctor_get(x_1545, 1); +lean_inc(x_1547); +lean_dec(x_1545); +x_1548 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1547); +x_1549 = lean_ctor_get(x_1548, 0); +lean_inc(x_1549); +x_1550 = lean_ctor_get(x_1548, 1); +lean_inc(x_1550); +lean_dec(x_1548); +x_1551 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; +x_1552 = l_Lean_addMacroScope(x_1549, x_1551, x_1546); +x_1553 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; +x_1554 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; +x_1555 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1555, 0, x_1528); +lean_ctor_set(x_1555, 1, x_1553); +lean_ctor_set(x_1555, 2, x_1552); +lean_ctor_set(x_1555, 3, x_1554); +x_1556 = lean_array_push(x_1532, x_1555); +x_1557 = lean_array_push(x_1532, x_1539); +x_1558 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1558, 0, x_1535); +lean_ctor_set(x_1558, 1, x_1557); +x_1559 = lean_array_push(x_1556, x_1558); +x_1560 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1560, 0, x_1538); +lean_ctor_set(x_1560, 1, x_1559); +x_1561 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_1562 = lean_box(0); +x_1563 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__7(x_1245, x_1561, x_1528, x_1532, x_1535, x_13, x_1243, x_1538, x_1518, x_1070, x_1560, x_1562, x_6, x_7, x_8, x_9, x_10, x_11, x_1550); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1243); +return x_1563; +} +} +} +} +default: +{ +lean_object* x_1564; lean_object* x_1565; lean_object* x_1566; lean_object* x_1567; lean_object* x_1568; lean_object* x_1569; lean_object* x_1570; lean_object* x_1571; lean_object* x_1572; lean_object* x_1573; lean_object* x_1574; lean_object* x_1575; lean_object* x_1576; lean_object* x_1577; lean_object* x_1578; lean_object* x_1579; lean_object* x_1580; lean_object* x_1581; lean_object* x_1582; lean_object* x_1583; lean_object* x_1584; lean_object* x_1585; lean_object* x_1586; uint8_t x_1587; +x_1564 = lean_ctor_get(x_1260, 0); +lean_inc(x_1564); +x_1565 = lean_ctor_get(x_1260, 1); +lean_inc(x_1565); +lean_dec(x_1260); +x_1566 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1565); +x_1567 = lean_ctor_get(x_1566, 0); +lean_inc(x_1567); +x_1568 = lean_ctor_get(x_1566, 1); +lean_inc(x_1568); +lean_dec(x_1566); +x_1569 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1568); +x_1570 = lean_ctor_get(x_1569, 0); +lean_inc(x_1570); +x_1571 = lean_ctor_get(x_1569, 1); +lean_inc(x_1571); +lean_dec(x_1569); +x_1572 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_1573 = l_Lean_addMacroScope(x_1570, x_1572, x_1567); +x_1574 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1575 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_1576 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_1577 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1577, 0, x_1574); +lean_ctor_set(x_1577, 1, x_1575); +lean_ctor_set(x_1577, 2, x_1573); +lean_ctor_set(x_1577, 3, x_1576); +x_1578 = l_Array_empty___closed__1; +x_1579 = lean_array_push(x_1578, x_1577); +x_1580 = lean_array_push(x_1578, x_4); +x_1581 = l_Lean_nullKind___closed__2; +x_1582 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1582, 0, x_1581); +lean_ctor_set(x_1582, 1, x_1580); +x_1583 = lean_array_push(x_1579, x_1582); +x_1584 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1585 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1585, 0, x_1584); +lean_ctor_set(x_1585, 1, x_1583); +x_1586 = l_term_x5b___x2c_x5d___closed__6; +x_1587 = lean_name_eq(x_1286, x_1586); +lean_dec(x_1286); +if (x_1587 == 0) +{ +lean_object* x_1588; lean_object* x_1589; lean_object* x_1590; +x_1588 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_1589 = lean_box(0); +x_1590 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__8(x_1245, x_1588, x_1574, x_1578, x_1581, x_13, x_1243, x_1584, x_1564, x_1070, x_1585, x_1589, x_6, x_7, x_8, x_9, x_10, x_11, x_1571); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1243); +return x_1590; +} +else +{ +lean_object* x_1591; lean_object* x_1592; lean_object* x_1593; lean_object* x_1594; lean_object* x_1595; lean_object* x_1596; lean_object* x_1597; lean_object* x_1598; lean_object* x_1599; lean_object* x_1600; lean_object* x_1601; lean_object* x_1602; lean_object* x_1603; lean_object* x_1604; lean_object* x_1605; lean_object* x_1606; lean_object* x_1607; lean_object* x_1608; lean_object* x_1609; +x_1591 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1571); +x_1592 = lean_ctor_get(x_1591, 0); +lean_inc(x_1592); +x_1593 = lean_ctor_get(x_1591, 1); +lean_inc(x_1593); +lean_dec(x_1591); +x_1594 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1593); +x_1595 = lean_ctor_get(x_1594, 0); +lean_inc(x_1595); +x_1596 = lean_ctor_get(x_1594, 1); +lean_inc(x_1596); +lean_dec(x_1594); +x_1597 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; +x_1598 = l_Lean_addMacroScope(x_1595, x_1597, x_1592); +x_1599 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; +x_1600 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; +x_1601 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1601, 0, x_1574); +lean_ctor_set(x_1601, 1, x_1599); +lean_ctor_set(x_1601, 2, x_1598); +lean_ctor_set(x_1601, 3, x_1600); +x_1602 = lean_array_push(x_1578, x_1601); +x_1603 = lean_array_push(x_1578, x_1585); +x_1604 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1604, 0, x_1581); +lean_ctor_set(x_1604, 1, x_1603); +x_1605 = lean_array_push(x_1602, x_1604); +x_1606 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1606, 0, x_1584); +lean_ctor_set(x_1606, 1, x_1605); +x_1607 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; +x_1608 = lean_box(0); +x_1609 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__8(x_1245, x_1607, x_1574, x_1578, x_1581, x_13, x_1243, x_1584, x_1564, x_1070, x_1606, x_1608, x_6, x_7, x_8, x_9, x_10, x_11, x_1596); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1243); +return x_1609; +} +} +} +} +} +else +{ +lean_object* x_1610; lean_object* x_1611; lean_object* x_1612; lean_object* x_1613; +lean_dec(x_1245); +lean_dec(x_1243); +lean_dec(x_1242); +lean_dec(x_1070); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -14472,38 +23783,79 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_4); -lean_dec(x_1); -x_612 = lean_ctor_get(x_478, 0); -lean_inc(x_612); -x_613 = lean_ctor_get(x_478, 1); -lean_inc(x_613); -if (lean_is_exclusive(x_478)) { - lean_ctor_release(x_478, 0); - lean_ctor_release(x_478, 1); - x_614 = x_478; +x_1610 = lean_ctor_get(x_1260, 0); +lean_inc(x_1610); +x_1611 = lean_ctor_get(x_1260, 1); +lean_inc(x_1611); +if (lean_is_exclusive(x_1260)) { + lean_ctor_release(x_1260, 0); + lean_ctor_release(x_1260, 1); + x_1612 = x_1260; } else { - lean_dec_ref(x_478); - x_614 = lean_box(0); + lean_dec_ref(x_1260); + x_1612 = lean_box(0); } -if (lean_is_scalar(x_614)) { - x_615 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1612)) { + x_1613 = lean_alloc_ctor(1, 2, 0); } else { - x_615 = x_614; + x_1613 = x_1612; } -lean_ctor_set(x_615, 0, x_612); -lean_ctor_set(x_615, 1, x_613); -return x_615; +lean_ctor_set(x_1613, 0, x_1610); +lean_ctor_set(x_1613, 1, x_1611); +return x_1613; +} +} +else +{ +lean_object* x_1614; lean_object* x_1615; lean_object* x_1616; lean_object* x_1617; +lean_dec(x_1243); +lean_dec(x_1242); +lean_dec(x_1074); +lean_dec(x_1073); +lean_dec(x_1070); +lean_dec(x_1067); +lean_dec(x_1063); +lean_dec(x_1062); +lean_dec(x_1061); +lean_dec(x_1060); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +x_1614 = lean_ctor_get(x_1244, 0); +lean_inc(x_1614); +x_1615 = lean_ctor_get(x_1244, 1); +lean_inc(x_1615); +if (lean_is_exclusive(x_1244)) { + lean_ctor_release(x_1244, 0); + lean_ctor_release(x_1244, 1); + x_1616 = x_1244; +} else { + lean_dec_ref(x_1244); + x_1616 = lean_box(0); +} +if (lean_is_scalar(x_1616)) { + x_1617 = lean_alloc_ctor(1, 2, 0); +} else { + x_1617 = x_1616; +} +lean_ctor_set(x_1617, 0, x_1614); +lean_ctor_set(x_1617, 1, x_1615); +return x_1617; } } } else { -lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; -lean_dec(x_420); -lean_dec(x_416); -lean_dec(x_415); -lean_dec(x_414); -lean_dec(x_413); +lean_object* x_1618; lean_object* x_1619; lean_object* x_1620; lean_object* x_1621; +lean_dec(x_1067); +lean_dec(x_1063); +lean_dec(x_1062); +lean_dec(x_1061); +lean_dec(x_1060); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -14514,32 +23866,32 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_616 = lean_ctor_get(x_422, 0); -lean_inc(x_616); -x_617 = lean_ctor_get(x_422, 1); -lean_inc(x_617); -if (lean_is_exclusive(x_422)) { - lean_ctor_release(x_422, 0); - lean_ctor_release(x_422, 1); - x_618 = x_422; +x_1618 = lean_ctor_get(x_1069, 0); +lean_inc(x_1618); +x_1619 = lean_ctor_get(x_1069, 1); +lean_inc(x_1619); +if (lean_is_exclusive(x_1069)) { + lean_ctor_release(x_1069, 0); + lean_ctor_release(x_1069, 1); + x_1620 = x_1069; } else { - lean_dec_ref(x_422); - x_618 = lean_box(0); + lean_dec_ref(x_1069); + x_1620 = lean_box(0); } -if (lean_is_scalar(x_618)) { - x_619 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1620)) { + x_1621 = lean_alloc_ctor(1, 2, 0); } else { - x_619 = x_618; + x_1621 = x_1620; } -lean_ctor_set(x_619, 0, x_616); -lean_ctor_set(x_619, 1, x_617); -return x_619; +lean_ctor_set(x_1621, 0, x_1618); +lean_ctor_set(x_1621, 1, x_1619); +return x_1621; } } } else { -uint8_t x_620; +uint8_t x_1622; lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -14551,23 +23903,23 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_620 = !lean_is_exclusive(x_15); -if (x_620 == 0) +x_1622 = !lean_is_exclusive(x_15); +if (x_1622 == 0) { return x_15; } else { -lean_object* x_621; lean_object* x_622; lean_object* x_623; -x_621 = lean_ctor_get(x_15, 0); -x_622 = lean_ctor_get(x_15, 1); -lean_inc(x_622); -lean_inc(x_621); +lean_object* x_1623; lean_object* x_1624; lean_object* x_1625; +x_1623 = lean_ctor_get(x_15, 0); +x_1624 = lean_ctor_get(x_15, 1); +lean_inc(x_1624); +lean_inc(x_1623); lean_dec(x_15); -x_623 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_623, 0, x_621); -lean_ctor_set(x_623, 1, x_622); -return x_623; +x_1625 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1625, 0, x_1623); +lean_ctor_set(x_1625, 1, x_1624); +return x_1625; } } } @@ -14612,67 +23964,144 @@ static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quot _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__1; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__1; x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__4; -x_3 = lean_unsigned_to_nat(297u); +x_3 = lean_unsigned_to_nat(368u); x_4 = lean_unsigned_to_nat(12u); x_5 = l_Lean_Syntax_strLitToAtom___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); return x_6; } } +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_893____closed__1; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__5; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("match_syntax "); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__7; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Tactic_changeWith___closed__3; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { +lean_object* x_10; uint8_t x_46; lean_object* x_47; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint8_t x_66; +x_63 = lean_st_ref_get(x_8, x_9); +x_64 = lean_ctor_get(x_63, 0); +lean_inc(x_64); +x_65 = lean_ctor_get(x_64, 3); +lean_inc(x_65); +lean_dec(x_64); +x_66 = lean_ctor_get_uint8(x_65, sizeof(void*)*1); +lean_dec(x_65); +if (x_66 == 0) +{ +lean_object* x_67; uint8_t x_68; +x_67 = lean_ctor_get(x_63, 1); +lean_inc(x_67); +lean_dec(x_63); +x_68 = 0; +x_46 = x_68; +x_47 = x_67; +goto block_62; +} +else +{ +lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; uint8_t x_74; +x_69 = lean_ctor_get(x_63, 1); +lean_inc(x_69); +lean_dec(x_63); +x_70 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__6; +x_71 = l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm___spec__2(x_70, x_3, x_4, x_5, x_6, x_7, x_8, x_69); +x_72 = lean_ctor_get(x_71, 0); +lean_inc(x_72); +x_73 = lean_ctor_get(x_71, 1); +lean_inc(x_73); +lean_dec(x_71); +x_74 = lean_unbox(x_72); +lean_dec(x_72); +x_46 = x_74; +x_47 = x_73; +goto block_62; +} +block_45: +{ if (lean_obj_tag(x_1) == 0) { if (lean_obj_tag(x_2) == 0) { -lean_object* x_10; lean_object* x_11; -x_10 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__3; -x_11 = l_Lean_throwError___at_Lean_Elab_Term_throwErrorIfErrors___spec__1___rarg(x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_object* x_11; lean_object* x_12; +x_11 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__3; +x_12 = l_Lean_throwError___at_Lean_Elab_Term_throwErrorIfErrors___spec__1___rarg(x_11, x_3, x_4, x_5, x_6, x_7, x_8, x_10); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -return x_11; +return x_12; } else { -lean_object* x_12; lean_object* x_13; -x_12 = lean_ctor_get(x_2, 0); -lean_inc(x_12); -lean_dec(x_2); -x_13 = lean_ctor_get(x_12, 0); +lean_object* x_13; lean_object* x_14; +x_13 = lean_ctor_get(x_2, 0); lean_inc(x_13); -if (lean_obj_tag(x_13) == 0) +lean_dec(x_2); +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +if (lean_obj_tag(x_14) == 0) { -lean_object* x_14; lean_object* x_15; +lean_object* x_15; lean_object* x_16; lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_14 = lean_ctor_get(x_12, 1); -lean_inc(x_14); -lean_dec(x_12); -x_15 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_15, 0, x_14); -lean_ctor_set(x_15, 1, x_9); -return x_15; +x_15 = lean_ctor_get(x_13, 1); +lean_inc(x_15); +lean_dec(x_13); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_15); +lean_ctor_set(x_16, 1, x_10); +return x_16; } else { -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +lean_dec(x_14); lean_dec(x_13); -lean_dec(x_12); -x_16 = l_Lean_Elab_Term_getFVarLocalDecl_x21___closed__1; -x_17 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__5; -x_18 = lean_panic_fn(x_16, x_17); -x_19 = lean_apply_7(x_18, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_19; +x_17 = l_Lean_Elab_Term_getFVarLocalDecl_x21___closed__1; +x_18 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__5; +x_19 = lean_panic_fn(x_17, x_18); +x_20 = lean_apply_7(x_19, x_3, x_4, x_5, x_6, x_7, x_8, x_10); +return x_20; } } } @@ -14680,65 +24109,122 @@ else { if (lean_obj_tag(x_2) == 0) { -lean_object* x_20; lean_object* x_21; +lean_object* x_21; lean_object* x_22; lean_dec(x_1); -x_20 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__3; -x_21 = l_Lean_throwError___at_Lean_Elab_Term_throwErrorIfErrors___spec__1___rarg(x_20, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_21 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__3; +x_22 = l_Lean_throwError___at_Lean_Elab_Term_throwErrorIfErrors___spec__1___rarg(x_21, x_3, x_4, x_5, x_6, x_7, x_8, x_10); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -return x_21; +return x_22; } else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_22 = lean_ctor_get(x_1, 0); -lean_inc(x_22); -x_23 = lean_ctor_get(x_1, 1); +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_23 = lean_ctor_get(x_1, 0); lean_inc(x_23); +x_24 = lean_ctor_get(x_1, 1); +lean_inc(x_24); lean_dec(x_1); lean_inc(x_2); -x_24 = l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__1(x_2); -x_25 = l_List_zip___rarg___closed__1; -x_26 = l_List_zipWith___rarg(x_25, x_24, x_2); -x_27 = l_List_head_x21___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__2(x_26); -x_28 = l_List_tail_x21___rarg(x_26); -x_29 = l_List_foldl___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__3(x_27, x_28); -lean_dec(x_28); -lean_dec(x_27); -x_30 = lean_ctor_get(x_29, 0); -lean_inc(x_30); +x_25 = l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__1(x_2); +x_26 = l_List_zip___rarg___closed__1; +x_27 = l_List_zipWith___rarg(x_26, x_25, x_2); +x_28 = l_List_head_x21___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__2(x_27); +x_29 = l_List_tail_x21___rarg(x_27); +x_30 = l_List_foldl___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__3(x_28, x_29); lean_dec(x_29); -x_31 = lean_ctor_get(x_30, 1); +lean_dec(x_28); +x_31 = lean_ctor_get(x_30, 0); lean_inc(x_31); +lean_dec(x_30); if (lean_obj_tag(x_31) == 0) { lean_object* x_32; lean_object* x_33; -x_32 = lean_box(0); -x_33 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2(x_30, x_26, x_23, x_22, x_32, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_33; +x_32 = lean_ctor_get(x_31, 0); +lean_inc(x_32); +x_33 = lean_ctor_get(x_32, 1); +lean_inc(x_33); +lean_dec(x_32); +if (lean_obj_tag(x_33) == 0) +{ +lean_object* x_34; lean_object* x_35; +x_34 = lean_box(0); +x_35 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9(x_31, x_27, x_24, x_23, x_34, x_3, x_4, x_5, x_6, x_7, x_8, x_10); +return x_35; } else { -lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; -x_34 = lean_ctor_get(x_31, 0); -lean_inc(x_34); -lean_dec(x_31); -x_35 = lean_array_get_size(x_34); -lean_dec(x_34); -x_36 = l_List_range(x_35); -x_37 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8(x_36, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -x_38 = lean_ctor_get(x_37, 0); -lean_inc(x_38); -x_39 = lean_ctor_get(x_37, 1); -lean_inc(x_39); -lean_dec(x_37); -x_40 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2(x_30, x_26, x_23, x_22, x_38, x_3, x_4, x_5, x_6, x_7, x_8, x_39); -return x_40; +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_33, 0); +lean_inc(x_36); +lean_dec(x_33); +x_37 = lean_array_get_size(x_36); +lean_dec(x_36); +x_38 = l_List_range(x_37); +x_39 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16(x_38, x_3, x_4, x_5, x_6, x_7, x_8, x_10); +x_40 = lean_ctor_get(x_39, 0); +lean_inc(x_40); +x_41 = lean_ctor_get(x_39, 1); +lean_inc(x_41); +lean_dec(x_39); +x_42 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9(x_31, x_27, x_24, x_23, x_40, x_3, x_4, x_5, x_6, x_7, x_8, x_41); +return x_42; } } +else +{ +lean_object* x_43; lean_object* x_44; +x_43 = lean_box(0); +x_44 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9(x_31, x_27, x_24, x_23, x_43, x_3, x_4, x_5, x_6, x_7, x_8, x_10); +return x_44; +} +} +} +} +block_62: +{ +if (x_46 == 0) +{ +x_10 = x_47; +goto block_45; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; +lean_inc(x_1); +x_48 = l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__17(x_1); +x_49 = l_Lean_MessageData_ofList(x_48); +lean_dec(x_48); +x_50 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__8; +x_51 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_49); +x_52 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__9; +x_53 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_53, 0, x_51); +lean_ctor_set(x_53, 1, x_52); +lean_inc(x_2); +x_54 = l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__21(x_2); +x_55 = l_Lean_MessageData_ofList(x_54); +lean_dec(x_54); +x_56 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_56, 0, x_53); +lean_ctor_set(x_56, 1, x_55); +x_57 = l_Lean_KernelException_toMessageData___closed__15; +x_58 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_58, 0, x_56); +lean_ctor_set(x_58, 1, x_57); +x_59 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__6; +x_60 = l_Lean_addTrace___at___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm___spec__1(x_59, x_58, x_3, x_4, x_5, x_6, x_7, x_8, x_47); +x_61 = lean_ctor_get(x_60, 1); +lean_inc(x_61); +lean_dec(x_60); +x_10 = x_61; +goto block_45; +} } } } @@ -14788,11 +24274,243 @@ lean_dec(x_1); return x_4; } } -lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +_start: +{ +lean_object* x_19; +x_19 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +lean_dec(x_17); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_8); +lean_dec(x_7); +return x_19; +} +} +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__9___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +_start: +{ +lean_object* x_19; +x_19 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__9(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +lean_dec(x_17); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_8); +lean_dec(x_7); +return x_19; +} +} +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +_start: +{ +lean_object* x_19; +x_19 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +lean_dec(x_17); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_8); +lean_dec(x_7); +return x_19; +} +} +lean_object* l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_10; +} +} +lean_object* l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_10; +} +} +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__13___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +_start: +{ +lean_object* x_19; +x_19 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__13(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +lean_dec(x_17); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_8); +lean_dec(x_7); +return x_19; +} +} +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__14___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +_start: +{ +lean_object* x_19; +x_19 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__14(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +lean_dec(x_17); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_8); +lean_dec(x_7); +return x_19; +} +} +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +_start: +{ +lean_object* x_19; +x_19 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +lean_dec(x_17); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_8); +lean_dec(x_7); +return x_19; +} +} +lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; -x_9 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -14802,18 +24520,257 @@ lean_dec(x_2); return x_9; } } -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -lean_object* x_13; -x_13 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); +lean_object* x_14; +x_14 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec(x_7); -lean_dec(x_6); -return x_13; +return x_14; +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +_start: +{ +lean_object* x_20; +x_20 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); +lean_dec(x_18); +lean_dec(x_17); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_7); +return x_20; +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +_start: +{ +lean_object* x_20; +x_20 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); +lean_dec(x_18); +lean_dec(x_17); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_7); +return x_20; +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__4___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +_start: +{ +lean_object* x_20; +x_20 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); +lean_dec(x_18); +lean_dec(x_17); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_7); +return x_20; +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +_start: +{ +lean_object* x_20; +x_20 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); +lean_dec(x_18); +lean_dec(x_17); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_7); +return x_20; +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__6___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +_start: +{ +lean_object* x_20; +x_20 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); +lean_dec(x_18); +lean_dec(x_17); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_7); +return x_20; +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__7___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +_start: +{ +lean_object* x_20; +x_20 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); +lean_dec(x_18); +lean_dec(x_17); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_7); +return x_20; +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__8___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +_start: +{ +lean_object* x_20; +x_20 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19); +lean_dec(x_18); +lean_dec(x_17); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_7); +return x_20; } } lean_object* l_Lean_Elab_Term_Quotation_getPatternVars(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) { @@ -15200,8 +25157,8 @@ static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quot _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_9707____closed__11; -x_2 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_1 = l_Array_empty___closed__1; +x_2 = l_Lean_Elab_Term_Quotation_mkTuple___closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -15210,56 +25167,24 @@ static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quot _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__5; -x_2 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; -x_3 = lean_array_push(x_1, x_2); +x_1 = l_Lean_nullKind___closed__2; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__5; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); return x_3; } } static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__7() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___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___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___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___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__7; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___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___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___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___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__10() { -_start: -{ lean_object* x_1; lean_object* x_2; x_1 = l_myMacro____x40_Init_Notation___hyg_9707____closed__12; x_2 = l_Lean_mkAtom(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__11() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__8() { _start: { lean_object* x_1; lean_object* x_2; @@ -15268,12 +25193,12 @@ x_2 = l_Lean_mkAtom(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__12() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Std_PersistentHashMap_mkCollisionNode___rarg___closed__1; -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__10; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__7; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -15343,7 +25268,7 @@ lean_ctor_set(x_34, 2, x_30); lean_ctor_set(x_34, 3, x_31); x_35 = l_Array_empty___closed__1; x_36 = lean_array_push(x_35, x_34); -x_37 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__9; +x_37 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__6; x_38 = lean_array_push(x_36, x_37); x_39 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; x_40 = lean_alloc_ctor(1, 2, 0); @@ -15748,9 +25673,9 @@ x_201 = l_Lean_nullKind___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_197); -x_203 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__12; +x_203 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__9; x_204 = lean_array_push(x_203, x_202); -x_205 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__11; +x_205 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__8; x_206 = lean_array_push(x_204, x_205); x_207 = lean_array_push(x_206, x_18); x_208 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; @@ -16133,9 +26058,9 @@ x_355 = l_Lean_nullKind___closed__2; x_356 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_356, 0, x_355); lean_ctor_set(x_356, 1, x_197); -x_357 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__12; +x_357 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__9; x_358 = lean_array_push(x_357, x_356); -x_359 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__11; +x_359 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__8; x_360 = lean_array_push(x_358, x_359); x_361 = lean_array_push(x_360, x_18); x_362 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; @@ -16429,7 +26354,7 @@ lean_ctor_set(x_458, 2, x_454); lean_ctor_set(x_458, 3, x_455); x_459 = l_Array_empty___closed__1; x_460 = lean_array_push(x_459, x_458); -x_461 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__9; +x_461 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__6; x_462 = lean_array_push(x_460, x_461); x_463 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; x_464 = lean_alloc_ctor(1, 2, 0); @@ -16646,9 +26571,9 @@ x_536 = l_Lean_nullKind___closed__2; x_537 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_537, 0, x_536); lean_ctor_set(x_537, 1, x_534); -x_538 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__12; +x_538 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__9; x_539 = lean_array_push(x_538, x_537); -x_540 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__11; +x_540 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__8; x_541 = lean_array_push(x_539, x_540); x_542 = lean_array_push(x_541, x_442); x_543 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; @@ -16960,7 +26885,7 @@ lean_ctor_set(x_642, 2, x_638); lean_ctor_set(x_642, 3, x_639); x_643 = l_Array_empty___closed__1; x_644 = lean_array_push(x_643, x_642); -x_645 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__9; +x_645 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__6; x_646 = lean_array_push(x_644, x_645); x_647 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; x_648 = lean_alloc_ctor(1, 2, 0); @@ -17181,9 +27106,9 @@ x_721 = l_Lean_nullKind___closed__2; x_722 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_722, 0, x_721); lean_ctor_set(x_722, 1, x_719); -x_723 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__12; +x_723 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__9; x_724 = lean_array_push(x_723, x_722); -x_725 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__11; +x_725 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__8; x_726 = lean_array_push(x_724, x_725); x_727 = lean_array_push(x_726, x_625); x_728 = l_myMacro____x40_Init_Notation___hyg_9707____closed__13; @@ -17842,6 +27767,24 @@ return x_41; } } } +static lean_object* _init_l_Lean_Elab_Term_Quotation_match__syntax_expand___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("result"); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_match__syntax_expand___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__6; +x_2 = l_Lean_Elab_Term_Quotation_match__syntax_expand___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} static lean_object* _init_l_Lean_Elab_Term_Quotation_match__syntax_expand___boxed__const__1() { _start: { @@ -17894,12 +27837,179 @@ x_26 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_26, 0, x_10); lean_ctor_set(x_26, 1, x_25); x_27 = lean_array_to_list(lean_box(0), x_23); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); x_28 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch(x_26, x_27, x_2, x_3, x_4, x_5, x_6, x_7, x_24); +if (lean_obj_tag(x_28) == 0) +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; uint8_t x_34; +x_29 = lean_ctor_get(x_28, 0); +lean_inc(x_29); +x_30 = lean_ctor_get(x_28, 1); +lean_inc(x_30); +lean_dec(x_28); +x_31 = lean_st_ref_get(x_7, x_30); +x_32 = lean_ctor_get(x_31, 0); +lean_inc(x_32); +x_33 = lean_ctor_get(x_32, 3); +lean_inc(x_33); +lean_dec(x_32); +x_34 = lean_ctor_get_uint8(x_33, sizeof(void*)*1); +lean_dec(x_33); +if (x_34 == 0) +{ +uint8_t x_35; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_35 = !lean_is_exclusive(x_31); +if (x_35 == 0) +{ +lean_object* x_36; +x_36 = lean_ctor_get(x_31, 0); +lean_dec(x_36); +lean_ctor_set(x_31, 0, x_29); +return x_31; +} +else +{ +lean_object* x_37; lean_object* x_38; +x_37 = lean_ctor_get(x_31, 1); +lean_inc(x_37); +lean_dec(x_31); +x_38 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_38, 0, x_29); +lean_ctor_set(x_38, 1, x_37); +return x_38; +} +} +else +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43; +x_39 = lean_ctor_get(x_31, 1); +lean_inc(x_39); +lean_dec(x_31); +x_40 = l_Lean_Elab_Term_Quotation_match__syntax_expand___closed__2; +x_41 = l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm___spec__2(x_40, x_2, x_3, x_4, x_5, x_6, x_7, x_39); +x_42 = lean_ctor_get(x_41, 0); +lean_inc(x_42); +x_43 = lean_unbox(x_42); +lean_dec(x_42); +if (x_43 == 0) +{ +uint8_t x_44; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_44 = !lean_is_exclusive(x_41); +if (x_44 == 0) +{ +lean_object* x_45; +x_45 = lean_ctor_get(x_41, 0); +lean_dec(x_45); +lean_ctor_set(x_41, 0, x_29); +return x_41; +} +else +{ +lean_object* x_46; lean_object* x_47; +x_46 = lean_ctor_get(x_41, 1); +lean_inc(x_46); +lean_dec(x_41); +x_47 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_47, 0, x_29); +lean_ctor_set(x_47, 1, x_46); +return x_47; +} +} +else +{ +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_41, 1); +lean_inc(x_48); +lean_dec(x_41); +lean_inc(x_29); +x_49 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_49, 0, x_29); +x_50 = l_Lean_KernelException_toMessageData___closed__15; +x_51 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_49); +x_52 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_52, 0, x_51); +lean_ctor_set(x_52, 1, x_50); +x_53 = l_Lean_addTrace___at___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm___spec__1(x_40, x_52, x_2, x_3, x_4, x_5, x_6, x_7, x_48); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_54 = !lean_is_exclusive(x_53); +if (x_54 == 0) +{ +lean_object* x_55; +x_55 = lean_ctor_get(x_53, 0); +lean_dec(x_55); +lean_ctor_set(x_53, 0, x_29); +return x_53; +} +else +{ +lean_object* x_56; lean_object* x_57; +x_56 = lean_ctor_get(x_53, 1); +lean_inc(x_56); +lean_dec(x_53); +x_57 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_57, 0, x_29); +lean_ctor_set(x_57, 1, x_56); +return x_57; +} +} +} +} +else +{ +uint8_t x_58; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_58 = !lean_is_exclusive(x_28); +if (x_58 == 0) +{ return x_28; } else { -uint8_t x_29; +lean_object* x_59; lean_object* x_60; lean_object* x_61; +x_59 = lean_ctor_get(x_28, 0); +x_60 = lean_ctor_get(x_28, 1); +lean_inc(x_60); +lean_inc(x_59); +lean_dec(x_28); +x_61 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_61, 0, x_59); +lean_ctor_set(x_61, 1, x_60); +return x_61; +} +} +} +else +{ +uint8_t x_62; lean_dec(x_10); lean_dec(x_7); lean_dec(x_6); @@ -17907,23 +28017,23 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_29 = !lean_is_exclusive(x_22); -if (x_29 == 0) +x_62 = !lean_is_exclusive(x_22); +if (x_62 == 0) { return x_22; } else { -lean_object* x_30; lean_object* x_31; lean_object* x_32; -x_30 = lean_ctor_get(x_22, 0); -x_31 = lean_ctor_get(x_22, 1); -lean_inc(x_31); -lean_inc(x_30); +lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_63 = lean_ctor_get(x_22, 0); +x_64 = lean_ctor_get(x_22, 1); +lean_inc(x_64); +lean_inc(x_63); lean_dec(x_22); -x_32 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_32, 0, x_30); -lean_ctor_set(x_32, 1, x_31); -return x_32; +x_65 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_65, 0, x_63); +lean_ctor_set(x_65, 1, x_64); +return x_65; } } } @@ -18022,24 +28132,6 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSynta _start: { lean_object* x_1; -x_1 = lean_mk_string("match_syntax"); -return x_1; -} -} -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_38____closed__6; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___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_elabMatchSyntax___closed__3() { -_start: -{ -lean_object* x_1; x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabMatchSyntax), 9, 0); return x_1; } @@ -18049,12 +28141,52 @@ _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_elabMatchSyntax___closed__2; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__3; +x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__40; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } +lean_object* l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_8457_(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__6; +x_3 = l_Lean_registerTraceClass(x_2, x_1); +if (lean_obj_tag(x_3) == 0) +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_4 = lean_ctor_get(x_3, 1); +lean_inc(x_4); +lean_dec(x_3); +x_5 = l_Lean_Elab_Term_Quotation_match__syntax_expand___closed__2; +x_6 = l_Lean_registerTraceClass(x_5, x_4); +return x_6; +} +else +{ +uint8_t x_7; +x_7 = !lean_is_exclusive(x_3); +if (x_7 == 0) +{ +return x_3; +} +else +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_8 = lean_ctor_get(x_3, 0); +x_9 = lean_ctor_get(x_3, 1); +lean_inc(x_9); +lean_inc(x_8); +lean_dec(x_3); +x_10 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_10, 0, x_8); +lean_ctor_set(x_10, 1, x_9); +return x_10; +} +} +} +} lean_object* initialize_Init(lean_object*); lean_object* initialize_Lean_Syntax(lean_object*); lean_object* initialize_Lean_ResolveName(lean_object*); @@ -18090,106 +28222,110 @@ l_Lean_Elab_Term_Quotation_mkAntiquotNode___closed__6 = _init_l_Lean_Elab_Term_Q lean_mark_persistent(l_Lean_Elab_Term_Quotation_mkAntiquotNode___closed__6); l_Lean_Elab_Term_Quotation_antiquotKind_x3f___closed__1 = _init_l_Lean_Elab_Term_Quotation_antiquotKind_x3f___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_Quotation_antiquotKind_x3f___closed__1); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___boxed__const__1 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___boxed__const__1(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___boxed__const__1); l_Lean_Elab_Term_Quotation_getAntiquotationIds___closed__1 = _init_l_Lean_Elab_Term_Quotation_getAntiquotationIds___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_Quotation_getAntiquotationIds___closed__1); l_Lean_Elab_Term_Quotation_getAntiquotationIds___closed__2 = _init_l_Lean_Elab_Term_Quotation_getAntiquotationIds___closed__2(); lean_mark_persistent(l_Lean_Elab_Term_Quotation_getAntiquotationIds___closed__2); l_Lean_Elab_Term_Quotation_getAntiquotationIds___closed__3 = _init_l_Lean_Elab_Term_Quotation_getAntiquotationIds___closed__3(); lean_mark_persistent(l_Lean_Elab_Term_Quotation_getAntiquotationIds___closed__3); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1___closed__1 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1___closed__1(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1___closed__1); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1___closed__2 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1___closed__2(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1___closed__2); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1___closed__3 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1___closed__3(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1___closed__3); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1___closed__4 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1___closed__4(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__1___closed__4); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__1 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__1(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__1); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__2 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__2(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__2); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__3 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__3(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__3); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__4 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__4(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__4); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__5 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__5(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__5); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__6 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__6(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__6); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__7 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__7(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__7); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__8 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__8(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__8); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__9 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__9(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__9); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__10 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__10(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__10); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__11 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__11(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__11); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__12 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__12(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__12); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__13 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__13(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___lambda__2___closed__13); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__1 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__1(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__1); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__2 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__2(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__2); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__3 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__3(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__3); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__4 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__4(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__4); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__5 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__5(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__5); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__6 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__6(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__6); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__7 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__7(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__7); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__8 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__8(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__8); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__9 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__9(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__9); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__10 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__10(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__10); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__14 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__14(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__14); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__17 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__17(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__17); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__18 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__18(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__18); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__19 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__19(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__19); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__20 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__20(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__20); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__21 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__21(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__21); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__22 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__22(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__22); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__23 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__23(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__23); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__24 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__24(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__24); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__25 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__25(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__25); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__26 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__26(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__26); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__27 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__27(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__27); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__28 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__28(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__28); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__29 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__29(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__29); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___boxed__const__1 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___boxed__const__1(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___boxed__const__1); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__1 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__1(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__1); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__2 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__2(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__2); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__3 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__3(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__3); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__4 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__4(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__4); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__1 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__1(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__1); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__2 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__2(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__2); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__3 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__3(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__3); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__4 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__4(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__4); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__5 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__5(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__5); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__6 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__6(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__6); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__7 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__7(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__7); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__8 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__8(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__8); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__9 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__9(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__9); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__10 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__10(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__10); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__11 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__11(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__11); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__12 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__12(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__12); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__13 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__13(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__13); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__1 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__1(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__1); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__2 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__2(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__2); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__3 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__3(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__3); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__4 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__4(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__4); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__5 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__5(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__5); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__6 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__6(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__6); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__7 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__7(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__7); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__8 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__8(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__8); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__9 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__9(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__9); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__10 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__10(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__10); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__11 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__11(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__11); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__12 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__12(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__12); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__13 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__13(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__13); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__15 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__15(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__15); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__18 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__18(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__18); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__19 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__19(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__19); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__20 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__20(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__20); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__21 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__21(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__21); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__23 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__23(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__23); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__24 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__24(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__24); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__25 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__25(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__25); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__27 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__27(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__27); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__28 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__28(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__28); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__29 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__29(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__29); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__30 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__30(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__30); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___boxed__const__1 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___boxed__const__1(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___boxed__const__1); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__1 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__1(); lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__1); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__2 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__2(); @@ -18428,24 +28564,28 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabDynamicQuot___c res = l___regBuiltin_Lean_Elab_Term_Quotation_elabDynamicQuot(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Elab_Term_Quotation_HeadInfo_kind___default = _init_l_Lean_Elab_Term_Quotation_HeadInfo_kind___default(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_HeadInfo_kind___default); -l_Lean_Elab_Term_Quotation_HeadInfo_argPats___default = _init_l_Lean_Elab_Term_Quotation_HeadInfo_argPats___default(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_HeadInfo_argPats___default); +l_Lean_Elab_Term_Quotation_BasicHeadInfo_kind___default = _init_l_Lean_Elab_Term_Quotation_BasicHeadInfo_kind___default(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_BasicHeadInfo_kind___default); +l_Lean_Elab_Term_Quotation_BasicHeadInfo_argPats___default = _init_l_Lean_Elab_Term_Quotation_BasicHeadInfo_argPats___default(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_BasicHeadInfo_argPats___default); l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___closed__1 = _init_l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___closed__1); l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___closed__2 = _init_l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___closed__2(); lean_mark_persistent(l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___closed__2); +l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___closed__3 = _init_l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___closed__3(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___closed__3); l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo = _init_l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo(); lean_mark_persistent(l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__1 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__1(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__1); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__2 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__2(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__2); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__3); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___elambda__3___closed__4); +l_Lean_Elab_Term_Quotation_mkTuple___closed__1 = _init_l_Lean_Elab_Term_Quotation_mkTuple___closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_mkTuple___closed__1); +l_Lean_Elab_Term_Quotation_mkTuple___closed__2 = _init_l_Lean_Elab_Term_Quotation_mkTuple___closed__2(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_mkTuple___closed__2); +l_Lean_Elab_Term_Quotation_mkTuple___closed__3 = _init_l_Lean_Elab_Term_Quotation_mkTuple___closed__3(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_mkTuple___closed__3); +l_Lean_Elab_Term_Quotation_mkTuple___closed__4 = _init_l_Lean_Elab_Term_Quotation_mkTuple___closed__4(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_mkTuple___closed__4); +l_Lean_Elab_Term_Quotation_mkTuple___closed__5 = _init_l_Lean_Elab_Term_Quotation_mkTuple___closed__5(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_mkTuple___closed__5); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__1___closed__1 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__1___closed__1(); lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__1___closed__1); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__1___closed__2 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__1___closed__2(); @@ -18460,18 +28600,24 @@ l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__4); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5(); lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__6 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__6); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3___closed__1 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3___closed__1(); lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3___closed__1); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3___closed__2 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3___closed__2(); lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3___closed__2); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__1 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__1(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__1); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__2 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__2(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__2); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__3 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__3(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__3); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__4 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__4(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__4); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__1 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__1); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__2 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__2); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__3 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__3); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___closed__1 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___closed__1(); lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___closed__1); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___closed__2 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___closed__2(); @@ -18486,22 +28632,44 @@ l_List_head_x21___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_c lean_mark_persistent(l_List_head_x21___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__2___closed__1); l_List_head_x21___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__2___closed__2 = _init_l_List_head_x21___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__2___closed__2(); lean_mark_persistent(l_List_head_x21___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__2___closed__2); -l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__1 = _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__1(); -lean_mark_persistent(l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__1); -l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__2 = _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__2(); -lean_mark_persistent(l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__2); -l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__3 = _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__3(); -lean_mark_persistent(l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__3); -l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__4 = _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__4(); -lean_mark_persistent(l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__4); -l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__5 = _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__5(); -lean_mark_persistent(l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__5); -l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__6 = _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__6(); -lean_mark_persistent(l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__6); -l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__7 = _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__7(); -lean_mark_persistent(l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__7); -l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__8 = _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__8(); -lean_mark_persistent(l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__8); +l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__1 = _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__1(); +lean_mark_persistent(l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__1); +l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__2 = _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__2(); +lean_mark_persistent(l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__2); +l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__3 = _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__3(); +lean_mark_persistent(l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__3); +l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__4 = _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__4(); +lean_mark_persistent(l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__4); +l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__5 = _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__5(); +lean_mark_persistent(l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__5); +l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__6 = _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__6(); +lean_mark_persistent(l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__6); +l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__7 = _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__7(); +lean_mark_persistent(l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__7); +l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___closed__1 = _init_l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___closed__1(); +lean_mark_persistent(l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___closed__1); +l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___closed__2 = _init_l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___closed__2(); +lean_mark_persistent(l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___closed__2); +l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___closed__1 = _init_l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___closed__1(); +lean_mark_persistent(l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___closed__1); +l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___closed__2 = _init_l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___closed__2(); +lean_mark_persistent(l_List_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___closed__2); +l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__1 = _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__1(); +lean_mark_persistent(l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__1); +l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__2 = _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__2(); +lean_mark_persistent(l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__2); +l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__3 = _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__3(); +lean_mark_persistent(l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__3); +l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__4 = _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__4(); +lean_mark_persistent(l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__4); +l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__5 = _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__5(); +lean_mark_persistent(l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__5); +l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__6 = _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__6(); +lean_mark_persistent(l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__6); +l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__7 = _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__7(); +lean_mark_persistent(l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__7); +l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__8 = _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__8(); +lean_mark_persistent(l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__8); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1___closed__1 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1___closed__1(); lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1___closed__1); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1___closed__2 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1___closed__2(); @@ -18518,36 +28686,110 @@ l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___la lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__5); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__6 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__6(); lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__6); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__7 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__7(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__7); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__8 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__8(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__8); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__9 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__9(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__9); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__10 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__10(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__10); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__11 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__11(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__11); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__12 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__12(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__12); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__13 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__13(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__13); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__14 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__14(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__14); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__15 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__15(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__15); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__16 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__16(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__16); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__17 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__17(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__17); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__18 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__18(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__18); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__19 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__19(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__19); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__20 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__20(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__20); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__21 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__21(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__21); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__1 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__1); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__2 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__2); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__1 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__1); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__2 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__2); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__3 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__3); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__4 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__4); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__5 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__5); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__6 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__6); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__7 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__7(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__7); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__8 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__8(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__8); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__9 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__9(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__9); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__10 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__10(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__10); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__11 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__11(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__11); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__12 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__12(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__12); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__13 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__13(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__13); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__14 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__14(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__14); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__15 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__15(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__15); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__16 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__16(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__16); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__17 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__17(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__17); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__18 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__18(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__18); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__19 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__19(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__19); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__20 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__20(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__20); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__22 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__22(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__22); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__23 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__23(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__23); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__25 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__25(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__25); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__27 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__27(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__27); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__29 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__29(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__29); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__30 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__30(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__30); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__31 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__31(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__31); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__32 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__32(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__32); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__33 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__33(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__33); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__34 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__34(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__34); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__35 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__35(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__35); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__36 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__36(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__36); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__37 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__37(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__37); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__38 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__38(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__38); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__39 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__39(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__39); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__40 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__40(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__40); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__41 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__41(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__41); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__45 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__45(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__45); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__46 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__46(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__46); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__47 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__47(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__47); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__48 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__48(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__48); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__49 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__49(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__49); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__50 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__50(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__50); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__1 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__1(); lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__1); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__2 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__2(); @@ -18558,6 +28800,14 @@ l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___cl lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__4); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__5 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__5(); lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__5); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__6 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__6); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__7 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__7(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__7); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__8 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__8(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__8); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__9 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__9(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__9); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__1 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__1(); lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__1); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__2 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__2(); @@ -18576,12 +28826,6 @@ l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__8); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__9 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__9(); lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__9); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__10 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__10(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__10); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__11 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__11(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__11); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__12 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__12(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__12); l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__3___lambda__2___closed__1 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__3___lambda__2___closed__1(); lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__3___lambda__2___closed__1); l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__3___lambda__2___closed__2 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__3___lambda__2___closed__2(); @@ -18596,19 +28840,22 @@ l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__3___closed__2); l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__3___closed__3 = _init_l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__3___closed__3(); lean_mark_persistent(l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__3___closed__3); +l_Lean_Elab_Term_Quotation_match__syntax_expand___closed__1 = _init_l_Lean_Elab_Term_Quotation_match__syntax_expand___closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_match__syntax_expand___closed__1); +l_Lean_Elab_Term_Quotation_match__syntax_expand___closed__2 = _init_l_Lean_Elab_Term_Quotation_match__syntax_expand___closed__2(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_match__syntax_expand___closed__2); l_Lean_Elab_Term_Quotation_match__syntax_expand___boxed__const__1 = _init_l_Lean_Elab_Term_Quotation_match__syntax_expand___boxed__const__1(); lean_mark_persistent(l_Lean_Elab_Term_Quotation_match__syntax_expand___boxed__const__1); l_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__1 = _init_l_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__1); l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__3); res = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_8457_(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/Lean/Elab/StructInst.c b/stage0/stdlib/Lean/Elab/StructInst.c index 10b4f21ef8..19efa478d3 100644 --- a/stage0/stdlib/Lean/Elab/StructInst.c +++ b/stage0/stdlib/Lean/Elab/StructInst.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Elab.StructInst -// Imports: Init Lean.Util.FindExpr Lean.Elab.App Lean.Elab.Binders Lean.Elab.Quotation +// Imports: Init Lean.Util.FindExpr Lean.Elab.App Lean.Elab.Binders #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -573,6 +573,7 @@ lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_elabM lean_object* l_Lean_Elab_Term_StructInst_Struct_modifyFieldsM___at_Lean_Elab_Term_StructInst_Struct_modifyFields___spec__1(lean_object*, lean_object*); extern lean_object* l_List_head_x21___rarg___closed__3; lean_object* l_Array_ofSubarray___rarg(lean_object*); +lean_object* l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_tryPostponeIfMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getStructureCtor(lean_object*, lean_object*); lean_object* lean_nat_mul(lean_object*, lean_object*); @@ -686,7 +687,6 @@ uint8_t l_Lean_isStructureLike(lean_object*, lean_object*); lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_StructInst_DefaultFields_propagateLoop___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_Lean_Elab_Term_StructInst_FieldLHS_toSyntax_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_elabModifyOp___closed__10; -lean_object* l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_elabStruct_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_formatField___closed__4; lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getFieldIdx___closed__1; @@ -1807,7 +1807,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource___closed__4; x_2 = l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource___closed__5; -x_3 = lean_unsigned_to_nat(82u); +x_3 = lean_unsigned_to_nat(81u); x_4 = lean_unsigned_to_nat(21u); x_5 = l_Lean_Syntax_strLitToAtom___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -6000,7 +6000,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource___closed__4; x_2 = l_Lean_Elab_Term_StructInst_FieldVal_toSyntax___closed__1; -x_3 = lean_unsigned_to_nat(263u); +x_3 = lean_unsigned_to_nat(262u); x_4 = lean_unsigned_to_nat(25u); x_5 = l_Lean_Syntax_strLitToAtom___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -6128,7 +6128,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource___closed__4; x_2 = l_Lean_Elab_Term_StructInst_Field_toSyntax___closed__1; -x_3 = lean_unsigned_to_nat(274u); +x_3 = lean_unsigned_to_nat(273u); x_4 = lean_unsigned_to_nat(11u); x_5 = l_Lean_Syntax_strLitToAtom___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -8998,7 +8998,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource___closed__4; x_2 = l_List_map___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandParentFields___spec__1___closed__1; -x_3 = lean_unsigned_to_nat(366u); +x_3 = lean_unsigned_to_nat(365u); x_4 = lean_unsigned_to_nat(34u); x_5 = l_Lean_Syntax_strLitToAtom___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -10017,7 +10017,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource___closed__4; x_2 = l_List_foldlM___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_mkFieldMap___spec__10___closed__1; -x_3 = lean_unsigned_to_nat(384u); +x_3 = lean_unsigned_to_nat(383u); x_4 = lean_unsigned_to_nat(11u); x_5 = l_Lean_Syntax_strLitToAtom___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -21410,7 +21410,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource___closed__4; x_2 = l_Lean_Elab_Term_StructInst_DefaultFields_findDefaultMissing_x3f___lambda__1___closed__1; -x_3 = lean_unsigned_to_nat(615u); +x_3 = lean_unsigned_to_nat(614u); x_4 = lean_unsigned_to_nat(20u); x_5 = l_Lean_Syntax_strLitToAtom___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -21645,7 +21645,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource___closed__4; x_2 = l_Lean_Elab_Term_StructInst_DefaultFields_getFieldName___closed__1; -x_3 = lean_unsigned_to_nat(623u); +x_3 = lean_unsigned_to_nat(622u); x_4 = lean_unsigned_to_nat(9u); x_5 = l_Lean_Syntax_strLitToAtom___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -24773,7 +24773,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_getStructSource___closed__4; x_2 = l_List_forIn_loop___at_Lean_Elab_Term_StructInst_DefaultFields_step___spec__1___lambda__1___closed__1; -x_3 = lean_unsigned_to_nat(746u); +x_3 = lean_unsigned_to_nat(745u); x_4 = lean_unsigned_to_nat(25u); x_5 = l_Lean_Syntax_strLitToAtom___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -26579,7 +26579,7 @@ x_15 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_15, 0, x_14); x_16 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_16, 0, x_15); -x_17 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_17 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -27443,7 +27443,6 @@ lean_object* initialize_Init(lean_object*); lean_object* initialize_Lean_Util_FindExpr(lean_object*); lean_object* initialize_Lean_Elab_App(lean_object*); lean_object* initialize_Lean_Elab_Binders(lean_object*); -lean_object* initialize_Lean_Elab_Quotation(lean_object*); static bool _G_initialized = false; lean_object* initialize_Lean_Elab_StructInst(lean_object* w) { lean_object * res; @@ -27461,9 +27460,6 @@ lean_dec_ref(res); res = initialize_Lean_Elab_Binders(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = initialize_Lean_Elab_Quotation(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); l___regBuiltin_Lean_Elab_Term_StructInst_expandStructInstExpectedType___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_StructInst_expandStructInstExpectedType___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_StructInst_expandStructInstExpectedType___closed__1); res = l___regBuiltin_Lean_Elab_Term_StructInst_expandStructInstExpectedType(lean_io_mk_world()); diff --git a/stage0/stdlib/Lean/Elab/Structure.c b/stage0/stdlib/Lean/Elab/Structure.c index 511ab3a0a0..43eb4d7048 100644 --- a/stage0/stdlib/Lean/Elab/Structure.c +++ b/stage0/stdlib/Lean/Elab/Structure.c @@ -18,7 +18,6 @@ extern lean_object* l_Lean_Elab_Command_checkValidInductiveModifier___rarg___clo lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_collectLevelParamsInFVar___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_applyVisibility___at_Lean_Elab_Command_elabStructure___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_instInhabitedStructFieldInfo; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___boxed(lean_object**); lean_object* l_List_map___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabStructureView___spec__7(lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_withFields___rarg___closed__12; lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___spec__9___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -34,13 +33,11 @@ size_t l_USize_add(size_t, size_t); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields_match__2___rarg(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_getResultUniverse___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_expandOptDeclSig(lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___closed__2; lean_object* l_Lean_Elab_elabAttrs___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Syntax_strLitToAtom___closed__3; lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); lean_object* lean_erase_macro_scopes(lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_processSubfields_loop___rarg___closed__4; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___closed__1; lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_withFields___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); @@ -55,6 +52,7 @@ lean_object* l_Lean_LocalDecl_userName(lean_object*); lean_object* l_Lean_Meta_mkForallFVarsImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_checkParentIsStructure___closed__5; lean_object* l_Lean_addDecl___at_Lean_Elab_Term_declareTacticSyntax___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_whnf___at___private_Lean_Elab_Term_0__Lean_Elab_Term_isTypeApp_x3f___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_updateResultingUniverse_match__1___rarg(lean_object*, lean_object*, lean_object*); @@ -84,9 +82,10 @@ lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_withFields___r lean_object* l_Lean_Elab_Command_checkValidFieldModifier___closed__3; lean_object* lean_array_uset(lean_object*, size_t, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_withFields_match__5___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8(lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_collectUniversesFromFields___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabStructureView___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__3___closed__2; lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_addDefaults(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -94,11 +93,13 @@ extern lean_object* l_Lean_Elab_instInhabitedAttribute; extern lean_object* l_Array_empty___closed__1; lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_withFields_match__5(lean_object*); lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___spec__7___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabStructureView___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___closed__7; lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___closed__3; lean_object* l_Lean_Elab_Command_checkValidFieldModifier___lambda__2___closed__1; lean_object* l_Lean_Elab_Command_checkValidFieldModifier___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__2___closed__3; lean_object* lean_st_ref_get(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_checkValidFieldModifier___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_Elab_elabModifiers___rarg___closed__2; @@ -106,17 +107,18 @@ lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_collectUsedFVarsAtFVa lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_withParents___rarg___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabStructure_match__1(lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_projections(lean_object*, lean_object*, lean_object*, uint8_t); uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_withParents___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_checkValidFieldModifier___lambda__1___closed__2; lean_object* lean_private_to_user_name(lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__3___closed__1; lean_object* l_Lean_Elab_Command_checkValidFieldModifier___lambda__1___closed__1; lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_withFields___rarg___closed__9; lean_object* l_Lean_Elab_Term_ensureNoUnassignedMVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_getResultUniverse_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_elabModifiers___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___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*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__3; lean_object* l_Lean_Meta_mkLambdaFVarsImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_elabModifiers___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___spec__1___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_throwAlreadyDeclaredUniverseLevel___rarg___closed__3; @@ -130,13 +132,13 @@ lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Structure_0__Lean_E lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_levelMVarToParamAux_match__1(lean_object*); lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabImplicitLambda___spec__1___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Array_getEvenElems___rarg___closed__1; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__9; lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_checkParentIsStructure___closed__3; lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_withFields_match__4___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_addProjections_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_applyAttributesAt(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_string_utf8_extract(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_withFields_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7(lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_validStructType_match__1(lean_object*); lean_object* l_Lean_Level_getOffsetAux(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -148,8 +150,10 @@ lean_object* l_Lean_Elab_Term_getLevelNames___rarg(lean_object*, lean_object*, l lean_object* l_Lean_throwError___at_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_1019____spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabStructureView___closed__1; lean_object* l_Lean_Elab_Command_shouldInferResultUniverse(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___spec__7___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_Elab_Command_accLevelAtCtor(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_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__2(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_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___closed__3; lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_addCtorFields_match__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_string_utf8_byte_size(lean_object*); @@ -163,11 +167,11 @@ lean_object* l_Lean_Meta_instantiateMVarsImp(lean_object*, lean_object*, lean_ob lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_findFieldInfo_x3f___spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_Elab_Command_checkValidFieldModifier___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_addCtorFields___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_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_withFields___rarg___closed__2; extern lean_object* l_Lean_Elab_Command_checkValidCtorModifier___rarg___closed__3; lean_object* l_Lean_Elab_Command_checkValidFieldModifier___lambda__3___closed__1; lean_object* lean_nat_add(lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__7; lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_addProjections___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_addDefaults_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_checkValidFieldModifier___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -185,12 +189,12 @@ lean_object* l_Lean_Elab_Command_elabStructure___lambda__1(lean_object*, lean_ob extern lean_object* l_myMacro____x40_Init_Notation___hyg_9707____closed__21; lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_levelMVarToParamAux(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_Structure_0__Lean_Elab_Command_validStructType___boxed(lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__2___closed__3; lean_object* l_Lean_Elab_Command_StructFieldInfo_isFromParent___boxed(lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_updateResultingUniverse_match__1(lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_checkParentIsStructure___closed__2; uint8_t l_Lean_Elab_Command_StructFieldInfo_inferMod___default; lean_object* l_Lean_mkAppN(lean_object*, lean_object*); +lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7(lean_object*); lean_object* l_Lean_Elab_elabModifiers___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_withFields___rarg___closed__8; lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_checkParentIsStructure___closed__4; @@ -203,7 +207,6 @@ lean_object* l_Lean_Elab_elabAttrs___at___private_Lean_Elab_Structure_0__Lean_El lean_object* l_Lean_LocalDecl_value(lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_levelMVarToParamAux___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_updateResultingUniverse(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_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_array_fget(lean_object*, lean_object*); @@ -230,7 +233,6 @@ lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___private_Lean_Elab_Struct lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabStructureView___lambda__1___closed__4; lean_object* l_List_map___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabStructureView___spec__1(lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__5; lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabFieldTypeValue_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabStructureView___spec__3___closed__1; lean_object* l_Lean_Meta_mkProjection___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_processSubfields_loop___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -248,36 +250,40 @@ lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_Lean_Elab_Command_elabStru lean_object* l_Lean_Elab_elabDeclAttrs___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_mkAuxConstructions___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_Structure_0__Lean_Elab_Command_defaultCtorName; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_withUsed_match__1(lean_object*); lean_object* l_Lean_Meta_inferType___at_Lean_Elab_Term_collectUsedFVarsAtFVars___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getStructureFieldsFlattened(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabStructureView___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withLetDecl___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_processSubfields_loop___spec__3(lean_object*); lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___spec__7___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__1; extern lean_object* l_Lean_instQuoteProd___rarg___closed__1; 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*); extern lean_object* l_Lean_Elab_Command_checkValidCtorModifier___rarg___lambda__3___closed__3; lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_checkParentIsStructure_match__1(lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_withFields___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*, lean_object*); lean_object* l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__4; lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__4___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_assignLevelMVar___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_updateResultingUniverse___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getFVarLocalDecl_x21(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_replaceRef(lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_withUsed(lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__2___closed__2; lean_object* l_Lean_Elab_mkDeclName___at_Lean_Elab_Command_elabStructure___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_fvarId_x21(lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_withFields_match__3(lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__2; lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabStructureView(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__2___closed__1; lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_applyVisibility___at_Lean_Elab_Command_elabStructure___spec__4(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__3___closed__3; extern lean_object* l_Lean_Elab_elabModifiers___rarg___lambda__3___closed__1; lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___spec__4___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_withFields_match__2___rarg(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___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_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkProjection___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_processSubfields_loop___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_Expr_instInhabitedExpr___closed__1; lean_object* l_Lean_Elab_Command_elabStructure___lambda__3(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*); @@ -285,10 +291,8 @@ lean_object* l___private_Lean_Meta_AppBuilder_0__Lean_Meta_mkIdImp(lean_object*, lean_object* l_Lean_Elab_Command_StructFieldInfo_value_x3f___default; lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___spec__9___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_LocalDecl_binderInfo(lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_elabModifiers___rarg___lambda__3___closed__2; lean_object* lean_st_mk_ref(lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__3___closed__1; lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_addDefaults___closed__1; lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_getResultUniverse_match__1(lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_addCtorFields_match__1(lean_object*); @@ -302,9 +306,10 @@ lean_object* l_Lean_mkRecOn___at___private_Lean_Elab_Inductive_0__Lean_Elab_Comm lean_object* l_Lean_Elab_Command_checkValidFieldModifier___lambda__1___closed__3; 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*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_collectLevelParamsInFVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__1___boxed(lean_object**); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_checkParentIsStructure___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_addInstance(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__8; lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabFieldTypeValue_match__2(lean_object*); extern lean_object* l_Lean_Elab_Command_checkValidInductiveModifier___rarg___lambda__1___closed__3; lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -312,11 +317,11 @@ lean_object* l_Lean_Elab_Command_elabStructure___lambda__2___boxed(lean_object** lean_object* l_Lean_Elab_Command_StructFieldInfo_isSubobject___boxed(lean_object*); lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_withParents___spec__1___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_to_list(lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__3___closed__2; uint8_t l_Lean_Name_isAtomic(lean_object*); lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_Lean_Elab_Command_elabStructure___spec__5___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Environment_contains(lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__6; lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___spec__4___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__6(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_protectedExt; @@ -341,7 +346,6 @@ lean_object* l_Lean_Elab_elabModifiers___at___private_Lean_Elab_Structure_0__Lea lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_collectLevelParamsInFVars___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabStructureView_match__1(lean_object*); lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__6; lean_object* l_Lean_Meta_mkAuxDefinition___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_addDefaults___spec__2(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_KernelException_toMessageData___closed__15; uint8_t l_Array_isEmpty___rarg(lean_object*); @@ -349,6 +353,7 @@ lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabFieldTypeV extern lean_object* l_Lean_instInhabitedSyntax; lean_object* l_Lean_Elab_toAttributeKind___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_withFields___rarg___closed__5; +lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___rarg(lean_object*, lean_object*, lean_object*, lean_object*, 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*); lean_object* l_Lean_Elab_Command_elabStructure___closed__3; lean_object* l_Lean_Elab_sortDeclLevelParams(lean_object*, lean_object*, lean_object*); @@ -358,15 +363,12 @@ lean_object* l_ReaderT_bind___at_Lean_Elab_Term_instMonadLogTermElabM___spec__2_ lean_object* l_Lean_Elab_Term_collectUsedFVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_BinderInfo_isInstImplicit(uint8_t); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_processSubfields_loop___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabStructureView___closed__3; lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_processSubfields(lean_object*); extern lean_object* l_Lean_Elab_Term_getFVarLocalDecl_x21___closed__1; extern lean_object* l_Lean_KernelException_toMessageData___closed__3; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___lambda__1(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*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); lean_object* l_Lean_Elab_mkDeclName___at_Lean_Elab_Command_elabStructure___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__2___closed__1; lean_object* l_Lean_Elab_expandDeclIdCore(lean_object*); lean_object* l_Lean_addTrace___at___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalContext_updateBinderInfo(lean_object*, lean_object*, uint8_t); @@ -381,6 +383,7 @@ lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lea lean_object* l_Lean_Elab_elabModifiers___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_addCtorFields_match__1___rarg(uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_withFields(lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__2___closed__2; lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_withFields___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_AppBuilder_0__Lean_Meta_mkProjectionImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_inferType___at_Lean_Elab_Term_throwTypeMismatchError___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -388,6 +391,7 @@ lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabFieldTypeV lean_object* l_Lean_setReducibilityStatus___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_addDefaults___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_processSubfields_loop___rarg___closed__1; lean_object* l_Lean_mkAtomFrom(lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__5; extern lean_object* l_Lean_Elab_elabAttr___rarg___lambda__3___closed__3; lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_levelMVarToParamAux___boxed__const__1; lean_object* l_Lean_Elab_elabDeclAttrs___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -413,19 +417,17 @@ lean_object* l_Lean_Syntax_getSepArgs(lean_object*); uint8_t l_Lean_isAttribute(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_collectLevelParamsInFVars___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__1; uint8_t l_Lean_BinderInfo_beq(uint8_t, uint8_t); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabStructureView___spec__3(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_checkValidInductiveModifier___at_Lean_Elab_Command_elabStructure___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___closed__2; lean_object* l_Lean_Syntax_getNumArgs(lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabStructureView___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_CollectLevelParams_instInhabitedState___closed__1; extern lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_mkAuxConstructions___closed__2; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabStructure___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_addDefaults___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___private_Lean_Elab_Structure_0__Lean_Elab_Command_addDefaults___boxed__const__1; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__8; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__3___closed__3; lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_getSepArgs___spec__1(lean_object*, size_t, size_t, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_processSubfields_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*, lean_object*, lean_object*); @@ -435,6 +437,7 @@ lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_withFields_mat lean_object* l_Lean_Elab_Command_getCurrMacroScope(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkPrivateName(lean_object*, lean_object*); lean_object* l_Lean_Elab_elabAttrs___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_addDefaults___spec__5(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_Lean_Elab_Command_elabStructure___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_Lean_Elab_Command_elabStructure___spec__5___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabStructureView___spec__5(lean_object*, size_t, size_t, lean_object*); @@ -448,6 +451,7 @@ lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___l lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_withParents___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*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_9707____closed__9; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_levelMVarToParamAux___spec__1(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_ReaderT_pure___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_addDefaults___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Name_isAnonymous(lean_object*); lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___spec__4___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_processSubfields_loop___rarg___closed__2; @@ -462,20 +466,17 @@ lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_Structure_0__Lean_Ela lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___closed__2; lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_removeUnused(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_Structure_0__Lean_Elab_Command_withFields_match__3___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__9; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__10(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_elabModifiers___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___spec__1___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_toAttributeKind___rarg___closed__1; lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_mkAuxConstructions___lambda__1(uint8_t, uint8_t, 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_Command_elabStructure___closed__1; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__2(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*); extern lean_object* l_Lean_Elab_sortDeclLevelParams___closed__1; lean_object* l_Lean_Elab_expandDeclId___at_Lean_Elab_Command_elabStructure___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_withFields___rarg___lambda__3___boxed(lean_object**); lean_object* l_Lean_Elab_Term_withDeclName___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_checkValidFieldModifier___lambda__3___closed__3; lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabStructureView___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___lambda__1___boxed(lean_object**); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__4; lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_getResultUniverse___closed__3; lean_object* l_Lean_Elab_Command_checkValidInductiveModifier___at_Lean_Elab_Command_elabStructure___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabStructureView___lambda__1___closed__3; @@ -489,12 +490,14 @@ lean_object* l_Lean_Elab_Command_getMainModule___rarg(lean_object*, lean_object* lean_object* l_Lean_Elab_Command_elabStructure(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_StructFieldInfo_isFromParent_match__1___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_collectUsed_match__1___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__2; +lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_checkValidFieldModifier___lambda__4___closed__2; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__7; extern lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___closed__8; lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_Lean_Elab_Command_elabStructure___spec__5___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_Lean_Elab_throwAlreadyDeclaredUniverseLevel___rarg___closed__2; lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_withUsed___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields_match__1(lean_object*); lean_object* l_Lean_Elab_expandDeclSig(lean_object*); lean_object* l_Lean_Elab_Command_checkValidFieldModifier___closed__2; @@ -503,11 +506,12 @@ lean_object* l_Lean_Elab_Command_checkValidFieldModifier___lambda__2___closed__3 extern lean_object* l_Lean_Elab_Command_checkValidInductiveModifier___rarg___lambda__2___closed__3; lean_object* l_Lean_Elab_Term_elabType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__3; lean_object* l_Lean_Elab_elabModifiers___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___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*, lean_object*, lean_object*); lean_object* l_List_forM___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabStructureView___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkForall(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_withParents___spec__1(lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__1(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*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_processSubfields___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isNone(lean_object*); lean_object* l_Lean_setEnv___at_Lean_Elab_Term_declareTacticSyntax___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -520,14 +524,14 @@ extern lean_object* l___private_Lean_Meta_AppBuilder_0__Lean_Meta_mkProjectionIm lean_object* lean_set_reducibility_status(lean_object*, lean_object*, uint8_t); extern lean_object* l_myMacro____x40_Init_Notation___hyg_4072____closed__4; lean_object* l_Lean_Elab_Command_checkValidInductiveModifier___at_Lean_Elab_Command_elabStructure___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_ReaderT_pure___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_addDefaults___spec__4(lean_object*); lean_object* l_Lean_Elab_Command_StructFieldInfo_isFromParent_match__1___rarg(uint8_t, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_collectUsed___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_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__3(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___private_Lean_Elab_Structure_0__Lean_Elab_Command_withFields___rarg___closed__10; -lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_expandDeclId___at_Lean_Elab_Command_elabStructure___spec__2___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_3623_(lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabStructureView___lambda__1___closed__1; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___closed__3; lean_object* lean_expr_abstract(lean_object*, lean_object*); lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -538,19 +542,17 @@ lean_object* l_Lean_Expr_inferImplicit(lean_object*, lean_object*, uint8_t); lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___closed__1; lean_object* l___private_Lean_Meta_Closure_0__Lean_Meta_mkAuxDefinitionImp(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_addProjections_match__1(lean_object*); -lean_object* l_ReaderT_pure___at_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_validStructType_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_mkCtor(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_mkCasesOn___at___private_Lean_Elab_Inductive_0__Lean_Elab_Command_mkAuxConstructions___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_inferType___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getLevelNames___boxed(lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___boxed(lean_object**); lean_object* l_Lean_Elab_Command_checkValidFieldModifier___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_updateResultingUniverse___closed__1; lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabStructureView___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_mkDeclName___at_Lean_Elab_Command_elabStructure___spec__3___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_mkAuxConstructions___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___closed__3; lean_object* l_Lean_Elab_Command_checkValidFieldModifier___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_checkValidFieldModifier___closed__1; extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__3; @@ -563,6 +565,7 @@ lean_object* l_Lean_Elab_Term_withAutoBoundImplicitLocal___rarg(lean_object*, ui lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_findFieldInfo_x3f___boxed(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_withFields___rarg___lambda__3(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*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_withParents___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_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___closed__1; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabStructure_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_Name_appendBefore(lean_object*, lean_object*); @@ -573,6 +576,7 @@ lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_updateResultin lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_levelMVarToParamFVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_CollectFVars_instInhabitedState___closed__1; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_addDefaults___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppFn(lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields_match__2(lean_object*); lean_object* l_Lean_Meta_mkAuxDefinition___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_addDefaults___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -584,7 +588,7 @@ lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_StructFieldInfo_isFromParent_match__1(lean_object*); lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___spec__7___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabStructureView___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_addDefaults___spec__4(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__3(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___private_Lean_Elab_Structure_0__Lean_Elab_Command_withFields_match__2(lean_object*); lean_object* l_Lean_Elab_Command_checkValidInductiveModifier___at_Lean_Elab_Command_elabStructure___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___lambda__2___closed__2; @@ -598,11 +602,11 @@ lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLetDeclImp___rarg(lean lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabStructureView___spec__8(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___lambda__2___closed__1; extern lean_object* l_Lean_Elab_elabAttr___rarg___lambda__3___closed__2; -lean_object* l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabFieldTypeValue___closed__1; lean_object* l_Lean_Elab_Command_checkValidFieldModifier___lambda__4___closed__3; lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_Lean_Elab_Command_elabStructure___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_addCtorFields_match__2(lean_object*); +lean_object* l_ReaderT_pure___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_addDefaults___spec__4___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_levelMVarToParamAux_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_checkValidFieldModifier(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_StructFieldInfo_isSubobject_match__1(lean_object*); @@ -2085,7 +2089,7 @@ x_21 = l_Lean_Elab_throwAlreadyDeclaredUniverseLevel___rarg___closed__3; x_22 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_22, 0, x_20); lean_ctor_set(x_22, 1, x_21); -x_23 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_22, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_23 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_22, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_23; } } @@ -2122,7 +2126,7 @@ x_18 = l_Lean_Elab_throwAlreadyDeclaredUniverseLevel___rarg___closed__3; x_19 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_19, 0, x_17); lean_ctor_set(x_19, 1, x_18); -x_20 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_19, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_20 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_19, x_4, x_5, x_6, x_7, x_8, x_9, x_10); x_21 = !lean_is_exclusive(x_20); if (x_21 == 0) { @@ -2185,7 +2189,7 @@ x_20 = l_Lean_Elab_throwAlreadyDeclaredUniverseLevel___rarg___closed__3; x_21 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_21, 0, x_19); lean_ctor_set(x_21, 1, x_20); -x_22 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_21, x_2, x_3, x_4, x_5, x_6, x_7, x_11); +x_22 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_21, x_2, x_3, x_4, x_5, x_6, x_7, x_11); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -2222,7 +2226,7 @@ x_31 = l_Lean_Elab_throwAlreadyDeclaredUniverseLevel___rarg___closed__3; x_32 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_32, 0, x_30); lean_ctor_set(x_32, 1, x_31); -x_33 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_32, x_2, x_3, x_4, x_5, x_6, x_7, x_11); +x_33 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_32, x_2, x_3, x_4, x_5, x_6, x_7, x_11); x_34 = !lean_is_exclusive(x_33); if (x_34 == 0) { @@ -2649,7 +2653,7 @@ lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_dec(x_3); lean_dec(x_1); x_19 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___lambda__2___closed__3; -x_20 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_19, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_20 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_19, x_6, x_7, x_8, x_9, x_10, x_11, x_12); x_21 = !lean_is_exclusive(x_20); if (x_21 == 0) { @@ -3474,7 +3478,7 @@ else { lean_object* x_13; lean_object* x_14; x_13 = l_Lean_Elab_Command_checkValidFieldModifier___lambda__1___closed__3; -x_14 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_13, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_14 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_13, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_14; } } @@ -3520,7 +3524,7 @@ if (x_13 == 0) { lean_object* x_14; lean_object* x_15; uint8_t x_16; x_14 = l_Lean_Elab_Command_checkValidFieldModifier___lambda__2___closed__3; -x_15 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_14, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_15 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_14, x_3, x_4, x_5, x_6, x_7, x_8, x_9); x_16 = !lean_is_exclusive(x_15); if (x_16 == 0) { @@ -3593,7 +3597,7 @@ else { lean_object* x_13; lean_object* x_14; uint8_t x_15; x_13 = l_Lean_Elab_Command_checkValidFieldModifier___lambda__3___closed__3; -x_14 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_13, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_14 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_13, x_3, x_4, x_5, x_6, x_7, x_8, x_9); x_15 = !lean_is_exclusive(x_14); if (x_15 == 0) { @@ -3659,7 +3663,7 @@ else { lean_object* x_13; lean_object* x_14; uint8_t x_15; x_13 = l_Lean_Elab_Command_checkValidFieldModifier___lambda__4___closed__3; -x_14 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_13, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_14 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_13, x_3, x_4, x_5, x_6, x_7, x_8, x_9); x_15 = !lean_is_exclusive(x_14); if (x_15 == 0) { @@ -3910,7 +3914,7 @@ else { lean_object* x_24; lean_object* x_25; uint8_t x_26; x_24 = l_Lean_Elab_toAttributeKind___rarg___lambda__2___closed__2; -x_25 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_24, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_25 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_24, x_2, x_3, x_4, x_5, x_6, x_7, x_8); x_26 = !lean_is_exclusive(x_25); if (x_26 == 0) { @@ -3974,7 +3978,7 @@ x_19 = l_Lean_Elab_elabAttr___rarg___lambda__3___closed__3; x_20 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_20, 0, x_18); lean_ctor_set(x_20, 1, x_19); -x_21 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_20, x_4, x_5, x_6, x_7, x_8, x_9, x_13); +x_21 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_20, x_4, x_5, x_6, x_7, x_8, x_9, x_13); x_22 = !lean_is_exclusive(x_21); if (x_22 == 0) { @@ -4038,7 +4042,7 @@ lean_dec(x_18); lean_dec(x_15); lean_ctor_set(x_6, 3, x_19); x_20 = l_Lean_Elab_elabAttr___rarg___lambda__5___closed__3; -x_21 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_20, x_2, x_3, x_4, x_5, x_6, x_7, x_13); +x_21 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_20, x_2, x_3, x_4, x_5, x_6, x_7, x_13); lean_dec(x_6); x_22 = !lean_is_exclusive(x_21); if (x_22 == 0) @@ -4086,7 +4090,7 @@ lean_ctor_set(x_33, 3, x_32); lean_ctor_set(x_33, 4, x_30); lean_ctor_set(x_33, 5, x_31); x_34 = l_Lean_Elab_elabAttr___rarg___lambda__5___closed__3; -x_35 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_34, x_2, x_3, x_4, x_5, x_33, x_7, x_13); +x_35 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_34, x_2, x_3, x_4, x_5, x_33, x_7, x_13); lean_dec(x_33); x_36 = lean_ctor_get(x_35, 0); lean_inc(x_36); @@ -4288,6 +4292,61 @@ lean_dec(x_10); return x_11; } } +lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +uint8_t x_10; +x_10 = !lean_is_exclusive(x_7); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_11 = lean_ctor_get(x_7, 3); +x_12 = l_Lean_replaceRef(x_1, x_11); +lean_dec(x_11); +lean_ctor_set(x_7, 3, x_12); +x_13 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_7); +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; +x_14 = lean_ctor_get(x_7, 0); +x_15 = lean_ctor_get(x_7, 1); +x_16 = lean_ctor_get(x_7, 2); +x_17 = lean_ctor_get(x_7, 3); +x_18 = lean_ctor_get(x_7, 4); +x_19 = lean_ctor_get(x_7, 5); +lean_inc(x_19); +lean_inc(x_18); +lean_inc(x_17); +lean_inc(x_16); +lean_inc(x_15); +lean_inc(x_14); +lean_dec(x_7); +x_20 = l_Lean_replaceRef(x_1, x_17); +lean_dec(x_17); +x_21 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_21, 0, x_14); +lean_ctor_set(x_21, 1, x_15); +lean_ctor_set(x_21, 2, x_16); +lean_ctor_set(x_21, 3, x_20); +lean_ctor_set(x_21, 4, x_18); +lean_ctor_set(x_21, 5, x_19); +x_22 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_2, x_3, x_4, x_5, x_6, x_21, x_8, x_9); +lean_dec(x_21); +return x_22; +} +} +} +lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_throwErrorAt___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___rarg___boxed), 9, 0); +return x_2; +} +} lean_object* l_Lean_Elab_elabModifiers___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__1___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { @@ -4386,7 +4445,7 @@ if (x_22 == 0) lean_object* x_23; lean_object* x_24; uint8_t x_25; lean_dec(x_6); x_23 = l_Lean_Elab_elabModifiers___rarg___lambda__3___closed__5; -x_24 = l_Lean_throwErrorAt___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1___rarg(x_17, x_23, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_24 = l_Lean_throwErrorAt___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___rarg(x_17, x_23, x_7, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec(x_17); x_25 = !lean_is_exclusive(x_24); if (x_25 == 0) @@ -4508,7 +4567,7 @@ x_35 = l_Lean_KernelException_toMessageData___closed__15; x_36 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_36, 0, x_34); lean_ctor_set(x_36, 1, x_35); -x_37 = l_Lean_throwErrorAt___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1___rarg(x_25, x_36, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_37 = l_Lean_throwErrorAt___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___rarg(x_25, x_36, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_25); x_38 = !lean_is_exclusive(x_37); if (x_38 == 0) @@ -4578,7 +4637,7 @@ x_53 = l_Lean_KernelException_toMessageData___closed__15; x_54 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_54, 0, x_52); lean_ctor_set(x_54, 1, x_53); -x_55 = l_Lean_throwErrorAt___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1___rarg(x_42, x_54, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_55 = l_Lean_throwErrorAt___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___rarg(x_42, x_54, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_42); x_56 = lean_ctor_get(x_55, 0); lean_inc(x_56); @@ -4605,7 +4664,7 @@ return x_59; } } } -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, uint8_t 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* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, uint8_t 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) { _start: { lean_object* x_19; uint8_t x_20; lean_object* x_21; @@ -4691,7 +4750,7 @@ return x_34; } } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___closed__1() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -4700,7 +4759,7 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___closed__2() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___closed__2() { _start: { lean_object* x_1; @@ -4708,16 +4767,16 @@ x_1 = lean_mk_string("', identifiers starting with '_' are reserved to the syste return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___closed__3() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___closed__2; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___closed__2; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7(lean_object* x_1, uint8_t x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, size_t x_9, size_t x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8(lean_object* x_1, uint8_t x_2, lean_object* x_3, uint8_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, size_t x_9, size_t x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { _start: { uint8_t x_19; @@ -4756,7 +4815,7 @@ lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_3); -x_32 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___lambda__1(x_1, x_21, x_3, x_20, x_2, x_4, x_5, x_6, x_7, x_11, x_31, x_12, x_13, x_14, x_15, x_30, x_17, x_18); +x_32 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__1(x_1, x_21, x_3, x_20, x_2, x_4, x_5, x_6, x_7, x_11, x_31, x_12, x_13, x_14, x_15, x_30, x_17, x_18); lean_dec(x_30); if (lean_obj_tag(x_32) == 0) { @@ -4812,15 +4871,15 @@ lean_dec(x_5); lean_dec(x_3); x_42 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_42, 0, x_21); -x_43 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___closed__1; +x_43 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___closed__1; x_44 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_44, 0, x_43); lean_ctor_set(x_44, 1, x_42); -x_45 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___closed__3; +x_45 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___closed__3; x_46 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_46, 0, x_44); lean_ctor_set(x_46, 1, x_45); -x_47 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_46, x_12, x_13, x_14, x_15, x_30, x_17, x_18); +x_47 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_46, x_12, x_13, x_14, x_15, x_30, x_17, x_18); lean_dec(x_30); x_48 = !lean_is_exclusive(x_47); if (x_48 == 0) @@ -4857,7 +4916,7 @@ return x_52; } } } -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__1(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__1(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { lean_object* x_14; lean_object* x_15; uint8_t x_16; uint8_t x_17; uint8_t x_18; uint8_t x_19; @@ -5021,7 +5080,7 @@ size_t x_33; size_t x_34; lean_object* x_35; x_33 = 0; x_34 = lean_usize_of_nat(x_26); lean_dec(x_26); -x_35 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7(x_4, x_2, x_5, x_19, x_21, x_22, x_29, x_25, x_33, x_34, x_3, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_35 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8(x_4, x_2, x_5, x_19, x_21, x_22, x_29, x_25, x_33, x_34, x_3, x_7, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec(x_25); return x_35; } @@ -5031,7 +5090,7 @@ return x_35; } } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__2___closed__1() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__2___closed__1() { _start: { lean_object* x_1; @@ -5039,27 +5098,27 @@ x_1 = lean_mk_string("invalid 'protected' field in a 'private' structure"); return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__2___closed__2() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__2___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__2___closed__1; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__2___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__2___closed__3() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__2___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__2___closed__2; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__2___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__2(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { uint8_t x_15; @@ -5068,7 +5127,7 @@ if (x_15 == 0) { lean_object* x_16; lean_object* x_17; x_16 = lean_box(0); -x_17 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__1(x_1, x_2, x_3, x_4, x_5, x_16, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_17 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__1(x_1, x_2, x_3, x_4, x_5, x_16, x_8, x_9, x_10, x_11, x_12, x_13, x_14); return x_17; } else @@ -5079,7 +5138,7 @@ if (x_18 == 0) { lean_object* x_19; lean_object* x_20; x_19 = lean_box(0); -x_20 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__1(x_1, x_2, x_3, x_4, x_5, x_19, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_20 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__1(x_1, x_2, x_3, x_4, x_5, x_19, x_8, x_9, x_10, x_11, x_12, x_13, x_14); return x_20; } else @@ -5087,8 +5146,8 @@ else lean_object* x_21; lean_object* x_22; uint8_t x_23; lean_dec(x_5); lean_dec(x_3); -x_21 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__2___closed__3; -x_22 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_21, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_21 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__2___closed__3; +x_22 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_21, x_8, x_9, x_10, x_11, x_12, x_13, x_14); x_23 = !lean_is_exclusive(x_22); if (x_23 == 0) { @@ -5111,7 +5170,7 @@ return x_26; } } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__3___closed__1() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__3___closed__1() { _start: { lean_object* x_1; @@ -5119,27 +5178,27 @@ x_1 = lean_mk_string("invalid 'private' field in a 'private' structure"); return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__3___closed__2() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__3___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__3___closed__1; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__3___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__3___closed__3() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__3___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__3___closed__2; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__3___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; lean_object* x_14; lean_object* x_15; @@ -5170,7 +5229,7 @@ if (x_20 == 0) { lean_object* x_21; lean_object* x_22; x_21 = lean_box(0); -x_22 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__2(x_1, x_5, x_2, x_3, x_16, x_4, x_21, x_6, x_7, x_8, x_9, x_10, x_11, x_19); +x_22 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__2(x_1, x_5, x_2, x_3, x_16, x_4, x_21, x_6, x_7, x_8, x_9, x_10, x_11, x_19); lean_dec(x_10); return x_22; } @@ -5182,7 +5241,7 @@ if (x_23 == 0) { lean_object* x_24; lean_object* x_25; x_24 = lean_box(0); -x_25 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__2(x_1, x_5, x_2, x_3, x_16, x_4, x_24, x_6, x_7, x_8, x_9, x_10, x_11, x_19); +x_25 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__2(x_1, x_5, x_2, x_3, x_16, x_4, x_24, x_6, x_7, x_8, x_9, x_10, x_11, x_19); lean_dec(x_10); return x_25; } @@ -5191,8 +5250,8 @@ else lean_object* x_26; lean_object* x_27; uint8_t x_28; lean_dec(x_16); lean_dec(x_2); -x_26 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__3___closed__3; -x_27 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_26, x_6, x_7, x_8, x_9, x_10, x_11, x_19); +x_26 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__3___closed__3; +x_27 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_26, x_6, x_7, x_8, x_9, x_10, x_11, x_19); lean_dec(x_10); x_28 = !lean_is_exclusive(x_27); if (x_28 == 0) @@ -5269,7 +5328,7 @@ return x_39; } } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__1() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__1() { _start: { lean_object* x_1; @@ -5277,17 +5336,17 @@ x_1 = lean_mk_string("structExplicitBinder"); return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__2() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__3; -x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__1; +x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__3() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__3() { _start: { lean_object* x_1; @@ -5295,17 +5354,17 @@ x_1 = lean_mk_string("structImplicitBinder"); return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__4() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__3; -x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__3; +x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__5() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__5() { _start: { lean_object* x_1; @@ -5313,17 +5372,17 @@ x_1 = lean_mk_string("structInstBinder"); return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__6() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__3; -x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__5; +x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__7() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__7() { _start: { lean_object* x_1; @@ -5331,43 +5390,43 @@ x_1 = lean_mk_string("unexpected kind of structure field"); return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__8() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__7; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__7; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__9() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__9() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__8; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__8; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; lean_object* x_14; uint8_t x_15; lean_inc(x_4); x_13 = l_Lean_Syntax_getKind(x_4); -x_14 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__2; +x_14 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__2; x_15 = lean_name_eq(x_13, x_14); if (x_15 == 0) { lean_object* x_16; uint8_t x_17; -x_16 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__4; +x_16 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__4; x_17 = lean_name_eq(x_13, x_16); if (x_17 == 0) { lean_object* x_18; uint8_t x_19; -x_18 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__6; +x_18 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__6; x_19 = lean_name_eq(x_13, x_18); lean_dec(x_13); if (x_19 == 0) @@ -5375,8 +5434,8 @@ if (x_19 == 0) lean_object* x_20; lean_object* x_21; uint8_t x_22; lean_dec(x_4); lean_dec(x_1); -x_20 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__9; -x_21 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_20, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_20 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__9; +x_21 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_20, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_10); x_22 = !lean_is_exclusive(x_21); if (x_22 == 0) @@ -5401,7 +5460,7 @@ else { uint8_t x_26; lean_object* x_27; x_26 = 3; -x_27 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__3(x_4, x_1, x_2, x_3, x_26, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_27 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__3(x_4, x_1, x_2, x_3, x_26, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_4); return x_27; } @@ -5411,7 +5470,7 @@ else uint8_t x_28; lean_object* x_29; lean_dec(x_13); x_28 = 1; -x_29 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__3(x_4, x_1, x_2, x_3, x_28, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_29 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__3(x_4, x_1, x_2, x_3, x_28, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_4); return x_29; } @@ -5421,13 +5480,13 @@ else uint8_t x_30; lean_object* x_31; lean_dec(x_13); x_30 = 0; -x_31 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__3(x_4, x_1, x_2, x_3, x_30, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_31 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__3(x_4, x_1, x_2, x_3, x_30, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_4); return x_31; } } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___closed__1() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___closed__1() { _start: { lean_object* x_1; @@ -5435,17 +5494,17 @@ x_1 = lean_mk_string("structSimpleBinder"); return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___closed__2() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__3; -x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___closed__1; +x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___closed__3() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___closed__3() { _start: { lean_object* x_1; lean_object* x_2; @@ -5454,7 +5513,7 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, size_t x_4, size_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, size_t x_4, size_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { uint8_t x_14; @@ -5465,7 +5524,7 @@ lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; lean_obje x_15 = lean_array_uget(x_3, x_4); lean_inc(x_15); x_16 = l_Lean_Syntax_getKind(x_15); -x_17 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___closed__2; +x_17 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___closed__2; x_18 = lean_name_eq(x_16, x_17); lean_dec(x_16); x_19 = lean_ctor_get(x_11, 0); @@ -5492,7 +5551,7 @@ if (x_18 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_box(0); lean_inc(x_7); -x_28 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4(x_6, x_2, x_1, x_15, x_27, x_7, x_8, x_9, x_10, x_26, x_12, x_13); +x_28 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4(x_6, x_2, x_1, x_15, x_27, x_7, x_8, x_9, x_10, x_26, x_12, x_13); if (lean_obj_tag(x_28) == 0) { lean_object* x_29; lean_object* x_30; size_t x_31; size_t x_32; @@ -5550,7 +5609,7 @@ x_49 = l_Lean_Syntax_getArg(x_15, x_48); x_50 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; x_51 = l_Lean_mkAtomFrom(x_15, x_50); lean_dec(x_15); -x_52 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___closed__3; +x_52 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___closed__3; x_53 = lean_array_push(x_52, x_39); x_54 = lean_array_push(x_53, x_41); x_55 = lean_array_push(x_54, x_43); @@ -5558,13 +5617,13 @@ x_56 = lean_array_push(x_55, x_45); x_57 = lean_array_push(x_56, x_47); x_58 = lean_array_push(x_57, x_49); x_59 = lean_array_push(x_58, x_51); -x_60 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__2; +x_60 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__2; x_61 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_61, 0, x_60); lean_ctor_set(x_61, 1, x_59); x_62 = lean_box(0); lean_inc(x_7); -x_63 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4(x_6, x_2, x_1, x_61, x_62, x_7, x_8, x_9, x_10, x_26, x_12, x_13); +x_63 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4(x_6, x_2, x_1, x_61, x_62, x_7, x_8, x_9, x_10, x_26, x_12, x_13); if (lean_obj_tag(x_63) == 0) { lean_object* x_64; lean_object* x_65; size_t x_66; size_t x_67; @@ -5616,7 +5675,7 @@ return x_73; } } } -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, size_t x_4, size_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, size_t x_4, size_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { uint8_t x_14; @@ -5627,7 +5686,7 @@ lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; lean_obje x_15 = lean_array_uget(x_3, x_4); lean_inc(x_15); x_16 = l_Lean_Syntax_getKind(x_15); -x_17 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___closed__2; +x_17 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___closed__2; x_18 = lean_name_eq(x_16, x_17); lean_dec(x_16); x_19 = lean_ctor_get(x_11, 0); @@ -5654,7 +5713,7 @@ if (x_18 == 0) lean_object* x_27; lean_object* x_28; x_27 = lean_box(0); lean_inc(x_7); -x_28 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4(x_6, x_2, x_1, x_15, x_27, x_7, x_8, x_9, x_10, x_26, x_12, x_13); +x_28 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4(x_6, x_2, x_1, x_15, x_27, x_7, x_8, x_9, x_10, x_26, x_12, x_13); if (lean_obj_tag(x_28) == 0) { lean_object* x_29; lean_object* x_30; size_t x_31; size_t x_32; @@ -5712,7 +5771,7 @@ x_49 = l_Lean_Syntax_getArg(x_15, x_48); x_50 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; x_51 = l_Lean_mkAtomFrom(x_15, x_50); lean_dec(x_15); -x_52 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___closed__3; +x_52 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___closed__3; x_53 = lean_array_push(x_52, x_39); x_54 = lean_array_push(x_53, x_41); x_55 = lean_array_push(x_54, x_43); @@ -5720,13 +5779,13 @@ x_56 = lean_array_push(x_55, x_45); x_57 = lean_array_push(x_56, x_47); x_58 = lean_array_push(x_57, x_49); x_59 = lean_array_push(x_58, x_51); -x_60 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__2; +x_60 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__2; x_61 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_61, 0, x_60); lean_ctor_set(x_61, 1, x_59); x_62 = lean_box(0); lean_inc(x_7); -x_63 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4(x_6, x_2, x_1, x_61, x_62, x_7, x_8, x_9, x_10, x_26, x_12, x_13); +x_63 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4(x_6, x_2, x_1, x_61, x_62, x_7, x_8, x_9, x_10, x_26, x_12, x_13); if (lean_obj_tag(x_63) == 0) { lean_object* x_64; lean_object* x_65; size_t x_66; size_t x_67; @@ -5861,7 +5920,7 @@ x_26 = 0; x_27 = lean_usize_of_nat(x_19); lean_dec(x_19); x_28 = l_Array_empty___closed__1; -x_29 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8(x_2, x_3, x_18, x_26, x_27, x_28, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_29 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9(x_2, x_3, x_18, x_26, x_27, x_28, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_18); return x_29; } @@ -5902,7 +5961,7 @@ size_t x_36; lean_object* x_37; size_t x_38; lean_object* x_39; x_36 = 0; x_37 = l_Array_empty___closed__1; x_38 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___closed__3; -x_39 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9(x_2, x_3, x_37, x_36, x_38, x_37, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_39 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__10(x_2, x_3, x_37, x_36, x_38, x_37, x_4, x_5, x_6, x_7, x_8, x_9, x_10); return x_39; } } @@ -5995,6 +6054,19 @@ lean_dec(x_1); return x_9; } } +lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_throwErrorAt___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +return x_10; +} +} lean_object* l_Lean_Elab_elabModifiers___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__1___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { @@ -6043,7 +6115,7 @@ lean_dec(x_1); return x_9; } } -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___lambda__1___boxed(lean_object** _args) { +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__1___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -6069,7 +6141,7 @@ x_19 = lean_unbox(x_5); lean_dec(x_5); x_20 = lean_unbox(x_6); lean_dec(x_6); -x_21 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___lambda__1(x_1, x_2, x_3, x_4, x_19, x_20, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +x_21 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__1(x_1, x_2, x_3, x_4, x_19, x_20, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); lean_dec(x_17); lean_dec(x_16); lean_dec(x_15); @@ -6080,7 +6152,7 @@ lean_dec(x_1); return x_21; } } -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___boxed(lean_object** _args) { +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -6110,7 +6182,7 @@ x_21 = lean_unbox_usize(x_9); lean_dec(x_9); x_22 = lean_unbox_usize(x_10); lean_dec(x_10); -x_23 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7(x_1, x_19, x_3, x_20, x_5, x_6, x_7, x_8, x_21, x_22, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); +x_23 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8(x_1, x_19, x_3, x_20, x_5, x_6, x_7, x_8, x_21, x_22, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); lean_dec(x_17); lean_dec(x_16); lean_dec(x_15); @@ -6121,13 +6193,13 @@ lean_dec(x_1); return x_23; } } -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { uint8_t x_14; lean_object* x_15; x_14 = lean_unbox(x_2); lean_dec(x_2); -x_15 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__1(x_1, x_14, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_15 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__1(x_1, x_14, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -6139,13 +6211,13 @@ lean_dec(x_1); return x_15; } } -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { uint8_t x_15; lean_object* x_16; x_15 = lean_unbox(x_2); lean_dec(x_2); -x_16 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__2(x_1, x_15, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_16 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__2(x_1, x_15, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); @@ -6158,13 +6230,13 @@ lean_dec(x_1); return x_16; } } -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { uint8_t x_13; lean_object* x_14; x_13 = lean_unbox(x_5); lean_dec(x_5); -x_14 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__3(x_1, x_2, x_3, x_4, x_13, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_14 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__3(x_1, x_2, x_3, x_4, x_13, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_11); lean_dec(x_9); lean_dec(x_8); @@ -6175,11 +6247,11 @@ lean_dec(x_1); return x_14; } } -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_13 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_11); lean_dec(x_9); lean_dec(x_8); @@ -6190,26 +6262,6 @@ lean_dec(x_2); return x_13; } } -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { -_start: -{ -size_t x_14; size_t x_15; lean_object* x_16; -x_14 = lean_unbox_usize(x_4); -lean_dec(x_4); -x_15 = lean_unbox_usize(x_5); -lean_dec(x_5); -x_16 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8(x_1, x_2, x_3, x_14, x_15, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -return x_16; -} -} lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { @@ -6230,6 +6282,26 @@ lean_dec(x_1); return x_16; } } +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +size_t x_14; size_t x_15; lean_object* x_16; +x_14 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_15 = lean_unbox_usize(x_5); +lean_dec(x_5); +x_16 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__10(x_1, x_2, x_3, x_14, x_15, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_16; +} +} lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { @@ -14552,7 +14624,25 @@ return x_33; } } } -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_addDefaults___spec__4(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_ReaderT_pure___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_addDefaults___spec__4___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_1); +lean_ctor_set(x_9, 1, x_8); +return x_9; +} +} +lean_object* l_ReaderT_pure___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_addDefaults___spec__4(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_ReaderT_pure___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_addDefaults___spec__4___rarg___boxed), 8, 0); +return x_2; +} +} +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_addDefaults___spec__5(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { uint8_t x_12; @@ -14688,7 +14778,7 @@ _start: { lean_object* x_1; lean_object* x_2; x_1 = lean_box(0); -x_2 = lean_alloc_closure((void*)(l_ReaderT_pure___at_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___spec__1___rarg___boxed), 8, 1); +x_2 = lean_alloc_closure((void*)(l_ReaderT_pure___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_addDefaults___spec__4___rarg___boxed), 8, 1); lean_closure_set(x_2, 0, x_1); return x_2; } @@ -14745,7 +14835,7 @@ lean_dec(x_13); x_22 = lean_box(0); x_23 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_addDefaults___boxed__const__1; x_24 = lean_box_usize(x_21); -x_25 = lean_alloc_closure((void*)(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_addDefaults___spec__4___boxed), 11, 4); +x_25 = lean_alloc_closure((void*)(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_addDefaults___spec__5___boxed), 11, 4); lean_closure_set(x_25, 0, x_2); lean_closure_set(x_25, 1, x_23); lean_closure_set(x_25, 2, x_24); @@ -14796,7 +14886,21 @@ lean_dec(x_3); return x_11; } } -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_addDefaults___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_ReaderT_pure___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_addDefaults___spec__4___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_ReaderT_pure___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_addDefaults___spec__4___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_9; +} +} +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_addDefaults___spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { size_t x_12; size_t x_13; lean_object* x_14; @@ -14804,7 +14908,7 @@ x_12 = lean_unbox_usize(x_2); lean_dec(x_2); x_13 = lean_unbox_usize(x_3); lean_dec(x_3); -x_14 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_addDefaults___spec__4(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_addDefaults___spec__5(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_6); lean_dec(x_5); lean_dec(x_1); @@ -19255,48 +19359,48 @@ l_Lean_Elab_Command_checkValidFieldModifier___closed__2 = _init_l_Lean_Elab_Comm lean_mark_persistent(l_Lean_Elab_Command_checkValidFieldModifier___closed__2); l_Lean_Elab_Command_checkValidFieldModifier___closed__3 = _init_l_Lean_Elab_Command_checkValidFieldModifier___closed__3(); lean_mark_persistent(l_Lean_Elab_Command_checkValidFieldModifier___closed__3); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___closed__1 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___closed__1(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___closed__1); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___closed__2 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___closed__2(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___closed__2); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___closed__3 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___closed__3(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__7___closed__3); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__2___closed__1 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__2___closed__1(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__2___closed__1); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__2___closed__2 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__2___closed__2(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__2___closed__2); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__2___closed__3 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__2___closed__3(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__2___closed__3); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__3___closed__1 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__3___closed__1(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__3___closed__1); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__3___closed__2 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__3___closed__2(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__3___closed__2); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__3___closed__3 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__3___closed__3(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__3___closed__3); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__1 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__1(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__1); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__2 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__2(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__2); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__3 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__3(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__3); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__4 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__4(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__4); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__5 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__5(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__5); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__6 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__6(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__6); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__7 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__7(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__7); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__8 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__8(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__8); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__9 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__9(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___lambda__4___closed__9); l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___closed__1 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___closed__1(); lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___closed__1); l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___closed__2 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___closed__2(); lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___closed__2); l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___closed__3 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___closed__3(); lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__8___closed__3); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__2___closed__1 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__2___closed__1(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__2___closed__1); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__2___closed__2 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__2___closed__2(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__2___closed__2); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__2___closed__3 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__2___closed__3(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__2___closed__3); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__3___closed__1 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__3___closed__1(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__3___closed__1); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__3___closed__2 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__3___closed__2(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__3___closed__2); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__3___closed__3 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__3___closed__3(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__3___closed__3); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__1 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__1(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__1); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__2 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__2(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__2); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__3 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__3(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__3); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__4 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__4(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__4); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__5 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__5(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__5); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__6 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__6(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__6); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__7 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__7(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__7); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__8 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__8(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__8); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__9 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__9(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__4___closed__9); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___closed__1 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___closed__1(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___closed__1); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___closed__2 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___closed__2(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___closed__2); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___closed__3 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___closed__3(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___closed__3); l___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___closed__1 = _init_l___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___closed__1(); l___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___closed__2 = _init_l___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___closed__2(); l___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___closed__3 = _init_l___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___closed__3(); diff --git a/stage0/stdlib/Lean/Elab/Syntax.c b/stage0/stdlib/Lean/Elab/Syntax.c index acd2846e93..59b9e2e773 100644 --- a/stage0/stdlib/Lean/Elab/Syntax.c +++ b/stage0/stdlib/Lean/Elab/Syntax.c @@ -42,7 +42,6 @@ lean_object* l_Lean_Elab_logTrace___at_Lean_Elab_Command_elabSyntax___spec__2(le extern lean_object* l_Lean_Syntax_strLitToAtom___closed__3; lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); lean_object* lean_erase_macro_scopes(lean_object*); -extern lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__8; lean_object* l_Lean_Elab_Term_checkLeftRec___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -109,6 +108,7 @@ extern lean_object* l_Lean_List_format___rarg___closed__2; lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__18; 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; +extern lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__47; lean_object* l_Lean_Elab_Command_elabSyntax_match__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__13; extern lean_object* l_Lean_Elab_throwUnsupportedSyntax___rarg___closed__1; @@ -125,11 +125,9 @@ extern lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ uint8_t l_Array_anyMUnsafe_any___at_Lean_Elab_Command_mkSimpleDelab_go___spec__4(lean_object*, size_t, size_t); lean_object* l_Lean_Elab_Command_expandMixfix___lambda__1___closed__1; extern lean_object* l_Lean_Elab_Command_commandElabAttribute; -lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__33; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_getCatSuffix_match__1(lean_object*); lean_object* lean_array_uset(lean_object*, size_t, lean_object*); lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__14; -lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__28; lean_object* l___regBuiltin_Lean_Elab_Command_elabMacroRules(lean_object*); lean_object* l_Lean_Elab_Command_expandElab___closed__32; lean_object* l_Lean_Elab_Command_expandElab___closed__10; @@ -152,14 +150,15 @@ uint8_t l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Com 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*); +extern lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__49; lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__25; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__15; lean_object* l___private_Init_Meta_0__Lean_Syntax_isNatLitAux(lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__48; uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandMacro___boxed__const__1; extern lean_object* l_myMacro____x40_Init_Notation___hyg_38____closed__3; -extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; lean_object* l_Lean_Elab_Command_expandElab___closed__45; lean_object* lean_st_ref_get(lean_object*, lean_object*); @@ -226,7 +225,6 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_9707____closed__7; 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_Command_mkSimpleDelab_go___closed__12; -extern lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__1; lean_object* l_Lean_Elab_Command_expandMixfix___lambda__1___closed__26; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Command_expandMacro___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__5; @@ -265,7 +263,6 @@ lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___cl extern lean_object* l_Lean_throwUnknownConstant___rarg___closed__2; lean_object* l_Array_filterSepElemsM___at_Lean_Elab_Command_elabNoKindMacroRulesAux___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; -extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; lean_object* l_Lean_resolveGlobalName___at_Lean_Elab_Term_toParserDescrAux___spec__4(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_Command_0__Lean_Elab_Command_getVarDecls(lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Term_checkLeftRec___spec__2(lean_object*); @@ -274,6 +271,7 @@ lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQ lean_object* l_Lean_Elab_Command_expandElab___closed__28; lean_object* l_Lean_Elab_Command_expandElab___closed__14; extern lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__23; +extern lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; lean_object* l_Lean_Elab_Command_mkNameFromParserSyntax_visit_match__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___spec__2(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__37; @@ -296,7 +294,6 @@ lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQ lean_object* l___regBuiltin_Lean_Elab_Command_elabElab___closed__2; extern lean_object* l_myMacro____x40_Init_Notation___hyg_9707____closed__13; lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__16; -lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; lean_object* l_Lean_Elab_Term_expandOptPrecedence___closed__1; lean_object* l___regBuiltin_Lean_Elab_Command_elabSyntaxAbbrev___closed__1; lean_object* l___regBuiltin_Lean_Elab_Command_expandNotation(lean_object*); @@ -305,7 +302,6 @@ lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__19; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabMacroRulesAux___spec__3___boxed(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__9; lean_object* l___regBuiltin_Lean_Elab_Command_elabElab___closed__1; -lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__40; lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__16; lean_object* l_Lean_Elab_Command_elabMacro___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandMacro(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -362,7 +358,6 @@ lean_object* l_Lean_Elab_Term_toParserDescrAux_match__2___rarg(lean_object*, lea lean_object* l___regBuiltin_Lean_Elab_Command_elabSyntax(lean_object*); lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__3; lean_object* l_Lean_Syntax_isStrLit_x3f(lean_object*); -extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__35; lean_object* l_Lean_Elab_Command_expandMacroArgIntoPattern___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__2; @@ -401,12 +396,10 @@ lean_object* l_Lean_Elab_Command_expandMixfix___lambda__1___closed__9; extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__10; lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__8; lean_object* l_Lean_Elab_Command_expandElab___closed__26; -lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__32; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__10; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___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_Command_withExpectedType_match__1___rarg(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__7; lean_object* l_Lean_Elab_Command_mkNameFromParserSyntax_visit_match__1(lean_object*); extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3659____closed__1; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___lambda__1___closed__1; @@ -479,6 +472,7 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_11836____closed__17; lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__6; lean_object* l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___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___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_antiquote(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__7; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_antiquote_match__2(lean_object*); @@ -494,6 +488,7 @@ lean_object* l_Lean_Elab_Command_expandMixfix___lambda__1___closed__34; lean_object* l_Lean_Elab_Command_elabNoKindMacroRulesAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_filterAux___at_Lean_resolveGlobalConst___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_withExpectedType___closed__2; +extern lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__50; extern lean_object* l_myMacro____x40_Init_Notation___hyg_38____closed__5; lean_object* l_Lean_throwUnknownConstant___at_Lean_Elab_Term_toParserDescrAux___spec__5(lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux_match__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -570,6 +565,7 @@ lean_object* l_Lean_Elab_Command_expandOptPrio(lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__32; lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__10; lean_object* l_Lean_ConstantInfo_type(lean_object*); +extern lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__40; lean_object* l_Lean_Elab_Command_elabSyntaxAbbrev___closed__6; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__46; @@ -585,6 +581,7 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_38____closed__6; lean_object* l_Lean_Elab_Term_elabBinders___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax_match__4(lean_object*); +extern lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; extern lean_object* l_Lean_Meta_DiscrTree_Trie_format___rarg___closed__1; lean_object* l_Lean_Elab_Command_expandMixfix_withAttrKindGlobal(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabMacro(lean_object*, lean_object*, lean_object*, lean_object*); @@ -627,6 +624,7 @@ lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__1; lean_object* l_Lean_Elab_Command_elabElab___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentArray_push___rarg(lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44; extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15292____closed__5; lean_object* l_Lean_Elab_Command_expandElab___closed__24; lean_object* l_Lean_Elab_Term_toParserDescrAux___lambda__1___closed__4; @@ -667,7 +665,6 @@ uint8_t lean_nat_dec_le(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux_match__3(lean_object*); lean_object* l_Lean_Elab_Command_getCurrMacroScope(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_checkLeftRec___lambda__2___closed__4; -lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__31; lean_object* l_Lean_Parser_ensureConstantParserAlias(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandElab___closed__7; lean_object* l_Lean_Elab_Command_elabNoKindMacroRulesAux___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -728,6 +725,7 @@ lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__7; lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__36; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; lean_object* l_Lean_Elab_Term_toParserDescrAux_match__4(lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax(lean_object*, lean_object*, lean_object*, lean_object*); @@ -755,6 +753,7 @@ lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__28; lean_object* l_Lean_Macro_expandMacro_x3fImp(lean_object*, lean_object*, lean_object*); lean_object* l_String_trim(lean_object*); lean_object* l_Lean_Elab_Command_elabMacroRulesAux___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__6; lean_object* l_Lean_Elab_Command_elabSyntaxAbbrev___closed__4; lean_object* l_Lean_throwUnknownConstant___at_Lean_Elab_Term_toParserDescrAux___spec__5___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__3; @@ -764,7 +763,6 @@ lean_object* l_Lean_Elab_Term_expandOptPrecedence(lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__4; lean_object* l_Lean_Elab_Command_elabSyntaxAbbrev___closed__9; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; -extern lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__3; lean_object* l_Lean_resolveGlobalConst___at_Lean_Elab_Term_toParserDescrAux___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_antiquote___boxed(lean_object*, lean_object*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); @@ -896,7 +894,6 @@ lean_object* l_Lean_Elab_Command_expandMacroArgIntoSyntaxItem___closed__1; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__2; lean_object* l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__8; -extern lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__4; extern lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryCoe___closed__3; lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__4; lean_object* l_Lean_Elab_Command_expandMacro___closed__2; @@ -917,6 +914,7 @@ lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__11; lean_object* l___regBuiltin_Lean_Elab_Command_elabDeclareSyntaxCat(lean_object*); lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__17; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__4; +extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; lean_object* l_Lean_Elab_Term_toParserDescrAux___lambda__2___closed__1; lean_object* l_Lean_Elab_Command_expandNotation(lean_object*, lean_object*, lean_object*, lean_object*); @@ -932,7 +930,6 @@ lean_object* l_Lean_Elab_Command_expandElab___closed__29; lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_toAttributeKind___at_Lean_Elab_Command_elabSyntax___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Command_elabEnd___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_expandExplicitBindersAux_loop___closed__3; lean_object* l_Lean_Elab_Command_elabElab___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Syntax_mkLit(lean_object*, lean_object*, lean_object*); @@ -9678,14 +9675,6 @@ return x_2; static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__1() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("`("); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__2() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); x_2 = l_Lean_Syntax_isQuot_match__1___rarg___closed__1; @@ -9693,29 +9682,29 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__3() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__1; -x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__3() { _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_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__3; +x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__5() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -9724,13 +9713,13 @@ x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3659____closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__5; +x_3 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -9738,7 +9727,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__7() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6() { _start: { lean_object* x_1; @@ -9746,22 +9735,22 @@ x_1 = lean_mk_string("Lean.ParserDescr"); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__7; +x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__9() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__7; +x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; +x_3 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__7; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -9769,7 +9758,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -9781,19 +9770,19 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__11() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; +x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__9; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__11() { _start: { lean_object* x_1; @@ -9801,22 +9790,22 @@ x_1 = lean_mk_string("Lean.ParserDescr.node"); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__13() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; +x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__11; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__14() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; +x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__11; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__13; +x_3 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -9824,7 +9813,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__15() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -9834,13 +9823,25 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__14; +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___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__15; -x_3 = lean_alloc_ctor(0, 2, 0); +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; @@ -9849,36 +9850,24 @@ return x_3; static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__17() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18() { -_start: -{ lean_object* x_1; lean_object* x_2; x_1 = l_Lean_Parser_maxPrec; x_2 = l_Nat_repr(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__19() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_numLitKind; -x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; +x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__17; x_3 = l_Lean_instInhabitedSourceInfo___closed__1; x_4 = l_Lean_Syntax_mkLit(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__19() { _start: { lean_object* x_1; @@ -9886,22 +9875,22 @@ x_1 = lean_mk_string("Lean.ParserDescr.binary"); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__21() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; +x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__19; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__22() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; +x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__19; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__21; +x_3 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -9909,7 +9898,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__23() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__22() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -9921,19 +9910,19 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__24() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__23() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__23; +x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__22; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__25() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__24() { _start: { lean_object* x_1; @@ -9941,22 +9930,22 @@ x_1 = lean_mk_string("Lean.ParserDescr.symbol"); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__26() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__25() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__25; +x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__24; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__26() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__25; +x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__24; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__26; +x_3 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__25; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -9964,7 +9953,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__28() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -9976,19 +9965,19 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__29() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__28() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__28; +x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__30() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__29() { _start: { lean_object* x_1; @@ -9996,22 +9985,22 @@ x_1 = lean_mk_string("Lean.ParserDescr.cat"); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__31() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__30() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__30; +x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__29; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__32() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__31() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__30; +x_1 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__29; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__31; +x_3 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__30; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -10019,7 +10008,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__33() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__32() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -10031,19 +10020,19 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__34() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__33() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__33; +x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__32; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__35() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__34() { _start: { lean_object* x_1; @@ -10051,25 +10040,37 @@ x_1 = lean_mk_string("\")\""); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__36() { +static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__35() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_instInhabitedSourceInfo___closed__1; -x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__35; +x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__34; 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_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__36() { +_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_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__35; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__37() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_empty___closed__1; +x_1 = l_Lean_strLitKind___closed__2; x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__36; -x_3 = lean_array_push(x_1, x_2); +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; } } @@ -10077,11 +10078,9 @@ static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_decl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_strLitKind___closed__2; +x_1 = l_Array_empty___closed__1; x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__37; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); +x_3 = lean_array_push(x_1, x_2); return x_3; } } @@ -10089,18 +10088,8 @@ static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_decl _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_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__38; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__40() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_nullKind___closed__2; -x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__39; +x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__38; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); @@ -10112,12 +10101,12 @@ _start: { 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; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; 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; x_5 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_getCatSuffix(x_1); -x_6 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__1; +x_6 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__6; x_7 = lean_string_append(x_6, x_5); lean_dec(x_5); x_8 = l_Lean_Parser_Tactic_intro___closed__7; x_9 = lean_string_append(x_7, x_8); -x_10 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__2; +x_10 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__1; x_11 = l_Lean_Name_append(x_1, x_10); x_12 = l_Lean_Elab_Command_getCurrMacroScope(x_2, x_3, x_4); x_13 = lean_ctor_get(x_12, 0); @@ -10137,13 +10126,13 @@ lean_inc(x_16); x_19 = l_Lean_addMacroScope(x_16, x_18, x_13); x_20 = lean_box(0); x_21 = l_Lean_instInhabitedSourceInfo___closed__1; -x_22 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; +x_22 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__5; x_23 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_23, 0, x_21); lean_ctor_set(x_23, 1, x_22); lean_ctor_set(x_23, 2, x_19); lean_ctor_set(x_23, 3, x_20); -x_24 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_24 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__3; x_25 = lean_array_push(x_24, x_23); x_26 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_27 = lean_array_push(x_25, x_26); @@ -10169,7 +10158,7 @@ x_40 = lean_array_push(x_30, x_39); x_41 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_41, 0, x_32); lean_ctor_set(x_41, 1, x_40); -x_42 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_42 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; x_43 = lean_array_push(x_42, x_41); x_44 = lean_array_push(x_43, x_26); x_45 = lean_array_push(x_44, x_26); @@ -10188,8 +10177,8 @@ x_54 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_ lean_inc(x_13); lean_inc(x_16); x_55 = l_Lean_addMacroScope(x_16, x_54, x_13); -x_56 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__9; -x_57 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__11; +x_56 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; +x_57 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; x_58 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_58, 0, x_21); lean_ctor_set(x_58, 1, x_56); @@ -10211,12 +10200,12 @@ x_67 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_67, 0, x_66); lean_ctor_set(x_67, 1, x_65); x_68 = lean_array_push(x_53, x_67); -x_69 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__15; +x_69 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__14; lean_inc(x_13); lean_inc(x_16); x_70 = l_Lean_addMacroScope(x_16, x_69, x_13); -x_71 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__14; -x_72 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__17; +x_71 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__13; +x_72 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; x_73 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_73, 0, x_21); lean_ctor_set(x_73, 1, x_71); @@ -10225,14 +10214,14 @@ lean_ctor_set(x_73, 3, x_72); x_74 = lean_array_push(x_30, x_73); x_75 = l___private_Init_Meta_0__Lean_quoteName(x_11); x_76 = lean_array_push(x_30, x_75); -x_77 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__19; +x_77 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; x_78 = lean_array_push(x_76, x_77); x_79 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__7; lean_inc(x_13); lean_inc(x_16); x_80 = l_Lean_addMacroScope(x_16, x_79, x_13); -x_81 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__22; -x_82 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__24; +x_81 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__21; +x_82 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__23; x_83 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_83, 0, x_21); lean_ctor_set(x_83, 1, x_81); @@ -10243,8 +10232,8 @@ x_85 = l_Lean_Elab_Term_toParserDescrAux___closed__24; lean_inc(x_13); lean_inc(x_16); x_86 = l_Lean_addMacroScope(x_16, x_85, x_13); -x_87 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; -x_88 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__29; +x_87 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__26; +x_88 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__28; x_89 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_89, 0, x_21); lean_ctor_set(x_89, 1, x_87); @@ -10280,8 +10269,8 @@ x_106 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab x_107 = lean_array_push(x_106, x_105); x_108 = l_Lean_Elab_Term_toParserDescrAux___closed__31; x_109 = l_Lean_addMacroScope(x_16, x_108, x_13); -x_110 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__32; -x_111 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__34; +x_110 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__31; +x_111 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__33; x_112 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_112, 0, x_21); lean_ctor_set(x_112, 1, x_110); @@ -10310,7 +10299,7 @@ x_126 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_126, 0, x_104); lean_ctor_set(x_126, 1, x_125); x_127 = lean_array_push(x_106, x_126); -x_128 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__40; +x_128 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__39; x_129 = lean_array_push(x_90, x_128); x_130 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_130, 0, x_95); @@ -12539,7 +12528,7 @@ lean_inc(x_41); x_42 = lean_ctor_get(x_40, 1); lean_inc(x_42); lean_dec(x_40); -x_43 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_43 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__3; x_44 = lean_array_push(x_43, x_18); x_45 = l_Nat_repr(x_5); x_46 = l_Lean_numLitKind; @@ -12572,7 +12561,7 @@ x_64 = lean_array_push(x_49, x_63); x_65 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_65, 0, x_51); lean_ctor_set(x_65, 1, x_64); -x_66 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_66 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; x_67 = lean_array_push(x_66, x_65); x_68 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_69 = lean_array_push(x_67, x_68); @@ -12590,7 +12579,7 @@ x_78 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_ lean_inc(x_38); lean_inc(x_41); x_79 = l_Lean_addMacroScope(x_41, x_78, x_38); -x_80 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__9; +x_80 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; x_81 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__2; x_82 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_82, 0, x_47); @@ -12616,7 +12605,7 @@ x_92 = lean_array_push(x_77, x_91); x_93 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__6; x_94 = l_Lean_addMacroScope(x_41, x_93, x_38); x_95 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__5; -x_96 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__17; +x_96 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; x_97 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_97, 0, x_47); lean_ctor_set(x_97, 1, x_95); @@ -12705,7 +12694,7 @@ x_148 = lean_array_push(x_133, x_147); x_149 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_149, 0, x_135); lean_ctor_set(x_149, 1, x_148); -x_150 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_150 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; x_151 = lean_array_push(x_150, x_149); x_152 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_153 = lean_array_push(x_151, x_152); @@ -12723,7 +12712,7 @@ x_162 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab lean_inc(x_122); lean_inc(x_125); x_163 = l_Lean_addMacroScope(x_125, x_162, x_122); -x_164 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__9; +x_164 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; x_165 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__2; x_166 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_166, 0, x_131); @@ -12749,7 +12738,7 @@ x_176 = lean_array_push(x_161, x_175); x_177 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__6; x_178 = l_Lean_addMacroScope(x_125, x_177, x_122); x_179 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__5; -x_180 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__17; +x_180 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; x_181 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_181, 0, x_131); lean_ctor_set(x_181, 1, x_179); @@ -12838,7 +12827,7 @@ x_232 = lean_array_push(x_217, x_231); x_233 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_233, 0, x_219); lean_ctor_set(x_233, 1, x_232); -x_234 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_234 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; x_235 = lean_array_push(x_234, x_233); x_236 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_237 = lean_array_push(x_235, x_236); @@ -12856,7 +12845,7 @@ x_246 = l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab lean_inc(x_206); lean_inc(x_209); x_247 = l_Lean_addMacroScope(x_209, x_246, x_206); -x_248 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__9; +x_248 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; x_249 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__2; x_250 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_250, 0, x_215); @@ -12882,7 +12871,7 @@ x_260 = lean_array_push(x_245, x_259); x_261 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__6; x_262 = l_Lean_addMacroScope(x_209, x_261, x_206); x_263 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__5; -x_264 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__17; +x_264 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; x_265 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_265, 0, x_215); lean_ctor_set(x_265, 1, x_263); @@ -12943,7 +12932,7 @@ lean_inc(x_293); x_294 = lean_ctor_get(x_292, 1); lean_inc(x_294); lean_dec(x_292); -x_295 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_295 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__3; x_296 = lean_array_push(x_295, x_18); x_297 = l_Nat_repr(x_5); x_298 = l_Lean_numLitKind; @@ -12976,7 +12965,7 @@ x_316 = lean_array_push(x_301, x_315); x_317 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_317, 0, x_303); lean_ctor_set(x_317, 1, x_316); -x_318 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_318 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; x_319 = lean_array_push(x_318, x_317); x_320 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_321 = lean_array_push(x_319, x_320); @@ -13109,7 +13098,7 @@ x_400 = lean_array_push(x_385, x_399); x_401 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_401, 0, x_387); lean_ctor_set(x_401, 1, x_400); -x_402 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_402 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; x_403 = lean_array_push(x_402, x_401); x_404 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_405 = lean_array_push(x_403, x_404); @@ -13242,7 +13231,7 @@ x_484 = lean_array_push(x_469, x_483); x_485 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_485, 0, x_471); lean_ctor_set(x_485, 1, x_484); -x_486 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_486 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; x_487 = lean_array_push(x_486, x_485); x_488 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_489 = lean_array_push(x_487, x_488); @@ -13908,7 +13897,7 @@ static lean_object* _init_l_Lean_Elab_Command_elabSyntaxAbbrev___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; x_2 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_3 = lean_array_push(x_1, x_2); return x_3; @@ -14132,7 +14121,7 @@ lean_inc(x_29); lean_inc(x_32); x_37 = l_Lean_addMacroScope(x_32, x_36, x_29); x_38 = l_Lean_instInhabitedSourceInfo___closed__1; -x_39 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__9; +x_39 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; x_40 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__2; x_41 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_41, 0, x_38); @@ -14151,7 +14140,7 @@ x_48 = l_Lean_nullKind___closed__2; x_49 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_49, 0, x_48); lean_ctor_set(x_49, 1, x_47); -x_50 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_50 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; x_51 = lean_array_push(x_50, x_49); x_52 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__27; x_53 = lean_alloc_ctor(1, 2, 0); @@ -14923,59 +14912,27 @@ return x_4; static lean_object* _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__14() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_instInhabitedSourceInfo___closed__1; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___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_Command_elabMacroRulesAux___closed__15() { -_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_Command_elabMacroRulesAux___closed__14; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__16() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_expandExplicitBindersAux_loop___closed__3; -x_2 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__17() { -_start: -{ lean_object* x_1; x_1 = lean_mk_string("throw"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__18() { +static lean_object* _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__15() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; +x_1 = l_Lean_Elab_Command_elabMacroRulesAux___closed__14; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__19() { +static lean_object* _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; +x_1 = l_Lean_Elab_Command_elabMacroRulesAux___closed__14; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; +x_3 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -14983,12 +14940,40 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__20() { +static lean_object* _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; +x_2 = l_Lean_Elab_Command_elabMacroRulesAux___closed__14; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__18() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("MonadExcept"); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__19() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__20() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; +x_2 = l_Lean_Elab_Command_elabMacroRulesAux___closed__14; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -14996,9 +14981,13 @@ return x_3; static lean_object* _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__21() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("MonadExcept"); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; } } static lean_object* _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__22() { @@ -15007,45 +14996,13 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); x_2 = l_Lean_Elab_Command_elabMacroRulesAux___closed__21; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__23() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Command_elabMacroRulesAux___closed__22; -x_2 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__24() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Command_elabMacroRulesAux___closed__23; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__25() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Command_elabMacroRulesAux___closed__24; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__26() { +static lean_object* _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__23() { _start: { lean_object* x_1; @@ -15053,22 +15010,22 @@ x_1 = lean_mk_string("Lean.Macro.Exception.unsupportedSyntax"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__27() { +static lean_object* _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__24() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Command_elabMacroRulesAux___closed__26; +x_1 = l_Lean_Elab_Command_elabMacroRulesAux___closed__23; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__28() { +static lean_object* _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__25() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Command_elabMacroRulesAux___closed__26; +x_1 = l_Lean_Elab_Command_elabMacroRulesAux___closed__23; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Command_elabMacroRulesAux___closed__27; +x_3 = l_Lean_Elab_Command_elabMacroRulesAux___closed__24; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -15076,7 +15033,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__29() { +static lean_object* _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__26() { _start: { lean_object* x_1; @@ -15084,44 +15041,44 @@ x_1 = lean_mk_string("Exception"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__30() { +static lean_object* _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__27() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_mkMacroAttributeUnsafe___closed__10; -x_2 = l_Lean_Elab_Command_elabMacroRulesAux___closed__29; +x_2 = l_Lean_Elab_Command_elabMacroRulesAux___closed__26; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__31() { +static lean_object* _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__28() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Command_elabMacroRulesAux___closed__30; +x_1 = l_Lean_Elab_Command_elabMacroRulesAux___closed__27; x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Exception___hyg_17____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__32() { +static lean_object* _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__29() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Command_elabMacroRulesAux___closed__31; +x_2 = l_Lean_Elab_Command_elabMacroRulesAux___closed__28; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__33() { +static lean_object* _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__30() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Command_elabMacroRulesAux___closed__32; +x_2 = l_Lean_Elab_Command_elabMacroRulesAux___closed__29; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); @@ -15172,7 +15129,7 @@ lean_ctor_set(x_21, 0, x_19); lean_ctor_set(x_21, 1, x_20); lean_ctor_set(x_21, 2, x_17); lean_ctor_set(x_21, 3, x_18); -x_22 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_22 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__3; x_23 = lean_array_push(x_22, x_21); x_24 = lean_mk_syntax_ident(x_1); x_25 = l_Array_empty___closed__1; @@ -15202,7 +15159,7 @@ x_40 = lean_array_push(x_25, x_39); x_41 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_41, 0, x_27); lean_ctor_set(x_41, 1, x_40); -x_42 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_42 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; x_43 = lean_array_push(x_42, x_41); x_44 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_45 = lean_array_push(x_43, x_44); @@ -15277,30 +15234,30 @@ lean_ctor_set(x_82, 1, x_81); x_83 = lean_array_push(x_25, x_82); x_84 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_85 = lean_array_push(x_83, x_84); -x_86 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_86 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; x_87 = lean_array_push(x_86, x_80); -x_88 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_88 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; x_89 = lean_array_push(x_87, x_88); x_90 = l_Array_appendCore___rarg(x_25, x_8); lean_dec(x_8); -x_91 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_91 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44; x_92 = lean_array_push(x_90, x_91); -x_93 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; +x_93 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; lean_inc(x_11); lean_inc(x_15); x_94 = l_Lean_addMacroScope(x_15, x_93, x_11); -x_95 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_96 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; +x_95 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_96 = l_Lean_Elab_Command_elabMacroRulesAux___closed__22; x_97 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_97, 0, x_19); lean_ctor_set(x_97, 1, x_95); lean_ctor_set(x_97, 2, x_94); lean_ctor_set(x_97, 3, x_96); x_98 = lean_array_push(x_25, x_97); -x_99 = l_Lean_Elab_Command_elabMacroRulesAux___closed__31; +x_99 = l_Lean_Elab_Command_elabMacroRulesAux___closed__28; x_100 = l_Lean_addMacroScope(x_15, x_99, x_11); -x_101 = l_Lean_Elab_Command_elabMacroRulesAux___closed__28; -x_102 = l_Lean_Elab_Command_elabMacroRulesAux___closed__33; +x_101 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; +x_102 = l_Lean_Elab_Command_elabMacroRulesAux___closed__30; x_103 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_103, 0, x_19); lean_ctor_set(x_103, 1, x_101); @@ -15315,9 +15272,9 @@ x_107 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; x_108 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_108, 0, x_107); lean_ctor_set(x_108, 1, x_106); -x_109 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_109 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__50; x_110 = lean_array_push(x_109, x_108); -x_111 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_111 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; x_112 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_112, 0, x_111); lean_ctor_set(x_112, 1, x_110); @@ -15326,12 +15283,12 @@ x_114 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_114, 0, x_27); lean_ctor_set(x_114, 1, x_113); x_115 = lean_array_push(x_42, x_114); -x_116 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_116 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; x_117 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_117, 0, x_116); lean_ctor_set(x_117, 1, x_115); x_118 = lean_array_push(x_89, x_117); -x_119 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_119 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__40; x_120 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_120, 0, x_119); lean_ctor_set(x_120, 1, x_118); @@ -15386,7 +15343,7 @@ lean_ctor_set(x_146, 0, x_144); lean_ctor_set(x_146, 1, x_145); lean_ctor_set(x_146, 2, x_142); lean_ctor_set(x_146, 3, x_143); -x_147 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_147 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__3; x_148 = lean_array_push(x_147, x_146); x_149 = lean_mk_syntax_ident(x_1); x_150 = l_Array_empty___closed__1; @@ -15416,7 +15373,7 @@ x_165 = lean_array_push(x_150, x_164); x_166 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_166, 0, x_152); lean_ctor_set(x_166, 1, x_165); -x_167 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_167 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; x_168 = lean_array_push(x_167, x_166); x_169 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_170 = lean_array_push(x_168, x_169); @@ -15491,30 +15448,30 @@ lean_ctor_set(x_207, 1, x_206); x_208 = lean_array_push(x_150, x_207); x_209 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_210 = lean_array_push(x_208, x_209); -x_211 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_211 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; x_212 = lean_array_push(x_211, x_205); -x_213 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_213 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; x_214 = lean_array_push(x_212, x_213); x_215 = l_Array_appendCore___rarg(x_150, x_8); lean_dec(x_8); -x_216 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_216 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44; x_217 = lean_array_push(x_215, x_216); -x_218 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; +x_218 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; lean_inc(x_11); lean_inc(x_139); x_219 = l_Lean_addMacroScope(x_139, x_218, x_11); -x_220 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_221 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; +x_220 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_221 = l_Lean_Elab_Command_elabMacroRulesAux___closed__22; x_222 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_222, 0, x_144); lean_ctor_set(x_222, 1, x_220); lean_ctor_set(x_222, 2, x_219); lean_ctor_set(x_222, 3, x_221); x_223 = lean_array_push(x_150, x_222); -x_224 = l_Lean_Elab_Command_elabMacroRulesAux___closed__31; +x_224 = l_Lean_Elab_Command_elabMacroRulesAux___closed__28; x_225 = l_Lean_addMacroScope(x_139, x_224, x_11); -x_226 = l_Lean_Elab_Command_elabMacroRulesAux___closed__28; -x_227 = l_Lean_Elab_Command_elabMacroRulesAux___closed__33; +x_226 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; +x_227 = l_Lean_Elab_Command_elabMacroRulesAux___closed__30; x_228 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_228, 0, x_144); lean_ctor_set(x_228, 1, x_226); @@ -15529,9 +15486,9 @@ x_232 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; x_233 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_233, 0, x_232); lean_ctor_set(x_233, 1, x_231); -x_234 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_234 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__50; x_235 = lean_array_push(x_234, x_233); -x_236 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_236 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; x_237 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_237, 0, x_236); lean_ctor_set(x_237, 1, x_235); @@ -15540,12 +15497,12 @@ x_239 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_239, 0, x_152); lean_ctor_set(x_239, 1, x_238); x_240 = lean_array_push(x_167, x_239); -x_241 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_241 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; x_242 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_242, 0, x_241); lean_ctor_set(x_242, 1, x_240); x_243 = lean_array_push(x_214, x_242); -x_244 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_244 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__40; x_245 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_245, 0, x_244); lean_ctor_set(x_245, 1, x_243); @@ -16224,7 +16181,7 @@ lean_ctor_set(x_35, 0, x_34); lean_ctor_set(x_35, 1, x_33); x_36 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__8; x_37 = lean_array_push(x_36, x_35); -x_38 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_38 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; x_39 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_39, 0, x_38); lean_ctor_set(x_39, 1, x_37); @@ -16257,7 +16214,7 @@ lean_ctor_set(x_51, 0, x_50); lean_ctor_set(x_51, 1, x_49); x_52 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__8; x_53 = lean_array_push(x_52, x_51); -x_54 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_54 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; x_55 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_55, 0, x_54); lean_ctor_set(x_55, 1, x_53); @@ -16324,7 +16281,7 @@ lean_ctor_set(x_75, 0, x_74); lean_ctor_set(x_75, 1, x_73); x_76 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__8; x_77 = lean_array_push(x_76, x_75); -x_78 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_78 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; x_79 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_79, 0, x_78); lean_ctor_set(x_79, 1, x_77); @@ -16600,7 +16557,7 @@ lean_dec(x_14); x_76 = lean_unsigned_to_nat(2u); x_77 = l_Lean_Syntax_getArg(x_1, x_76); lean_dec(x_1); -x_78 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_78 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; lean_inc(x_77); x_79 = l_Lean_Syntax_isOfKind(x_77, x_78); if (x_79 == 0) @@ -16739,7 +16696,7 @@ lean_dec(x_14); x_24 = lean_unsigned_to_nat(2u); x_25 = l_Lean_Syntax_getArg(x_1, x_24); lean_dec(x_1); -x_26 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_26 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; lean_inc(x_25); x_27 = l_Lean_Syntax_isOfKind(x_25, x_26); if (x_27 == 0) @@ -20225,11 +20182,9 @@ static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__23() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_instInhabitedSourceInfo___closed__1; -x_2 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___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); +x_1 = l_myMacro____x40_Init_Notation___hyg_9707____closed__11; +x_2 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; +x_3 = lean_array_push(x_1, x_2); return x_3; } } @@ -20237,8 +20192,8 @@ static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__24() { _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_Command_mkSimpleDelab_go___closed__23; +x_1 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__23; +x_2 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -20247,9 +20202,11 @@ static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__25() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_9707____closed__11; -x_2 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; -x_3 = lean_array_push(x_1, x_2); +x_1 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; +x_2 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +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; } } @@ -20257,8 +20214,8 @@ static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__26() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__25; -x_2 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; +x_1 = l_Array_empty___closed__1; +x_2 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__25; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -20267,30 +20224,8 @@ static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__27() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; -x_2 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__26; -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_Command_mkSimpleDelab_go___closed__28() { -_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_Command_mkSimpleDelab_go___closed__27; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__29() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_nullKind___closed__2; -x_2 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__28; +x_2 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__26; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); @@ -20430,7 +20365,7 @@ lean_ctor_set(x_53, 0, x_51); lean_ctor_set(x_53, 1, x_52); lean_ctor_set(x_53, 2, x_49); lean_ctor_set(x_53, 3, x_50); -x_54 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_54 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__3; x_55 = lean_array_push(x_54, x_53); x_56 = lean_mk_syntax_ident(x_24); x_57 = lean_array_push(x_34, x_56); @@ -20458,7 +20393,7 @@ x_70 = lean_array_push(x_34, x_69); x_71 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_71, 0, x_36); lean_ctor_set(x_71, 1, x_70); -x_72 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_72 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; x_73 = lean_array_push(x_72, x_71); x_74 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_75 = lean_array_push(x_73, x_74); @@ -20533,11 +20468,11 @@ lean_ctor_set(x_112, 1, x_111); x_113 = lean_array_push(x_34, x_112); x_114 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_115 = lean_array_push(x_113, x_114); -x_116 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_116 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; x_117 = lean_array_push(x_116, x_110); -x_118 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_118 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; x_119 = lean_array_push(x_117, x_118); -x_120 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_120 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__49; x_121 = lean_array_push(x_120, x_41); x_122 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; x_123 = lean_array_push(x_121, x_122); @@ -20557,29 +20492,29 @@ x_132 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_132, 0, x_124); lean_ctor_set(x_132, 1, x_131); x_133 = lean_array_push(x_129, x_132); -x_134 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_134 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; 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 = lean_array_push(x_34, x_135); -x_137 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_137 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44; x_138 = lean_array_push(x_136, x_137); -x_139 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; +x_139 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; x_140 = l_Lean_addMacroScope(x_47, x_139, x_43); -x_141 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_142 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; +x_141 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_142 = l_Lean_Elab_Command_elabMacroRulesAux___closed__22; x_143 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_143, 0, x_51); lean_ctor_set(x_143, 1, x_141); lean_ctor_set(x_143, 2, x_140); lean_ctor_set(x_143, 3, x_142); x_144 = lean_array_push(x_34, x_143); -x_145 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; +x_145 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__27; x_146 = lean_array_push(x_144, x_145); x_147 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_147, 0, x_40); lean_ctor_set(x_147, 1, x_146); -x_148 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_148 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__50; x_149 = lean_array_push(x_148, x_147); x_150 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_150, 0, x_134); @@ -20588,14 +20523,14 @@ x_151 = lean_array_push(x_138, x_150); x_152 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_152, 0, x_36); lean_ctor_set(x_152, 1, x_151); -x_153 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_153 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__47; x_154 = lean_array_push(x_153, x_152); -x_155 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_155 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; 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 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_158 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__40; x_159 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_159, 0, x_158); lean_ctor_set(x_159, 1, x_157); @@ -20651,7 +20586,7 @@ lean_ctor_set(x_185, 0, x_183); lean_ctor_set(x_185, 1, x_184); lean_ctor_set(x_185, 2, x_181); lean_ctor_set(x_185, 3, x_182); -x_186 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_186 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__3; x_187 = lean_array_push(x_186, x_185); x_188 = lean_mk_syntax_ident(x_24); x_189 = lean_array_push(x_34, x_188); @@ -20679,7 +20614,7 @@ x_202 = lean_array_push(x_34, x_201); x_203 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_203, 0, x_36); lean_ctor_set(x_203, 1, x_202); -x_204 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_204 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; x_205 = lean_array_push(x_204, x_203); x_206 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_207 = lean_array_push(x_205, x_206); @@ -20754,11 +20689,11 @@ lean_ctor_set(x_244, 1, x_243); x_245 = lean_array_push(x_34, x_244); x_246 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_247 = lean_array_push(x_245, x_246); -x_248 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_248 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; x_249 = lean_array_push(x_248, x_242); -x_250 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_250 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; x_251 = lean_array_push(x_249, x_250); -x_252 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_252 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__49; x_253 = lean_array_push(x_252, x_41); x_254 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; x_255 = lean_array_push(x_253, x_254); @@ -20778,29 +20713,29 @@ x_264 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_264, 0, x_256); lean_ctor_set(x_264, 1, x_263); x_265 = lean_array_push(x_261, x_264); -x_266 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_266 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; 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_34, x_267); -x_269 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_269 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44; x_270 = lean_array_push(x_268, x_269); -x_271 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; +x_271 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; x_272 = l_Lean_addMacroScope(x_178, x_271, x_43); -x_273 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_274 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; +x_273 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_274 = l_Lean_Elab_Command_elabMacroRulesAux___closed__22; x_275 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_275, 0, x_183); lean_ctor_set(x_275, 1, x_273); lean_ctor_set(x_275, 2, x_272); lean_ctor_set(x_275, 3, x_274); x_276 = lean_array_push(x_34, x_275); -x_277 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; +x_277 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__27; x_278 = lean_array_push(x_276, x_277); x_279 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_279, 0, x_40); lean_ctor_set(x_279, 1, x_278); -x_280 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_280 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__50; x_281 = lean_array_push(x_280, x_279); x_282 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_282, 0, x_266); @@ -20809,14 +20744,14 @@ x_283 = lean_array_push(x_270, x_282); x_284 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_284, 0, x_36); lean_ctor_set(x_284, 1, x_283); -x_285 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_285 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__47; x_286 = lean_array_push(x_285, x_284); -x_287 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_287 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; 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 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_290 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__40; x_291 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_291, 0, x_290); lean_ctor_set(x_291, 1, x_289); @@ -20923,7 +20858,7 @@ lean_ctor_set(x_337, 0, x_335); lean_ctor_set(x_337, 1, x_336); lean_ctor_set(x_337, 2, x_333); lean_ctor_set(x_337, 3, x_334); -x_338 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_338 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__3; x_339 = lean_array_push(x_338, x_337); x_340 = lean_mk_syntax_ident(x_24); x_341 = lean_array_push(x_318, x_340); @@ -20951,7 +20886,7 @@ x_354 = lean_array_push(x_318, x_353); x_355 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_355, 0, x_320); lean_ctor_set(x_355, 1, x_354); -x_356 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_356 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; x_357 = lean_array_push(x_356, x_355); x_358 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_359 = lean_array_push(x_357, x_358); @@ -21026,11 +20961,11 @@ lean_ctor_set(x_396, 1, x_395); x_397 = lean_array_push(x_318, x_396); x_398 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_399 = lean_array_push(x_397, x_398); -x_400 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_400 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; x_401 = lean_array_push(x_400, x_394); -x_402 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_402 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; x_403 = lean_array_push(x_401, x_402); -x_404 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_404 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__49; x_405 = lean_array_push(x_404, x_325); x_406 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; x_407 = lean_array_push(x_405, x_406); @@ -21050,29 +20985,29 @@ x_416 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_416, 0, x_408); lean_ctor_set(x_416, 1, x_415); x_417 = lean_array_push(x_413, x_416); -x_418 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_418 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; x_419 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_419, 0, x_418); lean_ctor_set(x_419, 1, x_417); x_420 = lean_array_push(x_318, x_419); -x_421 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_421 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44; x_422 = lean_array_push(x_420, x_421); -x_423 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; +x_423 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; x_424 = l_Lean_addMacroScope(x_331, x_423, x_327); -x_425 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_426 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; +x_425 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_426 = l_Lean_Elab_Command_elabMacroRulesAux___closed__22; x_427 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_427, 0, x_335); lean_ctor_set(x_427, 1, x_425); lean_ctor_set(x_427, 2, x_424); lean_ctor_set(x_427, 3, x_426); x_428 = lean_array_push(x_318, x_427); -x_429 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; +x_429 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__27; x_430 = lean_array_push(x_428, x_429); x_431 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_431, 0, x_324); lean_ctor_set(x_431, 1, x_430); -x_432 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_432 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__50; x_433 = lean_array_push(x_432, x_431); x_434 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_434, 0, x_418); @@ -21081,14 +21016,14 @@ x_435 = lean_array_push(x_422, x_434); x_436 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_436, 0, x_320); lean_ctor_set(x_436, 1, x_435); -x_437 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_437 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__47; x_438 = lean_array_push(x_437, x_436); -x_439 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_439 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; x_440 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_440, 0, x_439); lean_ctor_set(x_440, 1, x_438); x_441 = lean_array_push(x_403, x_440); -x_442 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_442 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__40; x_443 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_443, 0, x_442); lean_ctor_set(x_443, 1, x_441); @@ -21144,7 +21079,7 @@ lean_ctor_set(x_469, 0, x_467); lean_ctor_set(x_469, 1, x_468); lean_ctor_set(x_469, 2, x_465); lean_ctor_set(x_469, 3, x_466); -x_470 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_470 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__3; x_471 = lean_array_push(x_470, x_469); x_472 = lean_mk_syntax_ident(x_24); x_473 = lean_array_push(x_318, x_472); @@ -21172,7 +21107,7 @@ x_486 = lean_array_push(x_318, x_485); x_487 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_487, 0, x_320); lean_ctor_set(x_487, 1, x_486); -x_488 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_488 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; x_489 = lean_array_push(x_488, x_487); x_490 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_491 = lean_array_push(x_489, x_490); @@ -21247,11 +21182,11 @@ lean_ctor_set(x_528, 1, x_527); x_529 = lean_array_push(x_318, x_528); x_530 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_531 = lean_array_push(x_529, x_530); -x_532 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_532 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; x_533 = lean_array_push(x_532, x_526); -x_534 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_534 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; x_535 = lean_array_push(x_533, x_534); -x_536 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_536 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__49; x_537 = lean_array_push(x_536, x_325); x_538 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; x_539 = lean_array_push(x_537, x_538); @@ -21271,29 +21206,29 @@ x_548 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_548, 0, x_540); lean_ctor_set(x_548, 1, x_547); x_549 = lean_array_push(x_545, x_548); -x_550 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_550 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; x_551 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_551, 0, x_550); lean_ctor_set(x_551, 1, x_549); x_552 = lean_array_push(x_318, x_551); -x_553 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_553 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44; x_554 = lean_array_push(x_552, x_553); -x_555 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; +x_555 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; x_556 = l_Lean_addMacroScope(x_462, x_555, x_327); -x_557 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_558 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; +x_557 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_558 = l_Lean_Elab_Command_elabMacroRulesAux___closed__22; x_559 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_559, 0, x_467); lean_ctor_set(x_559, 1, x_557); lean_ctor_set(x_559, 2, x_556); lean_ctor_set(x_559, 3, x_558); x_560 = lean_array_push(x_318, x_559); -x_561 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; +x_561 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__27; x_562 = lean_array_push(x_560, x_561); x_563 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_563, 0, x_324); lean_ctor_set(x_563, 1, x_562); -x_564 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_564 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__50; x_565 = lean_array_push(x_564, x_563); x_566 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_566, 0, x_550); @@ -21302,14 +21237,14 @@ x_567 = lean_array_push(x_554, x_566); x_568 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_568, 0, x_320); lean_ctor_set(x_568, 1, x_567); -x_569 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_569 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__47; x_570 = lean_array_push(x_569, x_568); -x_571 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_571 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; x_572 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_572, 0, x_571); lean_ctor_set(x_572, 1, x_570); x_573 = lean_array_push(x_535, x_572); -x_574 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_574 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__40; x_575 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_575, 0, x_574); lean_ctor_set(x_575, 1, x_573); @@ -21418,7 +21353,7 @@ lean_ctor_set(x_623, 0, x_621); lean_ctor_set(x_623, 1, x_622); lean_ctor_set(x_623, 2, x_619); lean_ctor_set(x_623, 3, x_620); -x_624 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_624 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__3; x_625 = lean_array_push(x_624, x_623); x_626 = lean_mk_syntax_ident(x_24); x_627 = lean_array_push(x_604, x_626); @@ -21446,7 +21381,7 @@ x_640 = lean_array_push(x_604, x_639); x_641 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_641, 0, x_606); lean_ctor_set(x_641, 1, x_640); -x_642 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_642 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; x_643 = lean_array_push(x_642, x_641); x_644 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_645 = lean_array_push(x_643, x_644); @@ -21521,11 +21456,11 @@ lean_ctor_set(x_682, 1, x_681); x_683 = lean_array_push(x_604, x_682); x_684 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_685 = lean_array_push(x_683, x_684); -x_686 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_686 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; x_687 = lean_array_push(x_686, x_680); -x_688 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_688 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; x_689 = lean_array_push(x_687, x_688); -x_690 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_690 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__49; x_691 = lean_array_push(x_690, x_611); x_692 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; x_693 = lean_array_push(x_691, x_692); @@ -21545,29 +21480,29 @@ x_702 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_702, 0, x_694); lean_ctor_set(x_702, 1, x_701); x_703 = lean_array_push(x_699, x_702); -x_704 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_704 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; x_705 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_705, 0, x_704); lean_ctor_set(x_705, 1, x_703); x_706 = lean_array_push(x_604, x_705); -x_707 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_707 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44; x_708 = lean_array_push(x_706, x_707); -x_709 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; +x_709 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; x_710 = l_Lean_addMacroScope(x_617, x_709, x_613); -x_711 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_712 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; +x_711 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_712 = l_Lean_Elab_Command_elabMacroRulesAux___closed__22; x_713 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_713, 0, x_621); lean_ctor_set(x_713, 1, x_711); lean_ctor_set(x_713, 2, x_710); lean_ctor_set(x_713, 3, x_712); x_714 = lean_array_push(x_604, x_713); -x_715 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; +x_715 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__27; x_716 = lean_array_push(x_714, x_715); x_717 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_717, 0, x_610); lean_ctor_set(x_717, 1, x_716); -x_718 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_718 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__50; x_719 = lean_array_push(x_718, x_717); x_720 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_720, 0, x_704); @@ -21576,14 +21511,14 @@ x_721 = lean_array_push(x_708, x_720); x_722 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_722, 0, x_606); lean_ctor_set(x_722, 1, x_721); -x_723 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_723 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__47; x_724 = lean_array_push(x_723, x_722); -x_725 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_725 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; x_726 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_726, 0, x_725); lean_ctor_set(x_726, 1, x_724); x_727 = lean_array_push(x_689, x_726); -x_728 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_728 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__40; x_729 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_729, 0, x_728); lean_ctor_set(x_729, 1, x_727); @@ -21639,7 +21574,7 @@ lean_ctor_set(x_755, 0, x_753); lean_ctor_set(x_755, 1, x_754); lean_ctor_set(x_755, 2, x_751); lean_ctor_set(x_755, 3, x_752); -x_756 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_756 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__3; x_757 = lean_array_push(x_756, x_755); x_758 = lean_mk_syntax_ident(x_24); x_759 = lean_array_push(x_604, x_758); @@ -21667,7 +21602,7 @@ x_772 = lean_array_push(x_604, x_771); x_773 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_773, 0, x_606); lean_ctor_set(x_773, 1, x_772); -x_774 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_774 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; x_775 = lean_array_push(x_774, x_773); x_776 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_777 = lean_array_push(x_775, x_776); @@ -21742,11 +21677,11 @@ lean_ctor_set(x_814, 1, x_813); x_815 = lean_array_push(x_604, x_814); x_816 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_817 = lean_array_push(x_815, x_816); -x_818 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_818 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; x_819 = lean_array_push(x_818, x_812); -x_820 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_820 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; x_821 = lean_array_push(x_819, x_820); -x_822 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_822 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__49; x_823 = lean_array_push(x_822, x_611); x_824 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; x_825 = lean_array_push(x_823, x_824); @@ -21766,29 +21701,29 @@ x_834 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_834, 0, x_826); lean_ctor_set(x_834, 1, x_833); x_835 = lean_array_push(x_831, x_834); -x_836 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_836 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; x_837 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_837, 0, x_836); lean_ctor_set(x_837, 1, x_835); x_838 = lean_array_push(x_604, x_837); -x_839 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_839 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44; x_840 = lean_array_push(x_838, x_839); -x_841 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; +x_841 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; x_842 = l_Lean_addMacroScope(x_748, x_841, x_613); -x_843 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_844 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; +x_843 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_844 = l_Lean_Elab_Command_elabMacroRulesAux___closed__22; x_845 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_845, 0, x_753); lean_ctor_set(x_845, 1, x_843); lean_ctor_set(x_845, 2, x_842); lean_ctor_set(x_845, 3, x_844); x_846 = lean_array_push(x_604, x_845); -x_847 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; +x_847 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__27; x_848 = lean_array_push(x_846, x_847); x_849 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_849, 0, x_610); lean_ctor_set(x_849, 1, x_848); -x_850 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_850 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__50; x_851 = lean_array_push(x_850, x_849); x_852 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_852, 0, x_836); @@ -21797,14 +21732,14 @@ x_853 = lean_array_push(x_840, x_852); x_854 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_854, 0, x_606); lean_ctor_set(x_854, 1, x_853); -x_855 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_855 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__47; x_856 = lean_array_push(x_855, x_854); -x_857 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_857 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; x_858 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_858, 0, x_857); lean_ctor_set(x_858, 1, x_856); x_859 = lean_array_push(x_821, x_858); -x_860 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_860 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__40; x_861 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_861, 0, x_860); lean_ctor_set(x_861, 1, x_859); @@ -21940,7 +21875,7 @@ lean_ctor_set(x_914, 0, x_912); lean_ctor_set(x_914, 1, x_913); lean_ctor_set(x_914, 2, x_910); lean_ctor_set(x_914, 3, x_911); -x_915 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_915 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__3; x_916 = lean_array_push(x_915, x_914); x_917 = lean_mk_syntax_ident(x_883); x_918 = lean_array_push(x_894, x_917); @@ -21968,7 +21903,7 @@ x_931 = lean_array_push(x_894, x_930); x_932 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_932, 0, x_896); lean_ctor_set(x_932, 1, x_931); -x_933 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_933 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; x_934 = lean_array_push(x_933, x_932); x_935 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_936 = lean_array_push(x_934, x_935); @@ -22043,11 +21978,11 @@ lean_ctor_set(x_973, 1, x_972); x_974 = lean_array_push(x_894, x_973); x_975 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_976 = lean_array_push(x_974, x_975); -x_977 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_977 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; x_978 = lean_array_push(x_977, x_971); -x_979 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_979 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; x_980 = lean_array_push(x_978, x_979); -x_981 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_981 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__49; x_982 = lean_array_push(x_981, x_901); x_983 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; x_984 = lean_array_push(x_982, x_983); @@ -22067,29 +22002,29 @@ x_993 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_993, 0, x_985); lean_ctor_set(x_993, 1, x_992); x_994 = lean_array_push(x_990, x_993); -x_995 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_995 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; x_996 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_996, 0, x_995); lean_ctor_set(x_996, 1, x_994); x_997 = lean_array_push(x_894, x_996); -x_998 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_998 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44; x_999 = lean_array_push(x_997, x_998); -x_1000 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; +x_1000 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; x_1001 = l_Lean_addMacroScope(x_906, x_1000, x_903); -x_1002 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_1003 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; +x_1002 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_1003 = l_Lean_Elab_Command_elabMacroRulesAux___closed__22; x_1004 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1004, 0, x_912); lean_ctor_set(x_1004, 1, x_1002); lean_ctor_set(x_1004, 2, x_1001); lean_ctor_set(x_1004, 3, x_1003); x_1005 = lean_array_push(x_894, x_1004); -x_1006 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; +x_1006 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__27; x_1007 = lean_array_push(x_1005, x_1006); x_1008 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1008, 0, x_900); lean_ctor_set(x_1008, 1, x_1007); -x_1009 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_1009 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__50; x_1010 = lean_array_push(x_1009, x_1008); x_1011 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1011, 0, x_995); @@ -22098,14 +22033,14 @@ x_1012 = lean_array_push(x_999, x_1011); x_1013 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1013, 0, x_896); lean_ctor_set(x_1013, 1, x_1012); -x_1014 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1014 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__47; x_1015 = lean_array_push(x_1014, x_1013); -x_1016 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1016 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; x_1017 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1017, 0, x_1016); lean_ctor_set(x_1017, 1, x_1015); x_1018 = lean_array_push(x_980, x_1017); -x_1019 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_1019 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__40; x_1020 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1020, 0, x_1019); lean_ctor_set(x_1020, 1, x_1018); @@ -22223,7 +22158,7 @@ lean_ctor_set(x_1068, 0, x_1066); lean_ctor_set(x_1068, 1, x_1067); lean_ctor_set(x_1068, 2, x_1064); lean_ctor_set(x_1068, 3, x_1065); -x_1069 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_1069 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__3; x_1070 = lean_array_push(x_1069, x_1068); x_1071 = lean_mk_syntax_ident(x_883); x_1072 = lean_array_push(x_1048, x_1071); @@ -22251,7 +22186,7 @@ x_1085 = lean_array_push(x_1048, x_1084); x_1086 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1086, 0, x_1050); lean_ctor_set(x_1086, 1, x_1085); -x_1087 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1087 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; x_1088 = lean_array_push(x_1087, x_1086); x_1089 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_1090 = lean_array_push(x_1088, x_1089); @@ -22326,11 +22261,11 @@ lean_ctor_set(x_1127, 1, x_1126); x_1128 = lean_array_push(x_1048, x_1127); x_1129 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_1130 = lean_array_push(x_1128, x_1129); -x_1131 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_1131 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; x_1132 = lean_array_push(x_1131, x_1125); -x_1133 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1133 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; x_1134 = lean_array_push(x_1132, x_1133); -x_1135 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_1135 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__49; x_1136 = lean_array_push(x_1135, x_1055); x_1137 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; x_1138 = lean_array_push(x_1136, x_1137); @@ -22350,29 +22285,29 @@ x_1147 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1147, 0, x_1139); lean_ctor_set(x_1147, 1, x_1146); x_1148 = lean_array_push(x_1144, x_1147); -x_1149 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1149 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; x_1150 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1150, 0, x_1149); lean_ctor_set(x_1150, 1, x_1148); x_1151 = lean_array_push(x_1048, x_1150); -x_1152 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1152 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44; x_1153 = lean_array_push(x_1151, x_1152); -x_1154 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; +x_1154 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; x_1155 = l_Lean_addMacroScope(x_1060, x_1154, x_1057); -x_1156 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_1157 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; +x_1156 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_1157 = l_Lean_Elab_Command_elabMacroRulesAux___closed__22; x_1158 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1158, 0, x_1066); lean_ctor_set(x_1158, 1, x_1156); lean_ctor_set(x_1158, 2, x_1155); lean_ctor_set(x_1158, 3, x_1157); x_1159 = lean_array_push(x_1048, x_1158); -x_1160 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; +x_1160 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__27; x_1161 = lean_array_push(x_1159, x_1160); x_1162 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1162, 0, x_1054); lean_ctor_set(x_1162, 1, x_1161); -x_1163 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_1163 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__50; x_1164 = lean_array_push(x_1163, x_1162); x_1165 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1165, 0, x_1149); @@ -22381,14 +22316,14 @@ x_1166 = lean_array_push(x_1153, x_1165); x_1167 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1167, 0, x_1050); lean_ctor_set(x_1167, 1, x_1166); -x_1168 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1168 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__47; x_1169 = lean_array_push(x_1168, x_1167); -x_1170 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1170 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; 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_1134, x_1171); -x_1173 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_1173 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__40; x_1174 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1174, 0, x_1173); lean_ctor_set(x_1174, 1, x_1172); @@ -22508,7 +22443,7 @@ lean_ctor_set(x_1224, 0, x_1222); lean_ctor_set(x_1224, 1, x_1223); lean_ctor_set(x_1224, 2, x_1220); lean_ctor_set(x_1224, 3, x_1221); -x_1225 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_1225 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__3; x_1226 = lean_array_push(x_1225, x_1224); x_1227 = lean_mk_syntax_ident(x_883); x_1228 = lean_array_push(x_1204, x_1227); @@ -22536,7 +22471,7 @@ x_1241 = lean_array_push(x_1204, x_1240); x_1242 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1242, 0, x_1206); lean_ctor_set(x_1242, 1, x_1241); -x_1243 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1243 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; x_1244 = lean_array_push(x_1243, x_1242); x_1245 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_1246 = lean_array_push(x_1244, x_1245); @@ -22611,11 +22546,11 @@ lean_ctor_set(x_1283, 1, x_1282); x_1284 = lean_array_push(x_1204, x_1283); x_1285 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_1286 = lean_array_push(x_1284, x_1285); -x_1287 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_1287 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; x_1288 = lean_array_push(x_1287, x_1281); -x_1289 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1289 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; x_1290 = lean_array_push(x_1288, x_1289); -x_1291 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_1291 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__49; x_1292 = lean_array_push(x_1291, x_1211); x_1293 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; x_1294 = lean_array_push(x_1292, x_1293); @@ -22635,29 +22570,29 @@ x_1303 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1303, 0, x_1295); lean_ctor_set(x_1303, 1, x_1302); x_1304 = lean_array_push(x_1300, x_1303); -x_1305 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1305 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; x_1306 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1306, 0, x_1305); lean_ctor_set(x_1306, 1, x_1304); x_1307 = lean_array_push(x_1204, x_1306); -x_1308 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1308 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44; x_1309 = lean_array_push(x_1307, x_1308); -x_1310 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; +x_1310 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; x_1311 = l_Lean_addMacroScope(x_1216, x_1310, x_1213); -x_1312 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_1313 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; +x_1312 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_1313 = l_Lean_Elab_Command_elabMacroRulesAux___closed__22; x_1314 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1314, 0, x_1222); lean_ctor_set(x_1314, 1, x_1312); lean_ctor_set(x_1314, 2, x_1311); lean_ctor_set(x_1314, 3, x_1313); x_1315 = lean_array_push(x_1204, x_1314); -x_1316 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; +x_1316 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__27; x_1317 = lean_array_push(x_1315, x_1316); x_1318 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1318, 0, x_1210); lean_ctor_set(x_1318, 1, x_1317); -x_1319 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_1319 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__50; x_1320 = lean_array_push(x_1319, x_1318); x_1321 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1321, 0, x_1305); @@ -22666,14 +22601,14 @@ x_1322 = lean_array_push(x_1309, x_1321); x_1323 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1323, 0, x_1206); lean_ctor_set(x_1323, 1, x_1322); -x_1324 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1324 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__47; x_1325 = lean_array_push(x_1324, x_1323); -x_1326 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1326 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; x_1327 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1327, 0, x_1326); lean_ctor_set(x_1327, 1, x_1325); x_1328 = lean_array_push(x_1290, x_1327); -x_1329 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_1329 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__40; x_1330 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1330, 0, x_1329); lean_ctor_set(x_1330, 1, x_1328); @@ -22933,7 +22868,7 @@ lean_ctor_set(x_1405, 0, x_1403); lean_ctor_set(x_1405, 1, x_1404); lean_ctor_set(x_1405, 2, x_1401); lean_ctor_set(x_1405, 3, x_1402); -x_1406 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_1406 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__3; x_1407 = lean_array_push(x_1406, x_1405); x_1408 = lean_mk_syntax_ident(x_1374); x_1409 = lean_array_push(x_1385, x_1408); @@ -22961,7 +22896,7 @@ x_1422 = lean_array_push(x_1385, x_1421); x_1423 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1423, 0, x_1387); lean_ctor_set(x_1423, 1, x_1422); -x_1424 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1424 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; x_1425 = lean_array_push(x_1424, x_1423); x_1426 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_1427 = lean_array_push(x_1425, x_1426); @@ -23036,11 +22971,11 @@ lean_ctor_set(x_1464, 1, x_1463); x_1465 = lean_array_push(x_1385, x_1464); x_1466 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_1467 = lean_array_push(x_1465, x_1466); -x_1468 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_1468 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; x_1469 = lean_array_push(x_1468, x_1462); -x_1470 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1470 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; x_1471 = lean_array_push(x_1469, x_1470); -x_1472 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_1472 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__49; x_1473 = lean_array_push(x_1472, x_1392); x_1474 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; x_1475 = lean_array_push(x_1473, x_1474); @@ -23060,29 +22995,29 @@ x_1484 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1484, 0, x_1476); lean_ctor_set(x_1484, 1, x_1483); x_1485 = lean_array_push(x_1481, x_1484); -x_1486 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1486 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; x_1487 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1487, 0, x_1486); lean_ctor_set(x_1487, 1, x_1485); x_1488 = lean_array_push(x_1385, x_1487); -x_1489 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1489 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44; x_1490 = lean_array_push(x_1488, x_1489); -x_1491 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; +x_1491 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; x_1492 = l_Lean_addMacroScope(x_1397, x_1491, x_1394); -x_1493 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_1494 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; +x_1493 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_1494 = l_Lean_Elab_Command_elabMacroRulesAux___closed__22; x_1495 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1495, 0, x_1403); lean_ctor_set(x_1495, 1, x_1493); lean_ctor_set(x_1495, 2, x_1492); lean_ctor_set(x_1495, 3, x_1494); x_1496 = lean_array_push(x_1385, x_1495); -x_1497 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; +x_1497 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__27; x_1498 = lean_array_push(x_1496, x_1497); x_1499 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1499, 0, x_1391); lean_ctor_set(x_1499, 1, x_1498); -x_1500 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_1500 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__50; x_1501 = lean_array_push(x_1500, x_1499); x_1502 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1502, 0, x_1486); @@ -23091,14 +23026,14 @@ x_1503 = lean_array_push(x_1490, x_1502); x_1504 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1504, 0, x_1387); lean_ctor_set(x_1504, 1, x_1503); -x_1505 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1505 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__47; x_1506 = lean_array_push(x_1505, x_1504); -x_1507 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1507 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; x_1508 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1508, 0, x_1507); lean_ctor_set(x_1508, 1, x_1506); x_1509 = lean_array_push(x_1471, x_1508); -x_1510 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_1510 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__40; x_1511 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1511, 0, x_1510); lean_ctor_set(x_1511, 1, x_1509); @@ -23221,7 +23156,7 @@ lean_ctor_set(x_1560, 0, x_1558); lean_ctor_set(x_1560, 1, x_1559); lean_ctor_set(x_1560, 2, x_1556); lean_ctor_set(x_1560, 3, x_1557); -x_1561 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_1561 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__3; x_1562 = lean_array_push(x_1561, x_1560); x_1563 = lean_mk_syntax_ident(x_1374); x_1564 = lean_array_push(x_1540, x_1563); @@ -23249,7 +23184,7 @@ x_1577 = lean_array_push(x_1540, x_1576); x_1578 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1578, 0, x_1542); lean_ctor_set(x_1578, 1, x_1577); -x_1579 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1579 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; x_1580 = lean_array_push(x_1579, x_1578); x_1581 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_1582 = lean_array_push(x_1580, x_1581); @@ -23324,11 +23259,11 @@ lean_ctor_set(x_1619, 1, x_1618); x_1620 = lean_array_push(x_1540, x_1619); x_1621 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_1622 = lean_array_push(x_1620, x_1621); -x_1623 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_1623 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; x_1624 = lean_array_push(x_1623, x_1617); -x_1625 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1625 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; x_1626 = lean_array_push(x_1624, x_1625); -x_1627 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_1627 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__49; x_1628 = lean_array_push(x_1627, x_1547); x_1629 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; x_1630 = lean_array_push(x_1628, x_1629); @@ -23348,29 +23283,29 @@ x_1639 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1639, 0, x_1631); lean_ctor_set(x_1639, 1, x_1638); x_1640 = lean_array_push(x_1636, x_1639); -x_1641 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1641 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; x_1642 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1642, 0, x_1641); lean_ctor_set(x_1642, 1, x_1640); x_1643 = lean_array_push(x_1540, x_1642); -x_1644 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1644 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44; x_1645 = lean_array_push(x_1643, x_1644); -x_1646 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; +x_1646 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; x_1647 = l_Lean_addMacroScope(x_1552, x_1646, x_1549); -x_1648 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_1649 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; +x_1648 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_1649 = l_Lean_Elab_Command_elabMacroRulesAux___closed__22; x_1650 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1650, 0, x_1558); lean_ctor_set(x_1650, 1, x_1648); lean_ctor_set(x_1650, 2, x_1647); lean_ctor_set(x_1650, 3, x_1649); x_1651 = lean_array_push(x_1540, x_1650); -x_1652 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; +x_1652 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__27; x_1653 = lean_array_push(x_1651, x_1652); x_1654 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1654, 0, x_1546); lean_ctor_set(x_1654, 1, x_1653); -x_1655 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_1655 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__50; x_1656 = lean_array_push(x_1655, x_1654); x_1657 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1657, 0, x_1641); @@ -23379,14 +23314,14 @@ x_1658 = lean_array_push(x_1645, x_1657); x_1659 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1659, 0, x_1542); lean_ctor_set(x_1659, 1, x_1658); -x_1660 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1660 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__47; x_1661 = lean_array_push(x_1660, x_1659); -x_1662 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1662 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; x_1663 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1663, 0, x_1662); lean_ctor_set(x_1663, 1, x_1661); x_1664 = lean_array_push(x_1626, x_1663); -x_1665 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_1665 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__40; x_1666 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1666, 0, x_1665); lean_ctor_set(x_1666, 1, x_1664); @@ -23511,7 +23446,7 @@ lean_ctor_set(x_1717, 0, x_1715); lean_ctor_set(x_1717, 1, x_1716); lean_ctor_set(x_1717, 2, x_1713); lean_ctor_set(x_1717, 3, x_1714); -x_1718 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_1718 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__3; x_1719 = lean_array_push(x_1718, x_1717); x_1720 = lean_mk_syntax_ident(x_1374); x_1721 = lean_array_push(x_1697, x_1720); @@ -23539,7 +23474,7 @@ x_1734 = lean_array_push(x_1697, x_1733); x_1735 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1735, 0, x_1699); lean_ctor_set(x_1735, 1, x_1734); -x_1736 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_1736 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; x_1737 = lean_array_push(x_1736, x_1735); x_1738 = l_myMacro____x40_Init_Notation___hyg_9707____closed__20; x_1739 = lean_array_push(x_1737, x_1738); @@ -23614,11 +23549,11 @@ lean_ctor_set(x_1776, 1, x_1775); x_1777 = lean_array_push(x_1697, x_1776); x_1778 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_1779 = lean_array_push(x_1777, x_1778); -x_1780 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_1780 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; x_1781 = lean_array_push(x_1780, x_1774); -x_1782 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1782 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; x_1783 = lean_array_push(x_1781, x_1782); -x_1784 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_1784 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__49; x_1785 = lean_array_push(x_1784, x_1704); x_1786 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; x_1787 = lean_array_push(x_1785, x_1786); @@ -23638,29 +23573,29 @@ x_1796 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1796, 0, x_1788); lean_ctor_set(x_1796, 1, x_1795); x_1797 = lean_array_push(x_1793, x_1796); -x_1798 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1798 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; x_1799 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1799, 0, x_1798); lean_ctor_set(x_1799, 1, x_1797); x_1800 = lean_array_push(x_1697, x_1799); -x_1801 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1801 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44; x_1802 = lean_array_push(x_1800, x_1801); -x_1803 = l_Lean_Elab_Command_elabMacroRulesAux___closed__20; +x_1803 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; x_1804 = l_Lean_addMacroScope(x_1709, x_1803, x_1706); -x_1805 = l_Lean_Elab_Command_elabMacroRulesAux___closed__19; -x_1806 = l_Lean_Elab_Command_elabMacroRulesAux___closed__25; +x_1805 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_1806 = l_Lean_Elab_Command_elabMacroRulesAux___closed__22; x_1807 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1807, 0, x_1715); lean_ctor_set(x_1807, 1, x_1805); lean_ctor_set(x_1807, 2, x_1804); lean_ctor_set(x_1807, 3, x_1806); x_1808 = lean_array_push(x_1697, x_1807); -x_1809 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__29; +x_1809 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__27; x_1810 = lean_array_push(x_1808, x_1809); x_1811 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1811, 0, x_1703); lean_ctor_set(x_1811, 1, x_1810); -x_1812 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_1812 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__50; x_1813 = lean_array_push(x_1812, x_1811); x_1814 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1814, 0, x_1798); @@ -23669,14 +23604,14 @@ x_1815 = lean_array_push(x_1802, x_1814); x_1816 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1816, 0, x_1699); lean_ctor_set(x_1816, 1, x_1815); -x_1817 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1817 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__47; x_1818 = lean_array_push(x_1817, x_1816); -x_1819 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1819 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; x_1820 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1820, 0, x_1819); lean_ctor_set(x_1820, 1, x_1818); x_1821 = lean_array_push(x_1783, x_1820); -x_1822 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_1822 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__40; x_1823 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1823, 0, x_1822); lean_ctor_set(x_1823, 1, x_1821); @@ -24333,7 +24268,7 @@ x_15 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_15, 0, x_14); lean_ctor_set(x_15, 1, x_1); x_16 = lean_array_push(x_13, x_15); -x_17 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_17 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44; lean_inc(x_1); x_18 = lean_array_push(x_1, x_17); x_19 = lean_alloc_ctor(1, 2, 0); @@ -24341,7 +24276,7 @@ lean_ctor_set(x_19, 0, x_14); lean_ctor_set(x_19, 1, x_18); lean_inc(x_1); x_20 = lean_array_push(x_1, x_19); -x_21 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__23; +x_21 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__48; lean_inc(x_1); x_22 = lean_array_push(x_1, x_21); lean_inc(x_2); @@ -24369,7 +24304,7 @@ x_35 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_35, 0, x_26); lean_ctor_set(x_35, 1, x_34); x_36 = lean_array_push(x_32, x_35); -x_37 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_37 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; x_38 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_38, 0, x_37); lean_ctor_set(x_38, 1, x_36); @@ -24378,7 +24313,7 @@ x_40 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_40, 0, x_14); lean_ctor_set(x_40, 1, x_39); x_41 = lean_array_push(x_20, x_40); -x_42 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_42 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; x_43 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_43, 0, x_42); lean_ctor_set(x_43, 1, x_41); @@ -24481,7 +24416,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__1; -x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__13; +x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); @@ -27094,7 +27029,7 @@ x_80 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_80, 0, x_79); lean_ctor_set(x_80, 1, x_78); x_81 = lean_array_push(x_50, x_80); -x_82 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_82 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__49; x_83 = lean_array_push(x_82, x_39); x_84 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; x_85 = lean_array_push(x_83, x_84); @@ -27115,7 +27050,7 @@ x_95 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_95, 0, x_86); lean_ctor_set(x_95, 1, x_94); x_96 = lean_array_push(x_92, x_95); -x_97 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_97 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; x_98 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_98, 0, x_97); lean_ctor_set(x_98, 1, x_96); @@ -27123,9 +27058,9 @@ x_99 = lean_array_push(x_50, x_98); x_100 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_100, 0, x_52); lean_ctor_set(x_100, 1, x_99); -x_101 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_101 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__47; x_102 = lean_array_push(x_101, x_100); -x_103 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_103 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; x_104 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_104, 0, x_103); lean_ctor_set(x_104, 1, x_102); @@ -27192,7 +27127,7 @@ x_142 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_142, 0, x_141); lean_ctor_set(x_142, 1, x_140); x_143 = lean_array_push(x_112, x_142); -x_144 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_144 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__49; x_145 = lean_array_push(x_144, x_39); x_146 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; x_147 = lean_array_push(x_145, x_146); @@ -27213,7 +27148,7 @@ x_157 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_157, 0, x_148); lean_ctor_set(x_157, 1, x_156); x_158 = lean_array_push(x_154, x_157); -x_159 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_159 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; x_160 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_160, 0, x_159); lean_ctor_set(x_160, 1, x_158); @@ -27221,9 +27156,9 @@ x_161 = lean_array_push(x_112, x_160); x_162 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_162, 0, x_114); lean_ctor_set(x_162, 1, x_161); -x_163 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_163 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__47; x_164 = lean_array_push(x_163, x_162); -x_165 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_165 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; x_166 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_166, 0, x_165); lean_ctor_set(x_166, 1, x_164); @@ -27304,7 +27239,7 @@ 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_181, x_211); -x_213 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_213 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__49; x_214 = lean_array_push(x_213, x_39); x_215 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; x_216 = lean_array_push(x_214, x_215); @@ -27320,7 +27255,7 @@ x_221 = lean_array_push(x_181, x_220); x_222 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_223 = lean_array_push(x_221, x_222); x_224 = lean_array_push(x_223, x_175); -x_225 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_225 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; x_226 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_226, 0, x_225); lean_ctor_set(x_226, 1, x_224); @@ -27328,9 +27263,9 @@ x_227 = lean_array_push(x_181, x_226); x_228 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_228, 0, x_183); lean_ctor_set(x_228, 1, x_227); -x_229 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_229 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__47; x_230 = lean_array_push(x_229, x_228); -x_231 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_231 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; x_232 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_232, 0, x_231); lean_ctor_set(x_232, 1, x_230); @@ -27397,7 +27332,7 @@ x_270 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_270, 0, x_269); lean_ctor_set(x_270, 1, x_268); x_271 = lean_array_push(x_240, x_270); -x_272 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_272 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__49; x_273 = lean_array_push(x_272, x_39); x_274 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; x_275 = lean_array_push(x_273, x_274); @@ -27413,7 +27348,7 @@ x_280 = lean_array_push(x_240, x_279); x_281 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_282 = lean_array_push(x_280, x_281); x_283 = lean_array_push(x_282, x_175); -x_284 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_284 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; x_285 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_285, 0, x_284); lean_ctor_set(x_285, 1, x_283); @@ -27421,9 +27356,9 @@ x_286 = lean_array_push(x_240, x_285); x_287 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_287, 0, x_242); lean_ctor_set(x_287, 1, x_286); -x_288 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_288 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__47; x_289 = lean_array_push(x_288, x_287); -x_290 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_290 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; x_291 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_291, 0, x_290); lean_ctor_set(x_291, 1, x_289); @@ -29290,9 +29225,9 @@ lean_ctor_set(x_154, 1, x_153); x_155 = lean_array_push(x_64, x_154); x_156 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_157 = lean_array_push(x_155, x_156); -x_158 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_158 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; x_159 = lean_array_push(x_158, x_152); -x_160 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_160 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; x_161 = lean_array_push(x_159, x_160); x_162 = l_Lean_Elab_Command_expandElab___closed__16; x_163 = lean_array_push(x_162, x_43); @@ -29309,12 +29244,12 @@ lean_ctor_set(x_169, 1, x_168); x_170 = lean_array_push(x_64, x_169); x_171 = lean_array_push(x_170, x_156); x_172 = lean_array_push(x_171, x_22); -x_173 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_173 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; 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_64, x_174); -x_176 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_176 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44; x_177 = lean_array_push(x_175, x_176); x_178 = l_Lean_Elab_Command_expandElab___closed__20; x_179 = l_Lean_addMacroScope(x_63, x_178, x_59); @@ -29325,7 +29260,7 @@ lean_ctor_set(x_182, 0, x_75); lean_ctor_set(x_182, 1, x_180); lean_ctor_set(x_182, 2, x_179); lean_ctor_set(x_182, 3, x_181); -x_183 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_183 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__50; x_184 = lean_array_push(x_183, x_182); x_185 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_185, 0, x_173); @@ -29334,14 +29269,14 @@ x_186 = lean_array_push(x_177, x_185); x_187 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_187, 0, x_66); lean_ctor_set(x_187, 1, x_186); -x_188 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_188 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__47; x_189 = lean_array_push(x_188, x_187); -x_190 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_190 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; x_191 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_191, 0, x_190); lean_ctor_set(x_191, 1, x_189); x_192 = lean_array_push(x_161, x_191); -x_193 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_193 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__40; x_194 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_194, 0, x_193); lean_ctor_set(x_194, 1, x_192); @@ -29542,9 +29477,9 @@ lean_ctor_set(x_307, 1, x_306); x_308 = lean_array_push(x_217, x_307); x_309 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_310 = lean_array_push(x_308, x_309); -x_311 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_311 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; x_312 = lean_array_push(x_311, x_305); -x_313 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_313 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; x_314 = lean_array_push(x_312, x_313); x_315 = l_Lean_Elab_Command_expandElab___closed__16; x_316 = lean_array_push(x_315, x_43); @@ -29561,12 +29496,12 @@ lean_ctor_set(x_322, 1, x_321); x_323 = lean_array_push(x_217, x_322); x_324 = lean_array_push(x_323, x_309); x_325 = lean_array_push(x_324, x_22); -x_326 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_326 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; x_327 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_327, 0, x_326); lean_ctor_set(x_327, 1, x_325); x_328 = lean_array_push(x_217, x_327); -x_329 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_329 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44; x_330 = lean_array_push(x_328, x_329); x_331 = l_Lean_Elab_Command_expandElab___closed__20; x_332 = l_Lean_addMacroScope(x_215, x_331, x_59); @@ -29577,7 +29512,7 @@ lean_ctor_set(x_335, 0, x_228); lean_ctor_set(x_335, 1, x_333); lean_ctor_set(x_335, 2, x_332); lean_ctor_set(x_335, 3, x_334); -x_336 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_336 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__50; x_337 = lean_array_push(x_336, x_335); x_338 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_338, 0, x_326); @@ -29586,14 +29521,14 @@ x_339 = lean_array_push(x_330, x_338); x_340 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_340, 0, x_219); lean_ctor_set(x_340, 1, x_339); -x_341 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_341 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__47; x_342 = lean_array_push(x_341, x_340); -x_343 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_343 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; x_344 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_344, 0, x_343); lean_ctor_set(x_344, 1, x_342); x_345 = lean_array_push(x_314, x_344); -x_346 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_346 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__40; x_347 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_347, 0, x_346); lean_ctor_set(x_347, 1, x_345); @@ -29808,11 +29743,11 @@ lean_ctor_set(x_466, 1, x_465); x_467 = lean_array_push(x_375, x_466); x_468 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_469 = lean_array_push(x_467, x_468); -x_470 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_470 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; x_471 = lean_array_push(x_470, x_464); -x_472 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_472 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; x_473 = lean_array_push(x_471, x_472); -x_474 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_474 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__49; x_475 = lean_array_push(x_474, x_43); x_476 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; x_477 = lean_array_push(x_475, x_476); @@ -29827,12 +29762,12 @@ lean_ctor_set(x_481, 1, x_480); x_482 = lean_array_push(x_375, x_481); x_483 = lean_array_push(x_482, x_468); x_484 = lean_array_push(x_483, x_22); -x_485 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_485 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; x_486 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_486, 0, x_485); lean_ctor_set(x_486, 1, x_484); x_487 = lean_array_push(x_375, x_486); -x_488 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_488 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44; x_489 = lean_array_push(x_487, x_488); x_490 = l_Lean_Elab_Command_expandElab___closed__20; x_491 = l_Lean_addMacroScope(x_374, x_490, x_370); @@ -29843,7 +29778,7 @@ lean_ctor_set(x_494, 0, x_386); lean_ctor_set(x_494, 1, x_492); lean_ctor_set(x_494, 2, x_491); lean_ctor_set(x_494, 3, x_493); -x_495 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_495 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__50; x_496 = lean_array_push(x_495, x_494); x_497 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_497, 0, x_485); @@ -29852,14 +29787,14 @@ x_498 = lean_array_push(x_489, x_497); x_499 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_499, 0, x_377); lean_ctor_set(x_499, 1, x_498); -x_500 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_500 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__47; x_501 = lean_array_push(x_500, x_499); -x_502 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_502 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; x_503 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_503, 0, x_502); lean_ctor_set(x_503, 1, x_501); x_504 = lean_array_push(x_473, x_503); -x_505 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_505 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__40; x_506 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_506, 0, x_505); lean_ctor_set(x_506, 1, x_504); @@ -30061,11 +29996,11 @@ lean_ctor_set(x_620, 1, x_619); x_621 = lean_array_push(x_529, x_620); x_622 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_623 = lean_array_push(x_621, x_622); -x_624 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_624 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; x_625 = lean_array_push(x_624, x_618); -x_626 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_626 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; x_627 = lean_array_push(x_625, x_626); -x_628 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_628 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__49; x_629 = lean_array_push(x_628, x_43); x_630 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; x_631 = lean_array_push(x_629, x_630); @@ -30080,12 +30015,12 @@ lean_ctor_set(x_635, 1, x_634); x_636 = lean_array_push(x_529, x_635); x_637 = lean_array_push(x_636, x_622); x_638 = lean_array_push(x_637, x_22); -x_639 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_639 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; x_640 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_640, 0, x_639); lean_ctor_set(x_640, 1, x_638); x_641 = lean_array_push(x_529, x_640); -x_642 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_642 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44; x_643 = lean_array_push(x_641, x_642); x_644 = l_Lean_Elab_Command_expandElab___closed__20; x_645 = l_Lean_addMacroScope(x_527, x_644, x_370); @@ -30096,7 +30031,7 @@ lean_ctor_set(x_648, 0, x_540); lean_ctor_set(x_648, 1, x_646); lean_ctor_set(x_648, 2, x_645); lean_ctor_set(x_648, 3, x_647); -x_649 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_649 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__50; x_650 = lean_array_push(x_649, x_648); x_651 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_651, 0, x_639); @@ -30105,14 +30040,14 @@ x_652 = lean_array_push(x_643, x_651); x_653 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_653, 0, x_531); lean_ctor_set(x_653, 1, x_652); -x_654 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_654 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__47; x_655 = lean_array_push(x_654, x_653); -x_656 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_656 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; x_657 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_657, 0, x_656); lean_ctor_set(x_657, 1, x_655); x_658 = lean_array_push(x_627, x_657); -x_659 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_659 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__40; x_660 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_660, 0, x_659); lean_ctor_set(x_660, 1, x_658); @@ -30329,11 +30264,11 @@ lean_ctor_set(x_781, 1, x_780); x_782 = lean_array_push(x_688, x_781); x_783 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_784 = lean_array_push(x_782, x_783); -x_785 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_785 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; x_786 = lean_array_push(x_785, x_777); -x_787 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_787 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; x_788 = lean_array_push(x_786, x_787); -x_789 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_789 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__49; x_790 = lean_array_push(x_789, x_43); x_791 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; x_792 = lean_array_push(x_790, x_791); @@ -30348,12 +30283,12 @@ lean_ctor_set(x_796, 1, x_795); x_797 = lean_array_push(x_688, x_796); x_798 = lean_array_push(x_797, x_783); x_799 = lean_array_push(x_798, x_22); -x_800 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_800 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; x_801 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_801, 0, x_800); lean_ctor_set(x_801, 1, x_799); x_802 = lean_array_push(x_688, x_801); -x_803 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_803 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44; x_804 = lean_array_push(x_802, x_803); x_805 = l_Lean_Elab_Command_expandElab___closed__20; x_806 = l_Lean_addMacroScope(x_687, x_805, x_683); @@ -30364,7 +30299,7 @@ lean_ctor_set(x_809, 0, x_699); lean_ctor_set(x_809, 1, x_807); lean_ctor_set(x_809, 2, x_806); lean_ctor_set(x_809, 3, x_808); -x_810 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_810 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__50; x_811 = lean_array_push(x_810, x_809); x_812 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_812, 0, x_800); @@ -30373,14 +30308,14 @@ x_813 = lean_array_push(x_804, x_812); x_814 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_814, 0, x_690); lean_ctor_set(x_814, 1, x_813); -x_815 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_815 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__47; x_816 = lean_array_push(x_815, x_814); -x_817 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_817 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; x_818 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_818, 0, x_817); lean_ctor_set(x_818, 1, x_816); x_819 = lean_array_push(x_788, x_818); -x_820 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_820 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__40; x_821 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_821, 0, x_820); lean_ctor_set(x_821, 1, x_819); @@ -30584,11 +30519,11 @@ lean_ctor_set(x_937, 1, x_936); x_938 = lean_array_push(x_844, x_937); x_939 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_940 = lean_array_push(x_938, x_939); -x_941 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_941 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; x_942 = lean_array_push(x_941, x_933); -x_943 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_943 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; x_944 = lean_array_push(x_942, x_943); -x_945 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_945 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__49; x_946 = lean_array_push(x_945, x_43); x_947 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; x_948 = lean_array_push(x_946, x_947); @@ -30603,12 +30538,12 @@ lean_ctor_set(x_952, 1, x_951); x_953 = lean_array_push(x_844, x_952); x_954 = lean_array_push(x_953, x_939); x_955 = lean_array_push(x_954, x_22); -x_956 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_956 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; x_957 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_957, 0, x_956); lean_ctor_set(x_957, 1, x_955); x_958 = lean_array_push(x_844, x_957); -x_959 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_959 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44; x_960 = lean_array_push(x_958, x_959); x_961 = l_Lean_Elab_Command_expandElab___closed__20; x_962 = l_Lean_addMacroScope(x_842, x_961, x_683); @@ -30619,7 +30554,7 @@ lean_ctor_set(x_965, 0, x_855); lean_ctor_set(x_965, 1, x_963); lean_ctor_set(x_965, 2, x_962); lean_ctor_set(x_965, 3, x_964); -x_966 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_966 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__50; x_967 = lean_array_push(x_966, x_965); x_968 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_968, 0, x_956); @@ -30628,14 +30563,14 @@ x_969 = lean_array_push(x_960, x_968); x_970 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_970, 0, x_846); lean_ctor_set(x_970, 1, x_969); -x_971 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_971 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__47; x_972 = lean_array_push(x_971, x_970); -x_973 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_973 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; x_974 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_974, 0, x_973); lean_ctor_set(x_974, 1, x_972); x_975 = lean_array_push(x_944, x_974); -x_976 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_976 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__40; x_977 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_977, 0, x_976); lean_ctor_set(x_977, 1, x_975); @@ -30893,11 +30828,11 @@ lean_ctor_set(x_1110, 1, x_1109); x_1111 = lean_array_push(x_1014, x_1110); x_1112 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_1113 = lean_array_push(x_1111, x_1112); -x_1114 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_1114 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; x_1115 = lean_array_push(x_1114, x_1103); -x_1116 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1116 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; x_1117 = lean_array_push(x_1115, x_1116); -x_1118 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_1118 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__49; x_1119 = lean_array_push(x_1118, x_43); x_1120 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; x_1121 = lean_array_push(x_1119, x_1120); @@ -30951,12 +30886,12 @@ x_1150 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1150, 0, x_1149); lean_ctor_set(x_1150, 1, x_1148); x_1151 = lean_array_push(x_1127, x_1150); -x_1152 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1152 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; x_1153 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1153, 0, x_1152); lean_ctor_set(x_1153, 1, x_1151); x_1154 = lean_array_push(x_1014, x_1153); -x_1155 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1155 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44; x_1156 = lean_array_push(x_1154, x_1155); x_1157 = l_Lean_Elab_Command_expandElab___closed__20; x_1158 = l_Lean_addMacroScope(x_1013, x_1157, x_1009); @@ -30967,7 +30902,7 @@ lean_ctor_set(x_1161, 0, x_1025); lean_ctor_set(x_1161, 1, x_1159); lean_ctor_set(x_1161, 2, x_1158); lean_ctor_set(x_1161, 3, x_1160); -x_1162 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_1162 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__50; x_1163 = lean_array_push(x_1162, x_1161); x_1164 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1164, 0, x_1152); @@ -30976,14 +30911,14 @@ x_1165 = lean_array_push(x_1156, x_1164); x_1166 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1166, 0, x_1016); lean_ctor_set(x_1166, 1, x_1165); -x_1167 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1167 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__47; x_1168 = lean_array_push(x_1167, x_1166); -x_1169 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1169 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; 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 = lean_array_push(x_1117, x_1170); -x_1172 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_1172 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__40; x_1173 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1173, 0, x_1172); lean_ctor_set(x_1173, 1, x_1171); @@ -31194,11 +31129,11 @@ lean_ctor_set(x_1289, 1, x_1288); x_1290 = lean_array_push(x_1193, x_1289); x_1291 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_1292 = lean_array_push(x_1290, x_1291); -x_1293 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_1293 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; x_1294 = lean_array_push(x_1293, x_1282); -x_1295 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1295 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; x_1296 = lean_array_push(x_1294, x_1295); -x_1297 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__24; +x_1297 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__49; x_1298 = lean_array_push(x_1297, x_43); x_1299 = l_myMacro____x40_Init_Notation___hyg_9707____closed__22; x_1300 = lean_array_push(x_1298, x_1299); @@ -31252,12 +31187,12 @@ x_1329 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1329, 0, x_1328); lean_ctor_set(x_1329, 1, x_1327); x_1330 = lean_array_push(x_1306, x_1329); -x_1331 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_1331 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; x_1332 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1332, 0, x_1331); lean_ctor_set(x_1332, 1, x_1330); x_1333 = lean_array_push(x_1193, x_1332); -x_1334 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1334 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44; x_1335 = lean_array_push(x_1333, x_1334); x_1336 = l_Lean_Elab_Command_expandElab___closed__20; x_1337 = l_Lean_addMacroScope(x_1191, x_1336, x_1009); @@ -31268,7 +31203,7 @@ lean_ctor_set(x_1340, 0, x_1204); lean_ctor_set(x_1340, 1, x_1338); lean_ctor_set(x_1340, 2, x_1337); lean_ctor_set(x_1340, 3, x_1339); -x_1341 = l_Lean_Elab_Command_elabMacroRulesAux___closed__16; +x_1341 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__50; x_1342 = lean_array_push(x_1341, x_1340); x_1343 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1343, 0, x_1331); @@ -31277,14 +31212,14 @@ x_1344 = lean_array_push(x_1335, x_1343); x_1345 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1345, 0, x_1195); lean_ctor_set(x_1345, 1, x_1344); -x_1346 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1346 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__47; x_1347 = lean_array_push(x_1346, x_1345); -x_1348 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__15; +x_1348 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; x_1349 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1349, 0, x_1348); lean_ctor_set(x_1349, 1, x_1347); x_1350 = lean_array_push(x_1296, x_1349); -x_1351 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_1351 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__40; x_1352 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1352, 0, x_1351); lean_ctor_set(x_1352, 1, x_1350); @@ -31704,8 +31639,6 @@ l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___c lean_mark_persistent(l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__38); l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__39 = _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__39(); lean_mark_persistent(l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__39); -l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__40 = _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__40(); -lean_mark_persistent(l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__40); l___regBuiltin_Lean_Elab_Command_elabDeclareSyntaxCat___closed__1 = _init_l___regBuiltin_Lean_Elab_Command_elabDeclareSyntaxCat___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Elab_Command_elabDeclareSyntaxCat___closed__1); l___regBuiltin_Lean_Elab_Command_elabDeclareSyntaxCat___closed__2 = _init_l___regBuiltin_Lean_Elab_Command_elabDeclareSyntaxCat___closed__2(); @@ -31925,12 +31858,6 @@ l_Lean_Elab_Command_elabMacroRulesAux___closed__29 = _init_l_Lean_Elab_Command_e lean_mark_persistent(l_Lean_Elab_Command_elabMacroRulesAux___closed__29); l_Lean_Elab_Command_elabMacroRulesAux___closed__30 = _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__30(); lean_mark_persistent(l_Lean_Elab_Command_elabMacroRulesAux___closed__30); -l_Lean_Elab_Command_elabMacroRulesAux___closed__31 = _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__31(); -lean_mark_persistent(l_Lean_Elab_Command_elabMacroRulesAux___closed__31); -l_Lean_Elab_Command_elabMacroRulesAux___closed__32 = _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__32(); -lean_mark_persistent(l_Lean_Elab_Command_elabMacroRulesAux___closed__32); -l_Lean_Elab_Command_elabMacroRulesAux___closed__33 = _init_l_Lean_Elab_Command_elabMacroRulesAux___closed__33(); -lean_mark_persistent(l_Lean_Elab_Command_elabMacroRulesAux___closed__33); l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__1 = _init_l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__1(); lean_mark_persistent(l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__1); l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2 = _init_l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2(); @@ -32081,10 +32008,6 @@ l_Lean_Elab_Command_mkSimpleDelab_go___closed__26 = _init_l_Lean_Elab_Command_mk lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab_go___closed__26); l_Lean_Elab_Command_mkSimpleDelab_go___closed__27 = _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__27(); lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab_go___closed__27); -l_Lean_Elab_Command_mkSimpleDelab_go___closed__28 = _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__28(); -lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab_go___closed__28); -l_Lean_Elab_Command_mkSimpleDelab_go___closed__29 = _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__29(); -lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab_go___closed__29); l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__1 = _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__1(); lean_mark_persistent(l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__1); l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2 = _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2(); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Basic.c b/stage0/stdlib/Lean/Elab/Tactic/Basic.c index 2a74ef3c19..c87ab5b362 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Basic.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Basic.c @@ -180,6 +180,7 @@ lean_object* l_Lean_Elab_Tactic_instMonadExceptExceptionTacticM___closed__2; extern lean_object* l_Lean_Parser_Tactic_clear___closed__2; 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_Elab_Tactic_getMainGoal___closed__2; +extern lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__10; lean_object* l_Lean_Elab_Tactic_tryCatch___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_evalClear(lean_object*); lean_object* l_Lean_Elab_Tactic_evalFailIfSuccess___closed__3; @@ -267,6 +268,7 @@ lean_object* l_Lean_Meta_clear(lean_object*, lean_object*, lean_object*, lean_ob extern lean_object* l_Lean_KeyedDeclsAttribute_instInhabitedKeyedDeclsAttribute___closed__1; lean_object* l_Lean_Elab_Tactic_saveAllState___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalDone(lean_object*); +extern lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__7; lean_object* l_Lean_Name_appendIndexAfter(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getUnsolvedGoals(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalIntros___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -302,7 +304,6 @@ lean_object* l_Lean_MetavarContext_assignExpr(lean_object*, lean_object*, lean_o lean_object* lean_array_to_list(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_assumption___closed__2; lean_object* l_Lean_Elab_Tactic_evalSeq1(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_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; lean_object* l_Lean_Elab_Tactic_getMainModule___rarg___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalTacticSeq___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_getMainGoal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -468,7 +469,6 @@ lean_object* l_Lean_Elab_Tactic_evalTactic___lambda__1___boxed(lean_object*, lea extern lean_object* l_Lean_instInhabitedName; lean_object* l_Lean_Elab_Tactic_ensureHasNoMVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_getFVarIds___spec__1(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__2; lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_tagUntaggedGoals___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_getIntrosSize___boxed(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalTacticSeqBracketed___closed__1; @@ -482,7 +482,6 @@ lean_object* l_Lean_Elab_Tactic_evalTraceState___rarg___boxed(lean_object*, lean lean_object* l_Lean_Elab_Tactic_focusAux___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_getFVarIds(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalTactic___lambda__1___closed__2; -extern lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__5; lean_object* l_Lean_Meta_getMVars___at_Lean_Elab_Tactic_ensureHasNoMVars___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_AssocList_find_x3f___at_Lean_Elab_Tactic_evalTactic___spec__6(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_3864_(lean_object*); @@ -580,6 +579,7 @@ lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_evalClear___spec__1_ lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSeq1___closed__1; extern lean_object* l_Array_forInUnsafe_loop___at_Lean_mkSepArray___spec__1___closed__1; lean_object* l_Lean_Elab_Term_reportUnsolvedGoals___closed__2; +extern lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__4; extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_893____closed__2; 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*); @@ -10918,7 +10918,7 @@ x_102 = l_myMacro____x40_Init_Notation___hyg_12470____closed__16; x_103 = lean_array_push(x_101, x_102); x_104 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__8; x_105 = lean_array_push(x_104, x_94); -x_106 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__12; +x_106 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_107 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_107, 0, x_106); lean_ctor_set(x_107, 1, x_105); @@ -10926,11 +10926,11 @@ x_108 = lean_array_push(x_95, x_107); x_109 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_109, 0, x_71); lean_ctor_set(x_109, 1, x_108); -x_110 = l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +x_110 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; x_111 = lean_array_push(x_110, x_109); x_112 = l_myMacro____x40_Init_Notation___hyg_11836____closed__22; x_113 = lean_array_push(x_111, x_112); -x_114 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_114 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_115 = lean_array_push(x_113, x_114); x_116 = lean_array_push(x_95, x_79); x_117 = lean_alloc_ctor(1, 2, 0); @@ -10949,7 +10949,7 @@ x_125 = lean_array_push(x_95, x_124); x_126 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_126, 0, x_71); lean_ctor_set(x_126, 1, x_125); -x_127 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_127 = l_Lean_Elab_Term_expandFunBinders_loop___closed__10; x_128 = lean_array_push(x_127, x_126); x_129 = l_Lean_Parser_Tactic_matchAlts___closed__2; x_130 = lean_alloc_ctor(1, 2, 0); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Induction.c b/stage0/stdlib/Lean/Elab/Tactic/Induction.c index c5e3e70ac0..318ed35249 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Induction.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Induction.c @@ -31,6 +31,7 @@ lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); lean_object* lean_erase_macro_scopes(lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_evalInduction___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_checkCasesResult_loop___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___spec__2___closed__1; lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_4438_(lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getGeneralizingFVarIds___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -48,6 +49,7 @@ lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_match__3(lean_object*); lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_elabTaggedTerm___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_withIncRecDepth___rarg___lambda__2___closed__2; lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_checkCasesResult_loop___closed__1; +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts___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_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts___spec__5___lambda__2___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalAlt___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*); @@ -134,6 +136,7 @@ lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_ lean_object* lean_string_append(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getRecInfoDefault_match__4___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getRecFromUsing_match__1___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_ReaderT_pure___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___spec__1(lean_object*); lean_object* l_Lean_MessageData_ofList(lean_object*); lean_object* l_List_map___at_Lean_resolveGlobalConst___spec__2(lean_object*); lean_object* l_Lean_Elab_Tactic_evalCasesOn_match__1___rarg(lean_object*, lean_object*); @@ -210,6 +213,7 @@ lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getGener lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_ElimApp_evalAlts___spec__4___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_Meta_intro1Core(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getRecFromUsingLoop___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_ReaderT_pure___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___spec__1___rarg___boxed(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_getRecInfoDefault_match__4(lean_object*); lean_object* l_Lean_Elab_Tactic_ElimApp_setMotiveArg___closed__4; lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_match__8___rarg(lean_object*, lean_object*); @@ -320,14 +324,12 @@ lean_object* l_List_forIn_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean 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_Std_Range_forIn_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_processResult___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getInductiveValFromMajor___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___spec__1___closed__1; lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getFType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_ElimApp_mkElimApp_loop___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_dbg_to_string(lean_object*); lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_checkAltsOfOptInductionAlts___spec__1___lambda__2___closed__3; lean_object* l_List_forIn_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getRecInfoDefault___spec__1___lambda__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_ElimApp_mkElimApp_loop_match__1___rarg(uint8_t, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___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*); extern lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Basic___hyg_507____closed__4; extern lean_object* l_Lean_mkSimpleThunk___closed__1; lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_match__4___rarg(lean_object*, lean_object*, lean_object*); @@ -484,13 +486,13 @@ lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts___lambda__2___closed__1; uint8_t l_Array_contains___at___private_Lean_Class_0__Lean_checkOutParam___spec__1(lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_ElimApp_mkElimApp_loop___spec__2(lean_object*); lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Tactic_ElimApp_evalAlts___spec__6(lean_object*); +lean_object* l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(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_elabTaggedTerm_match__2(lean_object*); lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getAltName___boxed(lean_object*); lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getRecFromUsing___closed__2; lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_match__10(lean_object*); lean_object* l_Lean_Core_mkFreshUserName___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_elabTaggedTerm___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getGeneralizingFVarIds___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getTargetHypothesisName_x3f___boxed(lean_object*); lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -519,6 +521,7 @@ lean_object* l_Lean_Elab_Tactic_ElimApp_mkElimApp_loop___lambda__1(lean_object*, lean_object* l___regBuiltin_Lean_Elab_Tactic_evalCases___closed__1; lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_match__7(lean_object*); lean_object* lean_mk_array(lean_object*, lean_object*); +lean_object* l_ReaderT_pure___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts___spec__5___lambda__1___closed__4; lean_object* l_Lean_Elab_Tactic_ElimApp_mkElimApp_loop_match__2___rarg(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); @@ -528,7 +531,6 @@ lean_object* l_Lean_Elab_Tactic_evalCases___lambda__2(lean_object*, lean_object* lean_object* l_Lean_addTrace___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_checkAltCtorNames___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_liftMetaM___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_generalizeVars_match__1___rarg(lean_object*, lean_object*); -lean_object* l_ReaderT_pure___at_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___spec__1___rarg___boxed(lean_object*, lean_object*, 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(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Tactic_ElimApp_evalAlts___spec__6___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_Lean_Elab_Tactic_evalCasesUsing___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*); @@ -585,8 +587,8 @@ 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_ElimApp_checkAltNames___closed__1; lean_object* l_Lean_Elab_Tactic_getRecFromUsing_match__1(lean_object*); lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_match__9(lean_object*); -lean_object* l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___closed__2; +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___spec__2(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_indentExpr(lean_object*); lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_match__11(lean_object*); lean_object* l_Lean_Elab_Tactic_ElimApp_mkElimApp_match__1(lean_object*); @@ -3718,17 +3720,35 @@ x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Tactic_Induction_0__Lean_ return x_2; } } -static lean_object* _init_l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___spec__1___closed__1() { +lean_object* l_ReaderT_pure___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___spec__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_1); +lean_ctor_set(x_9, 1, x_8); +return x_9; +} +} +lean_object* l_ReaderT_pure___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___spec__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_ReaderT_pure___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___spec__1___rarg___boxed), 8, 0); +return x_2; +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___spec__2___closed__1() { _start: { lean_object* x_1; lean_object* x_2; x_1 = lean_box(0); -x_2 = lean_alloc_closure((void*)(l_ReaderT_pure___at_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___spec__1___rarg___boxed), 8, 1); +x_2 = lean_alloc_closure((void*)(l_ReaderT_pure___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___spec__1___rarg___boxed), 8, 1); lean_closure_set(x_2, 0, x_1); return x_2; } } -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, size_t x_4, size_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, size_t x_4, size_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { uint8_t x_14; @@ -3764,7 +3784,7 @@ lean_dec(x_16); lean_inc(x_2); x_19 = lean_alloc_closure((void*)(l_Std_PersistentArray_forInAux___at_Lean_Elab_Term_addAutoBoundImplicits___spec__4___lambda__1___boxed), 9, 1); lean_closure_set(x_19, 0, x_2); -x_20 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___spec__1___closed__1; +x_20 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___spec__2___closed__1; lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); @@ -3919,7 +3939,7 @@ x_13 = l_Lean_KernelException_toMessageData___closed__3; x_14 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_14, 0, x_12); lean_ctor_set(x_14, 1, x_13); -x_15 = l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___rarg(x_14, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_15 = l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__3___rarg(x_14, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_15; } } @@ -3939,7 +3959,7 @@ lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_15 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___spec__1(x_2, x_14, x_10, x_12, x_13, x_14, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_15 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___spec__2(x_2, x_14, x_10, x_12, x_13, x_14, x_3, x_4, x_5, x_6, x_7, x_8, x_9); if (lean_obj_tag(x_15) == 0) { lean_object* x_16; lean_object* x_17; @@ -4035,7 +4055,21 @@ return x_30; } } } -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +lean_object* l_ReaderT_pure___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___spec__1___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_ReaderT_pure___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___spec__1___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_9; +} +} +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { size_t x_14; size_t x_15; lean_object* x_16; @@ -4043,7 +4077,7 @@ x_14 = lean_unbox_usize(x_4); lean_dec(x_4); x_15 = lean_unbox_usize(x_5); lean_dec(x_5); -x_16 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___spec__1(x_1, x_2, x_3, x_14, x_15, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_16 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___spec__2(x_1, x_2, x_3, x_14, x_15, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec(x_3); lean_dec(x_1); return x_16; @@ -19185,8 +19219,8 @@ l_Lean_Elab_Tactic_ElimApp_setMotiveArg___closed__3 = _init_l_Lean_Elab_Tactic_E lean_mark_persistent(l_Lean_Elab_Tactic_ElimApp_setMotiveArg___closed__3); l_Lean_Elab_Tactic_ElimApp_setMotiveArg___closed__4 = _init_l_Lean_Elab_Tactic_ElimApp_setMotiveArg___closed__4(); lean_mark_persistent(l_Lean_Elab_Tactic_ElimApp_setMotiveArg___closed__4); -l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___spec__1___closed__1 = _init_l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___spec__1___closed__1(); -lean_mark_persistent(l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___spec__1___closed__1); +l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___spec__2___closed__1 = _init_l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___spec__2___closed__1(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___spec__2___closed__1); l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___lambda__1___closed__1 = _init_l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___lambda__1___closed__1(); lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___lambda__1___closed__1); l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___lambda__1___closed__2 = _init_l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___lambda__1___closed__2(); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Match.c b/stage0/stdlib/Lean/Elab/Tactic/Match.c index a9b8c19538..ec2216fcab 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Match.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Match.c @@ -13,15 +13,17 @@ #ifdef __cplusplus extern "C" { #endif +lean_object* l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__6; lean_object* l___regBuiltin_Lean_Elab_Tactic_evalMatch(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*); lean_object* l_Lean_Elab_Tactic_evalMatch___closed__2; extern lean_object* l_Lean_nullKind; +lean_object* lean_name_mk_string(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTerm_match__1___rarg(lean_object*, lean_object*); lean_object* l_Array_append___rarg(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__5; lean_object* l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__3; extern lean_object* l_Lean_Elab_throwUnsupportedSyntax___rarg___closed__1; -extern lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__3; lean_object* l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_AuxMatchTermState_cases___default; extern lean_object* l_Array_empty___closed__1; @@ -33,11 +35,12 @@ lean_object* l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryM 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*); lean_object* lean_array_get_size(lean_object*); +lean_object* lean_string_utf8_byte_size(lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getMainModule___rarg(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__1; lean_object* lean_nat_add(lean_object*, lean_object*); -extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +lean_object* l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__7; lean_object* l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___boxed(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___rarg(lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); @@ -54,6 +57,7 @@ lean_object* l_Array_mapSepElemsM___at___private_Lean_Elab_Tactic_Match_0__Lean_ lean_object* l_Lean_Syntax_setKind(lean_object*, lean_object*); lean_object* l_Lean_Name_appendIndexAfter(lean_object*, lean_object*); extern lean_object* l_Lean_instInhabitedSourceInfo___closed__1; +lean_object* l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__8; lean_object* l_Lean_Elab_Term_getCurrMacroScope(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTerm___closed__1; lean_object* l___regBuiltin_Lean_Elab_Tactic_evalMatch___closed__1; @@ -62,6 +66,7 @@ extern lean_object* l_Lean_Parser_Tactic_match___closed__2; extern lean_object* l_Lean_Elab_Tactic_tacticElabAttribute; lean_object* l_Lean_Elab_Tactic_AuxMatchTermState_nextIdx___default; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__13; extern lean_object* l_myMacro____x40_Init_Notation___hyg_11836____closed__13; extern lean_object* l_Lean_Parser_Tactic_refine___closed__1; lean_object* l_Lean_Elab_Tactic_evalMatch_match__1___rarg(lean_object*, lean_object*); @@ -77,7 +82,6 @@ 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*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); -extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; extern lean_object* l_Lean_mkOptionalNode___closed__2; lean_object* lean_nat_mod(lean_object*, lean_object*); lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); @@ -87,7 +91,7 @@ lean_object* l_Array_mapSepElemsM___at___private_Lean_Elab_Tactic_Match_0__Lean_ extern lean_object* l___regBuiltin_Lean_Elab_Term_elabSyntheticHole___closed__1; lean_object* l_Lean_Elab_Tactic_evalMatch___closed__1; extern lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAux___closed__1; -extern lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__4; +extern lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__1; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); static lean_object* _init_l_Lean_Elab_Tactic_AuxMatchTermState_nextIdx___default() { _start: @@ -240,6 +244,47 @@ return x_3; static lean_object* _init_l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__3() { _start: { +lean_object* x_1; +x_1 = lean_mk_string("rhs"); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__3; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__3; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__4; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__3; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__7() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_instInhabitedSourceInfo___closed__1; x_2 = l_Lean_Parser_Tactic_case___closed__1; @@ -249,12 +294,12 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__4() { +static lean_object* _init_l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___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___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__3; +x_2 = l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__7; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -263,7 +308,7 @@ lean_object* l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryM _start: { lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_7 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__16; +x_7 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; x_8 = l_Lean_Syntax_setKind(x_3, x_7); x_9 = lean_unsigned_to_nat(2u); x_10 = l_Lean_Syntax_getArg(x_8, x_9); @@ -285,11 +330,11 @@ x_16 = lean_nat_add(x_6, x_15); x_17 = lean_ctor_get(x_5, 1); lean_inc(x_17); lean_dec(x_5); -x_18 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__4; +x_18 = l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__6; x_19 = l_Lean_addMacroScope(x_17, x_18, x_6); x_20 = lean_box(0); x_21 = l_Lean_instInhabitedSourceInfo___closed__1; -x_22 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__3; +x_22 = l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__5; x_23 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_23, 0, x_21); lean_ctor_set(x_23, 1, x_22); @@ -301,7 +346,7 @@ x_26 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_26, 0, x_11); lean_ctor_set(x_26, 1, x_25); x_27 = l_Lean_Syntax_getArg(x_26, x_15); -x_28 = l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__4; +x_28 = l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__8; x_29 = lean_array_push(x_28, x_27); x_30 = l_myMacro____x40_Init_Notation___hyg_9707____closed__19; x_31 = lean_array_push(x_29, x_30); @@ -510,7 +555,7 @@ if (x_15 == 0) { lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; x_16 = lean_ctor_get(x_14, 0); -x_17 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_17 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_18 = l_Lean_Syntax_setKind(x_2, x_17); x_19 = l_Lean_nullKind; x_20 = lean_alloc_ctor(1, 2, 0); @@ -529,7 +574,7 @@ x_24 = lean_ctor_get(x_14, 1); lean_inc(x_24); lean_inc(x_23); lean_dec(x_14); -x_25 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_25 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_26 = l_Lean_Syntax_setKind(x_2, x_25); x_27 = l_Lean_nullKind; x_28 = lean_alloc_ctor(1, 2, 0); @@ -564,7 +609,7 @@ if (lean_is_exclusive(x_32)) { lean_dec_ref(x_32); x_36 = lean_box(0); } -x_37 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___closed__11; +x_37 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; x_38 = l_Lean_Syntax_setKind(x_2, x_37); x_39 = l_Lean_nullKind; x_40 = lean_alloc_ctor(1, 2, 0); @@ -1213,6 +1258,14 @@ l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux__ lean_mark_persistent(l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__3); l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__4 = _init_l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__4(); lean_mark_persistent(l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__4); +l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__5 = _init_l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__5(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__5); +l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__6 = _init_l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__6(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__6); +l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__7 = _init_l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__7(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__7); +l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__8 = _init_l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__8(); +lean_mark_persistent(l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___lambda__1___closed__8); l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTerm___closed__1 = _init_l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTerm___closed__1(); lean_mark_persistent(l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTerm___closed__1); l_Lean_Elab_Tactic_evalMatch___closed__1 = _init_l_Lean_Elab_Tactic_evalMatch___closed__1(); diff --git a/stage0/stdlib/Lean/Parser/Do.c b/stage0/stdlib/Lean/Parser/Do.c index 2bf481a582..756bf8a474 100644 --- a/stage0/stdlib/Lean/Parser/Do.c +++ b/stage0/stdlib/Lean/Parser/Do.c @@ -98,7 +98,6 @@ lean_object* l_Lean_Parser_Term_doExpr___closed__2; lean_object* l_Lean_Parser_Term_doReassignArrow___elambda__1___closed__8; lean_object* l_Lean_Parser_many(lean_object*); lean_object* l_Lean_Parser_Term_termFor_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Term_matchAlts___closed__13; lean_object* l_Lean_Parser_Term_doTry___closed__4; lean_object* l_Lean_Parser_Term_doLetArrow___closed__1; lean_object* lean_name_mk_string(lean_object*, lean_object*); @@ -902,7 +901,6 @@ lean_object* l_Lean_Parser_Term_doIf_parenthesizer___closed__1; extern lean_object* l_Lean_Parser_Term_tupleTail_formatter___closed__3; lean_object* l_Lean_Parser_Term_doBreak___closed__4; lean_object* l_Lean_Parser_Term_termUnless___closed__2; -extern lean_object* l_Lean_Parser_Term_matchAlts_formatter___closed__13; lean_object* l_Lean_Parser_Term_doExpr___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_doDbgTrace_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doReturn___elambda__1___closed__2; @@ -1006,6 +1004,7 @@ extern lean_object* l_Lean_Parser_Term_matchAlt_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_doReassignArrow___closed__1; lean_object* l___regBuiltin_Lean_Parser_Term_doReassign_parenthesizer(lean_object*); extern lean_object* l_Lean_Parser_Term_match_formatter___closed__2; +extern lean_object* l_Lean_Parser_Term_matchAlts_formatter___closed__14; lean_object* l_Lean_Parser_Term_doCatch_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_doFinally_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_doSeqBracketed_formatter___closed__7; @@ -1567,6 +1566,7 @@ lean_object* l_Lean_Parser_Term_doIf___elambda__1___closed__34; lean_object* l_Lean_Parser_Term_doMatchAlts___closed__3; lean_object* l_Lean_Parser_Term_liftMethod_formatter___closed__1; lean_object* l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Term_matchAlts___closed__16; lean_object* l_Lean_Parser_Term_notFollowedByRedefinedTermToken___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_doUnless_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_doReassignArrow___closed__3; @@ -11821,7 +11821,7 @@ static lean_object* _init_l_Lean_Parser_Term_doMatchAlts___elambda__1___closed__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Term_matchAlts___closed__13; +x_1 = l_Lean_Parser_Term_matchAlts___closed__16; x_2 = lean_ctor_get(x_1, 1); lean_inc(x_2); x_3 = l_Lean_Parser_Term_doMatchAlts___elambda__1___closed__8; @@ -11874,7 +11874,7 @@ static lean_object* _init_l_Lean_Parser_Term_doMatchAlts___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Term_matchAlts___closed__13; +x_1 = l_Lean_Parser_Term_matchAlts___closed__16; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); x_3 = l_Lean_Parser_Term_doMatchAlts___elambda__1___closed__8; @@ -12296,7 +12296,7 @@ static lean_object* _init_l_Lean_Parser_Term_doMatchAlts_formatter___closed__4() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_matchAlts_formatter___closed__13; +x_1 = l_Lean_Parser_Term_matchAlts_formatter___closed__14; x_2 = l_Lean_Parser_Term_doMatchAlts_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); diff --git a/stage0/stdlib/Lean/Parser/Term.c b/stage0/stdlib/Lean/Parser/Term.c index 01b2ae4ca5..b8efaa4cce 100644 --- a/stage0/stdlib/Lean/Parser/Term.c +++ b/stage0/stdlib/Lean/Parser/Term.c @@ -82,6 +82,7 @@ lean_object* l_Lean_Parser_Term_letIdLhs_formatter(lean_object*, lean_object*, l lean_object* l_Lean_Parser_darrow___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_quotedName___closed__4; lean_object* l_Lean_Parser_Term_emptyC_parenthesizer___closed__2; +lean_object* l_Lean_Parser_Term_matchAlts_parenthesizer___closed__17; lean_object* l_Lean_Parser_Term_letDecl_formatter___closed__6; lean_object* l_Lean_Parser_Term_app___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_pipeProj; @@ -248,7 +249,6 @@ lean_object* l_Lean_Parser_Term_suffices___closed__2; lean_object* l_Lean_Parser_Term_explicit___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_stateRefT; lean_object* l_Lean_Parser_Term_ellipsis___closed__3; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__26; lean_object* l_Lean_Parser_Term_letIdLhs___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_attrInstance_parenthesizer___closed__9; lean_object* l_Lean_Parser_Term_explicit___closed__1; @@ -358,6 +358,7 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_11836____closed__12; lean_object* l___regBuiltin_Lean_Parser_Term_panic_formatter___closed__1; extern lean_object* l_Lean_Parser_charLit; lean_object* l_Lean_Parser_Term_structInst_parenthesizer___closed__7; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__26; lean_object* l___regBuiltin_Lean_Parser_Term_cdot_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_inaccessible___closed__4; lean_object* l_Lean_Parser_Term_match_formatter___closed__3; @@ -434,7 +435,6 @@ lean_object* l_Lean_Parser_Term_nativeDecide___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_binderTactic___elambda__1___closed__3; lean_object* l_Lean_Parser_group_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_attrInstance___closed__1; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__11; lean_object* l___regBuiltin_Lean_Parser_Term_pipeProj_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_explicit___elambda__1___closed__11; lean_object* l_Lean_Parser_Level_quot___closed__4; @@ -448,6 +448,7 @@ lean_object* l_Lean_Parser_Term_letrec_formatter___closed__3; lean_object* l_Lean_Parser_Term_subst_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_type___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_app___elambda__1___closed__8; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__11; lean_object* l_Lean_Parser_Term_letPatDecl___closed__2; extern lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__8; lean_object* l___regBuiltin_Lean_Parser_Term_subst_formatter(lean_object*); @@ -470,6 +471,7 @@ lean_object* l_Lean_Parser_Term_binderTactic_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_tupleTail___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_prop_parenthesizer___closed__1; extern lean_object* l_Lean_Parser_pushNone; +lean_object* l_Lean_Parser_Term_matchAlts___closed__15; lean_object* l_Lean_Parser_Level_quot___elambda__1___closed__11; lean_object* l_Lean_Parser_Term_sufficesDecl_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__7; @@ -636,6 +638,7 @@ lean_object* l_Lean_Parser_Term_matchDiscr___elambda__1(lean_object*, lean_objec lean_object* l_Lean_Parser_Term_letRecDecls; lean_object* l_Lean_Parser_Term_quotedName___closed__5; lean_object* l_Lean_Parser_Term_attributes___closed__7; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__16; lean_object* l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_matchAlts_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_nativeDecide___elambda__1___closed__2; @@ -704,7 +707,6 @@ lean_object* l_Lean_Parser_Term_whereDecls___elambda__1___closed__3; lean_object* l_Lean_Parser_addBuiltinParser(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_letRecDecls_formatter___closed__1; lean_object* l_Lean_Parser_Term_optIdent___closed__4; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__16; lean_object* l_Lean_Parser_optional_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_explicitBinder_parenthesizer(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); @@ -1068,9 +1070,9 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_quot(lean_object*); lean_object* l___regBuiltin_Lean_Parser_Level_quot_formatter(lean_object*); lean_object* l_Lean_Parser_Term_arrayRef___closed__5; lean_object* l_Lean_Parser_Term_binderTactic_formatter___closed__3; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__19; lean_object* l_Lean_PrettyPrinter_Parenthesizer_parserOfStack_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_scoped___elambda__1___closed__4; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__19; lean_object* l_Lean_Parser_Term_hole_formatter___closed__1; lean_object* l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__2; lean_object* l_Lean_Parser_strLit___elambda__1(lean_object*, lean_object*); @@ -1089,7 +1091,6 @@ lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__17; extern lean_object* l_Lean_Parser_sepByScopeSuffixes_formatter___closed__7; lean_object* l_Lean_Parser_Term_ensureTypeOf___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_whereDecls___closed__1; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__21; lean_object* l_Lean_Parser_Tactic_quotSeq___closed__7; lean_object* l_Lean_Parser_Term_letRecDecls___closed__7; lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__8; @@ -1102,6 +1103,7 @@ lean_object* l_Lean_Parser_Term_dbgTrace_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_app___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_tparser_x21_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_letrec_formatter___closed__6; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__23; lean_object* l_Lean_Parser_Term_proj___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_paren___closed__1; lean_object* l_Lean_Parser_Term_pipeProj___closed__6; @@ -1144,7 +1146,6 @@ lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_4____closed__4; lean_object* l_Lean_Parser_Term_hole___closed__4; lean_object* l_Lean_Parser_Term_structInstLVal___closed__3; lean_object* l_Lean_Parser_Term_fun___closed__6; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__23; lean_object* l_Lean_Parser_Tactic_quot___elambda__1___closed__6; extern lean_object* l_Lean_Parser_numLit___closed__2; lean_object* l_Lean_Parser_Tactic_quotSeq_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1160,6 +1161,7 @@ lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_letDecl___closed__6; extern lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_subst_formatter___closed__1; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__21; lean_object* l_Lean_Parser_Term_sort___closed__1; lean_object* l_Lean_Parser_Term_forall_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__30; @@ -1231,7 +1233,6 @@ lean_object* l_Lean_Parser_Term_type___elambda__1___closed__15; lean_object* l_Lean_Parser_Term_attributes___closed__3; lean_object* l_Lean_Parser_Term_matchAlt_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_structInst_formatter___closed__2; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__4; lean_object* l_Lean_Parser_Tactic_quot_parenthesizer___closed__3; extern lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2508____closed__3; lean_object* l_Lean_Parser_Term_match___closed__6; @@ -1248,6 +1249,7 @@ lean_object* l_Lean_Parser_Term_tparser_x21_parenthesizer(lean_object*, lean_obj lean_object* l_Lean_Parser_Term_depArrow_parenthesizer___closed__5; extern lean_object* l_Lean_Parser_mkAntiquotScope___closed__3; lean_object* l___regBuiltin_Lean_Parser_Term_assert_parenthesizer___closed__1; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__4; lean_object* l_Lean_Parser_Term_syntheticHole___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_namedArgument___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_explicitBinder_formatter___closed__2; @@ -1288,7 +1290,7 @@ lean_object* l___regBuiltin_Lean_Parser_Term_unreachable_parenthesizer___closed_ lean_object* l_Lean_Parser_Term_structInst_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_funImplicitBinder___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_assert___closed__1; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__2; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__2; lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__11; lean_object* l_Lean_Parser_Term_sufficesDecl___closed__3; lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__8; @@ -1331,7 +1333,6 @@ lean_object* l_Lean_Parser_Term_dynamicQuot_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_decide_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed_formatter___closed__13; lean_object* l___regBuiltin_Lean_Parser_Term_let_parenthesizer(lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__1; lean_object* l_Lean_Parser_Term_attributes___closed__5; lean_object* l_Lean_Parser_Term_nativeRefl___elambda__1___closed__10; lean_object* l_Lean_Parser_Term_binderTactic; @@ -1385,6 +1386,7 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_9707____closed__8; lean_object* l_Lean_Parser_Term_matchAlts_formatter___closed__5; lean_object* l___regBuiltinParser_Lean_Parser_Term_ensureTypeOf(lean_object*); extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__29; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__1; lean_object* l_Lean_Parser_nonReservedSymbolInfo(lean_object*, uint8_t); lean_object* l_Lean_Parser_Term_decide___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_namedArgument_formatter___closed__4; @@ -1432,7 +1434,6 @@ lean_object* l_Lean_Parser_Term_structInstField_formatter___closed__3; lean_object* l_Lean_Parser_Term_quotedName___elambda__1___closed__2; lean_object* l_Lean_Parser_Level_quot___elambda__1___closed__1; extern lean_object* l_Lean_getBuiltinSearchPath___closed__1; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__17; lean_object* l_Lean_Parser_Term_letDecl___closed__10; lean_object* l_Lean_Parser_Term_tupleTail___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_haveAssign___elambda__1___closed__3; @@ -1465,7 +1466,6 @@ lean_object* l_Lean_Parser_Term_letPatDecl___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_quot_formatter___closed__3; extern lean_object* l_Lean_instToStringAttributeKind___closed__2; lean_object* l_Lean_Parser_Term_haveDecl___closed__3; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__8; lean_object* l_Lean_Parser_Term_letPatDecl___closed__5; lean_object* l_Lean_Parser_Term_anonymousCtor_formatter___closed__1; lean_object* l_Lean_Parser_Term_show___elambda__1___closed__7; @@ -1506,6 +1506,7 @@ lean_object* l_Lean_Parser_Term_parser_x21___elambda__1___closed__4; lean_object* l___regBuiltin_Lean_Parser_Term_have_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_suffices___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_structInst_formatter___closed__13; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__8; lean_object* l_Lean_Parser_Term_dynamicQuot_formatter___closed__6; lean_object* l___regBuiltin_Lean_Parser_Term_let_x21_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_letrec___elambda__1(lean_object*, lean_object*); @@ -1525,6 +1526,7 @@ lean_object* l_Lean_Parser_Term_byTactic_formatter___closed__3; lean_object* l_Lean_Parser_Term_binderTactic_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_local; lean_object* l_Lean_Parser_Term_let___elambda__1___closed__6; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__17; lean_object* l_Lean_Parser_Term_matchDiscr_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_dynamicQuot_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_let_parenthesizer___closed__2; @@ -1555,7 +1557,6 @@ lean_object* l_Lean_Parser_Term_typeAscription___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_macroDollarArg___closed__5; lean_object* l_Lean_Parser_Term_paren_formatter___closed__1; lean_object* l_Lean_Parser_Term_structInst_formatter___closed__1; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__12; lean_object* l_Lean_Parser_Term_structInstArrayRef___closed__1; lean_object* l_Lean_Parser_Term_fun___closed__1; lean_object* l_Lean_Parser_Term_explicitBinder___elambda__1___closed__4; @@ -1622,6 +1623,7 @@ lean_object* l_Lean_Parser_Term_funBinder___elambda__1(lean_object*, lean_object lean_object* l___regBuiltin_Lean_Parser_Term_depArrow_formatter(lean_object*); lean_object* l_Lean_Parser_Term_attrInstance___closed__2; lean_object* l_Lean_Parser_Term_have_parenthesizer___closed__4; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__12; lean_object* l_Lean_Parser_Term_show___closed__2; lean_object* l_Lean_Parser_Term_quotedName_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_explicitBinder___closed__5; @@ -1708,6 +1710,7 @@ lean_object* l_Lean_Parser_Term_nomatch_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_cdot___closed__5; lean_object* l_Lean_Parser_Term_macroDollarArg___closed__3; lean_object* l_Lean_Parser_Term_emptyC_formatter___closed__2; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__6; extern lean_object* l_Lean_Parser_parserAliasesRef; lean_object* l_Lean_Parser_Term_num___closed__1; lean_object* l_Lean_Parser_Term_panic_formatter___closed__3; @@ -1821,7 +1824,6 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_num(lean_object*); lean_object* l_Lean_Parser_Term_app_formatter___closed__2; lean_object* l_Lean_PrettyPrinter_Formatter_symbol_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_quot___closed__6; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__6; lean_object* l_Lean_Parser_Term_have_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__36; lean_object* l_Lean_Parser_Term_type_parenthesizer___closed__1; @@ -1885,6 +1887,7 @@ lean_object* l_Lean_Parser_Term_match__syntax___elambda__1(lean_object*, lean_ob lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed___elambda__1___closed__10; lean_object* l___regBuiltin_Lean_Parser_Term_prop_formatter(lean_object*); lean_object* l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__7; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__13; lean_object* l_Lean_Parser_Term_funBinder_quot___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_paren___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_nomatch_formatter___closed__1; @@ -1975,7 +1978,6 @@ lean_object* l_Lean_Parser_Term_structInstField_formatter___closed__4; lean_object* l_Lean_Parser_Term_matchAltsWhereDecls_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Term_letrec_formatter___closed__1; lean_object* l_Lean_Parser_Term_arrow___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__13; lean_object* l_Lean_Parser_Term_explicit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_dbgTrace___elambda__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_explicit___closed__7; @@ -2005,7 +2007,6 @@ lean_object* l_Lean_Parser_Term_app___elambda__1___closed__10; lean_object* l_Lean_Parser_Term_simpleBinderWithoutType; lean_object* l_Lean_Parser_Term_inaccessible_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_match_formatter___closed__4; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__18; lean_object* l_Lean_Parser_Term_attrKind_parenthesizer___closed__6; lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed_formatter___closed__8; lean_object* l___regBuiltin_Lean_Parser_Term_let_x2a_formatter(lean_object*); @@ -2026,7 +2027,9 @@ lean_object* l_Lean_Parser_Term_dynamicQuot_formatter___closed__2; lean_object* l_Lean_Parser_Term_emptyC___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__21; lean_object* l_Lean_Parser_Term_isIdent___boxed(lean_object*); +lean_object* l_Lean_Parser_Term_matchAlts___closed__14; lean_object* l_Lean_Parser_Term_emptyC; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__3; lean_object* l_Lean_Parser_Term_dynamicQuot___closed__3; lean_object* l___regBuiltin_Lean_Parser_Term_scientific_formatter___closed__1; lean_object* l_Lean_Parser_Term_app___elambda__1___closed__6; @@ -2059,7 +2062,6 @@ lean_object* l_Lean_Parser_Term_structInstLVal_formatter___closed__2; lean_object* l_Lean_Parser_Term_sorry___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__23; lean_object* l_Lean_Parser_Term_prop___closed__4; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__15; lean_object* l_Lean_Parser_Term_syntheticHole_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_forall_formatter___closed__8; lean_object* l_Lean_Parser_Term_quotedName___elambda__1___closed__6; @@ -2071,7 +2073,6 @@ lean_object* l_Lean_Parser_Term_funBinder_quot; lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed___closed__3; lean_object* l_Lean_Parser_Term_show_formatter___closed__4; extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_261____closed__7; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__3; lean_object* l___regBuiltin_Lean_Parser_Term_ensureExpectedType_formatter___closed__1; lean_object* l_Lean_Parser_Term_paren___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_structInst___closed__12; @@ -2080,6 +2081,7 @@ lean_object* l_Lean_Parser_Term_attributes___closed__2; lean_object* l_Lean_Parser_Term_attrInstance_formatter___closed__2; extern lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__1; extern lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__11; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__18; lean_object* l_Lean_Parser_Term_emptyC___closed__1; lean_object* l_Lean_Parser_Term_sort_formatter___closed__2; lean_object* l_Lean_Parser_Term_instBinder_formatter___closed__4; @@ -2100,7 +2102,6 @@ extern lean_object* l_Lean_Parser_Tactic_have___closed__3; lean_object* l_Lean_Parser_Term_have_formatter___closed__6; lean_object* l___regBuiltinParser_Lean_Parser_Term_have(lean_object*); lean_object* l_Lean_Parser_sepBy1_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__5; lean_object* l_Lean_Parser_Term_forall_parenthesizer___closed__7; lean_object* l___regBuiltin_Lean_Parser_Term_sort_parenthesizer(lean_object*); extern lean_object* l_Lean_Parser_antiquotNestedExpr___closed__3; @@ -2109,6 +2110,7 @@ extern lean_object* l_Lean_Parser_Tactic_letrec___closed__6; lean_object* l___regBuiltinParser_Lean_Parser_Term_cdot(lean_object*); lean_object* l_Lean_Parser_Term_app_formatter___closed__4; lean_object* l_Lean_Parser_Term_tupleTail___elambda__1___closed__12; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__5; lean_object* l_Lean_Parser_Term_local_formatter___closed__3; lean_object* l_Lean_Parser_Term_forall; lean_object* l___regBuiltin_Lean_Parser_Term_typeOf_formatter(lean_object*); @@ -2143,6 +2145,7 @@ lean_object* l_Lean_Parser_Term_let___elambda__1___lambda__1___boxed(lean_object lean_object* l___regBuiltinParser_Lean_Parser_Term_nomatch(lean_object*); lean_object* l_Lean_Parser_Term_structInstField; lean_object* l_Lean_Parser_Term_letPatDecl___elambda__1___closed__5; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__14; lean_object* l___regBuiltin_Lean_Parser_Term_app_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_borrowed___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_typeAscription___closed__3; @@ -2164,7 +2167,6 @@ lean_object* l_Lean_Parser_Term_arrow___elambda__1___closed__3; lean_object* l___regBuiltin_Lean_Parser_Term_depArrow_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_arrayRef___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_haveAssign___elambda__1___closed__2; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__25; lean_object* l_Lean_Parser_Term_letEqnsDecl_formatter___closed__1; lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_funSimpleBinder_formatter___closed__2; @@ -2179,6 +2181,7 @@ lean_object* l_Lean_Parser_Term_dynamicQuot_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__9; lean_object* l_Lean_Parser_Level_quot___closed__7; lean_object* l_Lean_Parser_Term_matchAlts_formatter___closed__13; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__25; lean_object* l___regBuiltinParser_Lean_Parser_Term_fun(lean_object*); lean_object* l_Lean_Parser_Term_haveAssign___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_funImplicitBinder___closed__3; @@ -2217,7 +2220,6 @@ lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed_formatter(lean_object*, lea lean_object* l_Lean_Parser_Term_letrec___closed__4; extern lean_object* l_myMacro____x40_Init_Notation___hyg_38____closed__6; lean_object* l_Lean_Parser_Term_structInstArrayRef_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__14; lean_object* l_Lean_Parser_Term_prop___closed__5; lean_object* l_Lean_Parser_Term_arrow___elambda__1___closed__5; lean_object* l_Lean_Parser_many1_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2284,6 +2286,7 @@ lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_funSimpleBinder_formatter___closed__1; lean_object* l_Lean_Parser_Term_binderIdent_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_attrKind_formatter___closed__1; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__22; lean_object* l_Lean_Parser_Term_nomatch___closed__1; lean_object* l_Lean_Parser_Term_whereDecls_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__1; @@ -2318,7 +2321,6 @@ lean_object* l_Lean_Parser_Term_macroDollarArg_formatter(lean_object*, lean_obje lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_let_formatter___closed__4; lean_object* l_Lean_Parser_Term_funSimpleBinder___closed__3; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__22; 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_nodeWithAntiquot_parenthesizer___rarg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2477,6 +2479,7 @@ lean_object* l_Lean_Parser_Term_sorry; lean_object* l_Lean_Parser_Term_arrow_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_panic___closed__1; lean_object* l_Lean_Parser_Term_nativeDecide_parenthesizer___closed__2; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__9; lean_object* l_Lean_Parser_Term_tparser_x21___closed__3; lean_object* l_Lean_Parser_Term_attrKind___closed__2; lean_object* l_Lean_Parser_Term_structInstLVal___closed__4; @@ -2515,7 +2518,6 @@ lean_object* l_Lean_Parser_Term_ensureExpectedType_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_char_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Term_paren_formatter___closed__1; lean_object* l_Lean_Parser_Term_namedArgument___elambda__1___closed__10; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__27; lean_object* l_Lean_Parser_Term_binderDefault_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_depArrow_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_binderType___closed__1; @@ -2553,6 +2555,7 @@ lean_object* l_Lean_Parser_Term_parser_x21___elambda__1___closed__10; lean_object* l_Lean_Parser_Term_subst___closed__3; lean_object* l_Lean_Parser_withPosition___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_type___elambda__1___closed__8; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__27; lean_object* l___regBuiltinParser_Lean_Parser_Term_subst(lean_object*); lean_object* l_Lean_Parser_Term_typeOf___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_sufficesDecl___closed__2; @@ -2588,7 +2591,6 @@ lean_object* l_Lean_Parser_Term_typeOf___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_letrec_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_num; lean_object* l_Lean_Parser_Term_stateRefT_formatter___closed__4; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__9; lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed_formatter___closed__10; lean_object* l___regBuiltin_Lean_Parser_Term_decide_formatter___closed__1; lean_object* l_Lean_Parser_Term_haveDecl_parenthesizer___closed__5; @@ -2615,6 +2617,7 @@ lean_object* l___regBuiltin_Lean_Parser_Term_explicitUniv_parenthesizer(lean_obj lean_object* l_Lean_Parser_Term_inaccessible___closed__3; lean_object* l_Lean_Parser_Term_matchAlts_formatter___closed__4; lean_object* l_Lean_Parser_Term_match__syntax___elambda__1___closed__4; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__24; lean_object* l_Lean_Parser_Term_letIdLhs_formatter___closed__5; lean_object* l_Lean_Parser_Term_funBinder_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_basicFun; @@ -2669,6 +2672,7 @@ lean_object* l_Lean_Parser_Term_tparser_x21_formatter___closed__3; lean_object* l_Lean_Parser_Tactic_quot___closed__4; lean_object* l_Lean_Parser_Term_simpleBinder___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_type___elambda__1___closed__9; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__15; lean_object* l_Lean_Parser_Term_ellipsis___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_borrowed___closed__3; @@ -2723,7 +2727,6 @@ lean_object* l_Lean_Parser_Term_funImplicitBinder___closed__1; lean_object* l_Lean_Parser_Term_typeSpec_parenthesizer___closed__2; lean_object* l___regBuiltin_Lean_Parser_Term_ensureTypeOf_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1___closed__4; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__24; lean_object* l_Lean_Parser_Term_binderTactic_formatter___closed__1; lean_object* l_Lean_Parser_Term_app___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_structInstLVal_parenthesizer___closed__4; @@ -2803,7 +2806,6 @@ lean_object* l_Lean_Parser_Term_letEqnsDecl___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_structInst_formatter___closed__5; lean_object* l_Lean_Parser_Term_letrec___closed__5; lean_object* l_Lean_Parser_Term_let_parenthesizer___closed__6; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__7; lean_object* l_Lean_Parser_Term_instBinder_formatter___closed__2; lean_object* l_Lean_Parser_Term_let_formatter___closed__3; lean_object* l_Lean_Parser_Term_matchAlt_parenthesizer___closed__2; @@ -2815,6 +2817,7 @@ lean_object* l_Lean_Parser_Term_matchAlts___closed__9; lean_object* l_Lean_Parser_Tactic_quot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_typeAscription___closed__1; lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__11; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__7; extern lean_object* l_Lean_Parser_optional___closed__2; lean_object* l_Lean_Parser_Term_subst___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_letEqnsDecl___elambda__1___closed__1; @@ -2874,7 +2877,6 @@ lean_object* l_Lean_Parser_Term_stateRefT___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_matchAltsWhereDecls___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_macroDollarArg___closed__1; lean_object* l_Lean_Parser_Term_tupleTail___closed__2; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__20; lean_object* l_Lean_Parser_Term_dbgTrace_formatter___closed__6; lean_object* l_Lean_Parser_Term_assert___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_attrArg; @@ -2960,6 +2962,7 @@ lean_object* l_Lean_Parser_Term_ensureTypeOf___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_tparser_x21___closed__2; lean_object* l_Lean_Parser_Term_matchAlts___boxed(lean_object*); lean_object* l___regBuiltin_Lean_Parser_Term_inaccessible_formatter(lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__20; extern lean_object* l_Lean_Parser_instInhabitedParser___closed__2; lean_object* l_Lean_Parser_Term_subst___closed__1; extern lean_object* l_Lean_Parser_Level_hole___closed__1; @@ -3147,6 +3150,7 @@ lean_object* l_Lean_Parser_Term_macroDollarArg___closed__4; lean_object* l_Lean_Parser_Level_quot___closed__6; lean_object* l_Lean_Parser_Term_match___elambda__1___closed__10; lean_object* l_Lean_Parser_Term_stateRefT___elambda__1___closed__4; +lean_object* l_Lean_Parser_Term_matchAlts_formatter___closed__19; lean_object* l___regBuiltin_Lean_Parser_Term_num_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_have_formatter___closed__8; lean_object* l_Lean_Parser_Term_nativeRefl_formatter___closed__3; @@ -3203,6 +3207,7 @@ lean_object* l_Lean_Parser_Term_typeSpec_parenthesizer(lean_object*, lean_object lean_object* l_Lean_PrettyPrinter_Parenthesizer_withPosition_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_parenSpecial_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_match_formatter___closed__10; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__10; lean_object* l_Lean_Parser_Term_scientific___closed__1; lean_object* l_Lean_Parser_Term_suffices_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_attrKind___elambda__1___closed__5; @@ -3281,7 +3286,6 @@ lean_object* l_Lean_Parser_Term_basicFun___closed__4; lean_object* l___regBuiltin_Lean_Parser_Term_show_parenthesizer(lean_object*); lean_object* l___regBuiltin_Lean_Parser_Term_namedPattern_formatter(lean_object*); lean_object* l_Lean_Parser_Term_have___closed__5; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__10; lean_object* l___regBuiltin_Lean_Parser_Term_unreachable_formatter___closed__1; lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___closed__2; lean_object* l_Lean_Parser_Term_paren_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -3493,7 +3497,7 @@ lean_object* l_Lean_Parser_Term_syntheticHole_parenthesizer___closed__1; lean_object* l_Lean_Parser_checkWsBefore___elambda__1___boxed(lean_object*, lean_object*, lean_object*); 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_initFn____x40_Lean_Parser_Term___hyg_3526_(lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527_(lean_object*); lean_object* l_Lean_Parser_Term_parenSpecial_formatter___closed__3; lean_object* l___regBuiltin_Lean_Parser_Term_match_formatter(lean_object*); lean_object* l_Lean_Parser_Term_let_x2a___closed__6; @@ -3735,6 +3739,7 @@ lean_object* l_Lean_Parser_Term_ident___closed__2; lean_object* l_Lean_Parser_Term_binderTactic___closed__5; lean_object* l_Lean_Parser_Term_paren_parenthesizer___closed__2; lean_object* l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_matchAlts___closed__16; lean_object* l_Lean_Parser_Term_explicitBinder_formatter___closed__5; lean_object* l_Lean_Parser_Term_namedArgument_formatter___closed__3; lean_object* l_Lean_Parser_Term_letrec_formatter___closed__8; @@ -20897,6 +20902,40 @@ static lean_object* _init_l_Lean_Parser_Term_matchAlts___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_nullKind; +x_2 = l_Lean_Parser_Term_matchAlts___closed__4; +x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Term_matchAlts___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_nullKind; +x_2 = l_Lean_Parser_Term_matchAlts___closed__5; +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_matchAlts___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_matchAlts___closed__12; +x_2 = l_Lean_Parser_Term_matchAlts___closed__13; +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_Term_matchAlts___closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_matchAlts___closed__4; x_2 = l_Lean_Parser_Term_matchAlts___closed__5; x_3 = lean_alloc_ctor(0, 2, 0); @@ -20905,11 +20944,11 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Term_matchAlts___closed__13() { +static lean_object* _init_l_Lean_Parser_Term_matchAlts___closed__16() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_matchAlts___closed__12; +x_1 = l_Lean_Parser_Term_matchAlts___closed__15; x_2 = l_Lean_Parser_optional(x_1); return x_2; } @@ -20929,14 +20968,14 @@ lean_inc(x_6); if (x_1 == 0) { lean_object* x_24; -x_24 = l_Lean_Parser_Term_matchAlts___closed__12; +x_24 = l_Lean_Parser_Term_matchAlts___closed__14; x_7 = x_24; goto block_23; } else { lean_object* x_25; -x_25 = l_Lean_Parser_Term_matchAlts___closed__13; +x_25 = l_Lean_Parser_Term_matchAlts___closed__16; x_7 = x_25; goto block_23; } @@ -21757,21 +21796,19 @@ return x_5; static lean_object* _init_l_Lean_Parser_Term_matchAlts_formatter___closed__8() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; +lean_object* x_1; lean_object* x_2; x_1 = l_Lean_Parser_Term_matchAlts_formatter___closed__4; -x_2 = l_Lean_Parser_Term_matchAlts_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; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_group_formatter), 6, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; } } static lean_object* _init_l_Lean_Parser_Term_matchAlts_formatter___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_729____closed__22; -x_2 = l_Lean_Parser_Term_matchAlts_formatter___closed__8; +x_1 = l_Lean_Parser_Term_matchAlts_formatter___closed__8; +x_2 = l_Lean_Parser_Term_matchAlts_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); @@ -21781,11 +21818,13 @@ return x_3; static lean_object* _init_l_Lean_Parser_Term_matchAlts_formatter___closed__10() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_matchAlts_formatter___closed__9; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_withPosition_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_initFn____x40_Lean_Parser_Extra___hyg_729____closed__22; +x_2 = l_Lean_Parser_Term_matchAlts_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_Term_matchAlts_formatter___closed__11() { @@ -21793,7 +21832,7 @@ _start: { lean_object* x_1; lean_object* x_2; x_1 = l_Lean_Parser_Term_matchAlts_formatter___closed__10; -x_2 = lean_alloc_closure((void*)(l_Lean_ppDedent_formatter), 6, 1); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_withPosition_formatter), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; } @@ -21801,10 +21840,20 @@ return x_2; static lean_object* _init_l_Lean_Parser_Term_matchAlts_formatter___closed__12() { _start: { +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_matchAlts_formatter___closed__11; +x_2 = lean_alloc_closure((void*)(l_Lean_ppDedent_formatter), 6, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Term_matchAlts_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_Term_matchAlts___elambda__1___closed__1; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Term_matchAlts_formatter___closed__11; +x_3 = l_Lean_Parser_Term_matchAlts_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); @@ -21812,7 +21861,7 @@ lean_closure_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Term_matchAlts_formatter___closed__13() { +static lean_object* _init_l_Lean_Parser_Term_matchAlts_formatter___closed__14() { _start: { lean_object* x_1; lean_object* x_2; @@ -21822,24 +21871,12 @@ lean_closure_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Term_matchAlts_formatter___closed__14() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_matchAlts_formatter___closed__13; -x_2 = l_Lean_Parser_Term_matchAlts_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; -} -} static lean_object* _init_l_Lean_Parser_Term_matchAlts_formatter___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_729____closed__22; -x_2 = l_Lean_Parser_Term_matchAlts_formatter___closed__14; +x_1 = l_Lean_Parser_Term_matchAlts_formatter___closed__14; +x_2 = l_Lean_Parser_Term_matchAlts_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); @@ -21849,11 +21886,13 @@ return x_3; static lean_object* _init_l_Lean_Parser_Term_matchAlts_formatter___closed__16() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_matchAlts_formatter___closed__15; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_withPosition_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_initFn____x40_Lean_Parser_Extra___hyg_729____closed__22; +x_2 = l_Lean_Parser_Term_matchAlts_formatter___closed__15; +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_Term_matchAlts_formatter___closed__17() { @@ -21861,7 +21900,7 @@ _start: { lean_object* x_1; lean_object* x_2; x_1 = l_Lean_Parser_Term_matchAlts_formatter___closed__16; -x_2 = lean_alloc_closure((void*)(l_Lean_ppDedent_formatter), 6, 1); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_withPosition_formatter), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; } @@ -21869,10 +21908,20 @@ return x_2; static lean_object* _init_l_Lean_Parser_Term_matchAlts_formatter___closed__18() { _start: { +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_matchAlts_formatter___closed__17; +x_2 = lean_alloc_closure((void*)(l_Lean_ppDedent_formatter), 6, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Term_matchAlts_formatter___closed__19() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Term_matchAlts___elambda__1___closed__1; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Term_matchAlts_formatter___closed__17; +x_3 = l_Lean_Parser_Term_matchAlts_formatter___closed__18; 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); @@ -21887,7 +21936,7 @@ if (x_1 == 0) { lean_object* x_7; lean_object* x_8; lean_object* x_9; x_7 = l_Lean_Parser_Term_matchAlts_formatter___closed__1; -x_8 = l_Lean_Parser_Term_matchAlts_formatter___closed__12; +x_8 = l_Lean_Parser_Term_matchAlts_formatter___closed__13; x_9 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_7, x_8, x_2, x_3, x_4, x_5, x_6); return x_9; } @@ -21895,7 +21944,7 @@ else { lean_object* x_10; lean_object* x_11; lean_object* x_12; x_10 = l_Lean_Parser_Term_matchAlts_formatter___closed__1; -x_11 = l_Lean_Parser_Term_matchAlts_formatter___closed__18; +x_11 = l_Lean_Parser_Term_matchAlts_formatter___closed__19; x_12 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_10, x_11, x_2, x_3, x_4, x_5, x_6); return x_12; } @@ -22278,21 +22327,19 @@ return x_5; static lean_object* _init_l_Lean_Parser_Term_matchAlts_parenthesizer___closed__7() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; +lean_object* x_1; lean_object* x_2; x_1 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; -x_2 = l_Lean_Parser_Term_matchAlts_parenthesizer___closed__6; -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; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_group_parenthesizer), 6, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; } } static lean_object* _init_l_Lean_Parser_Term_matchAlts_parenthesizer___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_729____closed__24; -x_2 = l_Lean_Parser_Term_matchAlts_parenthesizer___closed__7; +x_1 = l_Lean_Parser_Term_matchAlts_parenthesizer___closed__7; +x_2 = l_Lean_Parser_Term_matchAlts_parenthesizer___closed__6; 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); @@ -22302,11 +22349,13 @@ return x_3; static lean_object* _init_l_Lean_Parser_Term_matchAlts_parenthesizer___closed__9() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_matchAlts_parenthesizer___closed__8; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_withPosition_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_initFn____x40_Lean_Parser_Extra___hyg_729____closed__24; +x_2 = l_Lean_Parser_Term_matchAlts_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); +lean_closure_set(x_3, 1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Parser_Term_matchAlts_parenthesizer___closed__10() { @@ -22314,7 +22363,7 @@ _start: { lean_object* x_1; lean_object* x_2; x_1 = l_Lean_Parser_Term_matchAlts_parenthesizer___closed__9; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_ppDedent_parenthesizer), 6, 1); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_withPosition_parenthesizer), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; } @@ -22322,10 +22371,20 @@ return x_2; static lean_object* _init_l_Lean_Parser_Term_matchAlts_parenthesizer___closed__11() { _start: { +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_matchAlts_parenthesizer___closed__10; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_ppDedent_parenthesizer), 6, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Term_matchAlts_parenthesizer___closed__12() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Term_matchAlts___elambda__1___closed__1; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Term_matchAlts_parenthesizer___closed__10; +x_3 = l_Lean_Parser_Term_matchAlts_parenthesizer___closed__11; 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); @@ -22333,7 +22392,7 @@ lean_closure_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Term_matchAlts_parenthesizer___closed__12() { +static lean_object* _init_l_Lean_Parser_Term_matchAlts_parenthesizer___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -22345,34 +22404,24 @@ lean_closure_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Term_matchAlts_parenthesizer___closed__13() { +static lean_object* _init_l_Lean_Parser_Term_matchAlts_parenthesizer___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_729____closed__24; -x_2 = l_Lean_Parser_Term_matchAlts_parenthesizer___closed__12; +x_2 = l_Lean_Parser_Term_matchAlts_parenthesizer___closed__13; 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_Term_matchAlts_parenthesizer___closed__14() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Term_matchAlts_parenthesizer___closed__13; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_withPosition_parenthesizer), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} static lean_object* _init_l_Lean_Parser_Term_matchAlts_parenthesizer___closed__15() { _start: { lean_object* x_1; lean_object* x_2; x_1 = l_Lean_Parser_Term_matchAlts_parenthesizer___closed__14; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_ppDedent_parenthesizer), 6, 1); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_withPosition_parenthesizer), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; } @@ -22380,10 +22429,20 @@ return x_2; static lean_object* _init_l_Lean_Parser_Term_matchAlts_parenthesizer___closed__16() { _start: { +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_matchAlts_parenthesizer___closed__15; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_ppDedent_parenthesizer), 6, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Term_matchAlts_parenthesizer___closed__17() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Term_matchAlts___elambda__1___closed__1; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Term_matchAlts_parenthesizer___closed__15; +x_3 = l_Lean_Parser_Term_matchAlts_parenthesizer___closed__16; 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); @@ -22398,7 +22457,7 @@ if (x_1 == 0) { lean_object* x_7; lean_object* x_8; lean_object* x_9; x_7 = l_Lean_Parser_Term_matchAlts_parenthesizer___closed__1; -x_8 = l_Lean_Parser_Term_matchAlts_parenthesizer___closed__11; +x_8 = l_Lean_Parser_Term_matchAlts_parenthesizer___closed__12; x_9 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_7, x_8, x_2, x_3, x_4, x_5, x_6); return x_9; } @@ -22406,7 +22465,7 @@ else { lean_object* x_10; lean_object* x_11; lean_object* x_12; x_10 = l_Lean_Parser_Term_matchAlts_parenthesizer___closed__1; -x_11 = l_Lean_Parser_Term_matchAlts_parenthesizer___closed__16; +x_11 = l_Lean_Parser_Term_matchAlts_parenthesizer___closed__17; x_12 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_10, x_11, x_2, x_3, x_4, x_5, x_6); return x_12; } @@ -43625,7 +43684,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_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__1() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -43635,7 +43694,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__2() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__2() { _start: { lean_object* x_1; lean_object* x_2; @@ -43645,7 +43704,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__3() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__3() { _start: { lean_object* x_1; lean_object* x_2; @@ -43655,7 +43714,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__4() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -43665,7 +43724,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__5() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__5() { _start: { lean_object* x_1; lean_object* x_2; @@ -43675,7 +43734,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__6() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__6() { _start: { lean_object* x_1; lean_object* x_2; @@ -43685,7 +43744,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__7() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__7() { _start: { lean_object* x_1; lean_object* x_2; @@ -43695,7 +43754,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__8() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__8() { _start: { lean_object* x_1; lean_object* x_2; @@ -43705,7 +43764,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__9() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__9() { _start: { lean_object* x_1; lean_object* x_2; @@ -43715,7 +43774,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__10() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__10() { _start: { lean_object* x_1; lean_object* x_2; @@ -43725,7 +43784,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__11() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__11() { _start: { lean_object* x_1; lean_object* x_2; @@ -43735,7 +43794,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__12() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__12() { _start: { lean_object* x_1; lean_object* x_2; @@ -43745,7 +43804,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__13() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__13() { _start: { lean_object* x_1; lean_object* x_2; @@ -43755,7 +43814,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__14() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__14() { _start: { lean_object* x_1; lean_object* x_2; @@ -43765,7 +43824,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__15() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__15() { _start: { lean_object* x_1; lean_object* x_2; @@ -43775,7 +43834,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__16() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__16() { _start: { lean_object* x_1; lean_object* x_2; @@ -43785,7 +43844,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__17() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__17() { _start: { lean_object* x_1; lean_object* x_2; @@ -43795,7 +43854,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__18() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__18() { _start: { lean_object* x_1; lean_object* x_2; @@ -43805,7 +43864,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__19() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__19() { _start: { lean_object* x_1; lean_object* x_2; @@ -43815,7 +43874,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__20() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__20() { _start: { lean_object* x_1; lean_object* x_2; @@ -43825,7 +43884,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__21() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__21() { _start: { lean_object* x_1; lean_object* x_2; @@ -43835,7 +43894,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__22() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__22() { _start: { lean_object* x_1; lean_object* x_2; @@ -43845,7 +43904,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__23() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__23() { _start: { lean_object* x_1; lean_object* x_2; @@ -43855,7 +43914,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__24() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__24() { _start: { lean_object* x_1; lean_object* x_2; @@ -43865,7 +43924,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__25() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__25() { _start: { lean_object* x_1; lean_object* x_2; @@ -43875,7 +43934,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__26() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__26() { _start: { lean_object* x_1; lean_object* x_2; @@ -43885,7 +43944,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__27() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__27() { _start: { lean_object* x_1; lean_object* x_2; @@ -43895,13 +43954,13 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526_(lean_object* x_1) { +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527_(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_Parser_parserAliasesRef; x_3 = l_Lean_Parser_Tactic_let___closed__4; -x_4 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__1; +x_4 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__1; x_5 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_3, x_4, x_1); if (lean_obj_tag(x_5) == 0) { @@ -43910,7 +43969,7 @@ x_6 = lean_ctor_get(x_5, 1); lean_inc(x_6); lean_dec(x_5); x_7 = l_Lean_PrettyPrinter_Formatter_formatterAliasesRef; -x_8 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__2; +x_8 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__2; x_9 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_3, x_8, x_6); if (lean_obj_tag(x_9) == 0) { @@ -43919,7 +43978,7 @@ x_10 = lean_ctor_get(x_9, 1); lean_inc(x_10); lean_dec(x_9); x_11 = l_Lean_PrettyPrinter_Parenthesizer_parenthesizerAliasesRef; -x_12 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__3; +x_12 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__3; x_13 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_3, x_12, x_10); if (lean_obj_tag(x_13) == 0) { @@ -43928,7 +43987,7 @@ x_14 = lean_ctor_get(x_13, 1); lean_inc(x_14); lean_dec(x_13); x_15 = l_Lean_Parser_Tactic_have___closed__6; -x_16 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__4; +x_16 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__4; x_17 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_15, x_16, x_14); if (lean_obj_tag(x_17) == 0) { @@ -43936,7 +43995,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_17, 1); lean_inc(x_18); lean_dec(x_17); -x_19 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__5; +x_19 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__5; x_20 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_15, x_19, x_18); if (lean_obj_tag(x_20) == 0) { @@ -43944,7 +44003,7 @@ lean_object* x_21; lean_object* x_22; lean_object* x_23; x_21 = lean_ctor_get(x_20, 1); lean_inc(x_21); lean_dec(x_20); -x_22 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__6; +x_22 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__6; x_23 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_15, x_22, x_21); if (lean_obj_tag(x_23) == 0) { @@ -43953,7 +44012,7 @@ x_24 = lean_ctor_get(x_23, 1); lean_inc(x_24); lean_dec(x_23); x_25 = l_Lean_Parser_Tactic_suffices___closed__6; -x_26 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__7; +x_26 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__7; x_27 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_25, x_26, x_24); if (lean_obj_tag(x_27) == 0) { @@ -43961,7 +44020,7 @@ lean_object* x_28; lean_object* x_29; lean_object* x_30; x_28 = lean_ctor_get(x_27, 1); lean_inc(x_28); lean_dec(x_27); -x_29 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__8; +x_29 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__8; x_30 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_25, x_29, x_28); if (lean_obj_tag(x_30) == 0) { @@ -43969,7 +44028,7 @@ lean_object* x_31; lean_object* x_32; lean_object* x_33; x_31 = lean_ctor_get(x_30, 1); lean_inc(x_31); lean_dec(x_30); -x_32 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__9; +x_32 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__9; x_33 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_25, x_32, x_31); if (lean_obj_tag(x_33) == 0) { @@ -43978,7 +44037,7 @@ x_34 = lean_ctor_get(x_33, 1); lean_inc(x_34); lean_dec(x_33); x_35 = l_Lean_Parser_Tactic_letrec___closed__12; -x_36 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__10; +x_36 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__10; x_37 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_35, x_36, x_34); if (lean_obj_tag(x_37) == 0) { @@ -43986,7 +44045,7 @@ lean_object* x_38; lean_object* x_39; lean_object* x_40; x_38 = lean_ctor_get(x_37, 1); lean_inc(x_38); lean_dec(x_37); -x_39 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__11; +x_39 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__11; x_40 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_35, x_39, x_38); if (lean_obj_tag(x_40) == 0) { @@ -43994,7 +44053,7 @@ lean_object* x_41; lean_object* x_42; lean_object* x_43; x_41 = lean_ctor_get(x_40, 1); lean_inc(x_41); lean_dec(x_40); -x_42 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__12; +x_42 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__12; x_43 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_35, x_42, x_41); if (lean_obj_tag(x_43) == 0) { @@ -44003,7 +44062,7 @@ x_44 = lean_ctor_get(x_43, 1); lean_inc(x_44); lean_dec(x_43); x_45 = l_Lean_Parser_Tactic_inductionAlt___closed__6; -x_46 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__13; +x_46 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__13; x_47 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_45, x_46, x_44); if (lean_obj_tag(x_47) == 0) { @@ -44011,7 +44070,7 @@ lean_object* x_48; lean_object* x_49; lean_object* x_50; x_48 = lean_ctor_get(x_47, 1); lean_inc(x_48); lean_dec(x_47); -x_49 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__14; +x_49 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__14; x_50 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_45, x_49, x_48); if (lean_obj_tag(x_50) == 0) { @@ -44019,7 +44078,7 @@ lean_object* x_51; lean_object* x_52; lean_object* x_53; x_51 = lean_ctor_get(x_50, 1); lean_inc(x_51); lean_dec(x_50); -x_52 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__15; +x_52 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__15; x_53 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_45, x_52, x_51); if (lean_obj_tag(x_53) == 0) { @@ -44028,7 +44087,7 @@ x_54 = lean_ctor_get(x_53, 1); lean_inc(x_54); lean_dec(x_53); x_55 = l_Lean_Parser_Tactic_inductionAlt___closed__9; -x_56 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__16; +x_56 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__16; x_57 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_55, x_56, x_54); if (lean_obj_tag(x_57) == 0) { @@ -44036,7 +44095,7 @@ lean_object* x_58; lean_object* x_59; lean_object* x_60; x_58 = lean_ctor_get(x_57, 1); lean_inc(x_58); lean_dec(x_57); -x_59 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__17; +x_59 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__17; x_60 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_55, x_59, x_58); if (lean_obj_tag(x_60) == 0) { @@ -44044,7 +44103,7 @@ lean_object* x_61; lean_object* x_62; lean_object* x_63; x_61 = lean_ctor_get(x_60, 1); lean_inc(x_61); lean_dec(x_60); -x_62 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__18; +x_62 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__18; x_63 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_55, x_62, x_61); if (lean_obj_tag(x_63) == 0) { @@ -44053,7 +44112,7 @@ x_64 = lean_ctor_get(x_63, 1); lean_inc(x_64); lean_dec(x_63); x_65 = l_Lean_Parser_Tactic_match___closed__6; -x_66 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__19; +x_66 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__19; x_67 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_65, x_66, x_64); if (lean_obj_tag(x_67) == 0) { @@ -44061,7 +44120,7 @@ lean_object* x_68; lean_object* x_69; lean_object* x_70; x_68 = lean_ctor_get(x_67, 1); lean_inc(x_68); lean_dec(x_67); -x_69 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__20; +x_69 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__20; x_70 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_65, x_69, x_68); if (lean_obj_tag(x_70) == 0) { @@ -44069,7 +44128,7 @@ lean_object* x_71; lean_object* x_72; lean_object* x_73; x_71 = lean_ctor_get(x_70, 1); lean_inc(x_71); lean_dec(x_70); -x_72 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__21; +x_72 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__21; x_73 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_65, x_72, x_71); if (lean_obj_tag(x_73) == 0) { @@ -44078,7 +44137,7 @@ x_74 = lean_ctor_get(x_73, 1); lean_inc(x_74); lean_dec(x_73); x_75 = l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__12; -x_76 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__22; +x_76 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__22; x_77 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_75, x_76, x_74); if (lean_obj_tag(x_77) == 0) { @@ -44086,7 +44145,7 @@ lean_object* x_78; lean_object* x_79; lean_object* x_80; x_78 = lean_ctor_get(x_77, 1); lean_inc(x_78); lean_dec(x_77); -x_79 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__23; +x_79 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__23; x_80 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_75, x_79, x_78); if (lean_obj_tag(x_80) == 0) { @@ -44094,7 +44153,7 @@ lean_object* x_81; lean_object* x_82; lean_object* x_83; x_81 = lean_ctor_get(x_80, 1); lean_inc(x_81); lean_dec(x_80); -x_82 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__24; +x_82 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__24; x_83 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_75, x_82, x_81); if (lean_obj_tag(x_83) == 0) { @@ -44103,7 +44162,7 @@ x_84 = lean_ctor_get(x_83, 1); lean_inc(x_84); lean_dec(x_83); x_85 = l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__4; -x_86 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__25; +x_86 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__25; x_87 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_85, x_86, x_84); if (lean_obj_tag(x_87) == 0) { @@ -44111,7 +44170,7 @@ lean_object* x_88; lean_object* x_89; lean_object* x_90; x_88 = lean_ctor_get(x_87, 1); lean_inc(x_88); lean_dec(x_87); -x_89 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__26; +x_89 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__26; x_90 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_85, x_89, x_88); if (lean_obj_tag(x_90) == 0) { @@ -44119,7 +44178,7 @@ lean_object* x_91; lean_object* x_92; lean_object* x_93; x_91 = lean_ctor_get(x_90, 1); lean_inc(x_91); lean_dec(x_90); -x_92 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__27; +x_92 = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__27; x_93 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_85, x_92, x_91); return x_93; } @@ -47368,6 +47427,12 @@ l_Lean_Parser_Term_matchAlts___closed__12 = _init_l_Lean_Parser_Term_matchAlts__ lean_mark_persistent(l_Lean_Parser_Term_matchAlts___closed__12); l_Lean_Parser_Term_matchAlts___closed__13 = _init_l_Lean_Parser_Term_matchAlts___closed__13(); lean_mark_persistent(l_Lean_Parser_Term_matchAlts___closed__13); +l_Lean_Parser_Term_matchAlts___closed__14 = _init_l_Lean_Parser_Term_matchAlts___closed__14(); +lean_mark_persistent(l_Lean_Parser_Term_matchAlts___closed__14); +l_Lean_Parser_Term_matchAlts___closed__15 = _init_l_Lean_Parser_Term_matchAlts___closed__15(); +lean_mark_persistent(l_Lean_Parser_Term_matchAlts___closed__15); +l_Lean_Parser_Term_matchAlts___closed__16 = _init_l_Lean_Parser_Term_matchAlts___closed__16(); +lean_mark_persistent(l_Lean_Parser_Term_matchAlts___closed__16); l_Lean_Parser_Term_matchDiscr___elambda__1___closed__1 = _init_l_Lean_Parser_Term_matchDiscr___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_matchDiscr___elambda__1___closed__1); l_Lean_Parser_Term_matchDiscr___elambda__1___closed__2 = _init_l_Lean_Parser_Term_matchDiscr___elambda__1___closed__2(); @@ -47519,6 +47584,8 @@ l_Lean_Parser_Term_matchAlts_formatter___closed__17 = _init_l_Lean_Parser_Term_m lean_mark_persistent(l_Lean_Parser_Term_matchAlts_formatter___closed__17); l_Lean_Parser_Term_matchAlts_formatter___closed__18 = _init_l_Lean_Parser_Term_matchAlts_formatter___closed__18(); lean_mark_persistent(l_Lean_Parser_Term_matchAlts_formatter___closed__18); +l_Lean_Parser_Term_matchAlts_formatter___closed__19 = _init_l_Lean_Parser_Term_matchAlts_formatter___closed__19(); +lean_mark_persistent(l_Lean_Parser_Term_matchAlts_formatter___closed__19); l_Lean_Parser_Term_match_formatter___closed__1 = _init_l_Lean_Parser_Term_match_formatter___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_match_formatter___closed__1); l_Lean_Parser_Term_match_formatter___closed__2 = _init_l_Lean_Parser_Term_match_formatter___closed__2(); @@ -47594,6 +47661,8 @@ l_Lean_Parser_Term_matchAlts_parenthesizer___closed__15 = _init_l_Lean_Parser_Te lean_mark_persistent(l_Lean_Parser_Term_matchAlts_parenthesizer___closed__15); l_Lean_Parser_Term_matchAlts_parenthesizer___closed__16 = _init_l_Lean_Parser_Term_matchAlts_parenthesizer___closed__16(); lean_mark_persistent(l_Lean_Parser_Term_matchAlts_parenthesizer___closed__16); +l_Lean_Parser_Term_matchAlts_parenthesizer___closed__17 = _init_l_Lean_Parser_Term_matchAlts_parenthesizer___closed__17(); +lean_mark_persistent(l_Lean_Parser_Term_matchAlts_parenthesizer___closed__17); l_Lean_Parser_Term_match_parenthesizer___closed__1 = _init_l_Lean_Parser_Term_match_parenthesizer___closed__1(); lean_mark_persistent(l_Lean_Parser_Term_match_parenthesizer___closed__1); l_Lean_Parser_Term_match_parenthesizer___closed__2 = _init_l_Lean_Parser_Term_match_parenthesizer___closed__2(); @@ -50900,61 +50969,61 @@ lean_mark_persistent(l___regBuiltin_Lean_Parser_Level_quot_parenthesizer___close res = l___regBuiltin_Lean_Parser_Level_quot_parenthesizer(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__1(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__1); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__2 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__2(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__2); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__3 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__3(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__3); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__4 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__4(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__4); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__5 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__5(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__5); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__6 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__6(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__6); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__7 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__7(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__7); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__8 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__8(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__8); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__9 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__9(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__9); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__10 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__10(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__10); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__11 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__11(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__11); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__12 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__12(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__12); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__13 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__13(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__13); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__14 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__14(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__14); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__15 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__15(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__15); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__16 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__16(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__16); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__17 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__17(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__17); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__18 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__18(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__18); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__19 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__19(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__19); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__20 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__20(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__20); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__21 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__21(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__21); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__22 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__22(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__22); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__23 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__23(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__23); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__24 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__24(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__24); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__25 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__25(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__25); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__26 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__26(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__26); -l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__27 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__27(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526____closed__27); -res = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3526_(lean_io_mk_world()); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__1(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__1); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__2 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__2(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__2); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__3 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__3(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__3); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__4 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__4(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__4); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__5 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__5(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__5); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__6 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__6(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__6); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__7 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__7(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__7); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__8 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__8(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__8); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__9 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__9(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__9); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__10 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__10(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__10); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__11 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__11(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__11); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__12 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__12(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__12); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__13 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__13(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__13); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__14 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__14(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__14); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__15 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__15(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__15); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__16 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__16(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__16); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__17 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__17(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__17); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__18 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__18(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__18); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__19 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__19(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__19); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__20 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__20(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__20); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__21 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__21(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__21); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__22 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__22(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__22); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__23 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__23(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__23); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__24 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__24(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__24); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__25 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__25(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__25); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__26 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__26(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__26); +l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__27 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__27(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527____closed__27); +res = l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3527_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Parser/Transform.c b/stage0/stdlib/Lean/Parser/Transform.c deleted file mode 100644 index 4479969688..0000000000 --- a/stage0/stdlib/Lean/Parser/Transform.c +++ /dev/null @@ -1,1586 +0,0 @@ -// Lean compiler output -// Module: Lean.Parser.Transform -// Imports: Init Lean.Parser.Basic -#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* lean_array_set(lean_object*, lean_object*, lean_object*); -lean_object* l_Std_Range_forIn_loop___at_Lean_Syntax_manyToSepBy___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t lean_name_eq(lean_object*, lean_object*); -lean_object* lean_array_push(lean_object*, lean_object*); -lean_object* lean_array_get_size(lean_object*); -lean_object* lean_string_append(lean_object*, lean_object*); -lean_object* l_Lean_Syntax_setTailInfo(lean_object*, lean_object*); -lean_object* lean_string_utf8_extract(lean_object*, lean_object*, lean_object*); -lean_object* lean_string_utf8_byte_size(lean_object*); -lean_object* lean_nat_add(lean_object*, lean_object*); -extern lean_object* l_myMacro____x40_Init_Notation___hyg_9707____closed__21; -lean_object* l_Lean_Syntax_removeParen_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Syntax_manyToSepBy_match__1(lean_object*); -uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -lean_object* lean_nat_sub(lean_object*, lean_object*); -extern lean_object* l_myMacro____x40_Init_Notation___hyg_9707____closed__8; -lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_instInhabitedSourceInfo___closed__1; -lean_object* l_Std_Range_forIn_loop___at_Lean_Syntax_manyToSepBy___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_instInhabitedSyntax; -lean_object* l_Lean_Syntax_manyToSepBy(lean_object*, lean_object*); -lean_object* l_Lean_Syntax_getNumArgs(lean_object*); -uint8_t lean_nat_dec_le(lean_object*, lean_object*); -lean_object* l_Lean_Syntax_manyToSepBy_match__2(lean_object*); -extern lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Environment_displayStats___spec__8___closed__3; -lean_object* l_Lean_Syntax_removeParen(lean_object*); -uint8_t l_Lean_Syntax_isNone(lean_object*); -lean_object* l_Lean_Syntax_getTailInfo(lean_object*); -lean_object* l_Lean_Syntax_manyToSepBy_match__1___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); -extern lean_object* l_Lean_mkOptionalNode___closed__2; -lean_object* l_Lean_Syntax_removeParen_match__1(lean_object*); -lean_object* l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(lean_object*); -lean_object* l_Lean_Syntax_manyToSepBy_match__2___rarg(lean_object*, lean_object*, lean_object*); -uint8_t lean_string_dec_eq(lean_object*, lean_object*); -lean_object* l_Lean_Syntax_manyToSepBy_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -if (lean_obj_tag(x_1) == 0) -{ -lean_object* x_4; lean_object* x_5; -lean_dec(x_2); -x_4 = lean_box(0); -x_5 = lean_apply_1(x_3, x_4); -return x_5; -} -else -{ -lean_object* x_6; lean_object* x_7; -lean_dec(x_3); -x_6 = lean_ctor_get(x_1, 0); -lean_inc(x_6); -lean_dec(x_1); -x_7 = lean_apply_1(x_2, x_6); -return x_7; -} -} -} -lean_object* l_Lean_Syntax_manyToSepBy_match__1(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Syntax_manyToSepBy_match__1___rarg), 3, 0); -return x_2; -} -} -lean_object* l_Lean_Syntax_manyToSepBy_match__2___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -if (lean_obj_tag(x_1) == 1) -{ -lean_object* x_4; lean_object* x_5; lean_object* x_6; -lean_dec(x_3); -x_4 = lean_ctor_get(x_1, 0); -lean_inc(x_4); -x_5 = lean_ctor_get(x_1, 1); -lean_inc(x_5); -lean_dec(x_1); -x_6 = lean_apply_2(x_2, x_4, x_5); -return x_6; -} -else -{ -lean_object* x_7; -lean_dec(x_2); -x_7 = lean_apply_1(x_3, x_1); -return x_7; -} -} -} -lean_object* l_Lean_Syntax_manyToSepBy_match__2(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Syntax_manyToSepBy_match__2___rarg), 3, 0); -return x_2; -} -} -lean_object* l_Std_Range_forIn_loop___at_Lean_Syntax_manyToSepBy___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { -_start: -{ -lean_object* x_7; uint8_t x_8; -x_7 = lean_ctor_get(x_3, 1); -x_8 = lean_nat_dec_le(x_7, x_5); -if (x_8 == 0) -{ -lean_object* x_9; uint8_t x_10; -x_9 = lean_unsigned_to_nat(0u); -x_10 = lean_nat_dec_eq(x_4, x_9); -if (x_10 == 0) -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_11 = lean_unsigned_to_nat(1u); -x_12 = lean_nat_sub(x_4, x_11); -lean_dec(x_4); -x_13 = l_Lean_instInhabitedSyntax; -x_14 = lean_array_get(x_13, x_2, x_5); -x_15 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_6); -x_16 = l_Lean_Syntax_getTailInfo(x_15); -if (lean_obj_tag(x_16) == 0) -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; -lean_dec(x_15); -x_17 = l_Lean_instInhabitedSourceInfo___closed__1; -lean_inc(x_1); -x_18 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_18, 0, x_17); -lean_ctor_set(x_18, 1, x_1); -x_19 = lean_array_push(x_6, x_18); -x_20 = lean_array_push(x_19, x_14); -x_21 = lean_ctor_get(x_3, 2); -x_22 = lean_nat_add(x_5, x_21); -lean_dec(x_5); -x_4 = x_12; -x_5 = x_22; -x_6 = x_20; -goto _start; -} -else -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; -x_24 = lean_ctor_get(x_16, 0); -lean_inc(x_24); -lean_dec(x_16); -x_25 = lean_array_get_size(x_6); -x_26 = lean_nat_sub(x_25, x_11); -lean_dec(x_25); -x_27 = lean_array_set(x_6, x_26, x_15); -lean_dec(x_26); -lean_inc(x_1); -x_28 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_28, 0, x_24); -lean_ctor_set(x_28, 1, x_1); -x_29 = lean_array_push(x_27, x_28); -x_30 = lean_array_push(x_29, x_14); -x_31 = lean_ctor_get(x_3, 2); -x_32 = lean_nat_add(x_5, x_31); -lean_dec(x_5); -x_4 = x_12; -x_5 = x_32; -x_6 = x_30; -goto _start; -} -} -else -{ -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -return x_6; -} -} -else -{ -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -return x_6; -} -} -} -lean_object* l_Lean_Syntax_manyToSepBy(lean_object* x_1, lean_object* x_2) { -_start: -{ -if (lean_obj_tag(x_1) == 1) -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; -x_3 = lean_ctor_get(x_1, 0); -lean_inc(x_3); -x_4 = lean_ctor_get(x_1, 1); -lean_inc(x_4); -x_5 = lean_array_get_size(x_4); -x_6 = lean_unsigned_to_nat(0u); -x_7 = lean_nat_dec_eq(x_5, x_6); -if (x_7 == 0) -{ -uint8_t x_8; -x_8 = !lean_is_exclusive(x_1); -if (x_8 == 0) -{ -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; -x_9 = lean_ctor_get(x_1, 1); -lean_dec(x_9); -x_10 = lean_ctor_get(x_1, 0); -lean_dec(x_10); -x_11 = l_Lean_instInhabitedSyntax; -x_12 = lean_array_get(x_11, x_4, x_6); -x_13 = l_Lean_mkOptionalNode___closed__2; -x_14 = lean_array_push(x_13, x_12); -x_15 = lean_unsigned_to_nat(1u); -lean_inc(x_5); -x_16 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_16, 0, x_15); -lean_ctor_set(x_16, 1, x_5); -lean_ctor_set(x_16, 2, x_15); -x_17 = l_Std_Range_forIn_loop___at_Lean_Syntax_manyToSepBy___spec__1(x_2, x_4, x_16, x_5, x_15, x_14); -lean_dec(x_16); -lean_dec(x_4); -lean_ctor_set(x_1, 1, x_17); -return x_1; -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; -lean_dec(x_1); -x_18 = l_Lean_instInhabitedSyntax; -x_19 = lean_array_get(x_18, x_4, x_6); -x_20 = l_Lean_mkOptionalNode___closed__2; -x_21 = lean_array_push(x_20, x_19); -x_22 = lean_unsigned_to_nat(1u); -lean_inc(x_5); -x_23 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_23, 0, x_22); -lean_ctor_set(x_23, 1, x_5); -lean_ctor_set(x_23, 2, x_22); -x_24 = l_Std_Range_forIn_loop___at_Lean_Syntax_manyToSepBy___spec__1(x_2, x_4, x_23, x_5, x_22, x_21); -lean_dec(x_23); -lean_dec(x_4); -x_25 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_25, 0, x_3); -lean_ctor_set(x_25, 1, x_24); -return x_25; -} -} -else -{ -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -return x_1; -} -} -else -{ -lean_dec(x_2); -return x_1; -} -} -} -lean_object* l_Std_Range_forIn_loop___at_Lean_Syntax_manyToSepBy___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { -_start: -{ -lean_object* x_7; -x_7 = l_Std_Range_forIn_loop___at_Lean_Syntax_manyToSepBy___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); -lean_dec(x_3); -lean_dec(x_2); -return x_7; -} -} -lean_object* l_Lean_Syntax_removeParen_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -if (lean_obj_tag(x_1) == 2) -{ -lean_object* x_5; lean_object* x_6; -x_5 = lean_ctor_get(x_1, 0); -lean_inc(x_5); -x_6 = lean_ctor_get(x_5, 0); -lean_inc(x_6); -if (lean_obj_tag(x_6) == 0) -{ -lean_object* x_7; -x_7 = lean_ctor_get(x_5, 1); -lean_inc(x_7); -if (lean_obj_tag(x_7) == 0) -{ -lean_object* x_8; -x_8 = lean_ctor_get(x_5, 2); -lean_inc(x_8); -if (lean_obj_tag(x_8) == 0) -{ -uint8_t x_9; -lean_dec(x_3); -x_9 = !lean_is_exclusive(x_5); -if (x_9 == 0) -{ -lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; -x_10 = lean_ctor_get(x_5, 2); -lean_dec(x_10); -x_11 = lean_ctor_get(x_5, 1); -lean_dec(x_11); -x_12 = lean_ctor_get(x_5, 0); -lean_dec(x_12); -x_13 = !lean_is_exclusive(x_1); -if (x_13 == 0) -{ -lean_object* x_14; lean_object* x_15; -x_14 = lean_ctor_get(x_1, 0); -lean_dec(x_14); -lean_ctor_set(x_5, 0, x_8); -x_15 = lean_apply_2(x_4, x_1, x_2); -return x_15; -} -else -{ -lean_object* x_16; lean_object* x_17; lean_object* x_18; -x_16 = lean_ctor_get(x_1, 1); -lean_inc(x_16); -lean_dec(x_1); -lean_ctor_set(x_5, 0, x_8); -x_17 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_17, 0, x_5); -lean_ctor_set(x_17, 1, x_16); -x_18 = lean_apply_2(x_4, x_17, x_2); -return x_18; -} -} -else -{ -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -lean_dec(x_5); -x_19 = lean_ctor_get(x_1, 1); -lean_inc(x_19); -if (lean_is_exclusive(x_1)) { - lean_ctor_release(x_1, 0); - lean_ctor_release(x_1, 1); - x_20 = x_1; -} else { - lean_dec_ref(x_1); - x_20 = lean_box(0); -} -x_21 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_21, 0, x_8); -lean_ctor_set(x_21, 1, x_7); -lean_ctor_set(x_21, 2, x_8); -if (lean_is_scalar(x_20)) { - x_22 = lean_alloc_ctor(2, 2, 0); -} else { - x_22 = x_20; -} -lean_ctor_set(x_22, 0, x_21); -lean_ctor_set(x_22, 1, x_19); -x_23 = lean_apply_2(x_4, x_22, x_2); -return x_23; -} -} -else -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; -x_24 = lean_ctor_get(x_1, 1); -lean_inc(x_24); -x_25 = lean_ctor_get(x_8, 0); -lean_inc(x_25); -x_26 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; -x_27 = lean_string_dec_eq(x_24, x_26); -lean_dec(x_24); -if (x_27 == 0) -{ -lean_object* x_28; -lean_dec(x_25); -lean_dec(x_8); -lean_dec(x_5); -lean_dec(x_3); -x_28 = lean_apply_2(x_4, x_1, x_2); -return x_28; -} -else -{ -uint8_t x_29; -x_29 = !lean_is_exclusive(x_1); -if (x_29 == 0) -{ -lean_object* x_30; lean_object* x_31; -x_30 = lean_ctor_get(x_1, 1); -lean_dec(x_30); -x_31 = lean_ctor_get(x_1, 0); -lean_dec(x_31); -if (lean_obj_tag(x_2) == 0) -{ -lean_object* x_32; -lean_dec(x_25); -lean_dec(x_8); -lean_dec(x_3); -lean_ctor_set(x_1, 1, x_26); -x_32 = lean_apply_2(x_4, x_1, x_2); -return x_32; -} -else -{ -lean_object* x_33; lean_object* x_34; -x_33 = lean_ctor_get(x_2, 0); -lean_inc(x_33); -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -if (lean_obj_tag(x_34) == 0) -{ -uint8_t x_35; -x_35 = !lean_is_exclusive(x_5); -if (x_35 == 0) -{ -lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_36 = lean_ctor_get(x_5, 2); -lean_dec(x_36); -x_37 = lean_ctor_get(x_5, 1); -lean_dec(x_37); -x_38 = lean_ctor_get(x_5, 0); -lean_dec(x_38); -x_39 = lean_ctor_get(x_33, 1); -lean_inc(x_39); -if (lean_obj_tag(x_39) == 0) -{ -uint8_t x_40; -x_40 = !lean_is_exclusive(x_2); -if (x_40 == 0) -{ -lean_object* x_41; lean_object* x_42; -x_41 = lean_ctor_get(x_2, 0); -lean_dec(x_41); -x_42 = lean_ctor_get(x_33, 2); -lean_inc(x_42); -if (lean_obj_tag(x_42) == 0) -{ -uint8_t x_43; -lean_dec(x_25); -lean_dec(x_3); -x_43 = !lean_is_exclusive(x_33); -if (x_43 == 0) -{ -lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; -x_44 = lean_ctor_get(x_33, 2); -lean_dec(x_44); -x_45 = lean_ctor_get(x_33, 1); -lean_dec(x_45); -x_46 = lean_ctor_get(x_33, 0); -lean_dec(x_46); -lean_ctor_set(x_33, 2, x_8); -lean_ctor_set(x_33, 0, x_42); -lean_ctor_set(x_1, 1, x_26); -lean_ctor_set(x_1, 0, x_33); -lean_ctor_set(x_5, 2, x_42); -lean_ctor_set(x_5, 1, x_39); -lean_ctor_set(x_5, 0, x_42); -lean_ctor_set(x_2, 0, x_5); -x_47 = lean_apply_2(x_4, x_1, x_2); -return x_47; -} -else -{ -lean_object* x_48; lean_object* x_49; -lean_dec(x_33); -x_48 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_48, 0, x_42); -lean_ctor_set(x_48, 1, x_39); -lean_ctor_set(x_48, 2, x_8); -lean_ctor_set(x_1, 1, x_26); -lean_ctor_set(x_1, 0, x_48); -lean_ctor_set(x_5, 2, x_42); -lean_ctor_set(x_5, 1, x_39); -lean_ctor_set(x_5, 0, x_42); -lean_ctor_set(x_2, 0, x_5); -x_49 = lean_apply_2(x_4, x_1, x_2); -return x_49; -} -} -else -{ -lean_object* x_50; lean_object* x_51; -lean_free_object(x_2); -lean_free_object(x_5); -lean_free_object(x_1); -lean_dec(x_8); -lean_dec(x_4); -x_50 = lean_ctor_get(x_42, 0); -lean_inc(x_50); -lean_dec(x_42); -x_51 = lean_apply_3(x_3, x_25, x_33, x_50); -return x_51; -} -} -else -{ -lean_object* x_52; -lean_dec(x_2); -x_52 = lean_ctor_get(x_33, 2); -lean_inc(x_52); -if (lean_obj_tag(x_52) == 0) -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -lean_dec(x_25); -lean_dec(x_3); -if (lean_is_exclusive(x_33)) { - lean_ctor_release(x_33, 0); - lean_ctor_release(x_33, 1); - lean_ctor_release(x_33, 2); - x_53 = x_33; -} else { - lean_dec_ref(x_33); - x_53 = lean_box(0); -} -if (lean_is_scalar(x_53)) { - x_54 = lean_alloc_ctor(0, 3, 0); -} else { - x_54 = x_53; -} -lean_ctor_set(x_54, 0, x_52); -lean_ctor_set(x_54, 1, x_39); -lean_ctor_set(x_54, 2, x_8); -lean_ctor_set(x_1, 1, x_26); -lean_ctor_set(x_1, 0, x_54); -lean_ctor_set(x_5, 2, x_52); -lean_ctor_set(x_5, 1, x_39); -lean_ctor_set(x_5, 0, x_52); -x_55 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_55, 0, x_5); -x_56 = lean_apply_2(x_4, x_1, x_55); -return x_56; -} -else -{ -lean_object* x_57; lean_object* x_58; -lean_free_object(x_5); -lean_free_object(x_1); -lean_dec(x_8); -lean_dec(x_4); -x_57 = lean_ctor_get(x_52, 0); -lean_inc(x_57); -lean_dec(x_52); -x_58 = lean_apply_3(x_3, x_25, x_33, x_57); -return x_58; -} -} -} -else -{ -uint8_t x_59; -lean_dec(x_39); -lean_free_object(x_5); -lean_dec(x_25); -lean_dec(x_3); -x_59 = !lean_is_exclusive(x_33); -if (x_59 == 0) -{ -lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; -x_60 = lean_ctor_get(x_33, 2); -lean_dec(x_60); -x_61 = lean_ctor_get(x_33, 1); -lean_dec(x_61); -x_62 = lean_ctor_get(x_33, 0); -lean_dec(x_62); -lean_ctor_set(x_33, 2, x_8); -lean_ctor_set(x_33, 1, x_7); -lean_ctor_set(x_1, 1, x_26); -lean_ctor_set(x_1, 0, x_33); -x_63 = lean_apply_2(x_4, x_1, x_2); -return x_63; -} -else -{ -lean_object* x_64; lean_object* x_65; -lean_dec(x_33); -x_64 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_64, 0, x_34); -lean_ctor_set(x_64, 1, x_7); -lean_ctor_set(x_64, 2, x_8); -lean_ctor_set(x_1, 1, x_26); -lean_ctor_set(x_1, 0, x_64); -x_65 = lean_apply_2(x_4, x_1, x_2); -return x_65; -} -} -} -else -{ -lean_object* x_66; -lean_dec(x_5); -x_66 = lean_ctor_get(x_33, 1); -lean_inc(x_66); -if (lean_obj_tag(x_66) == 0) -{ -lean_object* x_67; lean_object* x_68; -if (lean_is_exclusive(x_2)) { - lean_ctor_release(x_2, 0); - x_67 = x_2; -} else { - lean_dec_ref(x_2); - x_67 = lean_box(0); -} -x_68 = lean_ctor_get(x_33, 2); -lean_inc(x_68); -if (lean_obj_tag(x_68) == 0) -{ -lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; -lean_dec(x_25); -lean_dec(x_3); -if (lean_is_exclusive(x_33)) { - lean_ctor_release(x_33, 0); - lean_ctor_release(x_33, 1); - lean_ctor_release(x_33, 2); - x_69 = x_33; -} else { - lean_dec_ref(x_33); - x_69 = lean_box(0); -} -if (lean_is_scalar(x_69)) { - x_70 = lean_alloc_ctor(0, 3, 0); -} else { - x_70 = x_69; -} -lean_ctor_set(x_70, 0, x_68); -lean_ctor_set(x_70, 1, x_66); -lean_ctor_set(x_70, 2, x_8); -lean_ctor_set(x_1, 1, x_26); -lean_ctor_set(x_1, 0, x_70); -x_71 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_71, 0, x_68); -lean_ctor_set(x_71, 1, x_66); -lean_ctor_set(x_71, 2, x_68); -if (lean_is_scalar(x_67)) { - x_72 = lean_alloc_ctor(1, 1, 0); -} else { - x_72 = x_67; -} -lean_ctor_set(x_72, 0, x_71); -x_73 = lean_apply_2(x_4, x_1, x_72); -return x_73; -} -else -{ -lean_object* x_74; lean_object* x_75; -lean_dec(x_67); -lean_free_object(x_1); -lean_dec(x_8); -lean_dec(x_4); -x_74 = lean_ctor_get(x_68, 0); -lean_inc(x_74); -lean_dec(x_68); -x_75 = lean_apply_3(x_3, x_25, x_33, x_74); -return x_75; -} -} -else -{ -lean_object* x_76; lean_object* x_77; lean_object* x_78; -lean_dec(x_66); -lean_dec(x_25); -lean_dec(x_3); -if (lean_is_exclusive(x_33)) { - lean_ctor_release(x_33, 0); - lean_ctor_release(x_33, 1); - lean_ctor_release(x_33, 2); - x_76 = x_33; -} else { - lean_dec_ref(x_33); - x_76 = lean_box(0); -} -if (lean_is_scalar(x_76)) { - x_77 = lean_alloc_ctor(0, 3, 0); -} else { - x_77 = x_76; -} -lean_ctor_set(x_77, 0, x_34); -lean_ctor_set(x_77, 1, x_7); -lean_ctor_set(x_77, 2, x_8); -lean_ctor_set(x_1, 1, x_26); -lean_ctor_set(x_1, 0, x_77); -x_78 = lean_apply_2(x_4, x_1, x_2); -return x_78; -} -} -} -else -{ -lean_object* x_79; -lean_dec(x_34); -lean_dec(x_33); -lean_dec(x_25); -lean_dec(x_8); -lean_dec(x_3); -lean_ctor_set(x_1, 1, x_26); -x_79 = lean_apply_2(x_4, x_1, x_2); -return x_79; -} -} -} -else -{ -lean_dec(x_1); -if (lean_obj_tag(x_2) == 0) -{ -lean_object* x_80; lean_object* x_81; -lean_dec(x_25); -lean_dec(x_8); -lean_dec(x_3); -x_80 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_80, 0, x_5); -lean_ctor_set(x_80, 1, x_26); -x_81 = lean_apply_2(x_4, x_80, x_2); -return x_81; -} -else -{ -lean_object* x_82; lean_object* x_83; -x_82 = lean_ctor_get(x_2, 0); -lean_inc(x_82); -x_83 = lean_ctor_get(x_82, 0); -lean_inc(x_83); -if (lean_obj_tag(x_83) == 0) -{ -lean_object* x_84; lean_object* x_85; -if (lean_is_exclusive(x_5)) { - lean_ctor_release(x_5, 0); - lean_ctor_release(x_5, 1); - lean_ctor_release(x_5, 2); - x_84 = x_5; -} else { - lean_dec_ref(x_5); - x_84 = lean_box(0); -} -x_85 = lean_ctor_get(x_82, 1); -lean_inc(x_85); -if (lean_obj_tag(x_85) == 0) -{ -lean_object* x_86; lean_object* x_87; -if (lean_is_exclusive(x_2)) { - lean_ctor_release(x_2, 0); - x_86 = x_2; -} else { - lean_dec_ref(x_2); - x_86 = lean_box(0); -} -x_87 = lean_ctor_get(x_82, 2); -lean_inc(x_87); -if (lean_obj_tag(x_87) == 0) -{ -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_dec(x_25); -lean_dec(x_3); -if (lean_is_exclusive(x_82)) { - lean_ctor_release(x_82, 0); - lean_ctor_release(x_82, 1); - lean_ctor_release(x_82, 2); - x_88 = x_82; -} else { - lean_dec_ref(x_82); - x_88 = lean_box(0); -} -if (lean_is_scalar(x_88)) { - x_89 = lean_alloc_ctor(0, 3, 0); -} else { - x_89 = x_88; -} -lean_ctor_set(x_89, 0, x_87); -lean_ctor_set(x_89, 1, x_85); -lean_ctor_set(x_89, 2, x_8); -x_90 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_90, 0, x_89); -lean_ctor_set(x_90, 1, x_26); -if (lean_is_scalar(x_84)) { - x_91 = lean_alloc_ctor(0, 3, 0); -} else { - x_91 = x_84; -} -lean_ctor_set(x_91, 0, x_87); -lean_ctor_set(x_91, 1, x_85); -lean_ctor_set(x_91, 2, x_87); -if (lean_is_scalar(x_86)) { - x_92 = lean_alloc_ctor(1, 1, 0); -} else { - x_92 = x_86; -} -lean_ctor_set(x_92, 0, x_91); -x_93 = lean_apply_2(x_4, x_90, x_92); -return x_93; -} -else -{ -lean_object* x_94; lean_object* x_95; -lean_dec(x_86); -lean_dec(x_84); -lean_dec(x_8); -lean_dec(x_4); -x_94 = lean_ctor_get(x_87, 0); -lean_inc(x_94); -lean_dec(x_87); -x_95 = lean_apply_3(x_3, x_25, x_82, x_94); -return x_95; -} -} -else -{ -lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; -lean_dec(x_85); -lean_dec(x_84); -lean_dec(x_25); -lean_dec(x_3); -if (lean_is_exclusive(x_82)) { - lean_ctor_release(x_82, 0); - lean_ctor_release(x_82, 1); - lean_ctor_release(x_82, 2); - x_96 = x_82; -} else { - lean_dec_ref(x_82); - x_96 = lean_box(0); -} -if (lean_is_scalar(x_96)) { - x_97 = lean_alloc_ctor(0, 3, 0); -} else { - x_97 = x_96; -} -lean_ctor_set(x_97, 0, x_83); -lean_ctor_set(x_97, 1, x_7); -lean_ctor_set(x_97, 2, x_8); -x_98 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_98, 0, x_97); -lean_ctor_set(x_98, 1, x_26); -x_99 = lean_apply_2(x_4, x_98, x_2); -return x_99; -} -} -else -{ -lean_object* x_100; lean_object* x_101; -lean_dec(x_83); -lean_dec(x_82); -lean_dec(x_25); -lean_dec(x_8); -lean_dec(x_3); -x_100 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_100, 0, x_5); -lean_ctor_set(x_100, 1, x_26); -x_101 = lean_apply_2(x_4, x_100, x_2); -return x_101; -} -} -} -} -} -} -else -{ -lean_object* x_102; -lean_dec(x_7); -lean_dec(x_5); -lean_dec(x_3); -x_102 = lean_apply_2(x_4, x_1, x_2); -return x_102; -} -} -else -{ -lean_object* x_103; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_3); -x_103 = lean_apply_2(x_4, x_1, x_2); -return x_103; -} -} -else -{ -lean_object* x_104; -lean_dec(x_3); -x_104 = lean_apply_2(x_4, x_1, x_2); -return x_104; -} -} -} -lean_object* l_Lean_Syntax_removeParen_match__1(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Syntax_removeParen_match__1___rarg), 4, 0); -return x_2; -} -} -lean_object* l_Lean_Syntax_removeParen(lean_object* x_1) { -_start: -{ -if (lean_obj_tag(x_1) == 1) -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; uint8_t x_5; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = lean_ctor_get(x_1, 1); -lean_inc(x_3); -x_4 = l_myMacro____x40_Init_Notation___hyg_9707____closed__8; -x_5 = lean_name_eq(x_2, x_4); -if (x_5 == 0) -{ -lean_dec(x_3); -lean_dec(x_2); -return x_1; -} -else -{ -uint8_t x_6; -x_6 = !lean_is_exclusive(x_1); -if (x_6 == 0) -{ -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; uint8_t x_14; -x_7 = lean_ctor_get(x_1, 1); -lean_dec(x_7); -x_8 = lean_ctor_get(x_1, 0); -lean_dec(x_8); -lean_inc(x_3); -x_9 = l_Lean_instInhabitedSyntax; -x_10 = lean_unsigned_to_nat(1u); -x_11 = lean_array_get(x_9, x_3, x_10); -x_12 = l_Lean_Syntax_getNumArgs(x_11); -x_13 = lean_unsigned_to_nat(2u); -x_14 = lean_nat_dec_eq(x_12, x_13); -lean_dec(x_12); -if (x_14 == 0) -{ -lean_dec(x_11); -lean_dec(x_3); -return x_1; -} -else -{ -lean_object* x_15; uint8_t x_16; -x_15 = l_Lean_Syntax_getArg(x_11, x_10); -x_16 = l_Lean_Syntax_isNone(x_15); -lean_dec(x_15); -if (x_16 == 0) -{ -lean_dec(x_11); -lean_dec(x_3); -return x_1; -} -else -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_17 = lean_unsigned_to_nat(0u); -x_18 = l_Lean_Syntax_getArg(x_11, x_17); -lean_dec(x_11); -x_19 = lean_array_get(x_9, x_3, x_13); -lean_dec(x_3); -if (lean_obj_tag(x_19) == 2) -{ -lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_20 = lean_ctor_get(x_19, 0); -lean_inc(x_20); -x_21 = lean_ctor_get(x_19, 1); -lean_inc(x_21); -lean_dec(x_19); -x_22 = l_Lean_Syntax_getTailInfo(x_18); -x_23 = lean_ctor_get(x_20, 0); -lean_inc(x_23); -if (lean_obj_tag(x_23) == 0) -{ -lean_object* x_24; -x_24 = lean_ctor_get(x_20, 1); -lean_inc(x_24); -if (lean_obj_tag(x_24) == 0) -{ -lean_object* x_25; -x_25 = lean_ctor_get(x_20, 2); -lean_inc(x_25); -lean_dec(x_20); -if (lean_obj_tag(x_25) == 0) -{ -lean_dec(x_22); -lean_dec(x_21); -lean_dec(x_18); -return x_1; -} -else -{ -lean_object* x_26; lean_object* x_27; uint8_t x_28; -x_26 = lean_ctor_get(x_25, 0); -lean_inc(x_26); -lean_dec(x_25); -x_27 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; -x_28 = lean_string_dec_eq(x_21, x_27); -lean_dec(x_21); -if (x_28 == 0) -{ -lean_dec(x_26); -lean_dec(x_22); -lean_dec(x_18); -return x_1; -} -else -{ -if (lean_obj_tag(x_22) == 0) -{ -lean_dec(x_26); -lean_dec(x_18); -return x_1; -} -else -{ -lean_object* x_29; lean_object* x_30; -x_29 = lean_ctor_get(x_22, 0); -lean_inc(x_29); -lean_dec(x_22); -x_30 = lean_ctor_get(x_29, 0); -lean_inc(x_30); -if (lean_obj_tag(x_30) == 0) -{ -lean_object* x_31; -x_31 = lean_ctor_get(x_29, 1); -lean_inc(x_31); -if (lean_obj_tag(x_31) == 0) -{ -uint8_t x_32; -x_32 = !lean_is_exclusive(x_29); -if (x_32 == 0) -{ -lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_33 = lean_ctor_get(x_29, 2); -x_34 = lean_ctor_get(x_29, 1); -lean_dec(x_34); -x_35 = lean_ctor_get(x_29, 0); -lean_dec(x_35); -if (lean_obj_tag(x_33) == 0) -{ -lean_free_object(x_29); -lean_dec(x_26); -lean_dec(x_18); -return x_1; -} -else -{ -uint8_t x_36; -lean_dec(x_1); -x_36 = !lean_is_exclusive(x_33); -if (x_36 == 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; lean_object* x_43; uint8_t x_44; -x_37 = lean_ctor_get(x_33, 0); -x_38 = lean_ctor_get(x_37, 0); -lean_inc(x_38); -x_39 = lean_ctor_get(x_37, 1); -lean_inc(x_39); -x_40 = lean_ctor_get(x_37, 2); -lean_inc(x_40); -lean_dec(x_37); -x_41 = lean_string_utf8_extract(x_38, x_39, x_40); -lean_dec(x_40); -lean_dec(x_39); -lean_dec(x_38); -x_42 = l_Array_foldlMUnsafe_fold___at_Lean_Environment_displayStats___spec__8___closed__3; -x_43 = lean_string_append(x_41, x_42); -x_44 = !lean_is_exclusive(x_26); -if (x_44 == 0) -{ -lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; -x_45 = lean_ctor_get(x_26, 0); -x_46 = lean_ctor_get(x_26, 1); -x_47 = lean_ctor_get(x_26, 2); -x_48 = lean_string_utf8_extract(x_45, x_46, x_47); -lean_dec(x_47); -lean_dec(x_46); -lean_dec(x_45); -x_49 = lean_string_append(x_43, x_48); -lean_dec(x_48); -x_50 = lean_string_utf8_byte_size(x_49); -lean_ctor_set(x_26, 2, x_50); -lean_ctor_set(x_26, 1, x_17); -lean_ctor_set(x_26, 0, x_49); -lean_ctor_set(x_33, 0, x_26); -x_51 = l_Lean_Syntax_setTailInfo(x_18, x_29); -return x_51; -} -else -{ -lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_52 = lean_ctor_get(x_26, 0); -x_53 = lean_ctor_get(x_26, 1); -x_54 = lean_ctor_get(x_26, 2); -lean_inc(x_54); -lean_inc(x_53); -lean_inc(x_52); -lean_dec(x_26); -x_55 = lean_string_utf8_extract(x_52, x_53, x_54); -lean_dec(x_54); -lean_dec(x_53); -lean_dec(x_52); -x_56 = lean_string_append(x_43, x_55); -lean_dec(x_55); -x_57 = lean_string_utf8_byte_size(x_56); -x_58 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_58, 0, x_56); -lean_ctor_set(x_58, 1, x_17); -lean_ctor_set(x_58, 2, x_57); -lean_ctor_set(x_33, 0, x_58); -x_59 = l_Lean_Syntax_setTailInfo(x_18, x_29); -return x_59; -} -} -else -{ -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; -x_60 = lean_ctor_get(x_33, 0); -lean_inc(x_60); -lean_dec(x_33); -x_61 = lean_ctor_get(x_60, 0); -lean_inc(x_61); -x_62 = lean_ctor_get(x_60, 1); -lean_inc(x_62); -x_63 = lean_ctor_get(x_60, 2); -lean_inc(x_63); -lean_dec(x_60); -x_64 = lean_string_utf8_extract(x_61, x_62, x_63); -lean_dec(x_63); -lean_dec(x_62); -lean_dec(x_61); -x_65 = l_Array_foldlMUnsafe_fold___at_Lean_Environment_displayStats___spec__8___closed__3; -x_66 = lean_string_append(x_64, x_65); -x_67 = lean_ctor_get(x_26, 0); -lean_inc(x_67); -x_68 = lean_ctor_get(x_26, 1); -lean_inc(x_68); -x_69 = lean_ctor_get(x_26, 2); -lean_inc(x_69); -if (lean_is_exclusive(x_26)) { - lean_ctor_release(x_26, 0); - lean_ctor_release(x_26, 1); - lean_ctor_release(x_26, 2); - x_70 = x_26; -} else { - lean_dec_ref(x_26); - x_70 = lean_box(0); -} -x_71 = lean_string_utf8_extract(x_67, x_68, x_69); -lean_dec(x_69); -lean_dec(x_68); -lean_dec(x_67); -x_72 = lean_string_append(x_66, x_71); -lean_dec(x_71); -x_73 = lean_string_utf8_byte_size(x_72); -if (lean_is_scalar(x_70)) { - x_74 = lean_alloc_ctor(0, 3, 0); -} else { - x_74 = x_70; -} -lean_ctor_set(x_74, 0, x_72); -lean_ctor_set(x_74, 1, x_17); -lean_ctor_set(x_74, 2, x_73); -x_75 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_75, 0, x_74); -lean_ctor_set(x_29, 2, x_75); -x_76 = l_Lean_Syntax_setTailInfo(x_18, x_29); -return x_76; -} -} -} -else -{ -lean_object* x_77; -x_77 = lean_ctor_get(x_29, 2); -lean_inc(x_77); -lean_dec(x_29); -if (lean_obj_tag(x_77) == 0) -{ -lean_dec(x_26); -lean_dec(x_18); -return x_1; -} -else -{ -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_dec(x_1); -x_78 = lean_ctor_get(x_77, 0); -lean_inc(x_78); -if (lean_is_exclusive(x_77)) { - lean_ctor_release(x_77, 0); - x_79 = x_77; -} else { - lean_dec_ref(x_77); - x_79 = lean_box(0); -} -x_80 = lean_ctor_get(x_78, 0); -lean_inc(x_80); -x_81 = lean_ctor_get(x_78, 1); -lean_inc(x_81); -x_82 = lean_ctor_get(x_78, 2); -lean_inc(x_82); -lean_dec(x_78); -x_83 = lean_string_utf8_extract(x_80, x_81, x_82); -lean_dec(x_82); -lean_dec(x_81); -lean_dec(x_80); -x_84 = l_Array_foldlMUnsafe_fold___at_Lean_Environment_displayStats___spec__8___closed__3; -x_85 = lean_string_append(x_83, x_84); -x_86 = lean_ctor_get(x_26, 0); -lean_inc(x_86); -x_87 = lean_ctor_get(x_26, 1); -lean_inc(x_87); -x_88 = lean_ctor_get(x_26, 2); -lean_inc(x_88); -if (lean_is_exclusive(x_26)) { - lean_ctor_release(x_26, 0); - lean_ctor_release(x_26, 1); - lean_ctor_release(x_26, 2); - x_89 = x_26; -} else { - lean_dec_ref(x_26); - x_89 = lean_box(0); -} -x_90 = lean_string_utf8_extract(x_86, x_87, x_88); -lean_dec(x_88); -lean_dec(x_87); -lean_dec(x_86); -x_91 = lean_string_append(x_85, x_90); -lean_dec(x_90); -x_92 = lean_string_utf8_byte_size(x_91); -if (lean_is_scalar(x_89)) { - x_93 = lean_alloc_ctor(0, 3, 0); -} else { - x_93 = x_89; -} -lean_ctor_set(x_93, 0, x_91); -lean_ctor_set(x_93, 1, x_17); -lean_ctor_set(x_93, 2, x_92); -if (lean_is_scalar(x_79)) { - x_94 = lean_alloc_ctor(1, 1, 0); -} else { - x_94 = x_79; -} -lean_ctor_set(x_94, 0, x_93); -x_95 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_95, 0, x_30); -lean_ctor_set(x_95, 1, x_31); -lean_ctor_set(x_95, 2, x_94); -x_96 = l_Lean_Syntax_setTailInfo(x_18, x_95); -return x_96; -} -} -} -else -{ -lean_dec(x_31); -lean_dec(x_29); -lean_dec(x_26); -lean_dec(x_18); -return x_1; -} -} -else -{ -lean_dec(x_30); -lean_dec(x_29); -lean_dec(x_26); -lean_dec(x_18); -return x_1; -} -} -} -} -} -else -{ -lean_dec(x_24); -lean_dec(x_22); -lean_dec(x_21); -lean_dec(x_20); -lean_dec(x_18); -return x_1; -} -} -else -{ -lean_dec(x_23); -lean_dec(x_22); -lean_dec(x_21); -lean_dec(x_20); -lean_dec(x_18); -return x_1; -} -} -else -{ -lean_dec(x_19); -lean_dec(x_18); -return x_1; -} -} -} -} -else -{ -lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; uint8_t x_103; -lean_dec(x_1); -lean_inc(x_3); -x_97 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_97, 0, x_2); -lean_ctor_set(x_97, 1, x_3); -x_98 = l_Lean_instInhabitedSyntax; -x_99 = lean_unsigned_to_nat(1u); -x_100 = lean_array_get(x_98, x_3, x_99); -x_101 = l_Lean_Syntax_getNumArgs(x_100); -x_102 = lean_unsigned_to_nat(2u); -x_103 = lean_nat_dec_eq(x_101, x_102); -lean_dec(x_101); -if (x_103 == 0) -{ -lean_dec(x_100); -lean_dec(x_3); -return x_97; -} -else -{ -lean_object* x_104; uint8_t x_105; -x_104 = l_Lean_Syntax_getArg(x_100, x_99); -x_105 = l_Lean_Syntax_isNone(x_104); -lean_dec(x_104); -if (x_105 == 0) -{ -lean_dec(x_100); -lean_dec(x_3); -return x_97; -} -else -{ -lean_object* x_106; lean_object* x_107; lean_object* x_108; -x_106 = lean_unsigned_to_nat(0u); -x_107 = l_Lean_Syntax_getArg(x_100, x_106); -lean_dec(x_100); -x_108 = lean_array_get(x_98, x_3, x_102); -lean_dec(x_3); -if (lean_obj_tag(x_108) == 2) -{ -lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; -x_109 = lean_ctor_get(x_108, 0); -lean_inc(x_109); -x_110 = lean_ctor_get(x_108, 1); -lean_inc(x_110); -lean_dec(x_108); -x_111 = l_Lean_Syntax_getTailInfo(x_107); -x_112 = lean_ctor_get(x_109, 0); -lean_inc(x_112); -if (lean_obj_tag(x_112) == 0) -{ -lean_object* x_113; -x_113 = lean_ctor_get(x_109, 1); -lean_inc(x_113); -if (lean_obj_tag(x_113) == 0) -{ -lean_object* x_114; -x_114 = lean_ctor_get(x_109, 2); -lean_inc(x_114); -lean_dec(x_109); -if (lean_obj_tag(x_114) == 0) -{ -lean_dec(x_111); -lean_dec(x_110); -lean_dec(x_107); -return x_97; -} -else -{ -lean_object* x_115; lean_object* x_116; uint8_t x_117; -x_115 = lean_ctor_get(x_114, 0); -lean_inc(x_115); -lean_dec(x_114); -x_116 = l_myMacro____x40_Init_Notation___hyg_9707____closed__21; -x_117 = lean_string_dec_eq(x_110, x_116); -lean_dec(x_110); -if (x_117 == 0) -{ -lean_dec(x_115); -lean_dec(x_111); -lean_dec(x_107); -return x_97; -} -else -{ -if (lean_obj_tag(x_111) == 0) -{ -lean_dec(x_115); -lean_dec(x_107); -return x_97; -} -else -{ -lean_object* x_118; lean_object* x_119; -x_118 = lean_ctor_get(x_111, 0); -lean_inc(x_118); -lean_dec(x_111); -x_119 = lean_ctor_get(x_118, 0); -lean_inc(x_119); -if (lean_obj_tag(x_119) == 0) -{ -lean_object* x_120; -x_120 = lean_ctor_get(x_118, 1); -lean_inc(x_120); -if (lean_obj_tag(x_120) == 0) -{ -lean_object* x_121; lean_object* x_122; -x_121 = lean_ctor_get(x_118, 2); -lean_inc(x_121); -if (lean_is_exclusive(x_118)) { - lean_ctor_release(x_118, 0); - lean_ctor_release(x_118, 1); - lean_ctor_release(x_118, 2); - x_122 = x_118; -} else { - lean_dec_ref(x_118); - x_122 = lean_box(0); -} -if (lean_obj_tag(x_121) == 0) -{ -lean_dec(x_122); -lean_dec(x_115); -lean_dec(x_107); -return x_97; -} -else -{ -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_dec(x_97); -x_123 = lean_ctor_get(x_121, 0); -lean_inc(x_123); -if (lean_is_exclusive(x_121)) { - lean_ctor_release(x_121, 0); - x_124 = x_121; -} else { - lean_dec_ref(x_121); - x_124 = lean_box(0); -} -x_125 = lean_ctor_get(x_123, 0); -lean_inc(x_125); -x_126 = lean_ctor_get(x_123, 1); -lean_inc(x_126); -x_127 = lean_ctor_get(x_123, 2); -lean_inc(x_127); -lean_dec(x_123); -x_128 = lean_string_utf8_extract(x_125, x_126, x_127); -lean_dec(x_127); -lean_dec(x_126); -lean_dec(x_125); -x_129 = l_Array_foldlMUnsafe_fold___at_Lean_Environment_displayStats___spec__8___closed__3; -x_130 = lean_string_append(x_128, x_129); -x_131 = lean_ctor_get(x_115, 0); -lean_inc(x_131); -x_132 = lean_ctor_get(x_115, 1); -lean_inc(x_132); -x_133 = lean_ctor_get(x_115, 2); -lean_inc(x_133); -if (lean_is_exclusive(x_115)) { - lean_ctor_release(x_115, 0); - lean_ctor_release(x_115, 1); - lean_ctor_release(x_115, 2); - x_134 = x_115; -} else { - lean_dec_ref(x_115); - x_134 = lean_box(0); -} -x_135 = lean_string_utf8_extract(x_131, x_132, x_133); -lean_dec(x_133); -lean_dec(x_132); -lean_dec(x_131); -x_136 = lean_string_append(x_130, x_135); -lean_dec(x_135); -x_137 = lean_string_utf8_byte_size(x_136); -if (lean_is_scalar(x_134)) { - x_138 = lean_alloc_ctor(0, 3, 0); -} else { - x_138 = x_134; -} -lean_ctor_set(x_138, 0, x_136); -lean_ctor_set(x_138, 1, x_106); -lean_ctor_set(x_138, 2, x_137); -if (lean_is_scalar(x_124)) { - x_139 = lean_alloc_ctor(1, 1, 0); -} else { - x_139 = x_124; -} -lean_ctor_set(x_139, 0, x_138); -if (lean_is_scalar(x_122)) { - x_140 = lean_alloc_ctor(0, 3, 0); -} else { - x_140 = x_122; -} -lean_ctor_set(x_140, 0, x_119); -lean_ctor_set(x_140, 1, x_120); -lean_ctor_set(x_140, 2, x_139); -x_141 = l_Lean_Syntax_setTailInfo(x_107, x_140); -return x_141; -} -} -else -{ -lean_dec(x_120); -lean_dec(x_118); -lean_dec(x_115); -lean_dec(x_107); -return x_97; -} -} -else -{ -lean_dec(x_119); -lean_dec(x_118); -lean_dec(x_115); -lean_dec(x_107); -return x_97; -} -} -} -} -} -else -{ -lean_dec(x_113); -lean_dec(x_111); -lean_dec(x_110); -lean_dec(x_109); -lean_dec(x_107); -return x_97; -} -} -else -{ -lean_dec(x_112); -lean_dec(x_111); -lean_dec(x_110); -lean_dec(x_109); -lean_dec(x_107); -return x_97; -} -} -else -{ -lean_dec(x_108); -lean_dec(x_107); -return x_97; -} -} -} -} -} -} -else -{ -return x_1; -} -} -} -lean_object* initialize_Init(lean_object*); -lean_object* initialize_Lean_Parser_Basic(lean_object*); -static bool _G_initialized = false; -lean_object* initialize_Lean_Parser_Transform(lean_object* w) { -lean_object * res; -if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); -_G_initialized = true; -res = initialize_Init(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Lean_Parser_Basic(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 -} -#endif diff --git a/stage0/stdlib/Lean/Server/ServerBin.c b/stage0/stdlib/Lean/Server/ServerBin.c deleted file mode 100644 index edda8e79fa..0000000000 --- a/stage0/stdlib/Lean/Server/ServerBin.c +++ /dev/null @@ -1,330 +0,0 @@ -// Lean compiler output -// Module: Lean.Server.ServerBin -// Imports: Init Init.System.IO Lean.Server -#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* lean_get_stdin(lean_object*); -lean_object* lean_io_error_to_string(lean_object*); -lean_object* _lean_main(lean_object*, lean_object*); -lean_object* lean_get_stderr(lean_object*); -lean_object* l_main___boxed__const__1; -lean_object* l_IO_getStdin___at_main___spec__1(lean_object*); -lean_object* lean_init_search_path(lean_object*, lean_object*); -lean_object* lean_get_stdout(lean_object*); -lean_object* l_IO_FS_Stream_putStrLn___at_Lean_Server_Test_runWithInputFile___spec__1(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Server_initAndRunServer(lean_object*, lean_object*, lean_object*); -lean_object* l_IO_getStdin___at_main___spec__1(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_get_stdin(x_1); -return x_2; -} -} -static lean_object* _init_l_main___boxed__const__1() { -_start: -{ -uint32_t x_1; lean_object* x_2; -x_1 = 0; -x_2 = lean_box_uint32(x_1); -return x_2; -} -} -lean_object* _lean_main(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -lean_dec(x_1); -x_3 = lean_get_stdin(x_2); -if (lean_obj_tag(x_3) == 0) -{ -lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_4 = lean_ctor_get(x_3, 0); -lean_inc(x_4); -x_5 = lean_ctor_get(x_3, 1); -lean_inc(x_5); -lean_dec(x_3); -x_6 = lean_get_stdout(x_5); -if (lean_obj_tag(x_6) == 0) -{ -lean_object* x_7; lean_object* x_8; lean_object* x_9; -x_7 = lean_ctor_get(x_6, 0); -lean_inc(x_7); -x_8 = lean_ctor_get(x_6, 1); -lean_inc(x_8); -lean_dec(x_6); -x_9 = lean_get_stderr(x_8); -if (lean_obj_tag(x_9) == 0) -{ -lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; -x_10 = lean_ctor_get(x_9, 0); -lean_inc(x_10); -x_11 = lean_ctor_get(x_9, 1); -lean_inc(x_11); -lean_dec(x_9); -x_12 = lean_box(0); -x_13 = lean_init_search_path(x_12, x_11); -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_14; lean_object* x_15; -x_14 = lean_ctor_get(x_13, 1); -lean_inc(x_14); -lean_dec(x_13); -x_15 = l_Lean_Server_initAndRunServer(x_4, x_7, x_14); -if (lean_obj_tag(x_15) == 0) -{ -uint8_t x_16; -lean_dec(x_10); -x_16 = !lean_is_exclusive(x_15); -if (x_16 == 0) -{ -lean_object* x_17; lean_object* x_18; -x_17 = lean_ctor_get(x_15, 0); -lean_dec(x_17); -x_18 = l_main___boxed__const__1; -lean_ctor_set(x_15, 0, x_18); -return x_15; -} -else -{ -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_15, 1); -lean_inc(x_19); -lean_dec(x_15); -x_20 = l_main___boxed__const__1; -x_21 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_21, 0, x_20); -lean_ctor_set(x_21, 1, x_19); -return x_21; -} -} -else -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_22 = lean_ctor_get(x_15, 0); -lean_inc(x_22); -x_23 = lean_ctor_get(x_15, 1); -lean_inc(x_23); -lean_dec(x_15); -x_24 = lean_io_error_to_string(x_22); -x_25 = l_IO_FS_Stream_putStrLn___at_Lean_Server_Test_runWithInputFile___spec__1(x_10, x_24, x_23); -if (lean_obj_tag(x_25) == 0) -{ -uint8_t x_26; -x_26 = !lean_is_exclusive(x_25); -if (x_26 == 0) -{ -lean_object* x_27; lean_object* x_28; -x_27 = lean_ctor_get(x_25, 0); -lean_dec(x_27); -x_28 = l_main___boxed__const__1; -lean_ctor_set(x_25, 0, x_28); -return x_25; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_25, 1); -lean_inc(x_29); -lean_dec(x_25); -x_30 = l_main___boxed__const__1; -x_31 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_31, 0, x_30); -lean_ctor_set(x_31, 1, x_29); -return x_31; -} -} -else -{ -uint8_t x_32; -x_32 = !lean_is_exclusive(x_25); -if (x_32 == 0) -{ -return x_25; -} -else -{ -lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_33 = lean_ctor_get(x_25, 0); -x_34 = lean_ctor_get(x_25, 1); -lean_inc(x_34); -lean_inc(x_33); -lean_dec(x_25); -x_35 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_35, 0, x_33); -lean_ctor_set(x_35, 1, x_34); -return x_35; -} -} -} -} -else -{ -uint8_t x_36; -lean_dec(x_10); -lean_dec(x_7); -lean_dec(x_4); -x_36 = !lean_is_exclusive(x_13); -if (x_36 == 0) -{ -return x_13; -} -else -{ -lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_37 = lean_ctor_get(x_13, 0); -x_38 = lean_ctor_get(x_13, 1); -lean_inc(x_38); -lean_inc(x_37); -lean_dec(x_13); -x_39 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_39, 0, x_37); -lean_ctor_set(x_39, 1, x_38); -return x_39; -} -} -} -else -{ -uint8_t x_40; -lean_dec(x_7); -lean_dec(x_4); -x_40 = !lean_is_exclusive(x_9); -if (x_40 == 0) -{ -return x_9; -} -else -{ -lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_41 = lean_ctor_get(x_9, 0); -x_42 = lean_ctor_get(x_9, 1); -lean_inc(x_42); -lean_inc(x_41); -lean_dec(x_9); -x_43 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_43, 0, x_41); -lean_ctor_set(x_43, 1, x_42); -return x_43; -} -} -} -else -{ -uint8_t x_44; -lean_dec(x_4); -x_44 = !lean_is_exclusive(x_6); -if (x_44 == 0) -{ -return x_6; -} -else -{ -lean_object* x_45; lean_object* x_46; lean_object* x_47; -x_45 = lean_ctor_get(x_6, 0); -x_46 = lean_ctor_get(x_6, 1); -lean_inc(x_46); -lean_inc(x_45); -lean_dec(x_6); -x_47 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_47, 0, x_45); -lean_ctor_set(x_47, 1, x_46); -return x_47; -} -} -} -else -{ -uint8_t x_48; -x_48 = !lean_is_exclusive(x_3); -if (x_48 == 0) -{ -return x_3; -} -else -{ -lean_object* x_49; lean_object* x_50; lean_object* x_51; -x_49 = lean_ctor_get(x_3, 0); -x_50 = lean_ctor_get(x_3, 1); -lean_inc(x_50); -lean_inc(x_49); -lean_dec(x_3); -x_51 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_51, 0, x_49); -lean_ctor_set(x_51, 1, x_50); -return x_51; -} -} -} -} -lean_object* initialize_Init(lean_object*); -lean_object* initialize_Init_System_IO(lean_object*); -lean_object* initialize_Lean_Server(lean_object*); -static bool _G_initialized = false; -lean_object* initialize_Lean_Server_ServerBin(lean_object* w) { -lean_object * res; -if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); -_G_initialized = true; -res = initialize_Init(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_System_IO(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Lean_Server(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_main___boxed__const__1 = _init_l_main___boxed__const__1(); -lean_mark_persistent(l_main___boxed__const__1); -return lean_io_result_mk_ok(lean_box(0)); -} -void lean_initialize(); - - #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; -lean_initialize(); -res = initialize_Lean_Server_ServerBin(lean_io_mk_world()); -lean_io_mark_end_initialization(); -if (lean_io_result_is_ok(res)) { -lean_dec_ref(res); -lean_init_task_manager(); -in = lean_box(0); -int i = argc; -while (i > 1) { - lean_object* n; - i--; - n = lean_alloc_ctor(1,2,0); lean_ctor_set(n, 0, lean_mk_string(argv[i])); lean_ctor_set(n, 1, in); - in = n; -} -res = _lean_main(in, lean_io_mk_world()); -} -if (lean_io_result_is_ok(res)) { - int ret = lean_unbox(lean_io_result_get_value(res)); - lean_dec_ref(res); - return ret; -} else { - lean_io_result_show_error(res); - lean_dec_ref(res); - return 1; -} -} -#ifdef __cplusplus -} -#endif diff --git a/stage0/stdlib/Lean/Syntax.c b/stage0/stdlib/Lean/Syntax.c index 389452024e..c738a6d0ef 100644 --- a/stage0/stdlib/Lean/Syntax.c +++ b/stage0/stdlib/Lean/Syntax.c @@ -204,6 +204,7 @@ lean_object* l_Lean_Syntax_isMissing_match__1___rarg(lean_object*, lean_object*, uint8_t l_Lean_Syntax_isMissing(lean_object*); lean_object* l_Lean_Syntax_replaceM___at_Lean_Syntax_updateLeading___spec__1(lean_object*, lean_object*); lean_object* l_Lean_SyntaxNode_getNumArgs(lean_object*); +lean_object* l_Lean_Syntax_isAntiquotSplice___boxed(lean_object*); lean_object* l_Lean_Syntax_instToStringSyntax___closed__1; lean_object* l_String_posOfAux(lean_object*, uint32_t, lean_object*, lean_object*); lean_object* l___private_Lean_Syntax_0__Lean_Syntax_formatInfo_match__2___rarg(lean_object*, lean_object*, lean_object*); @@ -241,6 +242,7 @@ lean_object* l_Lean_mkSimpleAtom(lean_object*); lean_object* l___private_Lean_Syntax_0__Lean_Syntax_formatInfo_match__3(lean_object*); lean_object* l___private_Lean_Syntax_0__Lean_Syntax_formatInfo(uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Syntax_MonadTraverser_goDown___rarg___lambda__1(lean_object*, lean_object*); +uint8_t l_Lean_Syntax_isNone(lean_object*); lean_object* l_List_beq___at_Lean_Syntax_structEq___spec__3___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_mkOptionalNode___closed__1; lean_object* l_Lean_Syntax_MonadTraverser_goUp___rarg___lambda__1(lean_object*); @@ -285,6 +287,7 @@ uint8_t lean_string_dec_eq(lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l_Lean_Syntax_MonadTraverser_goLeft(lean_object*); lean_object* l_Lean_Syntax_reprint_match__1(lean_object*); +uint8_t l_Lean_Syntax_isAntiquotSplice(lean_object*); lean_object* l_Lean_SourceInfo_updateTrailing(lean_object* x_1, lean_object* x_2) { _start: { @@ -599,6 +602,37 @@ x_3 = lean_box(x_2); return x_3; } } +uint8_t l_Lean_Syntax_isAntiquotSplice(lean_object* x_1) { +_start: +{ +uint8_t x_2; lean_object* x_3; lean_object* x_4; uint8_t x_5; +x_2 = l_Lean_Syntax_isAntiquot(x_1); +x_3 = lean_unsigned_to_nat(4u); +x_4 = l_Lean_Syntax_getArg(x_1, x_3); +x_5 = l_Lean_Syntax_isNone(x_4); +lean_dec(x_4); +if (x_5 == 0) +{ +return x_2; +} +else +{ +uint8_t x_6; +x_6 = 0; +return x_6; +} +} +} +lean_object* l_Lean_Syntax_isAntiquotSplice___boxed(lean_object* x_1) { +_start: +{ +uint8_t x_2; lean_object* x_3; +x_2 = l_Lean_Syntax_isAntiquotSplice(x_1); +lean_dec(x_1); +x_3 = lean_box(x_2); +return x_3; +} +} lean_object* l_Lean_unreachIsNodeMissing(lean_object* x_1, lean_object* x_2) { _start: { @@ -1033,7 +1067,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Syntax_getAtomVal_x21___closed__1; x_2 = l_Lean_Syntax_getAtomVal_x21___closed__2; -x_3 = lean_unsigned_to_nat(80u); +x_3 = lean_unsigned_to_nat(84u); x_4 = lean_unsigned_to_nat(18u); x_5 = l_Lean_Syntax_getAtomVal_x21___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5);