diff --git a/stage0/src/Lean/Elab/Binders.lean b/stage0/src/Lean/Elab/Binders.lean index acc51a8a37..9fa5351ace 100644 --- a/stage0/src/Lean/Elab/Binders.lean +++ b/stage0/src/Lean/Elab/Binders.lean @@ -356,16 +356,52 @@ private def getMatchAltNumPatterns (matchAlts : Syntax) : Nat := let pats := alt0[0].getSepArgs pats.size +private def mkMatch (ref : Syntax) (discrs : Array Syntax) (matchAlts : Syntax) (matchTactic := false) : Syntax := + Syntax.node (if matchTactic then `Lean.Parser.Tactic.match else `Lean.Parser.Term.match) + #[mkAtomFrom ref "match ", mkNullNode discrs, mkNullNode, mkAtomFrom ref " with ", matchAlts] + +private def addDiscr (ref : Syntax) (discrs : Array Syntax) (discrTerm : Syntax) : Array Syntax := + let discrs := if discrs.isEmpty then discrs else discrs.push $ mkAtomFrom ref ", " + discrs.push <| Syntax.node `Lean.Parser.Term.matchDiscr #[mkNullNode, discrTerm] + +/- +Recall that +``` +def letRecDecls := sepBy1 (group (optional «attributes» >> letDecl)) ", " +def «letrec» := parser!:leadPrec withPosition (group ("let " >> nonReservedSymbol "rec ") >> letRecDecls) >> optSemicolon termParser +``` + +The argument `letRecDecls` is an array of syntax terms of the form `(group (optional «attributes» >> letDecl))` +-/ +def mkLetRec (ref : Syntax) (letRecDecls : Array Syntax) (body : Syntax) : Syntax := + Syntax.node `Lean.Parser.Term.letrec #[ + mkNullNode #[mkAtomFrom ref "let ", mkAtomFrom ref "rec "], + Syntax.mkSep letRecDecls (mkAtomFrom ref ","), + mkNullNode, -- optional ";" + body + ] + +/- Recall that + ``` + whereDecls := parser! "where " >> many1Indent (group (optional «attributes» >> letDecl >> optional ";")) + ``` -/ +def expandWhereDecls (ref : Syntax) (whereDecls : Syntax) (body : Syntax) : Syntax := + let letRecDecls := whereDecls[1].getArgs.map fun stx => mkNullNode #[stx[0], stx[1]] -- drop (optional ";") + return mkLetRec ref letRecDecls body + +def expandWhereDeclsOpt (ref : Syntax) (whereDeclsOpt : Syntax) (body : Syntax) : Syntax := + if whereDeclsOpt.isNone then + body + else + expandWhereDecls ref whereDeclsOpt[0] body + /- Helper function for `expandMatchAltsIntoMatch` -/ private def expandMatchAltsIntoMatchAux (ref : Syntax) (matchAlts : Syntax) (matchTactic : Bool) : Nat → Array Syntax → MacroM Syntax | 0, discrs => - pure $ Syntax.node (if matchTactic then `Lean.Parser.Tactic.match else `Lean.Parser.Term.match) - #[mkAtomFrom ref "match ", mkNullNode discrs, mkNullNode, mkAtomFrom ref " with ", matchAlts] + return mkMatch ref discrs matchAlts matchTactic | n+1, discrs => withFreshMacroScope do let x ← `(x) - let discrs := if discrs.isEmpty then discrs else discrs.push $ mkAtomFrom ref ", " - let discrs := discrs.push $ Syntax.node `Lean.Parser.Term.matchDiscr #[mkNullNode, x] - let body ← expandMatchAltsIntoMatchAux ref matchAlts matchTactic n discrs + let body ← expandMatchAltsIntoMatchAux ref matchAlts matchTactic n (addDiscr ref discrs x) if matchTactic then `(tactic| intro $x:term; $body:tactic) else @@ -378,7 +414,7 @@ private def expandMatchAltsIntoMatchAux (ref : Syntax) (matchAlts : Syntax) (mat | 0, true => alt_1 | i, _ => alt_2 ``` - expands intro (for tactic == false) + expands into (for tactic == false) ``` fun x_1 x_2 => match x_1, x_2 with @@ -399,6 +435,51 @@ def expandMatchAltsIntoMatch (ref : Syntax) (matchAlts : Syntax) (tactic := fals def expandMatchAltsIntoMatchTactic (ref : Syntax) (matchAlts : Syntax) : MacroM Syntax := expandMatchAltsIntoMatchAux ref matchAlts true (getMatchAltNumPatterns matchAlts) #[] +/-- + Similar to `expandMatchAltsIntoMatch`, but supports an optional `where` clause. + + Expand `matchAltsWhereDecls` into `let rec` + `match`-expression. + Example + ``` + | 0, true => ... f 0 ... + | i, _ => ... f i + g i ... + where + f x := g x + 1 + + g : Nat → Nat + | 0 => 1 + | x+1 => f x + ``` + expands into + ``` + fux x_1 x_2 => + let rec + f x := g x + 1, + g : Nat → Nat + | 0 => 1 + | x+1 => f x + match x_1, x_2 with + | 0, true => ... f 0 ... + | i, _ => ... f i + g i ... + ``` +-/ +def expandMatchAltsWhereDecls (ref : Syntax) (matchAltsWhereDecls : Syntax) : MacroM Syntax := + let matchAlts := matchAltsWhereDecls[0] + let whereDeclsOpt := matchAltsWhereDecls[1] + let rec loop (i : Nat) (discrs : Array Syntax) : MacroM Syntax := + match i with + | 0 => + let matchStx := mkMatch ref discrs matchAlts + if whereDeclsOpt.isNone then + return matchStx + else + expandWhereDeclsOpt ref whereDeclsOpt matchStx + | n+1 => withFreshMacroScope do + let x ← `(x) + let body ← loop n (addDiscr ref discrs x) + `(@fun $x => $body) + loop (getMatchAltNumPatterns matchAlts) #[] + @[builtinTermElab «fun»] def elabFun : TermElab := fun stx expectedType? => match_syntax stx with | `(fun $binders* => $body) => do let (binders, body, expandedPattern) ← expandFunBinders binders body diff --git a/stage0/src/Lean/Elab/MutualDef.lean b/stage0/src/Lean/Elab/MutualDef.lean index adda72e1dd..1ef3568a90 100644 --- a/stage0/src/Lean/Elab/MutualDef.lean +++ b/stage0/src/Lean/Elab/MutualDef.lean @@ -129,16 +129,16 @@ def matchAlts (optionalFirstBar := true) : Parser := withPosition $ fun pos => (if optionalFirstBar then optional "| " else "| ") >> sepBy1 matchAlt (checkColGe pos.column "alternatives must be indented" >> "|") -def declValSimple := parser! " := " >> termParser -def declValEqns := parser! Term.matchAlts false +def declValSimple := parser! " :=\n" >> termParser >> optional Term.whereDecls +def declValEqns := parser! Term.matchAltsWhereDecls def declVal := declValSimple <|> declValEqns ``` -/ private def declValToTerm (declVal : Syntax) : MacroM Syntax := if declVal.isOfKind `Lean.Parser.Command.declValSimple then - pure declVal[1] + return expandWhereDeclsOpt declVal declVal[2] declVal[1] else if declVal.isOfKind `Lean.Parser.Command.declValEqns then - expandMatchAltsIntoMatch declVal declVal[0] + expandMatchAltsWhereDecls declVal declVal[0] else Macro.throwErrorAt declVal "unexpected definition value" diff --git a/stage0/src/Lean/Parser/Command.lean b/stage0/src/Lean/Parser/Command.lean index b1a206978d..5dcff3a1d8 100644 --- a/stage0/src/Lean/Parser/Command.lean +++ b/stage0/src/Lean/Parser/Command.lean @@ -36,10 +36,7 @@ def declId := parser! ident >> optional (".{" >> sepBy1 ident ", " >> def declSig := parser! many (ppSpace >> (Term.simpleBinderWithoutType <|> Term.bracketedBinder)) >> Term.typeSpec def optDeclSig := parser! many (ppSpace >> (Term.simpleBinderWithoutType <|> Term.bracketedBinder)) >> Term.optType def declValSimple := parser! " :=\n" >> termParser >> optional Term.whereDecls -def declValEqns := parser! - (checkInsideQuot >> Term.matchAltsWhereDecls) - <|> - (checkOutsideQuot >> Term.matchAlts false) +def declValEqns := parser! Term.matchAltsWhereDecls def declVal := declValSimple <|> declValEqns def «abbrev» := parser! "abbrev " >> declId >> optDeclSig >> declVal def «def» := parser! "def " >> declId >> optDeclSig >> declVal diff --git a/stage0/stdlib/Lean/Elab/Binders.c b/stage0/stdlib/Lean/Elab/Binders.c index bdcac6e95c..d047cedfde 100644 --- a/stage0/stdlib/Lean/Elab/Binders.c +++ b/stage0/stdlib/Lean/Elab/Binders.c @@ -20,6 +20,7 @@ lean_object* l_Lean_Elab_Term_elabBinder___rarg___lambda__1___boxed(lean_object* lean_object* l_Lean_Elab_Term_elabLetDeclCore_match__1(lean_object*); lean_object* l_Lean_Elab_Term_elabBinders(lean_object*); lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__6; +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); lean_object* l_Lean_Elab_Term_elabLetDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -49,13 +50,16 @@ lean_object* l_Lean_Elab_Term_elabLetDeclAux_match__1(lean_object*); extern lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1011____closed__3; 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___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_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*); extern lean_object* l_Lean_Elab_throwUnsupportedSyntax___rarg___closed__1; extern lean_object* l_Lean_Parser_Tactic___kind_tactic____x40_Init_Notation___hyg_11327____closed__4; lean_object* l___regBuiltin_Lean_Elab_Term_elabLetStarDecl___closed__1; lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__3(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_Binders_0__Lean_Elab_Term_FunBinders_elabFunBinderViews___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_Array_mapMUnsafe_map___at_Lean_Elab_Term_expandWhereDecls___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__3; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandOptIdent___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_intro___closed__4; @@ -69,6 +73,7 @@ extern lean_object* l_Lean_identKind___closed__2; extern lean_object* l_myMacro____x40_Init_Notation___hyg_5739____closed__19; extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_11609____closed__5; 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; @@ -148,9 +153,13 @@ lean_object* l_Lean_throwError___at_Lean_Elab_Term_throwErrorIfErrors___spec__1( 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_Elab_Term_elabLetDeclAux___lambda__2___closed__1; +lean_object* l_Lean_Elab_Term_mkLetRec___boxed(lean_object*, lean_object*, lean_object*); 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*); extern lean_object* l_myMacro____x40_Init_NotationExtra___hyg_1627____closed__10; lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +extern lean_object* l_myMacro____x40_Init_Notation___hyg_7791____closed__7; 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; lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__1; @@ -184,6 +193,7 @@ 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*); lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__14; 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*); lean_object* l_Lean_Meta_withLetDecl___at_Lean_Elab_Term_elabLetDeclAux___spec__3(lean_object*); lean_object* l_Lean_Elab_Term_elabLetDeclAux___closed__1; @@ -202,7 +212,7 @@ 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*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_5739____closed__15; -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_4621_(lean_object*); +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_4914_(lean_object*); 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*); @@ -218,18 +228,20 @@ lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_elabFunB lean_object* l___regBuiltin_Lean_Elab_Term_elabLetBangDecl(lean_object*); lean_object* l_Lean_Meta_mkLambdaFVars___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabImplicitLambdaAux___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_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*); lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__1; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__2(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* 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_Elab_Term_elabLetStarDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withoutPostponingUniverseConstraintsImp___at_Lean_Elab_Term_elabBinders___spec__1___rarg___lambda__1___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_expandMatchAltsIntoMatchAux___closed__5; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getFunBinderIds_x3f_loop_match__1(lean_object*); extern lean_object* l_Lean_instInhabitedSourceInfo___closed__1; lean_object* l_Lean_Elab_Term_elabArrow___lambda__1___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_expandBinderModifier___closed__4; lean_object* l_Lean_Elab_Term_elabForall___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, 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_Term_elabFunBinders(lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__1; @@ -277,7 +289,9 @@ lean_object* l_Lean_compileDecl___at_Lean_Elab_Term_declareTacticSyntax___spec__ 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*); extern lean_object* l_Array___kind_term____x40_Init_Data_Array_Subarray___hyg_510____closed__1; +extern lean_object* l_Lean_Parser_Tactic_letrec___closed__6; lean_object* l_Lean_mkFreshId___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_elabFunBinderViews___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_expandWhereDeclsOpt___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkFVar(lean_object*); extern lean_object* l_Lean_Parser_Tactic_match___closed__2; extern lean_object* l_Lean_Expr_getAutoParamTactic_x3f___closed__1; @@ -299,8 +313,10 @@ 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; +extern lean_object* l_Lean_Parser_Tactic_let___closed__3; lean_object* l_Lean_Meta_isExprDefEq___at_Lean_Elab_Term_synthesizeInstMVarCore___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_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_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*); @@ -309,6 +325,7 @@ lean_object* l_Lean_Elab_Term_expandOptType___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_nullKind___closed__2; extern lean_object* l_Lean_Elab_Term_termElabAttribute; lean_object* l___regBuiltin_Lean_Elab_Term_elabLetBangDecl___closed__1; +lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_addDiscr___closed__1; lean_object* l_Lean_Meta_withoutPostponingUniverseConstraintsImp___at_Lean_Elab_Term_elabBinders___spec__1(lean_object*); lean_object* l_Lean_mkAtomFrom(lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_8168____closed__13; @@ -316,10 +333,12 @@ lean_object* lean_local_ctx_mk_local_decl(lean_object*, lean_object*, lean_objec lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier___closed__3; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_match___closed__1; +lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_mkMatch(lean_object*, lean_object*, lean_object*, uint8_t); extern lean_object* l_Lean_Expr_instInhabitedExpr; extern lean_object* l_Lean_identKind; extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_331____closed__21; 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; @@ -329,6 +348,7 @@ lean_object* l_Lean_Meta_getLocalInstances___at_Lean_Elab_Term_elabFunBinders___ extern lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__15; lean_object* l_Lean_Syntax_getSepArgs(lean_object*); lean_object* l_Lean_Elab_Term_FunBinders_State_expectedType_x3f___default; +lean_object* l_Lean_Elab_Term_expandMatchAltsWhereDecls_loop___boxed(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_Lean_throwKernelException___at_Lean_Elab_Term_declareTacticSyntax___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_elabFun___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -362,8 +382,10 @@ lean_object* l_Lean_Syntax_getKind(lean_object*); lean_object* l_Lean_Meta_saveAndResetSynthInstanceCache___rarg(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImplicit___spec__1___closed__2; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_propagateExpectedType_match__1(lean_object*); +lean_object* l_Lean_Elab_Term_expandMatchAltsWhereDecls_loop_match__1(lean_object*); lean_object* 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_Std_PersistentHashMap_mkCollisionNode___rarg___closed__1; 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*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_5739____closed__22; @@ -431,6 +453,7 @@ lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__9; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_elabForall___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__17; lean_object* l_Lean_Elab_Term_elabLetDeclAux___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* 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*); @@ -451,6 +474,7 @@ lean_object* l_Lean_Elab_Term_elabArrow___lambda__1(lean_object*, lean_object*, 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*); 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_getFunBinderIds_x3f_loop_match__1___rarg(lean_object*, lean_object*, lean_object*); @@ -466,6 +490,7 @@ lean_object* l_Lean_Elab_Term_elabBinder___rarg___boxed(lean_object*, lean_objec extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1___closed__4; 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*); extern lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1011____closed__1; 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; @@ -477,6 +502,7 @@ 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*); extern lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_1011____closed__4; +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*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__1; @@ -17282,6 +17308,265 @@ lean_dec(x_1); return x_2; } } +lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_mkMatch(lean_object* x_1, lean_object* x_2, lean_object* x_3, uint8_t x_4) { +_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; +x_5 = l_Lean_Parser_Tactic_match___closed__3; +x_6 = l_Lean_mkAtomFrom(x_1, x_5); +x_7 = l_Lean_nullKind; +x_8 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_8, 0, x_7); +lean_ctor_set(x_8, 1, x_2); +x_9 = l_Lean_Parser_Tactic_changeWith___closed__3; +x_10 = l_Lean_mkAtomFrom(x_1, x_9); +x_11 = l_Lean_Elab_Term_mkExplicitBinder___closed__7; +x_12 = lean_array_push(x_11, x_6); +x_13 = lean_array_push(x_12, x_8); +x_14 = l_Lean_mkOptionalNode___closed__1; +x_15 = lean_array_push(x_13, x_14); +x_16 = lean_array_push(x_15, x_10); +x_17 = lean_array_push(x_16, x_3); +if (x_4 == 0) +{ +lean_object* x_18; lean_object* x_19; +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); +return x_19; +} +else +{ +lean_object* x_20; lean_object* x_21; +x_20 = l_Lean_Parser_Tactic_match___closed__2; +x_21 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_21, 0, x_20); +lean_ctor_set(x_21, 1, x_17); +return x_21; +} +} +} +lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_mkMatch___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +uint8_t x_5; lean_object* x_6; +x_5 = lean_unbox(x_4); +lean_dec(x_4); +x_6 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_mkMatch(x_1, x_2, x_3, x_5); +lean_dec(x_1); +return x_6; +} +} +static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_addDiscr___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Syntax_mkApp___closed__1; +x_2 = l_Lean_mkOptionalNode___closed__1; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_addDiscr(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; +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_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); +if (x_4 == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_9 = l___kind_term____x40_Init_Notation___hyg_6289____closed__6; +x_10 = l_Lean_mkAtomFrom(x_1, x_9); +x_11 = lean_array_push(x_2, x_10); +x_12 = lean_array_push(x_11, x_8); +return x_12; +} +else +{ +lean_object* x_13; +x_13 = lean_array_push(x_2, x_8); +return x_13; +} +} +} +lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_addDiscr___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_addDiscr(x_1, x_2, x_3); +lean_dec(x_1); +return x_4; +} +} +static lean_object* _init_l_Lean_Elab_Term_mkLetRec___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_letrec___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* l_Lean_Elab_Term_mkLetRec(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_4 = l_Lean_Parser_Tactic_let___closed__3; +x_5 = l_Lean_mkAtomFrom(x_1, x_4); +x_6 = l_Lean_Parser_Tactic_letrec___closed__6; +x_7 = l_Lean_mkAtomFrom(x_1, x_6); +x_8 = l_Lean_Syntax_mkApp___closed__1; +x_9 = lean_array_push(x_8, x_5); +x_10 = lean_array_push(x_9, x_7); +x_11 = l_Lean_nullKind; +x_12 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_12, 0, x_11); +lean_ctor_set(x_12, 1, x_10); +x_13 = l_myMacro____x40_Init_Notation___hyg_7791____closed__7; +x_14 = l_Lean_mkAtomFrom(x_1, x_13); +x_15 = l_Lean_Syntax_mkSep(x_2, x_14); +x_16 = l_Std_PersistentHashMap_mkCollisionNode___rarg___closed__1; +x_17 = lean_array_push(x_16, x_12); +x_18 = lean_array_push(x_17, x_15); +x_19 = l_Lean_mkOptionalNode___closed__1; +x_20 = lean_array_push(x_18, x_19); +x_21 = lean_array_push(x_20, x_3); +x_22 = l_Lean_Elab_Term_mkLetRec___closed__1; +x_23 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_23, 0, x_22); +lean_ctor_set(x_23, 1, x_21); +return x_23; +} +} +lean_object* l_Lean_Elab_Term_mkLetRec___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_Elab_Term_mkLetRec(x_1, x_2, x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_4; +} +} +lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_expandWhereDecls___spec__1(size_t x_1, size_t x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = x_2 < x_1; +if (x_4 == 0) +{ +lean_object* x_5; +x_5 = x_3; +return x_5; +} +else +{ +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; size_t x_18; size_t x_19; lean_object* x_20; lean_object* x_21; +x_6 = lean_array_uget(x_3, x_2); +x_7 = lean_unsigned_to_nat(0u); +x_8 = lean_array_uset(x_3, x_2, x_7); +x_9 = x_6; +x_10 = l_Lean_Syntax_getArg(x_9, x_7); +x_11 = lean_unsigned_to_nat(1u); +x_12 = l_Lean_Syntax_getArg(x_9, x_11); +lean_dec(x_9); +x_13 = l_Lean_Syntax_mkApp___closed__1; +x_14 = lean_array_push(x_13, x_10); +x_15 = lean_array_push(x_14, x_12); +x_16 = l_Lean_nullKind; +x_17 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set(x_17, 1, x_15); +x_18 = 1; +x_19 = x_2 + x_18; +x_20 = x_17; +x_21 = lean_array_uset(x_8, x_2, x_20); +x_2 = x_19; +x_3 = x_21; +goto _start; +} +} +} +lean_object* l_Lean_Elab_Term_expandWhereDecls(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; size_t x_8; size_t x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_4 = lean_unsigned_to_nat(1u); +x_5 = l_Lean_Syntax_getArg(x_2, x_4); +x_6 = l_Lean_Syntax_getArgs(x_5); +lean_dec(x_5); +x_7 = lean_array_get_size(x_6); +x_8 = lean_usize_of_nat(x_7); +lean_dec(x_7); +x_9 = 0; +x_10 = x_6; +x_11 = l_Array_mapMUnsafe_map___at_Lean_Elab_Term_expandWhereDecls___spec__1(x_8, x_9, x_10); +x_12 = x_11; +x_13 = l_Lean_Elab_Term_mkLetRec(x_1, x_12, x_3); +lean_dec(x_12); +return x_13; +} +} +lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_expandWhereDecls___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +size_t x_4; size_t x_5; lean_object* x_6; +x_4 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_5 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_6 = l_Array_mapMUnsafe_map___at_Lean_Elab_Term_expandWhereDecls___spec__1(x_4, x_5, x_3); +return x_6; +} +} +lean_object* l_Lean_Elab_Term_expandWhereDecls___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_Elab_Term_expandWhereDecls(x_1, x_2, x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_4; +} +} +lean_object* l_Lean_Elab_Term_expandWhereDeclsOpt(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = l_Lean_Syntax_isNone(x_2); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_5 = lean_unsigned_to_nat(0u); +x_6 = l_Lean_Syntax_getArg(x_2, x_5); +x_7 = l_Lean_Elab_Term_expandWhereDecls(x_1, x_6, x_3); +lean_dec(x_6); +return x_7; +} +else +{ +return x_3; +} +} +} +lean_object* l_Lean_Elab_Term_expandWhereDeclsOpt___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_Elab_Term_expandWhereDeclsOpt(x_1, x_2, x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_4; +} +} lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { @@ -17350,16 +17635,6 @@ static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expand _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Syntax_mkApp___closed__1; -x_2 = l_Lean_mkOptionalNode___closed__1; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__4() { -_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_MVarErrorInfo_logError___closed__1; x_3 = lean_alloc_ctor(2, 2, 0); @@ -17368,12 +17643,12 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__5() { +static lean_object* _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__4; +x_2 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -17393,7 +17668,7 @@ x_12 = lean_nat_add(x_7, x_10); x_13 = !lean_is_exclusive(x_6); if (x_13 == 0) { -lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t 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_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; x_14 = lean_ctor_get(x_6, 1); x_15 = lean_ctor_get(x_6, 2); lean_dec(x_15); @@ -17410,391 +17685,307 @@ 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_Array_isEmpty___rarg(x_5); -x_23 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__3; lean_inc(x_21); -x_24 = lean_array_push(x_23, x_21); -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); -if (x_22 == 0) -{ -lean_object* x_109; lean_object* x_110; lean_object* x_111; -x_109 = l___kind_term____x40_Init_Notation___hyg_6289____closed__6; -x_110 = l_Lean_mkAtomFrom(x_1, x_109); -x_111 = lean_array_push(x_5, x_110); -x_27 = x_111; -goto block_108; -} -else -{ -x_27 = x_5; -goto block_108; -} -block_108: -{ -lean_object* x_28; lean_object* x_29; -x_28 = lean_array_push(x_27, x_26); -x_29 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux(x_1, x_2, x_3, x_11, x_28, x_6, x_12); +x_22 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_addDiscr(x_1, x_5, x_21); +x_23 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux(x_1, x_2, x_3, x_11, x_22, x_6, x_12); lean_dec(x_11); if (x_3 == 0) { -uint8_t x_30; -x_30 = !lean_is_exclusive(x_29); -if (x_30 == 0) +uint8_t x_24; +x_24 = !lean_is_exclusive(x_23); +if (x_24 == 0) { -lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_31 = lean_ctor_get(x_29, 0); -x_32 = l_Array_empty___closed__1; -x_33 = lean_array_push(x_32, x_21); -x_34 = l_Lean_nullKind___closed__2; +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_25 = lean_ctor_get(x_23, 0); +x_26 = l_Array_empty___closed__1; +x_27 = lean_array_push(x_26, x_21); +x_28 = l_Lean_nullKind___closed__2; +x_29 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_29, 0, x_28); +lean_ctor_set(x_29, 1, x_27); +x_30 = lean_array_push(x_26, x_29); +x_31 = l_myMacro____x40_Init_Notation___hyg_5739____closed__19; +x_32 = lean_array_push(x_30, x_31); +x_33 = lean_array_push(x_32, x_25); +x_34 = l_myMacro____x40_Init_Notation___hyg_5739____closed__17; x_35 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_35, 0, x_34); lean_ctor_set(x_35, 1, x_33); -x_36 = lean_array_push(x_32, x_35); -x_37 = l_myMacro____x40_Init_Notation___hyg_5739____closed__19; -x_38 = lean_array_push(x_36, x_37); -x_39 = lean_array_push(x_38, x_31); -x_40 = l_myMacro____x40_Init_Notation___hyg_5739____closed__17; -x_41 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_41, 0, x_40); -lean_ctor_set(x_41, 1, x_39); -x_42 = l_myMacro____x40_Init_Notation___hyg_5739____closed__15; -x_43 = lean_array_push(x_42, x_41); -x_44 = l_myMacro____x40_Init_Notation___hyg_5739____closed__13; -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_44); -lean_ctor_set(x_45, 1, x_43); -x_46 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__5; -x_47 = lean_array_push(x_46, x_45); -x_48 = l___private_Lean_Elab_Term_0__Lean_Elab_Term_isExplicit___closed__2; +x_36 = l_myMacro____x40_Init_Notation___hyg_5739____closed__15; +x_37 = lean_array_push(x_36, x_35); +x_38 = l_myMacro____x40_Init_Notation___hyg_5739____closed__13; +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 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__4; +x_41 = lean_array_push(x_40, x_39); +x_42 = l___private_Lean_Elab_Term_0__Lean_Elab_Term_isExplicit___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_23, 0, x_43); +return x_23; +} +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; +x_44 = lean_ctor_get(x_23, 0); +x_45 = lean_ctor_get(x_23, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_23); +x_46 = l_Array_empty___closed__1; +x_47 = lean_array_push(x_46, x_21); +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); -lean_ctor_set(x_29, 0, x_49); -return x_29; -} -else -{ -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_50 = lean_ctor_get(x_29, 0); -x_51 = lean_ctor_get(x_29, 1); -lean_inc(x_51); -lean_inc(x_50); -lean_dec(x_29); -x_52 = l_Array_empty___closed__1; -x_53 = lean_array_push(x_52, x_21); -x_54 = l_Lean_nullKind___closed__2; +x_50 = lean_array_push(x_46, x_49); +x_51 = l_myMacro____x40_Init_Notation___hyg_5739____closed__19; +x_52 = lean_array_push(x_50, x_51); +x_53 = lean_array_push(x_52, x_44); +x_54 = l_myMacro____x40_Init_Notation___hyg_5739____closed__17; 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_52, x_55); -x_57 = l_myMacro____x40_Init_Notation___hyg_5739____closed__19; -x_58 = lean_array_push(x_56, x_57); -x_59 = lean_array_push(x_58, x_50); -x_60 = l_myMacro____x40_Init_Notation___hyg_5739____closed__17; -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 = l_myMacro____x40_Init_Notation___hyg_5739____closed__15; -x_63 = lean_array_push(x_62, x_61); -x_64 = l_myMacro____x40_Init_Notation___hyg_5739____closed__13; -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 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__5; -x_67 = lean_array_push(x_66, x_65); -x_68 = l___private_Lean_Elab_Term_0__Lean_Elab_Term_isExplicit___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_51); -return x_70; +x_56 = l_myMacro____x40_Init_Notation___hyg_5739____closed__15; +x_57 = lean_array_push(x_56, x_55); +x_58 = l_myMacro____x40_Init_Notation___hyg_5739____closed__13; +x_59 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_59, 0, x_58); +lean_ctor_set(x_59, 1, x_57); +x_60 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__4; +x_61 = lean_array_push(x_60, x_59); +x_62 = l___private_Lean_Elab_Term_0__Lean_Elab_Term_isExplicit___closed__2; +x_63 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_63, 0, x_62); +lean_ctor_set(x_63, 1, x_61); +x_64 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_64, 0, x_63); +lean_ctor_set(x_64, 1, x_45); +return x_64; } } else { -uint8_t x_71; -x_71 = !lean_is_exclusive(x_29); -if (x_71 == 0) +uint8_t x_65; +x_65 = !lean_is_exclusive(x_23); +if (x_65 == 0) { -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; -x_72 = lean_ctor_get(x_29, 0); -x_73 = l_Array_empty___closed__1; -x_74 = lean_array_push(x_73, x_21); -x_75 = l_Lean_nullKind___closed__2; -x_76 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_76, 0, x_75); -lean_ctor_set(x_76, 1, x_74); -x_77 = l_myMacro____x40_Init_NotationExtra___hyg_1627____closed__10; -x_78 = lean_array_push(x_77, x_76); -x_79 = l_Lean_Parser_Tactic_intro___closed__4; -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_73, x_80); -x_82 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_11609____closed__5; -x_83 = lean_array_push(x_81, x_82); -x_84 = lean_array_push(x_83, x_72); -x_85 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_85, 0, x_75); -lean_ctor_set(x_85, 1, x_84); -x_86 = lean_array_push(x_73, x_85); -x_87 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_10867____closed__2; +lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; +x_66 = lean_ctor_get(x_23, 0); +x_67 = l_Array_empty___closed__1; +x_68 = lean_array_push(x_67, x_21); +x_69 = l_Lean_nullKind___closed__2; +x_70 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_70, 0, x_69); +lean_ctor_set(x_70, 1, x_68); +x_71 = l_myMacro____x40_Init_NotationExtra___hyg_1627____closed__10; +x_72 = lean_array_push(x_71, x_70); +x_73 = l_Lean_Parser_Tactic_intro___closed__4; +x_74 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_74, 0, x_73); +lean_ctor_set(x_74, 1, x_72); +x_75 = lean_array_push(x_67, x_74); +x_76 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_11609____closed__5; +x_77 = lean_array_push(x_75, x_76); +x_78 = lean_array_push(x_77, x_66); +x_79 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_79, 0, x_69); +lean_ctor_set(x_79, 1, x_78); +x_80 = lean_array_push(x_67, x_79); +x_81 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_10867____closed__2; +x_82 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_82, 0, x_81); +lean_ctor_set(x_82, 1, x_80); +lean_ctor_set(x_23, 0, x_82); +return x_23; +} +else +{ +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_83 = lean_ctor_get(x_23, 0); +x_84 = lean_ctor_get(x_23, 1); +lean_inc(x_84); +lean_inc(x_83); +lean_dec(x_23); +x_85 = l_Array_empty___closed__1; +x_86 = lean_array_push(x_85, x_21); +x_87 = l_Lean_nullKind___closed__2; x_88 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_88, 0, x_87); lean_ctor_set(x_88, 1, x_86); -lean_ctor_set(x_29, 0, x_88); -return x_29; -} -else -{ -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; -x_89 = lean_ctor_get(x_29, 0); -x_90 = lean_ctor_get(x_29, 1); -lean_inc(x_90); -lean_inc(x_89); -lean_dec(x_29); -x_91 = l_Array_empty___closed__1; -x_92 = lean_array_push(x_91, x_21); -x_93 = l_Lean_nullKind___closed__2; -x_94 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_94, 0, x_93); -lean_ctor_set(x_94, 1, x_92); -x_95 = l_myMacro____x40_Init_NotationExtra___hyg_1627____closed__10; -x_96 = lean_array_push(x_95, x_94); -x_97 = l_Lean_Parser_Tactic_intro___closed__4; -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_array_push(x_91, x_98); -x_100 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_11609____closed__5; -x_101 = lean_array_push(x_99, x_100); -x_102 = lean_array_push(x_101, x_89); -x_103 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_103, 0, x_93); -lean_ctor_set(x_103, 1, x_102); -x_104 = lean_array_push(x_91, x_103); -x_105 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_10867____closed__2; -x_106 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_106, 0, x_105); -lean_ctor_set(x_106, 1, x_104); -x_107 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_107, 0, x_106); -lean_ctor_set(x_107, 1, x_90); -return x_107; -} +x_89 = l_myMacro____x40_Init_NotationExtra___hyg_1627____closed__10; +x_90 = lean_array_push(x_89, x_88); +x_91 = l_Lean_Parser_Tactic_intro___closed__4; +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_85, x_92); +x_94 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_11609____closed__5; +x_95 = lean_array_push(x_93, x_94); +x_96 = lean_array_push(x_95, x_83); +x_97 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_97, 0, x_87); +lean_ctor_set(x_97, 1, x_96); +x_98 = lean_array_push(x_85, x_97); +x_99 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_10867____closed__2; +x_100 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_100, 0, x_99); +lean_ctor_set(x_100, 1, x_98); +x_101 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_101, 0, x_100); +lean_ctor_set(x_101, 1, x_84); +return x_101; } } } else { -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; uint8_t x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; -x_112 = lean_ctor_get(x_6, 0); -x_113 = lean_ctor_get(x_6, 1); -x_114 = lean_ctor_get(x_6, 3); -x_115 = lean_ctor_get(x_6, 4); -x_116 = lean_ctor_get(x_6, 5); -lean_inc(x_116); -lean_inc(x_115); -lean_inc(x_114); -lean_inc(x_113); -lean_inc(x_112); +lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; +x_102 = lean_ctor_get(x_6, 0); +x_103 = lean_ctor_get(x_6, 1); +x_104 = lean_ctor_get(x_6, 3); +x_105 = lean_ctor_get(x_6, 4); +x_106 = lean_ctor_get(x_6, 5); +lean_inc(x_106); +lean_inc(x_105); +lean_inc(x_104); +lean_inc(x_103); +lean_inc(x_102); lean_dec(x_6); lean_inc(x_7); +lean_inc(x_103); +x_107 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_107, 0, x_102); +lean_ctor_set(x_107, 1, x_103); +lean_ctor_set(x_107, 2, x_7); +lean_ctor_set(x_107, 3, x_104); +lean_ctor_set(x_107, 4, x_105); +lean_ctor_set(x_107, 5, x_106); +x_108 = l_Lean_Meta_mkArrow___rarg___closed__2; +x_109 = l_Lean_addMacroScope(x_103, x_108, x_7); +x_110 = lean_box(0); +x_111 = l_Lean_instInhabitedSourceInfo___closed__1; +x_112 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__2; +x_113 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_113, 0, x_111); +lean_ctor_set(x_113, 1, x_112); +lean_ctor_set(x_113, 2, x_109); +lean_ctor_set(x_113, 3, x_110); lean_inc(x_113); -x_117 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_117, 0, x_112); -lean_ctor_set(x_117, 1, x_113); -lean_ctor_set(x_117, 2, x_7); -lean_ctor_set(x_117, 3, x_114); -lean_ctor_set(x_117, 4, x_115); -lean_ctor_set(x_117, 5, x_116); -x_118 = l_Lean_Meta_mkArrow___rarg___closed__2; -x_119 = l_Lean_addMacroScope(x_113, x_118, x_7); -x_120 = lean_box(0); -x_121 = l_Lean_instInhabitedSourceInfo___closed__1; -x_122 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__2; -x_123 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_123, 0, x_121); -lean_ctor_set(x_123, 1, x_122); -lean_ctor_set(x_123, 2, x_119); -lean_ctor_set(x_123, 3, x_120); -x_124 = l_Array_isEmpty___rarg(x_5); -x_125 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__3; -lean_inc(x_123); -x_126 = lean_array_push(x_125, x_123); -x_127 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_128 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_128, 0, x_127); -lean_ctor_set(x_128, 1, x_126); -if (x_124 == 0) -{ -lean_object* x_175; lean_object* x_176; lean_object* x_177; -x_175 = l___kind_term____x40_Init_Notation___hyg_6289____closed__6; -x_176 = l_Lean_mkAtomFrom(x_1, x_175); -x_177 = lean_array_push(x_5, x_176); -x_129 = x_177; -goto block_174; -} -else -{ -x_129 = x_5; -goto block_174; -} -block_174: -{ -lean_object* x_130; lean_object* x_131; -x_130 = lean_array_push(x_129, x_128); -x_131 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux(x_1, x_2, x_3, x_11, x_130, x_117, x_12); +x_114 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_addDiscr(x_1, x_5, x_113); +x_115 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux(x_1, x_2, x_3, x_11, x_114, x_107, x_12); lean_dec(x_11); if (x_3 == 0) { -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; -x_132 = lean_ctor_get(x_131, 0); -lean_inc(x_132); -x_133 = lean_ctor_get(x_131, 1); -lean_inc(x_133); -if (lean_is_exclusive(x_131)) { - lean_ctor_release(x_131, 0); - lean_ctor_release(x_131, 1); - x_134 = x_131; +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; +x_116 = lean_ctor_get(x_115, 0); +lean_inc(x_116); +x_117 = lean_ctor_get(x_115, 1); +lean_inc(x_117); +if (lean_is_exclusive(x_115)) { + lean_ctor_release(x_115, 0); + lean_ctor_release(x_115, 1); + x_118 = x_115; } else { - lean_dec_ref(x_131); - x_134 = lean_box(0); + lean_dec_ref(x_115); + x_118 = lean_box(0); } -x_135 = l_Array_empty___closed__1; -x_136 = lean_array_push(x_135, x_123); -x_137 = l_Lean_nullKind___closed__2; -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_135, x_138); -x_140 = l_myMacro____x40_Init_Notation___hyg_5739____closed__19; -x_141 = lean_array_push(x_139, x_140); -x_142 = lean_array_push(x_141, x_132); -x_143 = l_myMacro____x40_Init_Notation___hyg_5739____closed__17; +x_119 = l_Array_empty___closed__1; +x_120 = lean_array_push(x_119, x_113); +x_121 = l_Lean_nullKind___closed__2; +x_122 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_122, 0, x_121); +lean_ctor_set(x_122, 1, x_120); +x_123 = lean_array_push(x_119, x_122); +x_124 = l_myMacro____x40_Init_Notation___hyg_5739____closed__19; +x_125 = lean_array_push(x_123, x_124); +x_126 = lean_array_push(x_125, x_116); +x_127 = l_myMacro____x40_Init_Notation___hyg_5739____closed__17; +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_5739____closed__15; +x_130 = lean_array_push(x_129, x_128); +x_131 = l_myMacro____x40_Init_Notation___hyg_5739____closed__13; +x_132 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_132, 0, x_131); +lean_ctor_set(x_132, 1, x_130); +x_133 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__4; +x_134 = lean_array_push(x_133, x_132); +x_135 = l___private_Lean_Elab_Term_0__Lean_Elab_Term_isExplicit___closed__2; +x_136 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_136, 0, x_135); +lean_ctor_set(x_136, 1, x_134); +if (lean_is_scalar(x_118)) { + x_137 = lean_alloc_ctor(0, 2, 0); +} else { + x_137 = x_118; +} +lean_ctor_set(x_137, 0, x_136); +lean_ctor_set(x_137, 1, x_117); +return x_137; +} +else +{ +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_138 = lean_ctor_get(x_115, 0); +lean_inc(x_138); +x_139 = lean_ctor_get(x_115, 1); +lean_inc(x_139); +if (lean_is_exclusive(x_115)) { + lean_ctor_release(x_115, 0); + lean_ctor_release(x_115, 1); + x_140 = x_115; +} else { + lean_dec_ref(x_115); + x_140 = lean_box(0); +} +x_141 = l_Array_empty___closed__1; +x_142 = lean_array_push(x_141, x_113); +x_143 = l_Lean_nullKind___closed__2; 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_myMacro____x40_Init_Notation___hyg_5739____closed__15; +x_145 = l_myMacro____x40_Init_NotationExtra___hyg_1627____closed__10; x_146 = lean_array_push(x_145, x_144); -x_147 = l_myMacro____x40_Init_Notation___hyg_5739____closed__13; +x_147 = l_Lean_Parser_Tactic_intro___closed__4; 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 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__5; -x_150 = lean_array_push(x_149, x_148); -x_151 = l___private_Lean_Elab_Term_0__Lean_Elab_Term_isExplicit___closed__2; -x_152 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_152, 0, x_151); -lean_ctor_set(x_152, 1, x_150); -if (lean_is_scalar(x_134)) { - x_153 = lean_alloc_ctor(0, 2, 0); +x_149 = lean_array_push(x_141, x_148); +x_150 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_11609____closed__5; +x_151 = lean_array_push(x_149, x_150); +x_152 = lean_array_push(x_151, x_138); +x_153 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_153, 0, x_143); +lean_ctor_set(x_153, 1, x_152); +x_154 = lean_array_push(x_141, x_153); +x_155 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_10867____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); +if (lean_is_scalar(x_140)) { + x_157 = lean_alloc_ctor(0, 2, 0); } else { - x_153 = x_134; -} -lean_ctor_set(x_153, 0, x_152); -lean_ctor_set(x_153, 1, x_133); -return x_153; -} -else -{ -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; -x_154 = lean_ctor_get(x_131, 0); -lean_inc(x_154); -x_155 = lean_ctor_get(x_131, 1); -lean_inc(x_155); -if (lean_is_exclusive(x_131)) { - lean_ctor_release(x_131, 0); - lean_ctor_release(x_131, 1); - x_156 = x_131; -} else { - lean_dec_ref(x_131); - x_156 = lean_box(0); -} -x_157 = l_Array_empty___closed__1; -x_158 = lean_array_push(x_157, x_123); -x_159 = l_Lean_nullKind___closed__2; -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 = l_myMacro____x40_Init_NotationExtra___hyg_1627____closed__10; -x_162 = lean_array_push(x_161, x_160); -x_163 = l_Lean_Parser_Tactic_intro___closed__4; -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_157, x_164); -x_166 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_11609____closed__5; -x_167 = lean_array_push(x_165, x_166); -x_168 = lean_array_push(x_167, x_154); -x_169 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_169, 0, x_159); -lean_ctor_set(x_169, 1, x_168); -x_170 = lean_array_push(x_157, x_169); -x_171 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_10867____closed__2; -x_172 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_172, 0, x_171); -lean_ctor_set(x_172, 1, x_170); -if (lean_is_scalar(x_156)) { - x_173 = lean_alloc_ctor(0, 2, 0); -} else { - x_173 = x_156; -} -lean_ctor_set(x_173, 0, x_172); -lean_ctor_set(x_173, 1, x_155); -return x_173; + x_157 = x_140; } +lean_ctor_set(x_157, 0, x_156); +lean_ctor_set(x_157, 1, x_139); +return x_157; } } } else { -lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; +lean_object* x_158; lean_object* x_159; lean_dec(x_6); -x_178 = l_Lean_Parser_Tactic_match___closed__3; -x_179 = l_Lean_mkAtomFrom(x_1, x_178); -x_180 = l_Lean_nullKind; -x_181 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_181, 0, x_180); -lean_ctor_set(x_181, 1, x_5); -x_182 = l_Lean_Parser_Tactic_changeWith___closed__3; -x_183 = l_Lean_mkAtomFrom(x_1, x_182); -x_184 = l_Lean_Elab_Term_mkExplicitBinder___closed__7; -x_185 = lean_array_push(x_184, x_179); -x_186 = lean_array_push(x_185, x_181); -x_187 = l_Lean_mkOptionalNode___closed__1; -x_188 = lean_array_push(x_186, x_187); -x_189 = lean_array_push(x_188, x_183); -x_190 = lean_array_push(x_189, x_2); -if (x_3 == 0) -{ -lean_object* x_191; lean_object* x_192; lean_object* x_193; -x_191 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -x_192 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_192, 0, x_191); -lean_ctor_set(x_192, 1, x_190); -x_193 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_193, 0, x_192); -lean_ctor_set(x_193, 1, x_7); -return x_193; -} -else -{ -lean_object* x_194; lean_object* x_195; lean_object* x_196; -x_194 = l_Lean_Parser_Tactic_match___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_190); -x_196 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_196, 0, x_195); -lean_ctor_set(x_196, 1, x_7); -return x_196; -} +x_158 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_mkMatch(x_1, x_5, x_2, x_3); +x_159 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_159, 0, x_158); +lean_ctor_set(x_159, 1, x_7); +return x_159; } } } @@ -17853,6 +18044,307 @@ lean_dec(x_1); return x_5; } } +lean_object* l_Lean_Elab_Term_expandMatchAltsWhereDecls_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_Lean_Elab_Term_expandMatchAltsWhereDecls_loop_match__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Term_expandMatchAltsWhereDecls_loop_match__1___rarg___boxed), 3, 0); +return x_2; +} +} +lean_object* l_Lean_Elab_Term_expandMatchAltsWhereDecls_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_Lean_Elab_Term_expandMatchAltsWhereDecls_loop_match__1___rarg(x_1, x_2, x_3); +lean_dec(x_1); +return x_4; +} +} +lean_object* l_Lean_Elab_Term_expandMatchAltsWhereDecls_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) { +_start: +{ +lean_object* x_8; uint8_t x_9; +x_8 = lean_unsigned_to_nat(0u); +x_9 = lean_nat_dec_eq(x_4, x_8); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_10 = lean_unsigned_to_nat(1u); +x_11 = lean_nat_sub(x_4, x_10); +x_12 = lean_nat_add(x_7, x_10); +x_13 = !lean_is_exclusive(x_6); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; +x_14 = lean_ctor_get(x_6, 1); +x_15 = lean_ctor_get(x_6, 2); +lean_dec(x_15); +lean_inc(x_7); +lean_inc(x_14); +lean_ctor_set(x_6, 2, x_7); +x_16 = l_Lean_Meta_mkArrow___rarg___closed__2; +x_17 = l_Lean_addMacroScope(x_14, x_16, x_7); +x_18 = lean_box(0); +x_19 = l_Lean_instInhabitedSourceInfo___closed__1; +x_20 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__2; +x_21 = lean_alloc_ctor(3, 4, 0); +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); +lean_inc(x_21); +x_22 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_addDiscr(x_1, x_5, x_21); +x_23 = l_Lean_Elab_Term_expandMatchAltsWhereDecls_loop(x_1, x_2, x_3, x_11, x_22, x_6, x_12); +lean_dec(x_11); +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; +x_25 = lean_ctor_get(x_23, 0); +x_26 = l_Array_empty___closed__1; +x_27 = lean_array_push(x_26, x_21); +x_28 = l_Lean_nullKind___closed__2; +x_29 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_29, 0, x_28); +lean_ctor_set(x_29, 1, x_27); +x_30 = lean_array_push(x_26, x_29); +x_31 = l_myMacro____x40_Init_Notation___hyg_5739____closed__19; +x_32 = lean_array_push(x_30, x_31); +x_33 = lean_array_push(x_32, x_25); +x_34 = l_myMacro____x40_Init_Notation___hyg_5739____closed__17; +x_35 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_33); +x_36 = l_myMacro____x40_Init_Notation___hyg_5739____closed__15; +x_37 = lean_array_push(x_36, x_35); +x_38 = l_myMacro____x40_Init_Notation___hyg_5739____closed__13; +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 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__4; +x_41 = lean_array_push(x_40, x_39); +x_42 = l___private_Lean_Elab_Term_0__Lean_Elab_Term_isExplicit___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_23, 0, x_43); +return x_23; +} +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; +x_44 = lean_ctor_get(x_23, 0); +x_45 = lean_ctor_get(x_23, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_23); +x_46 = l_Array_empty___closed__1; +x_47 = lean_array_push(x_46, x_21); +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_46, x_49); +x_51 = l_myMacro____x40_Init_Notation___hyg_5739____closed__19; +x_52 = lean_array_push(x_50, x_51); +x_53 = lean_array_push(x_52, x_44); +x_54 = l_myMacro____x40_Init_Notation___hyg_5739____closed__17; +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 = l_myMacro____x40_Init_Notation___hyg_5739____closed__15; +x_57 = lean_array_push(x_56, x_55); +x_58 = l_myMacro____x40_Init_Notation___hyg_5739____closed__13; +x_59 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_59, 0, x_58); +lean_ctor_set(x_59, 1, x_57); +x_60 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__4; +x_61 = lean_array_push(x_60, x_59); +x_62 = l___private_Lean_Elab_Term_0__Lean_Elab_Term_isExplicit___closed__2; +x_63 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_63, 0, x_62); +lean_ctor_set(x_63, 1, x_61); +x_64 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_64, 0, x_63); +lean_ctor_set(x_64, 1, x_45); +return x_64; +} +} +else +{ +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; +x_65 = lean_ctor_get(x_6, 0); +x_66 = lean_ctor_get(x_6, 1); +x_67 = lean_ctor_get(x_6, 3); +x_68 = lean_ctor_get(x_6, 4); +x_69 = lean_ctor_get(x_6, 5); +lean_inc(x_69); +lean_inc(x_68); +lean_inc(x_67); +lean_inc(x_66); +lean_inc(x_65); +lean_dec(x_6); +lean_inc(x_7); +lean_inc(x_66); +x_70 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_70, 0, x_65); +lean_ctor_set(x_70, 1, x_66); +lean_ctor_set(x_70, 2, x_7); +lean_ctor_set(x_70, 3, x_67); +lean_ctor_set(x_70, 4, x_68); +lean_ctor_set(x_70, 5, x_69); +x_71 = l_Lean_Meta_mkArrow___rarg___closed__2; +x_72 = l_Lean_addMacroScope(x_66, x_71, x_7); +x_73 = lean_box(0); +x_74 = l_Lean_instInhabitedSourceInfo___closed__1; +x_75 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__2; +x_76 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_76, 0, x_74); +lean_ctor_set(x_76, 1, x_75); +lean_ctor_set(x_76, 2, x_72); +lean_ctor_set(x_76, 3, x_73); +lean_inc(x_76); +x_77 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_addDiscr(x_1, x_5, x_76); +x_78 = l_Lean_Elab_Term_expandMatchAltsWhereDecls_loop(x_1, x_2, x_3, x_11, x_77, x_70, x_12); +lean_dec(x_11); +x_79 = lean_ctor_get(x_78, 0); +lean_inc(x_79); +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_78); + x_81 = lean_box(0); +} +x_82 = l_Array_empty___closed__1; +x_83 = lean_array_push(x_82, x_76); +x_84 = l_Lean_nullKind___closed__2; +x_85 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_85, 0, x_84); +lean_ctor_set(x_85, 1, x_83); +x_86 = lean_array_push(x_82, x_85); +x_87 = l_myMacro____x40_Init_Notation___hyg_5739____closed__19; +x_88 = lean_array_push(x_86, x_87); +x_89 = lean_array_push(x_88, x_79); +x_90 = l_myMacro____x40_Init_Notation___hyg_5739____closed__17; +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_5739____closed__15; +x_93 = lean_array_push(x_92, x_91); +x_94 = l_myMacro____x40_Init_Notation___hyg_5739____closed__13; +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___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__4; +x_97 = lean_array_push(x_96, x_95); +x_98 = l___private_Lean_Elab_Term_0__Lean_Elab_Term_isExplicit___closed__2; +x_99 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_99, 0, x_98); +lean_ctor_set(x_99, 1, x_97); +if (lean_is_scalar(x_81)) { + x_100 = lean_alloc_ctor(0, 2, 0); +} else { + x_100 = x_81; +} +lean_ctor_set(x_100, 0, x_99); +lean_ctor_set(x_100, 1, x_80); +return x_100; +} +} +else +{ +uint8_t x_101; lean_object* x_102; uint8_t x_103; +lean_dec(x_6); +x_101 = 0; +x_102 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_mkMatch(x_1, x_5, x_2, x_101); +x_103 = l_Lean_Syntax_isNone(x_3); +if (x_103 == 0) +{ +lean_object* x_104; lean_object* x_105; +x_104 = l_Lean_Elab_Term_expandWhereDeclsOpt(x_1, x_3, x_102); +x_105 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_105, 0, x_104); +lean_ctor_set(x_105, 1, x_7); +return x_105; +} +else +{ +lean_object* x_106; +x_106 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_106, 0, x_102); +lean_ctor_set(x_106, 1, x_7); +return x_106; +} +} +} +} +lean_object* l_Lean_Elab_Term_expandMatchAltsWhereDecls_loop___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_Lean_Elab_Term_expandMatchAltsWhereDecls_loop(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_8; +} +} +lean_object* l_Lean_Elab_Term_expandMatchAltsWhereDecls(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_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; +x_5 = lean_unsigned_to_nat(0u); +x_6 = l_Lean_Syntax_getArg(x_2, x_5); +x_7 = lean_unsigned_to_nat(1u); +x_8 = l_Lean_Syntax_getArg(x_2, x_7); +x_9 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getMatchAltNumPatterns(x_6); +x_10 = l_Array_empty___closed__1; +x_11 = l_Lean_Elab_Term_expandMatchAltsWhereDecls_loop(x_1, x_6, x_8, x_9, x_10, x_3, x_4); +lean_dec(x_9); +lean_dec(x_8); +return x_11; +} +} +lean_object* l_Lean_Elab_Term_expandMatchAltsWhereDecls___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_Elab_Term_expandMatchAltsWhereDecls(x_1, x_2, x_3, x_4); +lean_dec(x_2); +lean_dec(x_1); +return x_5; +} +} lean_object* l_Lean_Elab_Term_elabFun_match__1___rarg(lean_object* x_1, lean_object* x_2) { _start: { @@ -19940,7 +20432,7 @@ lean_ctor_set(x_20, 1, x_19); lean_ctor_set(x_20, 2, x_16); lean_ctor_set(x_20, 3, x_17); x_21 = l_Array_isEmpty___rarg(x_4); -x_22 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__3; +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_Lean_Elab_Term_expandFunBinders_loop___closed__4; @@ -20064,7 +20556,7 @@ lean_ctor_set(x_77, 1, x_76); lean_ctor_set(x_77, 2, x_73); lean_ctor_set(x_77, 3, x_74); x_78 = l_Array_isEmpty___rarg(x_4); -x_79 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__3; +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_Lean_Elab_Term_expandFunBinders_loop___closed__4; @@ -20392,7 +20884,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(510u); +x_3 = lean_unsigned_to_nat(591u); 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); @@ -21162,7 +21654,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_4621_(lean_object* x_1) { +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_4914_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -21353,6 +21845,10 @@ l_Lean_Elab_Term_FunBinders_State_fvars___default = _init_l_Lean_Elab_Term_FunBi 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(); lean_mark_persistent(l_Lean_Elab_Term_FunBinders_State_expectedType_x3f___default); +l___private_Lean_Elab_Binders_0__Lean_Elab_Term_addDiscr___closed__1 = _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_addDiscr___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Binders_0__Lean_Elab_Term_addDiscr___closed__1); +l_Lean_Elab_Term_mkLetRec___closed__1 = _init_l_Lean_Elab_Term_mkLetRec___closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_mkLetRec___closed__1); l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__1 = _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__1(); lean_mark_persistent(l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__1); l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__2 = _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__2(); @@ -21361,8 +21857,6 @@ l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___cl lean_mark_persistent(l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__3); l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__4 = _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__4(); lean_mark_persistent(l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__4); -l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__5 = _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__5(); -lean_mark_persistent(l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__5); l___regBuiltin_Lean_Elab_Term_elabFun___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_elabFun___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabFun___closed__1); res = l___regBuiltin_Lean_Elab_Term_elabFun(lean_io_mk_world()); @@ -21419,7 +21913,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_4621_(lean_io_mk_world()); +res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_4914_(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/Declaration.c b/stage0/stdlib/Lean/Elab/Declaration.c index 39fc046bd7..80fc034211 100644 --- a/stage0/stdlib/Lean/Elab/Declaration.c +++ b/stage0/stdlib/Lean/Elab/Declaration.c @@ -7036,25 +7036,25 @@ x_8 = l_Lean_Syntax_getArg(x_2, x_7); x_9 = l_Lean_Syntax_isNone(x_6); if (x_1 == 0) { -lean_object* x_192; -x_192 = l_Lean_initFn____x40_Lean_Compiler_InitAttr___hyg_507____closed__2; -x_10 = x_192; -goto block_191; +lean_object* x_194; +x_194 = l_Lean_initFn____x40_Lean_Compiler_InitAttr___hyg_507____closed__2; +x_10 = x_194; +goto block_193; } else { -lean_object* x_193; -x_193 = l_Lean_initFn____x40_Lean_Compiler_InitAttr___hyg_524____closed__2; -x_10 = x_193; -goto block_191; +lean_object* x_195; +x_195 = l_Lean_initFn____x40_Lean_Compiler_InitAttr___hyg_524____closed__2; +x_10 = x_195; +goto block_193; } -block_191: +block_193: { lean_object* x_11; x_11 = l_Lean_mkIdentFrom(x_2, x_10); if (x_9 == 0) { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_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_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; x_12 = lean_unsigned_to_nat(0u); x_13 = l_Lean_Syntax_getArg(x_6, x_12); x_14 = l_Lean_Syntax_getArg(x_6, x_5); @@ -7135,224 +7135,226 @@ lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_56); x_59 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_11379____closed__7; x_60 = lean_array_push(x_59, x_58); -x_61 = l_Lean_Elab_Command_mkDefViewOfConstant___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 = lean_array_push(x_54, x_62); -x_64 = l_Lean_Elab_Command_isDefLike___closed__4; -x_65 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_65, 0, x_64); -lean_ctor_set(x_65, 1, x_63); -x_66 = l_Lean_Elab_Command_expandInitCmd___closed__9; -x_67 = lean_array_push(x_66, x_65); -x_68 = l_Lean_Elab_Command_expandDeclNamespace_x3f___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_array_push(x_24, x_69); -x_71 = lean_array_push(x_24, x_11); -x_72 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_72, 0, x_39); -lean_ctor_set(x_72, 1, x_25); -x_73 = lean_array_push(x_71, x_72); -x_74 = l_Lean_Elab_Command_expandInitCmd___closed__29; -x_75 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_75, 0, x_74); -lean_ctor_set(x_75, 1, x_73); -x_76 = lean_array_push(x_24, x_75); -x_77 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_77, 0, x_39); -lean_ctor_set(x_77, 1, x_76); -x_78 = l_Lean_Elab_Command_expandInitCmd___closed__27; -x_79 = lean_array_push(x_78, x_77); -x_80 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__10; -x_81 = lean_array_push(x_79, x_80); -x_82 = l_Lean_Elab_Command_expandInitCmd___closed__25; -x_83 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_83, 0, x_82); -lean_ctor_set(x_83, 1, x_81); -x_84 = lean_array_push(x_24, x_83); -x_85 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_85, 0, x_39); -lean_ctor_set(x_85, 1, x_84); -x_86 = lean_array_push(x_50, x_85); -x_87 = lean_array_push(x_86, x_26); +x_61 = lean_array_push(x_60, x_26); +x_62 = l_Lean_Elab_Command_mkDefViewOfConstant___closed__6; +x_63 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_63, 0, x_62); +lean_ctor_set(x_63, 1, x_61); +x_64 = lean_array_push(x_54, x_63); +x_65 = l_Lean_Elab_Command_isDefLike___closed__4; +x_66 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_66, 0, x_65); +lean_ctor_set(x_66, 1, x_64); +x_67 = l_Lean_Elab_Command_expandInitCmd___closed__9; +x_68 = lean_array_push(x_67, x_66); +x_69 = l_Lean_Elab_Command_expandDeclNamespace_x3f___closed__2; +x_70 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_70, 0, x_69); +lean_ctor_set(x_70, 1, x_68); +x_71 = lean_array_push(x_24, x_70); +x_72 = lean_array_push(x_24, x_11); +x_73 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_73, 0, x_39); +lean_ctor_set(x_73, 1, x_25); +x_74 = lean_array_push(x_72, x_73); +x_75 = l_Lean_Elab_Command_expandInitCmd___closed__29; +x_76 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_76, 0, x_75); +lean_ctor_set(x_76, 1, x_74); +x_77 = lean_array_push(x_24, x_76); +x_78 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_78, 0, x_39); +lean_ctor_set(x_78, 1, x_77); +x_79 = l_Lean_Elab_Command_expandInitCmd___closed__27; +x_80 = lean_array_push(x_79, x_78); +x_81 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__10; +x_82 = lean_array_push(x_80, x_81); +x_83 = l_Lean_Elab_Command_expandInitCmd___closed__25; +x_84 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_84, 0, x_83); +lean_ctor_set(x_84, 1, x_82); +x_85 = lean_array_push(x_24, x_84); +x_86 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_86, 0, x_39); +lean_ctor_set(x_86, 1, x_85); +x_87 = lean_array_push(x_50, x_86); x_88 = lean_array_push(x_87, x_26); x_89 = lean_array_push(x_88, x_26); x_90 = lean_array_push(x_89, x_26); -x_91 = l_Lean_Elab_Command_expandInitCmd___closed__2; -x_92 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_92, 0, x_91); -lean_ctor_set(x_92, 1, x_90); -x_93 = lean_array_push(x_24, x_92); -x_94 = l_Lean_Elab_Command_expandInitCmd___closed__31; -x_95 = lean_array_push(x_94, x_13); -x_96 = lean_array_push(x_44, x_15); -x_97 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_97, 0, x_46); -lean_ctor_set(x_97, 1, x_96); -x_98 = lean_array_push(x_50, x_97); -x_99 = l_Lean_Elab_Command_expandInitCmd___closed__33; -x_100 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_100, 0, x_99); -lean_ctor_set(x_100, 1, x_98); -x_101 = lean_array_push(x_95, x_100); -x_102 = lean_array_push(x_101, x_26); -x_103 = l_Lean_Elab_Command_isDefLike___closed__8; -x_104 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_104, 0, x_103); -lean_ctor_set(x_104, 1, x_102); -x_105 = lean_array_push(x_93, x_104); -x_106 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_106, 0, x_68); -lean_ctor_set(x_106, 1, x_105); -x_107 = lean_array_push(x_70, x_106); -x_108 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_108, 0, x_39); -lean_ctor_set(x_108, 1, x_107); -x_109 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_109, 0, x_108); -lean_ctor_set(x_109, 1, x_4); -return x_109; +x_91 = lean_array_push(x_90, x_26); +x_92 = l_Lean_Elab_Command_expandInitCmd___closed__2; +x_93 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_93, 0, x_92); +lean_ctor_set(x_93, 1, x_91); +x_94 = lean_array_push(x_24, x_93); +x_95 = l_Lean_Elab_Command_expandInitCmd___closed__31; +x_96 = lean_array_push(x_95, x_13); +x_97 = lean_array_push(x_44, x_15); +x_98 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_98, 0, x_46); +lean_ctor_set(x_98, 1, x_97); +x_99 = lean_array_push(x_50, x_98); +x_100 = l_Lean_Elab_Command_expandInitCmd___closed__33; +x_101 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_101, 0, x_100); +lean_ctor_set(x_101, 1, x_99); +x_102 = lean_array_push(x_96, x_101); +x_103 = lean_array_push(x_102, x_26); +x_104 = l_Lean_Elab_Command_isDefLike___closed__8; +x_105 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_105, 0, x_104); +lean_ctor_set(x_105, 1, x_103); +x_106 = lean_array_push(x_94, x_105); +x_107 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_107, 0, x_69); +lean_ctor_set(x_107, 1, x_106); +x_108 = lean_array_push(x_71, x_107); +x_109 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_109, 0, x_39); +lean_ctor_set(x_109, 1, x_108); +x_110 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_110, 0, x_109); +lean_ctor_set(x_110, 1, x_4); +return x_110; } 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; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; +lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_dec(x_6); -x_110 = lean_ctor_get(x_3, 2); -lean_inc(x_110); -x_111 = lean_ctor_get(x_3, 1); +x_111 = lean_ctor_get(x_3, 2); lean_inc(x_111); +x_112 = lean_ctor_get(x_3, 1); +lean_inc(x_112); lean_dec(x_3); -x_112 = l_Array_empty___closed__1; -x_113 = lean_array_push(x_112, x_11); -x_114 = l_myMacro____x40_Init_Notation___hyg_5739____closed__20; -x_115 = lean_array_push(x_113, x_114); -x_116 = l_Lean_Elab_Command_expandInitCmd___closed__29; -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_112, x_117); -x_119 = l_Lean_nullKind___closed__2; -x_120 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_120, 0, x_119); -lean_ctor_set(x_120, 1, x_118); -x_121 = l_Lean_Elab_Command_expandInitCmd___closed__27; -x_122 = lean_array_push(x_121, x_120); -x_123 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__10; -x_124 = lean_array_push(x_122, x_123); -x_125 = l_Lean_Elab_Command_expandInitCmd___closed__25; -x_126 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_126, 0, x_125); -lean_ctor_set(x_126, 1, x_124); -x_127 = lean_array_push(x_112, x_126); -x_128 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_128, 0, x_119); -lean_ctor_set(x_128, 1, x_127); -x_129 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_130 = lean_array_push(x_129, x_128); -x_131 = lean_array_push(x_130, x_114); -x_132 = lean_array_push(x_131, x_114); -x_133 = lean_array_push(x_132, x_114); -x_134 = lean_array_push(x_133, x_114); -x_135 = l_Lean_Elab_Command_expandInitCmd___closed__2; -x_136 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_136, 0, x_135); -lean_ctor_set(x_136, 1, x_134); -x_137 = lean_array_push(x_112, x_136); -x_138 = l_Lean_Elab_Command_expandInitCmd___closed__15; -lean_inc(x_110); +x_113 = l_Array_empty___closed__1; +x_114 = lean_array_push(x_113, x_11); +x_115 = l_myMacro____x40_Init_Notation___hyg_5739____closed__20; +x_116 = lean_array_push(x_114, x_115); +x_117 = l_Lean_Elab_Command_expandInitCmd___closed__29; +x_118 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_118, 0, x_117); +lean_ctor_set(x_118, 1, x_116); +x_119 = lean_array_push(x_113, x_118); +x_120 = l_Lean_nullKind___closed__2; +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 = l_Lean_Elab_Command_expandInitCmd___closed__27; +x_123 = lean_array_push(x_122, x_121); +x_124 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__10; +x_125 = lean_array_push(x_123, x_124); +x_126 = l_Lean_Elab_Command_expandInitCmd___closed__25; +x_127 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_127, 0, x_126); +lean_ctor_set(x_127, 1, x_125); +x_128 = lean_array_push(x_113, x_127); +x_129 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_129, 0, x_120); +lean_ctor_set(x_129, 1, x_128); +x_130 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_131 = lean_array_push(x_130, x_129); +x_132 = lean_array_push(x_131, x_115); +x_133 = lean_array_push(x_132, x_115); +x_134 = lean_array_push(x_133, x_115); +x_135 = lean_array_push(x_134, x_115); +x_136 = l_Lean_Elab_Command_expandInitCmd___closed__2; +x_137 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_137, 0, x_136); +lean_ctor_set(x_137, 1, x_135); +x_138 = lean_array_push(x_113, x_137); +x_139 = l_Lean_Elab_Command_expandInitCmd___closed__15; lean_inc(x_111); -x_139 = l_Lean_addMacroScope(x_111, x_138, x_110); -x_140 = lean_box(0); -x_141 = l_Lean_instInhabitedSourceInfo___closed__1; -x_142 = l_Lean_Elab_Command_expandInitCmd___closed__14; -x_143 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_143, 0, x_141); -lean_ctor_set(x_143, 1, x_142); -lean_ctor_set(x_143, 2, x_139); -lean_ctor_set(x_143, 3, x_140); -x_144 = lean_array_push(x_112, x_143); -x_145 = lean_array_push(x_144, x_114); -x_146 = l_Lean_Elab_Command_mkDefViewOfInstance___closed__3; -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 = l_Lean_Elab_Command_expandInitCmd___closed__11; -x_149 = lean_array_push(x_148, x_147); -x_150 = l_myMacro____x40_Init_System_IO___hyg_2513____closed__4; -lean_inc(x_110); +lean_inc(x_112); +x_140 = l_Lean_addMacroScope(x_112, x_139, x_111); +x_141 = lean_box(0); +x_142 = l_Lean_instInhabitedSourceInfo___closed__1; +x_143 = l_Lean_Elab_Command_expandInitCmd___closed__14; +x_144 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_144, 0, x_142); +lean_ctor_set(x_144, 1, x_143); +lean_ctor_set(x_144, 2, x_140); +lean_ctor_set(x_144, 3, x_141); +x_145 = lean_array_push(x_113, x_144); +x_146 = lean_array_push(x_145, x_115); +x_147 = l_Lean_Elab_Command_mkDefViewOfInstance___closed__3; +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 = l_Lean_Elab_Command_expandInitCmd___closed__11; +x_150 = lean_array_push(x_149, x_148); +x_151 = l_myMacro____x40_Init_System_IO___hyg_2513____closed__4; lean_inc(x_111); -x_151 = l_Lean_addMacroScope(x_111, x_150, x_110); -x_152 = l_myMacro____x40_Init_System_IO___hyg_2513____closed__10; -x_153 = l_Lean_Elab_Command_expandInitCmd___closed__19; -x_154 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_154, 0, x_141); -lean_ctor_set(x_154, 1, x_152); -lean_ctor_set(x_154, 2, x_151); -lean_ctor_set(x_154, 3, x_153); -x_155 = lean_array_push(x_112, x_154); -x_156 = l_myMacro____x40_Init_System_IO___hyg_2513____closed__16; -x_157 = l_Lean_addMacroScope(x_111, x_156, x_110); -x_158 = l_myMacro____x40_Init_System_IO___hyg_2513____closed__15; -x_159 = l_myMacro____x40_Init_System_IO___hyg_2513____closed__18; -x_160 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_160, 0, x_141); -lean_ctor_set(x_160, 1, x_158); -lean_ctor_set(x_160, 2, x_157); -lean_ctor_set(x_160, 3, x_159); -x_161 = lean_array_push(x_112, x_160); -x_162 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_162, 0, x_119); -lean_ctor_set(x_162, 1, x_161); -x_163 = lean_array_push(x_155, x_162); -x_164 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_165 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_165, 0, x_164); -lean_ctor_set(x_165, 1, x_163); -x_166 = l_myMacro____x40_Init_Notation___hyg_8168____closed__11; -x_167 = lean_array_push(x_166, x_165); -x_168 = l_Lean_expandExplicitBindersAux_loop___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_112, x_169); -x_171 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_171, 0, x_119); -lean_ctor_set(x_171, 1, x_170); -x_172 = lean_array_push(x_129, x_171); -x_173 = l_Lean_Elab_Command_expandInitCmd___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_149, x_174); -x_176 = l_Lean_Elab_Command_expandInitCmd___closed__23; -x_177 = lean_array_push(x_176, x_8); -x_178 = l_Lean_Elab_Command_expandInitCmd___closed__21; -x_179 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_179, 0, x_178); -lean_ctor_set(x_179, 1, x_177); -x_180 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_11379____closed__7; -x_181 = lean_array_push(x_180, x_179); -x_182 = l_Lean_Elab_Command_mkDefViewOfConstant___closed__6; -x_183 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_183, 0, x_182); -lean_ctor_set(x_183, 1, x_181); -x_184 = lean_array_push(x_175, x_183); -x_185 = l_Lean_Elab_Command_isDefLike___closed__4; -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_137, x_186); -x_188 = l_Lean_Elab_Command_expandDeclNamespace_x3f___closed__2; -x_189 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_189, 0, x_188); -lean_ctor_set(x_189, 1, x_187); -x_190 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_190, 0, x_189); -lean_ctor_set(x_190, 1, x_4); -return x_190; +lean_inc(x_112); +x_152 = l_Lean_addMacroScope(x_112, x_151, x_111); +x_153 = l_myMacro____x40_Init_System_IO___hyg_2513____closed__10; +x_154 = l_Lean_Elab_Command_expandInitCmd___closed__19; +x_155 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_155, 0, x_142); +lean_ctor_set(x_155, 1, x_153); +lean_ctor_set(x_155, 2, x_152); +lean_ctor_set(x_155, 3, x_154); +x_156 = lean_array_push(x_113, x_155); +x_157 = l_myMacro____x40_Init_System_IO___hyg_2513____closed__16; +x_158 = l_Lean_addMacroScope(x_112, x_157, x_111); +x_159 = l_myMacro____x40_Init_System_IO___hyg_2513____closed__15; +x_160 = l_myMacro____x40_Init_System_IO___hyg_2513____closed__18; +x_161 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_161, 0, x_142); +lean_ctor_set(x_161, 1, x_159); +lean_ctor_set(x_161, 2, x_158); +lean_ctor_set(x_161, 3, x_160); +x_162 = lean_array_push(x_113, x_161); +x_163 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_163, 0, x_120); +lean_ctor_set(x_163, 1, x_162); +x_164 = lean_array_push(x_156, 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 = l_myMacro____x40_Init_Notation___hyg_8168____closed__11; +x_168 = lean_array_push(x_167, x_166); +x_169 = l_Lean_expandExplicitBindersAux_loop___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); +x_171 = lean_array_push(x_113, x_170); +x_172 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_172, 0, x_120); +lean_ctor_set(x_172, 1, x_171); +x_173 = lean_array_push(x_130, x_172); +x_174 = l_Lean_Elab_Command_expandInitCmd___closed__17; +x_175 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_175, 0, x_174); +lean_ctor_set(x_175, 1, x_173); +x_176 = lean_array_push(x_150, x_175); +x_177 = l_Lean_Elab_Command_expandInitCmd___closed__23; +x_178 = lean_array_push(x_177, x_8); +x_179 = l_Lean_Elab_Command_expandInitCmd___closed__21; +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 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_11379____closed__7; +x_182 = lean_array_push(x_181, x_180); +x_183 = lean_array_push(x_182, x_115); +x_184 = l_Lean_Elab_Command_mkDefViewOfConstant___closed__6; +x_185 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_185, 0, x_184); +lean_ctor_set(x_185, 1, x_183); +x_186 = lean_array_push(x_176, x_185); +x_187 = l_Lean_Elab_Command_isDefLike___closed__4; +x_188 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_188, 0, x_187); +lean_ctor_set(x_188, 1, x_186); +x_189 = lean_array_push(x_138, x_188); +x_190 = l_Lean_Elab_Command_expandDeclNamespace_x3f___closed__2; +x_191 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_191, 0, x_190); +lean_ctor_set(x_191, 1, x_189); +x_192 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_192, 0, x_191); +lean_ctor_set(x_192, 1, x_4); +return x_192; } } } diff --git a/stage0/stdlib/Lean/Elab/Do.c b/stage0/stdlib/Lean/Elab/Do.c index 8c63c80bf8..4b0a84966c 100644 --- a/stage0/stdlib/Lean/Elab/Do.c +++ b/stage0/stdlib/Lean/Elab/Do.c @@ -128,7 +128,6 @@ 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; -extern lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__3; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(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_doTryToCode___lambda__5___closed__2; uint8_t l_Array_anyMUnsafe_any___at___private_Lean_Elab_Do_0__Lean_Elab_Term_hasLiftMethod___spec__1(lean_object*, size_t, size_t); @@ -271,7 +270,6 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_8168____closed__17; lean_object* l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__3___closed__5; lean_object* l_Std_RBNode_fold___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_union___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_reassignToTermCore___closed__7; -lean_object* l_Lean_Elab_Term_Do_ToTerm_declToTermCore___closed__8; lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_Do_CodeBlocl_toMessageData_loop___spec__2___closed__1; lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__10; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doForToCode___closed__12; @@ -531,6 +529,7 @@ lean_object* l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTermCore(lean_object*, l lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_Do_getDoLetRecVars___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_getDoLetArrowVars___closed__3; extern lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__41; +extern lean_object* l_Lean_Elab_Term_mkLetRec___closed__1; lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_Do_eraseVars___spec__1(lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_breakToTermCore___closed__12; lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkTuple___spec__1___closed__8; @@ -551,7 +550,6 @@ lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_checkLetArrowRHS___closed__4; lean_object* l_Lean_Elab_Term_Do_ToTerm_toTerm(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getId(lean_object*); lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_liftMethodDelimiter___closed__5; -extern lean_object* l_Lean_Parser_Tactic_letrec___closed__1; lean_object* l_Lean_Elab_Term_Do_CodeBlocl_toMessageData_loop___closed__18; lean_object* l_Lean_Elab_Term_Do_CodeBlocl_toMessageData_loop___closed__15; lean_object* l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__4; @@ -724,6 +722,7 @@ lean_object* l_Lean_Elab_Term_Do_pullExitPointsAux(lean_object*, lean_object*, l lean_object* l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__25; 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*); lean_object* l_Lean_Elab_Term_Do_mkAuxDeclFor___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_addDiscr___closed__1; lean_object* l_Lean_Elab_Term_Do_mkReassignCore___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_mkAtomFrom(lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___spec__6(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -26336,16 +26335,6 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Do_ToTerm_declToTermCore___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_letrec___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} lean_object* l_Lean_Elab_Term_Do_ToTerm_declToTermCore(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { @@ -26399,7 +26388,7 @@ lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean lean_dec(x_4); x_22 = l_Lean_Syntax_getArgs(x_1); lean_dec(x_1); -x_23 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__3; +x_23 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_addDiscr___closed__1; x_24 = lean_array_push(x_23, x_2); x_25 = l_Array_append___rarg(x_22, x_24); lean_dec(x_24); @@ -26569,7 +26558,7 @@ x_101 = lean_array_push(x_100, x_98); x_102 = l_Lean_mkOptionalNode___closed__1; x_103 = lean_array_push(x_101, x_102); x_104 = lean_array_push(x_103, x_2); -x_105 = l_Lean_Elab_Term_Do_ToTerm_declToTermCore___closed__8; +x_105 = l_Lean_Elab_Term_mkLetRec___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); @@ -26632,7 +26621,7 @@ lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_dec(x_113); x_122 = l_Lean_Syntax_getArgs(x_1); lean_dec(x_1); -x_123 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__3; +x_123 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_addDiscr___closed__1; x_124 = lean_array_push(x_123, x_2); x_125 = l_Array_append___rarg(x_122, x_124); lean_dec(x_124); @@ -26802,7 +26791,7 @@ x_201 = lean_array_push(x_200, x_198); x_202 = l_Lean_mkOptionalNode___closed__1; x_203 = lean_array_push(x_201, x_202); x_204 = lean_array_push(x_203, x_2); -x_205 = l_Lean_Elab_Term_Do_ToTerm_declToTermCore___closed__8; +x_205 = l_Lean_Elab_Term_mkLetRec___closed__1; x_206 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_206, 0, x_205); lean_ctor_set(x_206, 1, x_204); @@ -49435,8 +49424,6 @@ l_Lean_Elab_Term_Do_ToTerm_declToTermCore___closed__6 = _init_l_Lean_Elab_Term_D lean_mark_persistent(l_Lean_Elab_Term_Do_ToTerm_declToTermCore___closed__6); l_Lean_Elab_Term_Do_ToTerm_declToTermCore___closed__7 = _init_l_Lean_Elab_Term_Do_ToTerm_declToTermCore___closed__7(); lean_mark_persistent(l_Lean_Elab_Term_Do_ToTerm_declToTermCore___closed__7); -l_Lean_Elab_Term_Do_ToTerm_declToTermCore___closed__8 = _init_l_Lean_Elab_Term_Do_ToTerm_declToTermCore___closed__8(); -lean_mark_persistent(l_Lean_Elab_Term_Do_ToTerm_declToTermCore___closed__8); l_Lean_Elab_Term_Do_ToTerm_reassignToTermCore___closed__1 = _init_l_Lean_Elab_Term_Do_ToTerm_reassignToTermCore___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_Do_ToTerm_reassignToTermCore___closed__1); l_Lean_Elab_Term_Do_ToTerm_reassignToTermCore___closed__2 = _init_l_Lean_Elab_Term_Do_ToTerm_reassignToTermCore___closed__2(); diff --git a/stage0/stdlib/Lean/Elab/LetRec.c b/stage0/stdlib/Lean/Elab/LetRec.c index 79ee3f3f6a..5d4084c318 100644 --- a/stage0/stdlib/Lean/Elab/LetRec.c +++ b/stage0/stdlib/Lean/Elab/LetRec.c @@ -97,9 +97,9 @@ lean_object* l_Lean_Meta_mkFreshExprMVar___at___private_Lean_Elab_LetRec_0__Lean 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_Lean_Meta_mkLambdaFVars___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabImplicitLambdaAux___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_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___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*); -extern lean_object* l_Lean_Parser_Tactic_letrec___closed__1; 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; @@ -119,7 +119,6 @@ lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_T size_t lean_usize_of_nat(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___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_38____closed__6; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__9___lambda__3___closed__3; 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*); @@ -173,7 +172,6 @@ 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_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___regBuiltin_Lean_Elab_Term_elabLetRec___closed__2; lean_object* l_Lean_throwError___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); 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*); @@ -3013,16 +3011,6 @@ return x_10; static lean_object* _init_l___regBuiltin_Lean_Elab_Term_elabLetRec___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_letrec___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_elabLetRec___closed__2() { -_start: -{ lean_object* x_1; x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_elabLetRec___boxed), 9, 0); return x_1; @@ -3033,8 +3021,8 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Term_termElabAttribute; -x_3 = l___regBuiltin_Lean_Elab_Term_elabLetRec___closed__1; -x_4 = l___regBuiltin_Lean_Elab_Term_elabLetRec___closed__2; +x_3 = l_Lean_Elab_Term_mkLetRec___closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_elabLetRec___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } @@ -3082,8 +3070,6 @@ l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues___boxed__con lean_mark_persistent(l___private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues___boxed__const__1); l___regBuiltin_Lean_Elab_Term_elabLetRec___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_elabLetRec___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabLetRec___closed__1); -l___regBuiltin_Lean_Elab_Term_elabLetRec___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_elabLetRec___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabLetRec___closed__2); res = l___regBuiltin_Lean_Elab_Term_elabLetRec(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); diff --git a/stage0/stdlib/Lean/Elab/Match.c b/stage0/stdlib/Lean/Elab/Match.c index d164e02a98..7c91206376 100644 --- a/stage0/stdlib/Lean/Elab/Match.c +++ b/stage0/stdlib/Lean/Elab/Match.c @@ -107,7 +107,6 @@ lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_withPatternVars_loop_ lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_CtorApp_processExplicitArg___spec__1(size_t, size_t, lean_object*); lean_object* l_Lean_Elab_Term_elabMatch_match__4(lean_object*); lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_throwCtorExpected___rarg___closed__1; -extern lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__3; lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_throwCtorExpected___rarg___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_Match_0__Lean_Elab_Term_elabDiscrsWitMatchType___spec__1___lambda__1___closed__5; lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_CollectPatternVars_nameToPattern___closed__15; @@ -276,6 +275,7 @@ lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_withPatternVars___rar lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_waitExpectedTypeAndDiscrs_match__1(lean_object*); lean_object* l_List_map___at_Lean_Elab_Term_reportMatcherResultErrors___spec__2(lean_object*); lean_object* l_Lean_Elab_Term_mkMatchAltView___boxed(lean_object*, lean_object*); +extern lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__4; lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_getDiscrs(lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_expandMacrosInPatterns___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_synthesizeUsingDefault(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -394,7 +394,6 @@ lean_object* l_Nat_repr(lean_object*); 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*); uint8_t l_Lean_LocalDecl_binderInfo(lean_object*); lean_object* l_Lean_Elab_Term_expandMacrosInPatterns(lean_object*, lean_object*, lean_object*); -extern lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__5; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Match_0__Lean_Elab_Term_withPatternVars_loop___spec__2(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabNoMatch___closed__2; lean_object* lean_st_mk_ref(lean_object*, lean_object*); @@ -540,6 +539,7 @@ lean_object* l_Lean_Elab_Term_elabMatch___closed__2; lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_tryPostponeIfDiscrTypeIsMVar___spec__1___closed__1; extern lean_object* l_Lean_Elab_Term_termElabAttribute; 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*); +extern lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_addDiscr___closed__1; lean_object* l_Lean_Elab_Term_instToStringPatternVar(lean_object*); lean_object* l_Lean_mkAtomFrom(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_waitExpectedType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -5559,7 +5559,7 @@ x_22 = lean_ctor_get(x_20, 0); lean_dec(x_22); x_23 = lean_ctor_get(x_1, 0); lean_inc(x_23); -x_24 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__5; +x_24 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__4; x_25 = lean_array_push(x_24, x_23); x_26 = l___private_Lean_Elab_Term_0__Lean_Elab_Term_isExplicit___closed__2; x_27 = lean_alloc_ctor(1, 2, 0); @@ -5580,7 +5580,7 @@ lean_inc(x_30); lean_dec(x_20); x_31 = lean_ctor_get(x_1, 0); lean_inc(x_31); -x_32 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__5; +x_32 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__4; x_33 = lean_array_push(x_32, x_31); x_34 = l___private_Lean_Elab_Term_0__Lean_Elab_Term_isExplicit___closed__2; x_35 = lean_alloc_ctor(1, 2, 0); @@ -30394,7 +30394,7 @@ lean_inc(x_21); x_22 = lean_ctor_get(x_20, 1); lean_inc(x_22); lean_dec(x_20); -x_23 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__3; +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_Lean_Elab_Term_expandFunBinders_loop___closed__4; x_26 = lean_alloc_ctor(1, 2, 0); diff --git a/stage0/stdlib/Lean/Elab/MutualDef.c b/stage0/stdlib/Lean/Elab/MutualDef.c index c159801f71..1a9e35516a 100644 --- a/stage0/stdlib/Lean/Elab/MutualDef.c +++ b/stage0/stdlib/Lean/Elab/MutualDef.c @@ -285,6 +285,7 @@ lean_object* l_Lean_Elab_Command_elabMutualDef___boxed__const__1; lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_declValToTerm___closed__2; lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkClosureForAux___closed__6; lean_object* l_Std_RBNode_foldM___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_FixPoint_updateUsedVarsOf___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_expandMatchAltsWhereDecls(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_typeHasRecFun___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Std_RBNode_find___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkLetRecClosures___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Std_RBNode_fold___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkFreeVarMap___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); @@ -589,6 +590,7 @@ lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_check___lambda__2 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_MutualClosure_getKindForLetRecs___boxed(lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_checkLetRecsToLiftTypes_match__1___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_expandWhereDeclsOpt(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_pickMaxFVar_x3f(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_checkKinds___closed__3; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_collectUsed___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -603,7 +605,6 @@ lean_object* l_Lean_Elab_Term_MutualClosure_FixPoint_run(lean_object*, lean_obje lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_FixPoint_markModified___boxed(lean_object*); lean_object* l_Lean_Elab_applyVisibility___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__3___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_checkNotAlreadyDeclared___rarg___lambda__1___closed__2; -lean_object* l_Lean_Elab_Term_expandMatchAltsIntoMatch(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Meta_check(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkLetRecClosureFor(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_ReplaceImpl_initCache; @@ -4274,26 +4275,30 @@ return x_9; } else { -lean_object* x_10; lean_object* x_11; uint8_t x_12; lean_object* x_13; +lean_object* x_10; lean_object* x_11; lean_object* x_12; x_10 = lean_unsigned_to_nat(0u); x_11 = l_Lean_Syntax_getArg(x_1, x_10); -x_12 = 0; -x_13 = l_Lean_Elab_Term_expandMatchAltsIntoMatch(x_1, x_11, x_12, x_2, x_3); +x_12 = l_Lean_Elab_Term_expandMatchAltsWhereDecls(x_1, x_11, x_2, x_3); +lean_dec(x_11); lean_dec(x_1); -return x_13; +return x_12; } } else { -lean_object* x_14; lean_object* x_15; lean_object* x_16; +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_dec(x_2); -x_14 = lean_unsigned_to_nat(1u); -x_15 = l_Lean_Syntax_getArg(x_1, x_14); +x_13 = lean_unsigned_to_nat(2u); +x_14 = l_Lean_Syntax_getArg(x_1, x_13); +x_15 = lean_unsigned_to_nat(1u); +x_16 = l_Lean_Syntax_getArg(x_1, x_15); +x_17 = l_Lean_Elab_Term_expandWhereDeclsOpt(x_1, x_14, x_16); +lean_dec(x_14); lean_dec(x_1); -x_16 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_16, 0, x_15); -lean_ctor_set(x_16, 1, x_3); -return x_16; +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_17); +lean_ctor_set(x_18, 1, x_3); +return x_18; } } } diff --git a/stage0/stdlib/Lean/Elab/Syntax.c b/stage0/stdlib/Lean/Elab/Syntax.c index 3bfce71496..3a37ebd169 100644 --- a/stage0/stdlib/Lean/Elab/Syntax.c +++ b/stage0/stdlib/Lean/Elab/Syntax.c @@ -32,6 +32,7 @@ lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__6; lean_object* l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__9; lean_object* l_Lean_Elab_Command_expandMixfix___closed__5; lean_object* l_Lean_Elab_Command_elabNoKindMacroRulesAux(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8964____closed__1; lean_object* l_Lean_Elab_Command_elabMacroRules___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); size_t l_USize_add(size_t, size_t); lean_object* l_Lean_Elab_Command_expandNotation___closed__1; @@ -190,7 +191,6 @@ lean_object* l___regBuiltin_Lean_Elab_Command_elabElab(lean_object*); lean_object* l_List_map___at_Lean_resolveGlobalConst___spec__2(lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__2___rarg(lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__33; -lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8934____closed__1; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__3; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__9; lean_object* l_Lean_Elab_Term_toParserDescrAux_match__2(lean_object*); @@ -345,7 +345,7 @@ lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__2; lean_object* l_Lean_Elab_Term_toParserDescrAux_match__5___rarg(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_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8934_(lean_object*); +lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8964_(lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax_match__2___rarg(lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_5739____closed__15; lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__8; @@ -10040,7 +10040,7 @@ return x_3; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _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_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; 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_7 = lean_string_append(x_6, x_5); @@ -10301,22 +10301,23 @@ lean_ctor_set(x_159, 0, x_94); lean_ctor_set(x_159, 1, x_158); x_160 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_11379____closed__7; x_161 = lean_array_push(x_160, x_159); -x_162 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; -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_67, x_163); -x_165 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___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); -x_167 = lean_array_push(x_49, x_166); -x_168 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; -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 = l_Lean_Elab_Command_elabCommand(x_169, x_2, x_3, x_17); -return x_170; +x_162 = lean_array_push(x_161, x_26); +x_163 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; +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_67, x_164); +x_166 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; +x_167 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_167, 0, x_166); +lean_ctor_set(x_167, 1, x_165); +x_168 = lean_array_push(x_49, x_167); +x_169 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_170 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_170, 0, x_169); +lean_ctor_set(x_170, 1, x_168); +x_171 = l_Lean_Elab_Command_elabCommand(x_170, x_2, x_3, x_17); +return x_171; } } lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { @@ -11773,210 +11774,210 @@ return x_3; lean_object* l_Lean_Elab_Command_elabSyntax___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) { _start: { -lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t 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_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t 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_7 = lean_unsigned_to_nat(3u); x_8 = l_Lean_Syntax_getArg(x_1, x_7); lean_inc(x_8); -x_212 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_isAtomLikeSyntax(x_8); -x_213 = lean_unsigned_to_nat(1u); -x_214 = l_Lean_Syntax_getArg(x_1, x_213); -x_215 = l_Lean_Elab_Term_expandOptPrecedence(x_214); -lean_dec(x_214); -x_216 = lean_unsigned_to_nat(2u); -x_217 = l_Lean_Syntax_getArg(x_1, x_216); +x_214 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_isAtomLikeSyntax(x_8); +x_215 = lean_unsigned_to_nat(1u); +x_216 = l_Lean_Syntax_getArg(x_1, x_215); +x_217 = l_Lean_Elab_Term_expandOptPrecedence(x_216); +lean_dec(x_216); +x_218 = lean_unsigned_to_nat(2u); +x_219 = l_Lean_Syntax_getArg(x_1, x_218); lean_inc(x_4); lean_inc(x_2); -x_218 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio(x_217, x_2, x_4, x_5, x_6); -lean_dec(x_217); -if (x_212 == 0) +x_220 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio(x_219, x_2, x_4, x_5, x_6); +lean_dec(x_219); +if (x_214 == 0) { -if (lean_obj_tag(x_215) == 0) +if (lean_obj_tag(x_217) == 0) { -if (lean_obj_tag(x_218) == 0) +if (lean_obj_tag(x_220) == 0) { -lean_object* x_219; lean_object* x_220; lean_object* x_221; -x_219 = lean_ctor_get(x_218, 0); -lean_inc(x_219); -x_220 = lean_ctor_get(x_218, 1); -lean_inc(x_220); -lean_dec(x_218); -x_221 = l_Lean_Parser_leadPrec; -x_9 = x_221; -x_10 = x_219; -x_11 = x_220; -goto block_211; +lean_object* x_221; lean_object* x_222; lean_object* x_223; +x_221 = lean_ctor_get(x_220, 0); +lean_inc(x_221); +x_222 = lean_ctor_get(x_220, 1); +lean_inc(x_222); +lean_dec(x_220); +x_223 = l_Lean_Parser_leadPrec; +x_9 = x_223; +x_10 = x_221; +x_11 = x_222; +goto block_213; } else { -uint8_t x_222; +uint8_t x_224; lean_dec(x_8); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); lean_dec(x_1); -x_222 = !lean_is_exclusive(x_218); -if (x_222 == 0) +x_224 = !lean_is_exclusive(x_220); +if (x_224 == 0) { -return x_218; +return x_220; } else { -lean_object* x_223; lean_object* x_224; lean_object* x_225; -x_223 = lean_ctor_get(x_218, 0); -x_224 = lean_ctor_get(x_218, 1); -lean_inc(x_224); -lean_inc(x_223); -lean_dec(x_218); -x_225 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_225, 0, x_223); -lean_ctor_set(x_225, 1, x_224); -return x_225; -} -} -} -else -{ -if (lean_obj_tag(x_218) == 0) -{ -lean_object* x_226; lean_object* x_227; lean_object* x_228; -x_226 = lean_ctor_get(x_215, 0); +lean_object* x_225; lean_object* x_226; lean_object* x_227; +x_225 = lean_ctor_get(x_220, 0); +x_226 = lean_ctor_get(x_220, 1); lean_inc(x_226); -lean_dec(x_215); -x_227 = lean_ctor_get(x_218, 0); -lean_inc(x_227); -x_228 = lean_ctor_get(x_218, 1); +lean_inc(x_225); +lean_dec(x_220); +x_227 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_227, 0, x_225); +lean_ctor_set(x_227, 1, x_226); +return x_227; +} +} +} +else +{ +if (lean_obj_tag(x_220) == 0) +{ +lean_object* x_228; lean_object* x_229; lean_object* x_230; +x_228 = lean_ctor_get(x_217, 0); lean_inc(x_228); -lean_dec(x_218); -x_9 = x_226; -x_10 = x_227; -x_11 = x_228; -goto block_211; -} -else -{ -uint8_t x_229; -lean_dec(x_215); -lean_dec(x_8); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_2); -lean_dec(x_1); -x_229 = !lean_is_exclusive(x_218); -if (x_229 == 0) -{ -return x_218; -} -else -{ -lean_object* x_230; lean_object* x_231; lean_object* x_232; -x_230 = lean_ctor_get(x_218, 0); -x_231 = lean_ctor_get(x_218, 1); -lean_inc(x_231); +lean_dec(x_217); +x_229 = lean_ctor_get(x_220, 0); +lean_inc(x_229); +x_230 = lean_ctor_get(x_220, 1); lean_inc(x_230); -lean_dec(x_218); -x_232 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_232, 0, x_230); -lean_ctor_set(x_232, 1, x_231); -return x_232; -} -} -} +lean_dec(x_220); +x_9 = x_228; +x_10 = x_229; +x_11 = x_230; +goto block_213; } else { -if (lean_obj_tag(x_215) == 0) +uint8_t x_231; +lean_dec(x_217); +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +lean_dec(x_1); +x_231 = !lean_is_exclusive(x_220); +if (x_231 == 0) { -if (lean_obj_tag(x_218) == 0) +return x_220; +} +else { -lean_object* x_233; lean_object* x_234; lean_object* x_235; -x_233 = lean_ctor_get(x_218, 0); +lean_object* x_232; lean_object* x_233; lean_object* x_234; +x_232 = lean_ctor_get(x_220, 0); +x_233 = lean_ctor_get(x_220, 1); lean_inc(x_233); -x_234 = lean_ctor_get(x_218, 1); -lean_inc(x_234); -lean_dec(x_218); -x_235 = l_Lean_Parser_maxPrec; -x_9 = x_235; -x_10 = x_233; -x_11 = x_234; -goto block_211; +lean_inc(x_232); +lean_dec(x_220); +x_234 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_234, 0, x_232); +lean_ctor_set(x_234, 1, x_233); +return x_234; +} +} +} } else { -uint8_t x_236; +if (lean_obj_tag(x_217) == 0) +{ +if (lean_obj_tag(x_220) == 0) +{ +lean_object* x_235; lean_object* x_236; lean_object* x_237; +x_235 = lean_ctor_get(x_220, 0); +lean_inc(x_235); +x_236 = lean_ctor_get(x_220, 1); +lean_inc(x_236); +lean_dec(x_220); +x_237 = l_Lean_Parser_maxPrec; +x_9 = x_237; +x_10 = x_235; +x_11 = x_236; +goto block_213; +} +else +{ +uint8_t x_238; lean_dec(x_8); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); lean_dec(x_1); -x_236 = !lean_is_exclusive(x_218); -if (x_236 == 0) +x_238 = !lean_is_exclusive(x_220); +if (x_238 == 0) { -return x_218; +return x_220; } else { -lean_object* x_237; lean_object* x_238; lean_object* x_239; -x_237 = lean_ctor_get(x_218, 0); -x_238 = lean_ctor_get(x_218, 1); -lean_inc(x_238); -lean_inc(x_237); -lean_dec(x_218); -x_239 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_239, 0, x_237); -lean_ctor_set(x_239, 1, x_238); -return x_239; -} -} -} -else -{ -if (lean_obj_tag(x_218) == 0) -{ -lean_object* x_240; lean_object* x_241; lean_object* x_242; -x_240 = lean_ctor_get(x_215, 0); +lean_object* x_239; lean_object* x_240; lean_object* x_241; +x_239 = lean_ctor_get(x_220, 0); +x_240 = lean_ctor_get(x_220, 1); lean_inc(x_240); -lean_dec(x_215); -x_241 = lean_ctor_get(x_218, 0); -lean_inc(x_241); -x_242 = lean_ctor_get(x_218, 1); -lean_inc(x_242); -lean_dec(x_218); -x_9 = x_240; -x_10 = x_241; -x_11 = x_242; -goto block_211; +lean_inc(x_239); +lean_dec(x_220); +x_241 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_241, 0, x_239); +lean_ctor_set(x_241, 1, x_240); +return x_241; +} +} } else { -uint8_t x_243; -lean_dec(x_215); +if (lean_obj_tag(x_220) == 0) +{ +lean_object* x_242; lean_object* x_243; lean_object* x_244; +x_242 = lean_ctor_get(x_217, 0); +lean_inc(x_242); +lean_dec(x_217); +x_243 = lean_ctor_get(x_220, 0); +lean_inc(x_243); +x_244 = lean_ctor_get(x_220, 1); +lean_inc(x_244); +lean_dec(x_220); +x_9 = x_242; +x_10 = x_243; +x_11 = x_244; +goto block_213; +} +else +{ +uint8_t x_245; +lean_dec(x_217); lean_dec(x_8); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); lean_dec(x_1); -x_243 = !lean_is_exclusive(x_218); -if (x_243 == 0) +x_245 = !lean_is_exclusive(x_220); +if (x_245 == 0) { -return x_218; +return x_220; } else { -lean_object* x_244; lean_object* x_245; lean_object* x_246; -x_244 = lean_ctor_get(x_218, 0); -x_245 = lean_ctor_get(x_218, 1); -lean_inc(x_245); -lean_inc(x_244); -lean_dec(x_218); -x_246 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_246, 0, x_244); -lean_ctor_set(x_246, 1, x_245); -return x_246; +lean_object* x_246; lean_object* x_247; lean_object* x_248; +x_246 = lean_ctor_get(x_220, 0); +x_247 = lean_ctor_get(x_220, 1); +lean_inc(x_247); +lean_inc(x_246); +lean_dec(x_220); +x_248 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_248, 0, x_246); +lean_ctor_set(x_248, 1, x_247); +return x_248; } } } } -block_211: +block_213: { 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; uint8_t x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; x_12 = lean_ctor_get(x_10, 0); @@ -12035,7 +12036,7 @@ x_36 = lean_unbox(x_35); lean_dec(x_35); 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; 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_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; x_37 = lean_ctor_get(x_33, 1); lean_inc(x_37); lean_dec(x_33); @@ -12154,165 +12155,167 @@ lean_ctor_set(x_110, 0, x_109); lean_ctor_set(x_110, 1, x_108); x_111 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_11379____closed__7; x_112 = lean_array_push(x_111, x_110); -x_113 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; -x_114 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_114, 0, x_113); -lean_ctor_set(x_114, 1, x_112); -x_115 = lean_array_push(x_94, x_114); -x_116 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___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_76, x_117); -x_119 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; -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 = l_Lean_Elab_Command_elabSyntax___lambda__2(x_1, x_120, x_4, x_5, x_44); -return x_121; +x_113 = lean_array_push(x_112, x_69); +x_114 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; +x_115 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_115, 0, x_114); +lean_ctor_set(x_115, 1, x_113); +x_116 = lean_array_push(x_94, x_115); +x_117 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; +x_118 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_118, 0, x_117); +lean_ctor_set(x_118, 1, x_116); +x_119 = lean_array_push(x_76, x_118); +x_120 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +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 = l_Lean_Elab_Command_elabSyntax___lambda__2(x_1, x_121, x_4, x_5, x_44); +return x_122; } else { -lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; -x_122 = lean_ctor_get(x_33, 1); -lean_inc(x_122); -lean_dec(x_33); -x_123 = lean_ctor_get(x_34, 0); +lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; +x_123 = lean_ctor_get(x_33, 1); lean_inc(x_123); +lean_dec(x_33); +x_124 = lean_ctor_get(x_34, 0); +lean_inc(x_124); lean_dec(x_34); -x_124 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_122); -x_125 = lean_ctor_get(x_124, 0); -lean_inc(x_125); -x_126 = lean_ctor_get(x_124, 1); +x_125 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_123); +x_126 = lean_ctor_get(x_125, 0); lean_inc(x_126); -lean_dec(x_124); -x_127 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_126); -x_128 = lean_ctor_get(x_127, 0); -lean_inc(x_128); -x_129 = lean_ctor_get(x_127, 1); +x_127 = lean_ctor_get(x_125, 1); +lean_inc(x_127); +lean_dec(x_125); +x_128 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_127); +x_129 = lean_ctor_get(x_128, 0); lean_inc(x_129); -lean_dec(x_127); -x_130 = l_Array_empty___closed__1; -x_131 = lean_array_push(x_130, x_21); -x_132 = l_Nat_repr(x_13); -x_133 = l_Lean_numLitKind; -x_134 = l_Lean_instInhabitedSourceInfo___closed__1; -x_135 = l_Lean_Syntax_mkLit(x_133, x_132, x_134); -x_136 = lean_array_push(x_130, x_135); -x_137 = l_Lean_nullKind___closed__2; -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_131, x_138); -x_140 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; -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_130, x_141); -x_143 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_143, 0, x_137); -lean_ctor_set(x_143, 1, x_142); -x_144 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; -x_145 = lean_array_push(x_144, x_143); -x_146 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__10; -x_147 = lean_array_push(x_145, x_146); -x_148 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; -x_149 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_149, 0, x_148); -lean_ctor_set(x_149, 1, x_147); -x_150 = lean_array_push(x_130, x_149); -x_151 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_151, 0, x_137); -lean_ctor_set(x_151, 1, x_150); -x_152 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_153 = lean_array_push(x_152, x_151); -x_154 = l_myMacro____x40_Init_Notation___hyg_5739____closed__20; -x_155 = lean_array_push(x_153, x_154); -x_156 = lean_array_push(x_155, x_154); -x_157 = lean_array_push(x_156, x_154); -x_158 = lean_array_push(x_157, x_154); -x_159 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; -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_130, x_160); -x_162 = l_Lean_mkIdentFrom(x_1, x_12); -x_163 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; -x_164 = lean_array_push(x_163, x_162); -x_165 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__10; -lean_inc(x_125); -lean_inc(x_128); -x_166 = l_Lean_addMacroScope(x_128, x_165, x_125); -x_167 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__9; -x_168 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__12; -x_169 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_169, 0, x_134); -lean_ctor_set(x_169, 1, x_167); -lean_ctor_set(x_169, 2, x_166); -lean_ctor_set(x_169, 3, x_168); -x_170 = l_myMacro____x40_Init_Notation___hyg_8168____closed__11; -x_171 = lean_array_push(x_170, x_169); -x_172 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_173 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_173, 0, x_172); -lean_ctor_set(x_173, 1, x_171); -x_174 = lean_array_push(x_130, x_173); -x_175 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_175, 0, x_137); -lean_ctor_set(x_175, 1, x_174); -x_176 = lean_array_push(x_152, x_175); -x_177 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; -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_array_push(x_164, x_178); -x_180 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__17; -x_181 = l_Lean_addMacroScope(x_128, x_180, x_125); -x_182 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__15; -x_183 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__20; -x_184 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_184, 0, x_134); -lean_ctor_set(x_184, 1, x_182); -lean_ctor_set(x_184, 2, x_181); -lean_ctor_set(x_184, 3, x_183); -x_185 = lean_array_push(x_130, x_184); -x_186 = l___private_Init_Meta_0__Lean_quoteName(x_18); -x_187 = lean_array_push(x_130, x_186); -x_188 = l_Nat_repr(x_9); -x_189 = l_Lean_Syntax_mkLit(x_133, x_188, x_134); -x_190 = lean_array_push(x_187, x_189); -x_191 = lean_array_push(x_190, x_123); -x_192 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_192, 0, x_137); -lean_ctor_set(x_192, 1, x_191); -x_193 = lean_array_push(x_185, x_192); -x_194 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -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 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_11379____closed__7; -x_197 = lean_array_push(x_196, x_195); -x_198 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; -x_199 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_199, 0, x_198); -lean_ctor_set(x_199, 1, x_197); -x_200 = lean_array_push(x_179, x_199); -x_201 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; -x_202 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_202, 0, x_201); -lean_ctor_set(x_202, 1, x_200); -x_203 = lean_array_push(x_161, x_202); -x_204 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; -x_205 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_205, 0, x_204); -lean_ctor_set(x_205, 1, x_203); -x_206 = l_Lean_Elab_Command_elabSyntax___lambda__2(x_1, x_205, x_4, x_5, x_129); -return x_206; +x_130 = lean_ctor_get(x_128, 1); +lean_inc(x_130); +lean_dec(x_128); +x_131 = l_Array_empty___closed__1; +x_132 = lean_array_push(x_131, x_21); +x_133 = l_Nat_repr(x_13); +x_134 = l_Lean_numLitKind; +x_135 = l_Lean_instInhabitedSourceInfo___closed__1; +x_136 = l_Lean_Syntax_mkLit(x_134, x_133, x_135); +x_137 = lean_array_push(x_131, x_136); +x_138 = l_Lean_nullKind___closed__2; +x_139 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_139, 0, x_138); +lean_ctor_set(x_139, 1, x_137); +x_140 = lean_array_push(x_132, x_139); +x_141 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; +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_131, x_142); +x_144 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_144, 0, x_138); +lean_ctor_set(x_144, 1, x_143); +x_145 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; +x_146 = lean_array_push(x_145, x_144); +x_147 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__10; +x_148 = lean_array_push(x_146, x_147); +x_149 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; +x_150 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_150, 0, x_149); +lean_ctor_set(x_150, 1, x_148); +x_151 = lean_array_push(x_131, x_150); +x_152 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_152, 0, x_138); +lean_ctor_set(x_152, 1, x_151); +x_153 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_154 = lean_array_push(x_153, x_152); +x_155 = l_myMacro____x40_Init_Notation___hyg_5739____closed__20; +x_156 = lean_array_push(x_154, x_155); +x_157 = lean_array_push(x_156, x_155); +x_158 = lean_array_push(x_157, x_155); +x_159 = lean_array_push(x_158, x_155); +x_160 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; +x_161 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_161, 0, x_160); +lean_ctor_set(x_161, 1, x_159); +x_162 = lean_array_push(x_131, x_161); +x_163 = l_Lean_mkIdentFrom(x_1, x_12); +x_164 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; +x_165 = lean_array_push(x_164, x_163); +x_166 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__10; +lean_inc(x_126); +lean_inc(x_129); +x_167 = l_Lean_addMacroScope(x_129, x_166, x_126); +x_168 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__9; +x_169 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__12; +x_170 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_170, 0, x_135); +lean_ctor_set(x_170, 1, x_168); +lean_ctor_set(x_170, 2, x_167); +lean_ctor_set(x_170, 3, x_169); +x_171 = l_myMacro____x40_Init_Notation___hyg_8168____closed__11; +x_172 = lean_array_push(x_171, x_170); +x_173 = l_Lean_expandExplicitBindersAux_loop___closed__8; +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_131, x_174); +x_176 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_176, 0, x_138); +lean_ctor_set(x_176, 1, x_175); +x_177 = lean_array_push(x_153, x_176); +x_178 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; +x_179 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_179, 0, x_178); +lean_ctor_set(x_179, 1, x_177); +x_180 = lean_array_push(x_165, x_179); +x_181 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__17; +x_182 = l_Lean_addMacroScope(x_129, x_181, x_126); +x_183 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__15; +x_184 = l_Lean_Elab_Command_elabSyntax___lambda__3___closed__20; +x_185 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_185, 0, x_135); +lean_ctor_set(x_185, 1, x_183); +lean_ctor_set(x_185, 2, x_182); +lean_ctor_set(x_185, 3, x_184); +x_186 = lean_array_push(x_131, x_185); +x_187 = l___private_Init_Meta_0__Lean_quoteName(x_18); +x_188 = lean_array_push(x_131, x_187); +x_189 = l_Nat_repr(x_9); +x_190 = l_Lean_Syntax_mkLit(x_134, x_189, x_135); +x_191 = lean_array_push(x_188, x_190); +x_192 = lean_array_push(x_191, x_124); +x_193 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_193, 0, x_138); +lean_ctor_set(x_193, 1, x_192); +x_194 = lean_array_push(x_186, x_193); +x_195 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_196 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_196, 0, x_195); +lean_ctor_set(x_196, 1, x_194); +x_197 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_11379____closed__7; +x_198 = lean_array_push(x_197, x_196); +x_199 = lean_array_push(x_198, x_155); +x_200 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; +x_201 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_201, 0, x_200); +lean_ctor_set(x_201, 1, x_199); +x_202 = lean_array_push(x_180, x_201); +x_203 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; +x_204 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_204, 0, x_203); +lean_ctor_set(x_204, 1, x_202); +x_205 = lean_array_push(x_162, x_204); +x_206 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_207 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_207, 0, x_206); +lean_ctor_set(x_207, 1, x_205); +x_208 = l_Lean_Elab_Command_elabSyntax___lambda__2(x_1, x_207, x_4, x_5, x_130); +return x_208; } } else { -uint8_t x_207; +uint8_t x_209; lean_dec(x_21); lean_dec(x_18); lean_dec(x_13); @@ -12321,23 +12324,23 @@ lean_dec(x_9); lean_dec(x_5); lean_dec(x_4); lean_dec(x_1); -x_207 = !lean_is_exclusive(x_33); -if (x_207 == 0) +x_209 = !lean_is_exclusive(x_33); +if (x_209 == 0) { return x_33; } else { -lean_object* x_208; lean_object* x_209; lean_object* x_210; -x_208 = lean_ctor_get(x_33, 0); -x_209 = lean_ctor_get(x_33, 1); -lean_inc(x_209); -lean_inc(x_208); +lean_object* x_210; lean_object* x_211; lean_object* x_212; +x_210 = lean_ctor_get(x_33, 0); +x_211 = lean_ctor_get(x_33, 1); +lean_inc(x_211); +lean_inc(x_210); lean_dec(x_33); -x_210 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_210, 0, x_208); -lean_ctor_set(x_210, 1, x_209); -return x_210; +x_212 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_212, 0, x_210); +lean_ctor_set(x_212, 1, x_211); +return x_212; } } } @@ -12757,7 +12760,7 @@ lean_inc(x_2); x_18 = l_Lean_Elab_Command_liftTermElabM___rarg(x_7, x_17, x_2, x_3, x_10); if (lean_obj_tag(x_18) == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; 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; uint8_t x_83; +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; uint8_t x_85; x_19 = lean_ctor_get(x_18, 0); lean_inc(x_19); x_20 = lean_ctor_get(x_18, 1); @@ -12852,100 +12855,102 @@ lean_ctor_set(x_71, 0, x_70); lean_ctor_set(x_71, 1, x_69); x_72 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_11379____closed__7; x_73 = lean_array_push(x_72, x_71); -x_74 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; -x_75 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_75, 0, x_74); -lean_ctor_set(x_75, 1, x_73); -x_76 = lean_array_push(x_54, x_75); -x_77 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; -x_78 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_78, 0, x_77); -lean_ctor_set(x_78, 1, x_76); -x_79 = l_Lean_Elab_Command_elabSyntaxAbbrev___closed__7; -x_80 = lean_array_push(x_79, x_78); -x_81 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___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); -x_83 = !lean_is_exclusive(x_2); -if (x_83 == 0) +x_74 = l_myMacro____x40_Init_Notation___hyg_5739____closed__20; +x_75 = lean_array_push(x_73, x_74); +x_76 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; +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_54, x_77); +x_79 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; +x_80 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_80, 0, x_79); +lean_ctor_set(x_80, 1, x_78); +x_81 = l_Lean_Elab_Command_elabSyntaxAbbrev___closed__7; +x_82 = lean_array_push(x_81, x_80); +x_83 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_84 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_84, 0, x_83); +lean_ctor_set(x_84, 1, x_82); +x_85 = !lean_is_exclusive(x_2); +if (x_85 == 0) { -lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; -x_84 = lean_ctor_get(x_2, 4); -lean_inc(x_82); -x_85 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_85, 0, x_1); -lean_ctor_set(x_85, 1, x_82); -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_2, 4, x_86); -x_87 = l_Lean_Elab_Command_elabCommand(x_82, x_2, x_3, x_33); +lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; +x_86 = lean_ctor_get(x_2, 4); +lean_inc(x_84); +x_87 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_87, 0, x_1); +lean_ctor_set(x_87, 1, x_84); +x_88 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_88, 0, x_87); +lean_ctor_set(x_88, 1, x_86); +lean_ctor_set(x_2, 4, x_88); +x_89 = l_Lean_Elab_Command_elabCommand(x_84, x_2, x_3, x_33); lean_dec(x_2); -return x_87; +return x_89; } else { -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; -x_88 = lean_ctor_get(x_2, 0); -x_89 = lean_ctor_get(x_2, 1); -x_90 = lean_ctor_get(x_2, 2); -x_91 = lean_ctor_get(x_2, 3); -x_92 = lean_ctor_get(x_2, 4); -x_93 = lean_ctor_get(x_2, 5); -x_94 = lean_ctor_get(x_2, 6); +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; +x_90 = lean_ctor_get(x_2, 0); +x_91 = lean_ctor_get(x_2, 1); +x_92 = lean_ctor_get(x_2, 2); +x_93 = lean_ctor_get(x_2, 3); +x_94 = lean_ctor_get(x_2, 4); +x_95 = lean_ctor_get(x_2, 5); +x_96 = lean_ctor_get(x_2, 6); +lean_inc(x_96); +lean_inc(x_95); lean_inc(x_94); lean_inc(x_93); lean_inc(x_92); lean_inc(x_91); lean_inc(x_90); -lean_inc(x_89); -lean_inc(x_88); lean_dec(x_2); -lean_inc(x_82); -x_95 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_95, 0, x_1); -lean_ctor_set(x_95, 1, x_82); -x_96 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_96, 0, x_95); -lean_ctor_set(x_96, 1, x_92); -x_97 = lean_alloc_ctor(0, 7, 0); -lean_ctor_set(x_97, 0, x_88); -lean_ctor_set(x_97, 1, x_89); -lean_ctor_set(x_97, 2, x_90); -lean_ctor_set(x_97, 3, x_91); -lean_ctor_set(x_97, 4, x_96); -lean_ctor_set(x_97, 5, x_93); -lean_ctor_set(x_97, 6, x_94); -x_98 = l_Lean_Elab_Command_elabCommand(x_82, x_97, x_3, x_33); -lean_dec(x_97); -return x_98; +lean_inc(x_84); +x_97 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_97, 0, x_1); +lean_ctor_set(x_97, 1, x_84); +x_98 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_98, 0, x_97); +lean_ctor_set(x_98, 1, x_94); +x_99 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_99, 0, x_90); +lean_ctor_set(x_99, 1, x_91); +lean_ctor_set(x_99, 2, x_92); +lean_ctor_set(x_99, 3, x_93); +lean_ctor_set(x_99, 4, x_98); +lean_ctor_set(x_99, 5, x_95); +lean_ctor_set(x_99, 6, x_96); +x_100 = l_Lean_Elab_Command_elabCommand(x_84, x_99, x_3, x_33); +lean_dec(x_99); +return x_100; } } else { -uint8_t x_99; +uint8_t x_101; lean_dec(x_6); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_99 = !lean_is_exclusive(x_18); -if (x_99 == 0) +x_101 = !lean_is_exclusive(x_18); +if (x_101 == 0) { return x_18; } else { -lean_object* x_100; lean_object* x_101; lean_object* x_102; -x_100 = lean_ctor_get(x_18, 0); -x_101 = lean_ctor_get(x_18, 1); -lean_inc(x_101); -lean_inc(x_100); +lean_object* x_102; lean_object* x_103; lean_object* x_104; +x_102 = lean_ctor_get(x_18, 0); +x_103 = lean_ctor_get(x_18, 1); +lean_inc(x_103); +lean_inc(x_102); lean_dec(x_18); -x_102 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_102, 0, x_100); -lean_ctor_set(x_102, 1, x_101); -return x_102; +x_104 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_104, 0, x_102); +lean_ctor_set(x_104, 1, x_103); +return x_104; } } } @@ -13824,7 +13829,7 @@ lean_dec(x_4); x_14 = !lean_is_exclusive(x_13); if (x_14 == 0) { -lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; 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_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; x_15 = lean_ctor_get(x_13, 0); x_16 = l_Lean_Elab_mkMacroAttributeUnsafe___closed__8; lean_inc(x_11); @@ -14013,261 +14018,263 @@ lean_ctor_set(x_126, 0, x_125); lean_ctor_set(x_126, 1, x_124); x_127 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_11379____closed__7; x_128 = lean_array_push(x_127, x_126); -x_129 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; -x_130 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_130, 0, x_129); -lean_ctor_set(x_130, 1, x_128); -x_131 = lean_array_push(x_75, x_130); -x_132 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; -x_133 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_133, 0, x_132); -lean_ctor_set(x_133, 1, x_131); -x_134 = lean_array_push(x_50, x_133); -x_135 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; -x_136 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_136, 0, x_135); -lean_ctor_set(x_136, 1, x_134); -lean_ctor_set(x_13, 0, x_136); +x_129 = lean_array_push(x_128, x_43); +x_130 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; +x_131 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_131, 0, x_130); +lean_ctor_set(x_131, 1, x_129); +x_132 = lean_array_push(x_75, x_131); +x_133 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; +x_134 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_134, 0, x_133); +lean_ctor_set(x_134, 1, x_132); +x_135 = lean_array_push(x_50, x_134); +x_136 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_137 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_137, 0, x_136); +lean_ctor_set(x_137, 1, x_135); +lean_ctor_set(x_13, 0, x_137); return x_13; } else { -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; 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; -x_137 = lean_ctor_get(x_13, 0); -x_138 = lean_ctor_get(x_13, 1); +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; 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; +x_138 = lean_ctor_get(x_13, 0); +x_139 = lean_ctor_get(x_13, 1); +lean_inc(x_139); lean_inc(x_138); -lean_inc(x_137); lean_dec(x_13); -x_139 = l_Lean_Elab_mkMacroAttributeUnsafe___closed__8; +x_140 = l_Lean_Elab_mkMacroAttributeUnsafe___closed__8; lean_inc(x_11); -lean_inc(x_137); -x_140 = l_Lean_addMacroScope(x_137, x_139, x_11); -x_141 = lean_box(0); -x_142 = l_Lean_instInhabitedSourceInfo___closed__1; -x_143 = l_Lean_Elab_Command_elabMacroRulesAux___closed__2; -x_144 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_144, 0, x_142); -lean_ctor_set(x_144, 1, x_143); -lean_ctor_set(x_144, 2, x_140); -lean_ctor_set(x_144, 3, x_141); -x_145 = l_Array_empty___closed__1; -x_146 = lean_array_push(x_145, x_144); -x_147 = lean_mk_syntax_ident(x_1); -x_148 = lean_array_push(x_145, x_147); -x_149 = l_Lean_nullKind___closed__2; -x_150 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_150, 0, x_149); -lean_ctor_set(x_150, 1, x_148); -x_151 = lean_array_push(x_146, x_150); -x_152 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; -x_153 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_153, 0, x_152); -lean_ctor_set(x_153, 1, x_151); -x_154 = lean_array_push(x_145, x_153); -x_155 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_155, 0, x_149); -lean_ctor_set(x_155, 1, x_154); -x_156 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; -x_157 = lean_array_push(x_156, x_155); -x_158 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__10; -x_159 = lean_array_push(x_157, x_158); -x_160 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; -x_161 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_161, 0, x_160); -lean_ctor_set(x_161, 1, x_159); -x_162 = lean_array_push(x_145, x_161); -x_163 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_163, 0, x_149); -lean_ctor_set(x_163, 1, x_162); -x_164 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; -x_165 = lean_array_push(x_164, x_163); -x_166 = l_myMacro____x40_Init_Notation___hyg_5739____closed__20; -x_167 = lean_array_push(x_165, x_166); -x_168 = lean_array_push(x_167, x_166); -x_169 = lean_array_push(x_168, x_166); -x_170 = lean_array_push(x_169, x_166); -x_171 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; -x_172 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_172, 0, x_171); -lean_ctor_set(x_172, 1, x_170); -x_173 = lean_array_push(x_145, x_172); -x_174 = l_Lean_Elab_Command_elabMacroRulesAux___closed__8; +lean_inc(x_138); +x_141 = l_Lean_addMacroScope(x_138, x_140, x_11); +x_142 = lean_box(0); +x_143 = l_Lean_instInhabitedSourceInfo___closed__1; +x_144 = l_Lean_Elab_Command_elabMacroRulesAux___closed__2; +x_145 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_145, 0, x_143); +lean_ctor_set(x_145, 1, x_144); +lean_ctor_set(x_145, 2, x_141); +lean_ctor_set(x_145, 3, x_142); +x_146 = l_Array_empty___closed__1; +x_147 = lean_array_push(x_146, x_145); +x_148 = lean_mk_syntax_ident(x_1); +x_149 = lean_array_push(x_146, x_148); +x_150 = l_Lean_nullKind___closed__2; +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_147, x_151); +x_153 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; +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_146, x_154); +x_156 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_156, 0, x_150); +lean_ctor_set(x_156, 1, x_155); +x_157 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; +x_158 = lean_array_push(x_157, x_156); +x_159 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__10; +x_160 = lean_array_push(x_158, x_159); +x_161 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; +x_162 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_162, 0, x_161); +lean_ctor_set(x_162, 1, x_160); +x_163 = lean_array_push(x_146, x_162); +x_164 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_164, 0, x_150); +lean_ctor_set(x_164, 1, x_163); +x_165 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; +x_166 = lean_array_push(x_165, x_164); +x_167 = l_myMacro____x40_Init_Notation___hyg_5739____closed__20; +x_168 = lean_array_push(x_166, x_167); +x_169 = lean_array_push(x_168, x_167); +x_170 = lean_array_push(x_169, x_167); +x_171 = lean_array_push(x_170, x_167); +x_172 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; +x_173 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_173, 0, x_172); +lean_ctor_set(x_173, 1, x_171); +x_174 = lean_array_push(x_146, x_173); +x_175 = l_Lean_Elab_Command_elabMacroRulesAux___closed__8; lean_inc(x_11); -lean_inc(x_137); -x_175 = l_Lean_addMacroScope(x_137, x_174, x_11); -x_176 = l_Lean_Elab_Command_elabMacroRulesAux___closed__7; -x_177 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_177, 0, x_142); -lean_ctor_set(x_177, 1, x_176); -lean_ctor_set(x_177, 2, x_175); -lean_ctor_set(x_177, 3, x_141); -x_178 = lean_array_push(x_145, x_177); -x_179 = lean_array_push(x_178, x_166); -x_180 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; -x_181 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_181, 0, x_180); -lean_ctor_set(x_181, 1, x_179); -x_182 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; -x_183 = lean_array_push(x_182, x_181); -x_184 = l_Lean_Elab_Command_elabMacroRulesAux___closed__11; +lean_inc(x_138); +x_176 = l_Lean_addMacroScope(x_138, x_175, x_11); +x_177 = l_Lean_Elab_Command_elabMacroRulesAux___closed__7; +x_178 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_178, 0, x_143); +lean_ctor_set(x_178, 1, x_177); +lean_ctor_set(x_178, 2, x_176); +lean_ctor_set(x_178, 3, x_142); +x_179 = lean_array_push(x_146, x_178); +x_180 = lean_array_push(x_179, x_167); +x_181 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; +x_182 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_182, 0, x_181); +lean_ctor_set(x_182, 1, x_180); +x_183 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; +x_184 = lean_array_push(x_183, x_182); +x_185 = l_Lean_Elab_Command_elabMacroRulesAux___closed__11; lean_inc(x_11); -lean_inc(x_137); -x_185 = l_Lean_addMacroScope(x_137, x_184, x_11); -x_186 = l_Lean_Elab_Command_elabMacroRulesAux___closed__10; -x_187 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_188 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_188, 0, x_142); -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 = l_myMacro____x40_Init_Notation___hyg_8168____closed__11; -x_190 = lean_array_push(x_189, x_188); -x_191 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_192 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_192, 0, x_191); -lean_ctor_set(x_192, 1, x_190); -x_193 = lean_array_push(x_145, x_192); -x_194 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_194, 0, x_149); -lean_ctor_set(x_194, 1, x_193); -x_195 = lean_array_push(x_164, x_194); -x_196 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; -x_197 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_197, 0, x_196); -lean_ctor_set(x_197, 1, x_195); -x_198 = lean_array_push(x_183, x_197); -x_199 = l___kind_stx____x40_Init_Notation___hyg_7374____closed__2; +lean_inc(x_138); +x_186 = l_Lean_addMacroScope(x_138, x_185, x_11); +x_187 = l_Lean_Elab_Command_elabMacroRulesAux___closed__10; +x_188 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_189 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_189, 0, x_143); +lean_ctor_set(x_189, 1, x_187); +lean_ctor_set(x_189, 2, x_186); +lean_ctor_set(x_189, 3, x_188); +x_190 = l_myMacro____x40_Init_Notation___hyg_8168____closed__11; +x_191 = lean_array_push(x_190, x_189); +x_192 = l_Lean_expandExplicitBindersAux_loop___closed__8; +x_193 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_193, 0, x_192); +lean_ctor_set(x_193, 1, x_191); +x_194 = lean_array_push(x_146, x_193); +x_195 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_195, 0, x_150); +lean_ctor_set(x_195, 1, x_194); +x_196 = lean_array_push(x_165, x_195); +x_197 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; +x_198 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_198, 0, x_197); +lean_ctor_set(x_198, 1, x_196); +x_199 = lean_array_push(x_184, x_198); +x_200 = l___kind_stx____x40_Init_Notation___hyg_7374____closed__2; lean_inc(x_11); -lean_inc(x_137); -x_200 = l_Lean_addMacroScope(x_137, x_199, x_11); -x_201 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_202 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_202, 0, x_142); -lean_ctor_set(x_202, 1, x_201); -lean_ctor_set(x_202, 2, x_200); -lean_ctor_set(x_202, 3, x_141); -lean_inc(x_202); -x_203 = lean_array_push(x_145, x_202); -x_204 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_204, 0, x_149); -lean_ctor_set(x_204, 1, x_203); -x_205 = lean_array_push(x_145, x_204); -x_206 = l_myMacro____x40_Init_Notation___hyg_5739____closed__19; -x_207 = lean_array_push(x_205, x_206); -x_208 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; -x_209 = lean_array_push(x_208, x_202); -x_210 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_211 = lean_array_push(x_209, x_210); -x_212 = l_Array_appendCore___rarg(x_145, x_8); +lean_inc(x_138); +x_201 = l_Lean_addMacroScope(x_138, x_200, x_11); +x_202 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_203 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_203, 0, x_143); +lean_ctor_set(x_203, 1, x_202); +lean_ctor_set(x_203, 2, x_201); +lean_ctor_set(x_203, 3, x_142); +lean_inc(x_203); +x_204 = lean_array_push(x_146, x_203); +x_205 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_205, 0, x_150); +lean_ctor_set(x_205, 1, x_204); +x_206 = lean_array_push(x_146, x_205); +x_207 = l_myMacro____x40_Init_Notation___hyg_5739____closed__19; +x_208 = lean_array_push(x_206, x_207); +x_209 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; +x_210 = lean_array_push(x_209, x_203); +x_211 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_212 = lean_array_push(x_210, x_211); +x_213 = l_Array_appendCore___rarg(x_146, x_8); lean_dec(x_8); -x_213 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_214 = lean_array_push(x_212, x_213); -x_215 = l_Lean_Elab_Command_elabMacroRulesAux___closed__22; +x_214 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_215 = lean_array_push(x_213, x_214); +x_216 = l_Lean_Elab_Command_elabMacroRulesAux___closed__22; lean_inc(x_11); -lean_inc(x_137); -x_216 = l_Lean_addMacroScope(x_137, x_215, x_11); -x_217 = l_Lean_Elab_Command_elabMacroRulesAux___closed__21; -x_218 = l_Lean_Elab_Command_elabMacroRulesAux___closed__27; -x_219 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_219, 0, x_142); -lean_ctor_set(x_219, 1, x_217); -lean_ctor_set(x_219, 2, x_216); -lean_ctor_set(x_219, 3, x_218); -x_220 = lean_array_push(x_145, x_219); -x_221 = l_Lean_Elab_Command_elabMacroRulesAux___closed__32; -x_222 = l_Lean_addMacroScope(x_137, x_221, x_11); -x_223 = l_Lean_Elab_Command_elabMacroRulesAux___closed__30; -x_224 = l_Lean_Elab_Command_elabMacroRulesAux___closed__34; -x_225 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_225, 0, x_142); -lean_ctor_set(x_225, 1, x_223); -lean_ctor_set(x_225, 2, x_222); -lean_ctor_set(x_225, 3, x_224); -x_226 = lean_array_push(x_145, x_225); -x_227 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_227, 0, x_149); -lean_ctor_set(x_227, 1, x_226); -x_228 = lean_array_push(x_220, x_227); -x_229 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_230 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_230, 0, x_229); -lean_ctor_set(x_230, 1, x_228); -x_231 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; -x_232 = lean_array_push(x_231, x_230); -x_233 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_234 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_234, 0, x_233); -lean_ctor_set(x_234, 1, x_232); -x_235 = lean_array_push(x_214, x_234); -x_236 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_236, 0, x_149); -lean_ctor_set(x_236, 1, x_235); -x_237 = lean_array_push(x_164, x_236); -x_238 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; -x_239 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_239, 0, x_238); -lean_ctor_set(x_239, 1, x_237); -x_240 = lean_array_push(x_211, x_239); -x_241 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -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_207, x_242); -x_244 = l_myMacro____x40_Init_Notation___hyg_5739____closed__17; -x_245 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_245, 0, x_244); -lean_ctor_set(x_245, 1, x_243); -x_246 = l_myMacro____x40_Init_Notation___hyg_5739____closed__15; -x_247 = lean_array_push(x_246, x_245); -x_248 = l_myMacro____x40_Init_Notation___hyg_5739____closed__13; -x_249 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_249, 0, x_248); -lean_ctor_set(x_249, 1, x_247); -x_250 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_11379____closed__7; -x_251 = lean_array_push(x_250, x_249); -x_252 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; -x_253 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_253, 0, x_252); -lean_ctor_set(x_253, 1, x_251); -x_254 = lean_array_push(x_198, x_253); -x_255 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; -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_173, x_256); -x_258 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; -x_259 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_259, 0, x_258); -lean_ctor_set(x_259, 1, x_257); -x_260 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_260, 0, x_259); -lean_ctor_set(x_260, 1, x_138); -return x_260; +lean_inc(x_138); +x_217 = l_Lean_addMacroScope(x_138, x_216, x_11); +x_218 = l_Lean_Elab_Command_elabMacroRulesAux___closed__21; +x_219 = l_Lean_Elab_Command_elabMacroRulesAux___closed__27; +x_220 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_220, 0, x_143); +lean_ctor_set(x_220, 1, x_218); +lean_ctor_set(x_220, 2, x_217); +lean_ctor_set(x_220, 3, x_219); +x_221 = lean_array_push(x_146, x_220); +x_222 = l_Lean_Elab_Command_elabMacroRulesAux___closed__32; +x_223 = l_Lean_addMacroScope(x_138, x_222, x_11); +x_224 = l_Lean_Elab_Command_elabMacroRulesAux___closed__30; +x_225 = l_Lean_Elab_Command_elabMacroRulesAux___closed__34; +x_226 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_226, 0, x_143); +lean_ctor_set(x_226, 1, x_224); +lean_ctor_set(x_226, 2, x_223); +lean_ctor_set(x_226, 3, x_225); +x_227 = lean_array_push(x_146, x_226); +x_228 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_228, 0, x_150); +lean_ctor_set(x_228, 1, x_227); +x_229 = lean_array_push(x_221, x_228); +x_230 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_231 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_231, 0, x_230); +lean_ctor_set(x_231, 1, x_229); +x_232 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; +x_233 = lean_array_push(x_232, x_231); +x_234 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_235 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_235, 0, x_234); +lean_ctor_set(x_235, 1, x_233); +x_236 = lean_array_push(x_215, x_235); +x_237 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_237, 0, x_150); +lean_ctor_set(x_237, 1, x_236); +x_238 = lean_array_push(x_165, x_237); +x_239 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; +x_240 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_240, 0, x_239); +lean_ctor_set(x_240, 1, x_238); +x_241 = lean_array_push(x_212, x_240); +x_242 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_243 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_243, 0, x_242); +lean_ctor_set(x_243, 1, x_241); +x_244 = lean_array_push(x_208, x_243); +x_245 = l_myMacro____x40_Init_Notation___hyg_5739____closed__17; +x_246 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_246, 0, x_245); +lean_ctor_set(x_246, 1, x_244); +x_247 = l_myMacro____x40_Init_Notation___hyg_5739____closed__15; +x_248 = lean_array_push(x_247, x_246); +x_249 = l_myMacro____x40_Init_Notation___hyg_5739____closed__13; +x_250 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_250, 0, x_249); +lean_ctor_set(x_250, 1, x_248); +x_251 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_11379____closed__7; +x_252 = lean_array_push(x_251, x_250); +x_253 = lean_array_push(x_252, x_167); +x_254 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; +x_255 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_255, 0, x_254); +lean_ctor_set(x_255, 1, x_253); +x_256 = lean_array_push(x_199, x_255); +x_257 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; +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_174, x_258); +x_260 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +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_alloc_ctor(0, 2, 0); +lean_ctor_set(x_262, 0, x_261); +lean_ctor_set(x_262, 1, x_139); +return x_262; } } else { -uint8_t x_261; +uint8_t x_263; lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_261 = !lean_is_exclusive(x_7); -if (x_261 == 0) +x_263 = !lean_is_exclusive(x_7); +if (x_263 == 0) { return x_7; } else { -lean_object* x_262; lean_object* x_263; lean_object* x_264; -x_262 = lean_ctor_get(x_7, 0); -x_263 = lean_ctor_get(x_7, 1); -lean_inc(x_263); -lean_inc(x_262); +lean_object* x_264; lean_object* x_265; lean_object* x_266; +x_264 = lean_ctor_get(x_7, 0); +x_265 = lean_ctor_get(x_7, 1); +lean_inc(x_265); +lean_inc(x_264); lean_dec(x_7); -x_264 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_264, 0, x_262); -lean_ctor_set(x_264, 1, x_263); -return x_264; +x_266 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_266, 0, x_264); +lean_ctor_set(x_266, 1, x_265); +return x_266; } } } @@ -20159,7 +20166,7 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8934____closed__1() { +static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8964____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -20169,11 +20176,11 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8934_(lean_object* x_1) { +lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8964_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8934____closed__1; +x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8964____closed__1; x_3 = l_Lean_registerTraceClass(x_2, x_1); return x_3; } @@ -20982,7 +20989,7 @@ return x_71; } 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; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; +lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_dec(x_22); x_72 = lean_ctor_get(x_3, 2); lean_inc(x_72); @@ -21210,544 +21217,547 @@ lean_ctor_set(x_210, 0, x_209); lean_ctor_set(x_210, 1, x_208); x_211 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_11379____closed__7; x_212 = lean_array_push(x_211, x_210); -x_213 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; -x_214 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_214, 0, x_213); -lean_ctor_set(x_214, 1, x_212); -x_215 = lean_array_push(x_157, x_214); -x_216 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; -x_217 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_217, 0, x_216); -lean_ctor_set(x_217, 1, x_215); -x_218 = lean_array_push(x_132, x_217); -x_219 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; -x_220 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_220, 0, x_219); -lean_ctor_set(x_220, 1, x_218); -x_221 = lean_array_push(x_104, x_220); -x_222 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_222, 0, x_76); -lean_ctor_set(x_222, 1, x_221); -lean_ctor_set(x_49, 0, x_222); +x_213 = lean_array_push(x_212, x_125); +x_214 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; +x_215 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_215, 0, x_214); +lean_ctor_set(x_215, 1, x_213); +x_216 = lean_array_push(x_157, x_215); +x_217 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; +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_132, x_218); +x_220 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_221 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_221, 0, x_220); +lean_ctor_set(x_221, 1, x_219); +x_222 = lean_array_push(x_104, x_221); +x_223 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_223, 0, x_76); +lean_ctor_set(x_223, 1, x_222); +lean_ctor_set(x_49, 0, x_223); return x_49; } } else { -lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; +lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_dec(x_22); -x_223 = lean_ctor_get(x_3, 2); -lean_inc(x_223); -x_224 = lean_ctor_get(x_3, 1); +x_224 = lean_ctor_get(x_3, 2); lean_inc(x_224); +x_225 = lean_ctor_get(x_3, 1); +lean_inc(x_225); lean_dec(x_3); -x_225 = l_Array_empty___closed__1; -x_226 = l_Array_appendCore___rarg(x_225, x_7); +x_226 = l_Array_empty___closed__1; +x_227 = l_Array_appendCore___rarg(x_226, x_7); lean_dec(x_7); -x_227 = l_Lean_nullKind___closed__2; -x_228 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_228, 0, x_227); -lean_ctor_set(x_228, 1, x_226); -x_229 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; -x_230 = lean_array_push(x_229, x_228); -x_231 = lean_array_push(x_225, x_57); -x_232 = l_myMacro____x40_Init_Notation___hyg_7791____closed__8; -lean_inc(x_231); -x_233 = lean_array_push(x_231, x_232); -x_234 = l_Nat_repr(x_10); -x_235 = l_Lean_numLitKind; -x_236 = l_Lean_instInhabitedSourceInfo___closed__1; -x_237 = l_Lean_Syntax_mkLit(x_235, x_234, x_236); -x_238 = lean_array_push(x_233, x_237); -x_239 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; -x_240 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_240, 0, x_239); -lean_ctor_set(x_240, 1, x_238); -x_241 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__9; -x_242 = lean_array_push(x_241, x_240); -x_243 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__10; -x_244 = lean_array_push(x_242, x_243); -x_245 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_245, 0, x_227); -lean_ctor_set(x_245, 1, x_244); -x_246 = lean_array_push(x_230, x_245); -x_247 = l_Array_appendCore___rarg(x_225, x_41); +x_228 = l_Lean_nullKind___closed__2; +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___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; +x_231 = lean_array_push(x_230, x_229); +x_232 = lean_array_push(x_226, x_57); +x_233 = l_myMacro____x40_Init_Notation___hyg_7791____closed__8; +lean_inc(x_232); +x_234 = lean_array_push(x_232, x_233); +x_235 = l_Nat_repr(x_10); +x_236 = l_Lean_numLitKind; +x_237 = l_Lean_instInhabitedSourceInfo___closed__1; +x_238 = l_Lean_Syntax_mkLit(x_236, x_235, x_237); +x_239 = lean_array_push(x_234, x_238); +x_240 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; +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 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__9; +x_243 = lean_array_push(x_242, x_241); +x_244 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__10; +x_245 = lean_array_push(x_243, x_244); +x_246 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_246, 0, x_228); +lean_ctor_set(x_246, 1, x_245); +x_247 = lean_array_push(x_231, x_246); +x_248 = l_Array_appendCore___rarg(x_226, x_41); lean_dec(x_41); -x_248 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_248, 0, x_227); -lean_ctor_set(x_248, 1, x_247); -x_249 = lean_array_push(x_246, x_248); -x_250 = l_myMacro____x40_Init_Notation___hyg_8168____closed__10; -x_251 = lean_array_push(x_249, x_250); -x_252 = lean_array_push(x_251, x_17); -x_253 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; -x_254 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_254, 0, x_253); -lean_ctor_set(x_254, 1, x_252); -x_255 = lean_array_push(x_225, x_254); -x_256 = l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__7; -lean_inc(x_223); +x_249 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_249, 0, x_228); +lean_ctor_set(x_249, 1, x_248); +x_250 = lean_array_push(x_247, x_249); +x_251 = l_myMacro____x40_Init_Notation___hyg_8168____closed__10; +x_252 = lean_array_push(x_250, x_251); +x_253 = lean_array_push(x_252, x_17); +x_254 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; +x_255 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_255, 0, x_254); +lean_ctor_set(x_255, 1, x_253); +x_256 = lean_array_push(x_226, x_255); +x_257 = l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__7; lean_inc(x_224); -x_257 = l_Lean_addMacroScope(x_224, x_256, x_223); -x_258 = lean_box(0); -x_259 = l_Lean_Elab_Command_expandElab___closed__24; -x_260 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_260, 0, x_236); -lean_ctor_set(x_260, 1, x_259); -lean_ctor_set(x_260, 2, x_257); -lean_ctor_set(x_260, 3, x_258); -x_261 = lean_array_push(x_225, x_260); -x_262 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_262, 0, x_227); -lean_ctor_set(x_262, 1, x_231); -x_263 = lean_array_push(x_261, x_262); -x_264 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; -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_225, x_265); -x_267 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_267, 0, x_227); -lean_ctor_set(x_267, 1, x_266); -x_268 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; -x_269 = lean_array_push(x_268, x_267); -x_270 = lean_array_push(x_269, x_243); -x_271 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___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 = lean_array_push(x_225, x_272); -x_274 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_274, 0, x_227); -lean_ctor_set(x_274, 1, x_273); -x_275 = l_Lean_Elab_Tactic_evalIntro___closed__5; -x_276 = lean_array_push(x_275, x_274); -x_277 = l_myMacro____x40_Init_Notation___hyg_8168____closed__22; -x_278 = lean_array_push(x_276, x_277); -x_279 = lean_array_push(x_278, x_277); -x_280 = lean_array_push(x_279, x_277); -x_281 = lean_array_push(x_280, x_277); -x_282 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; -x_283 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_283, 0, x_282); -lean_ctor_set(x_283, 1, x_281); -x_284 = lean_array_push(x_225, x_283); -x_285 = l_Lean_Elab_Command_expandElab___closed__7; -lean_inc(x_223); +lean_inc(x_225); +x_258 = l_Lean_addMacroScope(x_225, x_257, x_224); +x_259 = lean_box(0); +x_260 = l_Lean_Elab_Command_expandElab___closed__24; +x_261 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_261, 0, x_237); +lean_ctor_set(x_261, 1, x_260); +lean_ctor_set(x_261, 2, x_258); +lean_ctor_set(x_261, 3, x_259); +x_262 = lean_array_push(x_226, x_261); +x_263 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_263, 0, x_228); +lean_ctor_set(x_263, 1, x_232); +x_264 = lean_array_push(x_262, x_263); +x_265 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; +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_226, x_266); +x_268 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_268, 0, x_228); +lean_ctor_set(x_268, 1, x_267); +x_269 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; +x_270 = lean_array_push(x_269, x_268); +x_271 = lean_array_push(x_270, x_244); +x_272 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; +x_273 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_273, 0, x_272); +lean_ctor_set(x_273, 1, x_271); +x_274 = lean_array_push(x_226, x_273); +x_275 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_275, 0, x_228); +lean_ctor_set(x_275, 1, x_274); +x_276 = l_Lean_Elab_Tactic_evalIntro___closed__5; +x_277 = lean_array_push(x_276, x_275); +x_278 = l_myMacro____x40_Init_Notation___hyg_8168____closed__22; +x_279 = lean_array_push(x_277, x_278); +x_280 = lean_array_push(x_279, x_278); +x_281 = lean_array_push(x_280, x_278); +x_282 = lean_array_push(x_281, x_278); +x_283 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; +x_284 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_284, 0, x_283); +lean_ctor_set(x_284, 1, x_282); +x_285 = lean_array_push(x_226, x_284); +x_286 = l_Lean_Elab_Command_expandElab___closed__7; lean_inc(x_224); -x_286 = l_Lean_addMacroScope(x_224, x_285, x_223); -x_287 = l_Lean_Elab_Command_expandElab___closed__6; -x_288 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_288, 0, x_236); -lean_ctor_set(x_288, 1, x_287); -lean_ctor_set(x_288, 2, x_286); -lean_ctor_set(x_288, 3, x_258); -x_289 = lean_array_push(x_225, x_288); -x_290 = lean_array_push(x_289, x_277); -x_291 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; -x_292 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_292, 0, x_291); -lean_ctor_set(x_292, 1, x_290); -x_293 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; -x_294 = lean_array_push(x_293, x_292); -x_295 = l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__9; -lean_inc(x_223); +lean_inc(x_225); +x_287 = l_Lean_addMacroScope(x_225, x_286, x_224); +x_288 = l_Lean_Elab_Command_expandElab___closed__6; +x_289 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_289, 0, x_237); +lean_ctor_set(x_289, 1, x_288); +lean_ctor_set(x_289, 2, x_287); +lean_ctor_set(x_289, 3, x_259); +x_290 = lean_array_push(x_226, x_289); +x_291 = lean_array_push(x_290, x_278); +x_292 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; +x_293 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_293, 0, x_292); +lean_ctor_set(x_293, 1, x_291); +x_294 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; +x_295 = lean_array_push(x_294, x_293); +x_296 = l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__9; lean_inc(x_224); -x_296 = l_Lean_addMacroScope(x_224, x_295, x_223); -x_297 = l_Lean_Elab_Command_expandElab___closed__27; -x_298 = l_Lean_Elab_Command_expandElab___closed__29; -x_299 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_299, 0, x_236); -lean_ctor_set(x_299, 1, x_297); -lean_ctor_set(x_299, 2, x_296); -lean_ctor_set(x_299, 3, x_298); -x_300 = l_myMacro____x40_Init_Notation___hyg_8168____closed__11; -x_301 = lean_array_push(x_300, x_299); -x_302 = l_Lean_expandExplicitBindersAux_loop___closed__8; -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_225, x_303); -x_305 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_305, 0, x_227); -lean_ctor_set(x_305, 1, x_304); -x_306 = lean_array_push(x_275, x_305); -x_307 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; -x_308 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_308, 0, x_307); -lean_ctor_set(x_308, 1, x_306); -x_309 = lean_array_push(x_294, x_308); -x_310 = l___kind_stx____x40_Init_Notation___hyg_7374____closed__2; -lean_inc(x_223); +lean_inc(x_225); +x_297 = l_Lean_addMacroScope(x_225, x_296, x_224); +x_298 = l_Lean_Elab_Command_expandElab___closed__27; +x_299 = l_Lean_Elab_Command_expandElab___closed__29; +x_300 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_300, 0, x_237); +lean_ctor_set(x_300, 1, x_298); +lean_ctor_set(x_300, 2, x_297); +lean_ctor_set(x_300, 3, x_299); +x_301 = l_myMacro____x40_Init_Notation___hyg_8168____closed__11; +x_302 = lean_array_push(x_301, x_300); +x_303 = l_Lean_expandExplicitBindersAux_loop___closed__8; +x_304 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_304, 0, x_303); +lean_ctor_set(x_304, 1, x_302); +x_305 = lean_array_push(x_226, x_304); +x_306 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_306, 0, x_228); +lean_ctor_set(x_306, 1, x_305); +x_307 = lean_array_push(x_276, x_306); +x_308 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; +x_309 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_309, 0, x_308); +lean_ctor_set(x_309, 1, x_307); +x_310 = lean_array_push(x_295, x_309); +x_311 = l___kind_stx____x40_Init_Notation___hyg_7374____closed__2; lean_inc(x_224); -x_311 = l_Lean_addMacroScope(x_224, x_310, x_223); -x_312 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_313 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_313, 0, x_236); -lean_ctor_set(x_313, 1, x_312); -lean_ctor_set(x_313, 2, x_311); -lean_ctor_set(x_313, 3, x_258); -lean_inc(x_313); -x_314 = lean_array_push(x_225, x_313); -x_315 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_315, 0, x_227); -lean_ctor_set(x_315, 1, x_314); -x_316 = lean_array_push(x_225, x_315); -x_317 = l_myMacro____x40_Init_Notation___hyg_5739____closed__19; -x_318 = lean_array_push(x_316, x_317); -x_319 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; -x_320 = lean_array_push(x_319, x_313); -x_321 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_322 = lean_array_push(x_320, x_321); -x_323 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; -x_324 = lean_array_push(x_323, x_56); -x_325 = l_myMacro____x40_Init_Notation___hyg_5739____closed__22; -x_326 = lean_array_push(x_324, x_325); -x_327 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_328 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_328, 0, x_327); -lean_ctor_set(x_328, 1, x_326); -x_329 = lean_array_push(x_225, x_328); -x_330 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_330, 0, x_227); -lean_ctor_set(x_330, 1, x_329); -x_331 = lean_array_push(x_225, x_330); -x_332 = lean_array_push(x_331, x_317); -x_333 = lean_array_push(x_332, x_21); -x_334 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_335 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_335, 0, x_334); -lean_ctor_set(x_335, 1, x_333); -x_336 = lean_array_push(x_225, x_335); -x_337 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_338 = lean_array_push(x_336, x_337); -x_339 = l_Lean_Elab_Command_expandElab___closed__19; -x_340 = l_Lean_addMacroScope(x_224, x_339, x_223); -x_341 = l_Lean_Elab_Command_expandElab___closed__18; -x_342 = l_Lean_Elab_Command_expandElab___closed__22; -x_343 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_343, 0, x_236); -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 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; -x_345 = lean_array_push(x_344, x_343); -x_346 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_346, 0, x_334); -lean_ctor_set(x_346, 1, x_345); -x_347 = lean_array_push(x_338, x_346); -x_348 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_348, 0, x_227); -lean_ctor_set(x_348, 1, x_347); -x_349 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -x_350 = lean_array_push(x_349, x_348); -x_351 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; -x_352 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_352, 0, x_351); -lean_ctor_set(x_352, 1, x_350); -x_353 = lean_array_push(x_322, x_352); -x_354 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_355 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_355, 0, x_354); -lean_ctor_set(x_355, 1, x_353); -x_356 = lean_array_push(x_318, x_355); -x_357 = l_myMacro____x40_Init_Notation___hyg_5739____closed__17; -x_358 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_358, 0, x_357); -lean_ctor_set(x_358, 1, x_356); -x_359 = l_myMacro____x40_Init_Notation___hyg_5739____closed__15; -x_360 = lean_array_push(x_359, x_358); -x_361 = l_myMacro____x40_Init_Notation___hyg_5739____closed__13; -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 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_11379____closed__7; -x_364 = lean_array_push(x_363, x_362); -x_365 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; -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_309, x_366); -x_368 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___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_284, x_369); -x_371 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; -x_372 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_372, 0, x_371); -lean_ctor_set(x_372, 1, x_370); -x_373 = lean_array_push(x_255, x_372); +lean_inc(x_225); +x_312 = l_Lean_addMacroScope(x_225, x_311, x_224); +x_313 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_314 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_314, 0, x_237); +lean_ctor_set(x_314, 1, x_313); +lean_ctor_set(x_314, 2, x_312); +lean_ctor_set(x_314, 3, x_259); +lean_inc(x_314); +x_315 = lean_array_push(x_226, x_314); +x_316 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_316, 0, x_228); +lean_ctor_set(x_316, 1, x_315); +x_317 = lean_array_push(x_226, x_316); +x_318 = l_myMacro____x40_Init_Notation___hyg_5739____closed__19; +x_319 = lean_array_push(x_317, x_318); +x_320 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; +x_321 = lean_array_push(x_320, x_314); +x_322 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_323 = lean_array_push(x_321, x_322); +x_324 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; +x_325 = lean_array_push(x_324, x_56); +x_326 = l_myMacro____x40_Init_Notation___hyg_5739____closed__22; +x_327 = lean_array_push(x_325, x_326); +x_328 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_329 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_329, 0, x_328); +lean_ctor_set(x_329, 1, x_327); +x_330 = lean_array_push(x_226, x_329); +x_331 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_331, 0, x_228); +lean_ctor_set(x_331, 1, x_330); +x_332 = lean_array_push(x_226, x_331); +x_333 = lean_array_push(x_332, x_318); +x_334 = lean_array_push(x_333, x_21); +x_335 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_336 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_336, 0, x_335); +lean_ctor_set(x_336, 1, x_334); +x_337 = lean_array_push(x_226, x_336); +x_338 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_339 = lean_array_push(x_337, x_338); +x_340 = l_Lean_Elab_Command_expandElab___closed__19; +x_341 = l_Lean_addMacroScope(x_225, x_340, x_224); +x_342 = l_Lean_Elab_Command_expandElab___closed__18; +x_343 = l_Lean_Elab_Command_expandElab___closed__22; +x_344 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_344, 0, x_237); +lean_ctor_set(x_344, 1, x_342); +lean_ctor_set(x_344, 2, x_341); +lean_ctor_set(x_344, 3, x_343); +x_345 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; +x_346 = lean_array_push(x_345, x_344); +x_347 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_347, 0, x_335); +lean_ctor_set(x_347, 1, x_346); +x_348 = lean_array_push(x_339, x_347); +x_349 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_349, 0, x_228); +lean_ctor_set(x_349, 1, x_348); +x_350 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +x_351 = lean_array_push(x_350, x_349); +x_352 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; +x_353 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_353, 0, x_352); +lean_ctor_set(x_353, 1, x_351); +x_354 = lean_array_push(x_323, x_353); +x_355 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___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_354); +x_357 = lean_array_push(x_319, x_356); +x_358 = l_myMacro____x40_Init_Notation___hyg_5739____closed__17; +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 = l_myMacro____x40_Init_Notation___hyg_5739____closed__15; +x_361 = lean_array_push(x_360, x_359); +x_362 = l_myMacro____x40_Init_Notation___hyg_5739____closed__13; +x_363 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_363, 0, x_362); +lean_ctor_set(x_363, 1, x_361); +x_364 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_11379____closed__7; +x_365 = lean_array_push(x_364, x_363); +x_366 = lean_array_push(x_365, x_278); +x_367 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; +x_368 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_368, 0, x_367); +lean_ctor_set(x_368, 1, x_366); +x_369 = lean_array_push(x_310, x_368); +x_370 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; +x_371 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_371, 0, x_370); +lean_ctor_set(x_371, 1, x_369); +x_372 = lean_array_push(x_285, x_371); +x_373 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; x_374 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_374, 0, x_227); -lean_ctor_set(x_374, 1, x_373); -lean_ctor_set(x_49, 0, x_374); +lean_ctor_set(x_374, 0, x_373); +lean_ctor_set(x_374, 1, x_372); +x_375 = lean_array_push(x_256, x_374); +x_376 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_376, 0, x_228); +lean_ctor_set(x_376, 1, x_375); +lean_ctor_set(x_49, 0, x_376); return x_49; } } else { -lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; +lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_dec(x_22); -x_375 = lean_ctor_get(x_3, 2); -lean_inc(x_375); -x_376 = lean_ctor_get(x_3, 1); -lean_inc(x_376); +x_377 = lean_ctor_get(x_3, 2); +lean_inc(x_377); +x_378 = lean_ctor_get(x_3, 1); +lean_inc(x_378); lean_dec(x_3); -x_377 = l_Array_empty___closed__1; -x_378 = l_Array_appendCore___rarg(x_377, x_7); +x_379 = l_Array_empty___closed__1; +x_380 = l_Array_appendCore___rarg(x_379, x_7); lean_dec(x_7); -x_379 = l_Lean_nullKind___closed__2; -x_380 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_380, 0, x_379); -lean_ctor_set(x_380, 1, x_378); -x_381 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; -x_382 = lean_array_push(x_381, x_380); -x_383 = lean_array_push(x_377, x_57); -x_384 = l_myMacro____x40_Init_Notation___hyg_7791____closed__8; -lean_inc(x_383); -x_385 = lean_array_push(x_383, x_384); -x_386 = l_Nat_repr(x_10); -x_387 = l_Lean_numLitKind; -x_388 = l_Lean_instInhabitedSourceInfo___closed__1; -x_389 = l_Lean_Syntax_mkLit(x_387, x_386, x_388); -x_390 = lean_array_push(x_385, x_389); -x_391 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; -x_392 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_392, 0, x_391); -lean_ctor_set(x_392, 1, x_390); -x_393 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__9; -x_394 = lean_array_push(x_393, x_392); -x_395 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__10; -x_396 = lean_array_push(x_394, x_395); -x_397 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_397, 0, x_379); -lean_ctor_set(x_397, 1, x_396); -x_398 = lean_array_push(x_382, x_397); -x_399 = l_Array_appendCore___rarg(x_377, x_41); +x_381 = l_Lean_nullKind___closed__2; +x_382 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_382, 0, x_381); +lean_ctor_set(x_382, 1, x_380); +x_383 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; +x_384 = lean_array_push(x_383, x_382); +x_385 = lean_array_push(x_379, x_57); +x_386 = l_myMacro____x40_Init_Notation___hyg_7791____closed__8; +lean_inc(x_385); +x_387 = lean_array_push(x_385, x_386); +x_388 = l_Nat_repr(x_10); +x_389 = l_Lean_numLitKind; +x_390 = l_Lean_instInhabitedSourceInfo___closed__1; +x_391 = l_Lean_Syntax_mkLit(x_389, x_388, x_390); +x_392 = lean_array_push(x_387, x_391); +x_393 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; +x_394 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_394, 0, x_393); +lean_ctor_set(x_394, 1, x_392); +x_395 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__9; +x_396 = lean_array_push(x_395, x_394); +x_397 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__10; +x_398 = lean_array_push(x_396, x_397); +x_399 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_399, 0, x_381); +lean_ctor_set(x_399, 1, x_398); +x_400 = lean_array_push(x_384, x_399); +x_401 = l_Array_appendCore___rarg(x_379, x_41); lean_dec(x_41); -x_400 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_400, 0, x_379); -lean_ctor_set(x_400, 1, x_399); -x_401 = lean_array_push(x_398, x_400); -x_402 = l_myMacro____x40_Init_Notation___hyg_8168____closed__10; -x_403 = lean_array_push(x_401, x_402); -x_404 = lean_array_push(x_403, x_17); -x_405 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; -x_406 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_406, 0, x_405); -lean_ctor_set(x_406, 1, x_404); -x_407 = lean_array_push(x_377, x_406); -x_408 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; -lean_inc(x_375); -lean_inc(x_376); -x_409 = l_Lean_addMacroScope(x_376, x_408, x_375); -x_410 = lean_box(0); -x_411 = l_Lean_Elab_Command_expandElab___closed__31; -x_412 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_412, 0, x_388); -lean_ctor_set(x_412, 1, x_411); -lean_ctor_set(x_412, 2, x_409); -lean_ctor_set(x_412, 3, x_410); -x_413 = lean_array_push(x_377, x_412); -x_414 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_414, 0, x_379); -lean_ctor_set(x_414, 1, x_383); -x_415 = lean_array_push(x_413, x_414); -x_416 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; -x_417 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_417, 0, x_416); -lean_ctor_set(x_417, 1, x_415); -x_418 = lean_array_push(x_377, x_417); +x_402 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_402, 0, x_381); +lean_ctor_set(x_402, 1, x_401); +x_403 = lean_array_push(x_400, x_402); +x_404 = l_myMacro____x40_Init_Notation___hyg_8168____closed__10; +x_405 = lean_array_push(x_403, x_404); +x_406 = lean_array_push(x_405, x_17); +x_407 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; +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_379, x_408); +x_410 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; +lean_inc(x_377); +lean_inc(x_378); +x_411 = l_Lean_addMacroScope(x_378, x_410, x_377); +x_412 = lean_box(0); +x_413 = l_Lean_Elab_Command_expandElab___closed__31; +x_414 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_414, 0, x_390); +lean_ctor_set(x_414, 1, x_413); +lean_ctor_set(x_414, 2, x_411); +lean_ctor_set(x_414, 3, x_412); +x_415 = lean_array_push(x_379, x_414); +x_416 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_416, 0, x_381); +lean_ctor_set(x_416, 1, x_385); +x_417 = lean_array_push(x_415, x_416); +x_418 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; x_419 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_419, 0, x_379); -lean_ctor_set(x_419, 1, x_418); -x_420 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; -x_421 = lean_array_push(x_420, x_419); -x_422 = lean_array_push(x_421, x_395); -x_423 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; -x_424 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_424, 0, x_423); -lean_ctor_set(x_424, 1, x_422); -x_425 = lean_array_push(x_377, x_424); +lean_ctor_set(x_419, 0, x_418); +lean_ctor_set(x_419, 1, x_417); +x_420 = lean_array_push(x_379, x_419); +x_421 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_421, 0, x_381); +lean_ctor_set(x_421, 1, x_420); +x_422 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; +x_423 = lean_array_push(x_422, x_421); +x_424 = lean_array_push(x_423, x_397); +x_425 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; x_426 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_426, 0, x_379); -lean_ctor_set(x_426, 1, x_425); -x_427 = l_Lean_Elab_Tactic_evalIntro___closed__5; -x_428 = lean_array_push(x_427, x_426); -x_429 = l_myMacro____x40_Init_Notation___hyg_8168____closed__22; -x_430 = lean_array_push(x_428, x_429); -x_431 = lean_array_push(x_430, x_429); -x_432 = lean_array_push(x_431, x_429); -x_433 = lean_array_push(x_432, x_429); -x_434 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; -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 = lean_array_push(x_377, x_435); -x_437 = l_Lean_Elab_Command_expandElab___closed__7; -lean_inc(x_375); -lean_inc(x_376); -x_438 = l_Lean_addMacroScope(x_376, x_437, x_375); -x_439 = l_Lean_Elab_Command_expandElab___closed__6; -x_440 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_440, 0, x_388); -lean_ctor_set(x_440, 1, x_439); -lean_ctor_set(x_440, 2, x_438); -lean_ctor_set(x_440, 3, x_410); -x_441 = lean_array_push(x_377, x_440); -x_442 = lean_array_push(x_441, x_429); -x_443 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; -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 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; -x_446 = lean_array_push(x_445, x_444); -x_447 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; -lean_inc(x_375); -lean_inc(x_376); -x_448 = l_Lean_addMacroScope(x_376, x_447, x_375); -x_449 = l_Lean_Elab_Command_expandElab___closed__34; -x_450 = l_Lean_Elab_Command_expandElab___closed__36; -x_451 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_451, 0, x_388); -lean_ctor_set(x_451, 1, x_449); -lean_ctor_set(x_451, 2, x_448); -lean_ctor_set(x_451, 3, x_450); -x_452 = l_myMacro____x40_Init_Notation___hyg_8168____closed__11; -x_453 = lean_array_push(x_452, x_451); -x_454 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_455 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_455, 0, x_454); -lean_ctor_set(x_455, 1, x_453); -x_456 = lean_array_push(x_377, x_455); +lean_ctor_set(x_426, 0, x_425); +lean_ctor_set(x_426, 1, x_424); +x_427 = lean_array_push(x_379, x_426); +x_428 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_428, 0, x_381); +lean_ctor_set(x_428, 1, x_427); +x_429 = l_Lean_Elab_Tactic_evalIntro___closed__5; +x_430 = lean_array_push(x_429, x_428); +x_431 = l_myMacro____x40_Init_Notation___hyg_8168____closed__22; +x_432 = lean_array_push(x_430, x_431); +x_433 = lean_array_push(x_432, x_431); +x_434 = lean_array_push(x_433, x_431); +x_435 = lean_array_push(x_434, x_431); +x_436 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; +x_437 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_437, 0, x_436); +lean_ctor_set(x_437, 1, x_435); +x_438 = lean_array_push(x_379, x_437); +x_439 = l_Lean_Elab_Command_expandElab___closed__7; +lean_inc(x_377); +lean_inc(x_378); +x_440 = l_Lean_addMacroScope(x_378, x_439, x_377); +x_441 = l_Lean_Elab_Command_expandElab___closed__6; +x_442 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_442, 0, x_390); +lean_ctor_set(x_442, 1, x_441); +lean_ctor_set(x_442, 2, x_440); +lean_ctor_set(x_442, 3, x_412); +x_443 = lean_array_push(x_379, x_442); +x_444 = lean_array_push(x_443, x_431); +x_445 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; +x_446 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_446, 0, x_445); +lean_ctor_set(x_446, 1, x_444); +x_447 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; +x_448 = lean_array_push(x_447, x_446); +x_449 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; +lean_inc(x_377); +lean_inc(x_378); +x_450 = l_Lean_addMacroScope(x_378, x_449, x_377); +x_451 = l_Lean_Elab_Command_expandElab___closed__34; +x_452 = l_Lean_Elab_Command_expandElab___closed__36; +x_453 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_453, 0, x_390); +lean_ctor_set(x_453, 1, x_451); +lean_ctor_set(x_453, 2, x_450); +lean_ctor_set(x_453, 3, x_452); +x_454 = l_myMacro____x40_Init_Notation___hyg_8168____closed__11; +x_455 = lean_array_push(x_454, x_453); +x_456 = l_Lean_expandExplicitBindersAux_loop___closed__8; x_457 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_457, 0, x_379); -lean_ctor_set(x_457, 1, x_456); -x_458 = lean_array_push(x_427, x_457); -x_459 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; -x_460 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_460, 0, x_459); -lean_ctor_set(x_460, 1, x_458); -x_461 = lean_array_push(x_446, x_460); -x_462 = l___kind_stx____x40_Init_Notation___hyg_7374____closed__2; -lean_inc(x_375); -lean_inc(x_376); -x_463 = l_Lean_addMacroScope(x_376, x_462, x_375); -x_464 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_465 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_465, 0, x_388); -lean_ctor_set(x_465, 1, x_464); -lean_ctor_set(x_465, 2, x_463); -lean_ctor_set(x_465, 3, x_410); -lean_inc(x_465); -x_466 = lean_array_push(x_377, x_465); -x_467 = l_myMacro____x40_Init_Notation___hyg_8168____closed__17; -x_468 = lean_array_push(x_466, x_467); -x_469 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_469, 0, x_379); -lean_ctor_set(x_469, 1, x_468); -x_470 = lean_array_push(x_377, x_469); -x_471 = l_myMacro____x40_Init_Notation___hyg_5739____closed__19; -x_472 = lean_array_push(x_470, x_471); -x_473 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; -x_474 = lean_array_push(x_473, x_465); -x_475 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_476 = lean_array_push(x_474, x_475); -x_477 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; -x_478 = lean_array_push(x_477, x_56); -x_479 = l_myMacro____x40_Init_Notation___hyg_5739____closed__22; -x_480 = lean_array_push(x_478, x_479); -x_481 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_482 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_482, 0, x_481); -lean_ctor_set(x_482, 1, x_480); -x_483 = lean_array_push(x_377, x_482); +lean_ctor_set(x_457, 0, x_456); +lean_ctor_set(x_457, 1, x_455); +x_458 = lean_array_push(x_379, x_457); +x_459 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_459, 0, x_381); +lean_ctor_set(x_459, 1, x_458); +x_460 = lean_array_push(x_429, x_459); +x_461 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; +x_462 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_462, 0, x_461); +lean_ctor_set(x_462, 1, x_460); +x_463 = lean_array_push(x_448, x_462); +x_464 = l___kind_stx____x40_Init_Notation___hyg_7374____closed__2; +lean_inc(x_377); +lean_inc(x_378); +x_465 = l_Lean_addMacroScope(x_378, x_464, x_377); +x_466 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_467 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_467, 0, x_390); +lean_ctor_set(x_467, 1, x_466); +lean_ctor_set(x_467, 2, x_465); +lean_ctor_set(x_467, 3, x_412); +lean_inc(x_467); +x_468 = lean_array_push(x_379, x_467); +x_469 = l_myMacro____x40_Init_Notation___hyg_8168____closed__17; +x_470 = lean_array_push(x_468, x_469); +x_471 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_471, 0, x_381); +lean_ctor_set(x_471, 1, x_470); +x_472 = lean_array_push(x_379, x_471); +x_473 = l_myMacro____x40_Init_Notation___hyg_5739____closed__19; +x_474 = lean_array_push(x_472, x_473); +x_475 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; +x_476 = lean_array_push(x_475, x_467); +x_477 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_478 = lean_array_push(x_476, x_477); +x_479 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; +x_480 = lean_array_push(x_479, x_56); +x_481 = l_myMacro____x40_Init_Notation___hyg_5739____closed__22; +x_482 = lean_array_push(x_480, x_481); +x_483 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; x_484 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_484, 0, x_379); -lean_ctor_set(x_484, 1, x_483); -x_485 = lean_array_push(x_377, x_484); -x_486 = lean_array_push(x_485, x_471); -x_487 = lean_array_push(x_486, x_21); -x_488 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -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 = lean_array_push(x_377, x_489); -x_491 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_492 = lean_array_push(x_490, x_491); -x_493 = l_Lean_Elab_Command_expandElab___closed__19; -x_494 = l_Lean_addMacroScope(x_376, x_493, x_375); -x_495 = l_Lean_Elab_Command_expandElab___closed__18; -x_496 = l_Lean_Elab_Command_expandElab___closed__22; -x_497 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_497, 0, x_388); -lean_ctor_set(x_497, 1, x_495); -lean_ctor_set(x_497, 2, x_494); -lean_ctor_set(x_497, 3, x_496); -x_498 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; -x_499 = lean_array_push(x_498, x_497); -x_500 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_500, 0, x_488); -lean_ctor_set(x_500, 1, x_499); -x_501 = lean_array_push(x_492, x_500); +lean_ctor_set(x_484, 0, x_483); +lean_ctor_set(x_484, 1, x_482); +x_485 = lean_array_push(x_379, x_484); +x_486 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_486, 0, x_381); +lean_ctor_set(x_486, 1, x_485); +x_487 = lean_array_push(x_379, x_486); +x_488 = lean_array_push(x_487, x_473); +x_489 = lean_array_push(x_488, x_21); +x_490 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_491 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_491, 0, x_490); +lean_ctor_set(x_491, 1, x_489); +x_492 = lean_array_push(x_379, x_491); +x_493 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_494 = lean_array_push(x_492, x_493); +x_495 = l_Lean_Elab_Command_expandElab___closed__19; +x_496 = l_Lean_addMacroScope(x_378, x_495, x_377); +x_497 = l_Lean_Elab_Command_expandElab___closed__18; +x_498 = l_Lean_Elab_Command_expandElab___closed__22; +x_499 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_499, 0, x_390); +lean_ctor_set(x_499, 1, x_497); +lean_ctor_set(x_499, 2, x_496); +lean_ctor_set(x_499, 3, x_498); +x_500 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; +x_501 = lean_array_push(x_500, x_499); x_502 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_502, 0, x_379); +lean_ctor_set(x_502, 0, x_490); lean_ctor_set(x_502, 1, x_501); -x_503 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -x_504 = lean_array_push(x_503, x_502); -x_505 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; -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_476, x_506); -x_508 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___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_472, x_509); -x_511 = l_myMacro____x40_Init_Notation___hyg_5739____closed__17; -x_512 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_512, 0, x_511); -lean_ctor_set(x_512, 1, x_510); -x_513 = l_myMacro____x40_Init_Notation___hyg_5739____closed__15; -x_514 = lean_array_push(x_513, x_512); -x_515 = l_myMacro____x40_Init_Notation___hyg_5739____closed__13; -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_517 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_11379____closed__7; -x_518 = lean_array_push(x_517, x_516); -x_519 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; -x_520 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_520, 0, x_519); -lean_ctor_set(x_520, 1, x_518); -x_521 = lean_array_push(x_461, x_520); -x_522 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; +x_503 = lean_array_push(x_494, x_502); +x_504 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_504, 0, x_381); +lean_ctor_set(x_504, 1, x_503); +x_505 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +x_506 = lean_array_push(x_505, x_504); +x_507 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; +x_508 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_508, 0, x_507); +lean_ctor_set(x_508, 1, x_506); +x_509 = lean_array_push(x_478, x_508); +x_510 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_511 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_511, 0, x_510); +lean_ctor_set(x_511, 1, x_509); +x_512 = lean_array_push(x_474, x_511); +x_513 = l_myMacro____x40_Init_Notation___hyg_5739____closed__17; +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 = l_myMacro____x40_Init_Notation___hyg_5739____closed__15; +x_516 = lean_array_push(x_515, x_514); +x_517 = l_myMacro____x40_Init_Notation___hyg_5739____closed__13; +x_518 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_518, 0, x_517); +lean_ctor_set(x_518, 1, x_516); +x_519 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_11379____closed__7; +x_520 = lean_array_push(x_519, x_518); +x_521 = lean_array_push(x_520, x_431); +x_522 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; x_523 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_523, 0, x_522); lean_ctor_set(x_523, 1, x_521); -x_524 = lean_array_push(x_436, x_523); -x_525 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_524 = lean_array_push(x_463, x_523); +x_525 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; x_526 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_526, 0, x_525); lean_ctor_set(x_526, 1, x_524); -x_527 = lean_array_push(x_407, x_526); -x_528 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_528, 0, x_379); -lean_ctor_set(x_528, 1, x_527); -lean_ctor_set(x_49, 0, x_528); +x_527 = lean_array_push(x_438, x_526); +x_528 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_529 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_529, 0, x_528); +lean_ctor_set(x_529, 1, x_527); +x_530 = lean_array_push(x_409, x_529); +x_531 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_531, 0, x_381); +lean_ctor_set(x_531, 1, x_530); +lean_ctor_set(x_49, 0, x_531); return x_49; } } else { -lean_object* x_529; uint8_t x_530; -x_529 = l___kind_term____x40_Init_Notation___hyg_3____closed__16; -x_530 = lean_name_eq(x_22, x_529); -if (x_530 == 0) +lean_object* x_532; uint8_t x_533; +x_532 = l___kind_term____x40_Init_Notation___hyg_3____closed__16; +x_533 = lean_name_eq(x_22, x_532); +if (x_533 == 0) { -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_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_dec(x_57); lean_dec(x_56); lean_free_object(x_49); @@ -21756,1478 +21766,1483 @@ lean_dec(x_21); lean_dec(x_17); lean_dec(x_10); lean_dec(x_7); -x_531 = l_Lean_Name_toString___closed__1; -x_532 = l_Lean_Name_toStringWithSep(x_531, x_22); -x_533 = l_Lean_Elab_Command_expandElab___closed__37; -x_534 = lean_string_append(x_533, x_532); -lean_dec(x_532); -x_535 = l_Lean_Elab_Command_expandElab___closed__38; -x_536 = lean_string_append(x_534, x_535); -x_537 = l_Lean_Macro_throwErrorAt___rarg(x_19, x_536, x_3, x_52); +x_534 = l_Lean_Name_toString___closed__1; +x_535 = l_Lean_Name_toStringWithSep(x_534, x_22); +x_536 = l_Lean_Elab_Command_expandElab___closed__37; +x_537 = lean_string_append(x_536, x_535); +lean_dec(x_535); +x_538 = l_Lean_Elab_Command_expandElab___closed__38; +x_539 = lean_string_append(x_537, x_538); +x_540 = l_Lean_Macro_throwErrorAt___rarg(x_19, x_539, x_3, x_52); lean_dec(x_19); -return x_537; +return x_540; } else { -lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; lean_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; lean_object* x_682; lean_object* x_683; lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; +lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; lean_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; lean_object* x_682; lean_object* x_683; lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; lean_object* x_717; lean_object* x_718; lean_object* x_719; lean_dec(x_22); -x_538 = l_Lean_Syntax_getArg(x_19, x_5); +x_541 = l_Lean_Syntax_getArg(x_19, x_5); lean_dec(x_19); -x_539 = lean_ctor_get(x_3, 2); -lean_inc(x_539); -x_540 = lean_ctor_get(x_3, 1); -lean_inc(x_540); +x_542 = lean_ctor_get(x_3, 2); +lean_inc(x_542); +x_543 = lean_ctor_get(x_3, 1); +lean_inc(x_543); lean_dec(x_3); -x_541 = l_Array_empty___closed__1; -x_542 = l_Array_appendCore___rarg(x_541, x_7); +x_544 = l_Array_empty___closed__1; +x_545 = l_Array_appendCore___rarg(x_544, x_7); lean_dec(x_7); -x_543 = l_Lean_nullKind___closed__2; -x_544 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_544, 0, x_543); -lean_ctor_set(x_544, 1, x_542); -x_545 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; -x_546 = lean_array_push(x_545, x_544); -x_547 = lean_array_push(x_541, x_57); -x_548 = l_myMacro____x40_Init_Notation___hyg_7791____closed__8; -lean_inc(x_547); -x_549 = lean_array_push(x_547, x_548); -x_550 = l_Nat_repr(x_10); -x_551 = l_Lean_numLitKind; -x_552 = l_Lean_instInhabitedSourceInfo___closed__1; -x_553 = l_Lean_Syntax_mkLit(x_551, x_550, x_552); -x_554 = lean_array_push(x_549, x_553); -x_555 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; -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 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__9; -x_558 = lean_array_push(x_557, x_556); -x_559 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__10; -x_560 = lean_array_push(x_558, x_559); -x_561 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_561, 0, x_543); -lean_ctor_set(x_561, 1, x_560); -x_562 = lean_array_push(x_546, x_561); -x_563 = l_Array_appendCore___rarg(x_541, x_41); -lean_dec(x_41); +x_546 = l_Lean_nullKind___closed__2; +x_547 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_547, 0, x_546); +lean_ctor_set(x_547, 1, x_545); +x_548 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; +x_549 = lean_array_push(x_548, x_547); +x_550 = lean_array_push(x_544, x_57); +x_551 = l_myMacro____x40_Init_Notation___hyg_7791____closed__8; +lean_inc(x_550); +x_552 = lean_array_push(x_550, x_551); +x_553 = l_Nat_repr(x_10); +x_554 = l_Lean_numLitKind; +x_555 = l_Lean_instInhabitedSourceInfo___closed__1; +x_556 = l_Lean_Syntax_mkLit(x_554, x_553, x_555); +x_557 = lean_array_push(x_552, x_556); +x_558 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; +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_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__9; +x_561 = lean_array_push(x_560, x_559); +x_562 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__10; +x_563 = lean_array_push(x_561, x_562); x_564 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_564, 0, x_543); +lean_ctor_set(x_564, 0, x_546); lean_ctor_set(x_564, 1, x_563); -x_565 = lean_array_push(x_562, x_564); -x_566 = l_myMacro____x40_Init_Notation___hyg_8168____closed__10; -x_567 = lean_array_push(x_565, x_566); -x_568 = lean_array_push(x_567, x_17); -x_569 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; -x_570 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_570, 0, x_569); -lean_ctor_set(x_570, 1, x_568); -x_571 = lean_array_push(x_541, x_570); -x_572 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; -lean_inc(x_539); -lean_inc(x_540); -x_573 = l_Lean_addMacroScope(x_540, x_572, x_539); -x_574 = lean_box(0); -x_575 = l_Lean_Elab_Command_expandElab___closed__31; -x_576 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_576, 0, x_552); -lean_ctor_set(x_576, 1, x_575); -lean_ctor_set(x_576, 2, x_573); -lean_ctor_set(x_576, 3, x_574); -x_577 = lean_array_push(x_541, x_576); -x_578 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_578, 0, x_543); -lean_ctor_set(x_578, 1, x_547); -x_579 = lean_array_push(x_577, x_578); -x_580 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; +x_565 = lean_array_push(x_549, x_564); +x_566 = l_Array_appendCore___rarg(x_544, x_41); +lean_dec(x_41); +x_567 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_567, 0, x_546); +lean_ctor_set(x_567, 1, x_566); +x_568 = lean_array_push(x_565, x_567); +x_569 = l_myMacro____x40_Init_Notation___hyg_8168____closed__10; +x_570 = lean_array_push(x_568, x_569); +x_571 = lean_array_push(x_570, x_17); +x_572 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; +x_573 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_573, 0, x_572); +lean_ctor_set(x_573, 1, x_571); +x_574 = lean_array_push(x_544, x_573); +x_575 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; +lean_inc(x_542); +lean_inc(x_543); +x_576 = l_Lean_addMacroScope(x_543, x_575, x_542); +x_577 = lean_box(0); +x_578 = l_Lean_Elab_Command_expandElab___closed__31; +x_579 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_579, 0, x_555); +lean_ctor_set(x_579, 1, x_578); +lean_ctor_set(x_579, 2, x_576); +lean_ctor_set(x_579, 3, x_577); +x_580 = lean_array_push(x_544, x_579); x_581 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_581, 0, x_580); -lean_ctor_set(x_581, 1, x_579); -x_582 = lean_array_push(x_541, x_581); -x_583 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_583, 0, x_543); -lean_ctor_set(x_583, 1, x_582); -x_584 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; -x_585 = lean_array_push(x_584, x_583); -x_586 = lean_array_push(x_585, x_559); -x_587 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; -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 = lean_array_push(x_541, x_588); -x_590 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_590, 0, x_543); -lean_ctor_set(x_590, 1, x_589); -x_591 = l_Lean_Elab_Tactic_evalIntro___closed__5; -x_592 = lean_array_push(x_591, x_590); -x_593 = l_myMacro____x40_Init_Notation___hyg_8168____closed__22; -x_594 = lean_array_push(x_592, x_593); +lean_ctor_set(x_581, 0, x_546); +lean_ctor_set(x_581, 1, x_550); +x_582 = lean_array_push(x_580, x_581); +x_583 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; +x_584 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_584, 0, x_583); +lean_ctor_set(x_584, 1, x_582); +x_585 = lean_array_push(x_544, x_584); +x_586 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_586, 0, x_546); +lean_ctor_set(x_586, 1, x_585); +x_587 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; +x_588 = lean_array_push(x_587, x_586); +x_589 = lean_array_push(x_588, x_562); +x_590 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; +x_591 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_591, 0, x_590); +lean_ctor_set(x_591, 1, x_589); +x_592 = lean_array_push(x_544, x_591); +x_593 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_593, 0, x_546); +lean_ctor_set(x_593, 1, x_592); +x_594 = l_Lean_Elab_Tactic_evalIntro___closed__5; x_595 = lean_array_push(x_594, x_593); -x_596 = lean_array_push(x_595, x_593); -x_597 = lean_array_push(x_596, x_593); -x_598 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; -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_541, x_599); -x_601 = l_Lean_Elab_Command_expandElab___closed__7; -lean_inc(x_539); -lean_inc(x_540); -x_602 = l_Lean_addMacroScope(x_540, x_601, x_539); -x_603 = l_Lean_Elab_Command_expandElab___closed__6; -x_604 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_604, 0, x_552); -lean_ctor_set(x_604, 1, x_603); -lean_ctor_set(x_604, 2, x_602); -lean_ctor_set(x_604, 3, x_574); -x_605 = lean_array_push(x_541, x_604); -x_606 = lean_array_push(x_605, x_593); -x_607 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; -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 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; -x_610 = lean_array_push(x_609, x_608); -x_611 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; -lean_inc(x_539); -lean_inc(x_540); -x_612 = l_Lean_addMacroScope(x_540, x_611, x_539); -x_613 = l_Lean_Elab_Command_expandElab___closed__34; -x_614 = l_Lean_Elab_Command_expandElab___closed__36; -x_615 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_615, 0, x_552); -lean_ctor_set(x_615, 1, x_613); -lean_ctor_set(x_615, 2, x_612); -lean_ctor_set(x_615, 3, x_614); -x_616 = l_myMacro____x40_Init_Notation___hyg_8168____closed__11; -x_617 = lean_array_push(x_616, x_615); -x_618 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_619 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_619, 0, x_618); -lean_ctor_set(x_619, 1, x_617); -x_620 = lean_array_push(x_541, x_619); -x_621 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_621, 0, x_543); -lean_ctor_set(x_621, 1, x_620); -x_622 = lean_array_push(x_591, x_621); -x_623 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; +x_596 = l_myMacro____x40_Init_Notation___hyg_8168____closed__22; +x_597 = lean_array_push(x_595, x_596); +x_598 = lean_array_push(x_597, x_596); +x_599 = lean_array_push(x_598, x_596); +x_600 = lean_array_push(x_599, x_596); +x_601 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; +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_544, x_602); +x_604 = l_Lean_Elab_Command_expandElab___closed__7; +lean_inc(x_542); +lean_inc(x_543); +x_605 = l_Lean_addMacroScope(x_543, x_604, x_542); +x_606 = l_Lean_Elab_Command_expandElab___closed__6; +x_607 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_607, 0, x_555); +lean_ctor_set(x_607, 1, x_606); +lean_ctor_set(x_607, 2, x_605); +lean_ctor_set(x_607, 3, x_577); +x_608 = lean_array_push(x_544, x_607); +x_609 = lean_array_push(x_608, x_596); +x_610 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; +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 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; +x_613 = lean_array_push(x_612, x_611); +x_614 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; +lean_inc(x_542); +lean_inc(x_543); +x_615 = l_Lean_addMacroScope(x_543, x_614, x_542); +x_616 = l_Lean_Elab_Command_expandElab___closed__34; +x_617 = l_Lean_Elab_Command_expandElab___closed__36; +x_618 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_618, 0, x_555); +lean_ctor_set(x_618, 1, x_616); +lean_ctor_set(x_618, 2, x_615); +lean_ctor_set(x_618, 3, x_617); +x_619 = l_myMacro____x40_Init_Notation___hyg_8168____closed__11; +x_620 = lean_array_push(x_619, x_618); +x_621 = l_Lean_expandExplicitBindersAux_loop___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_544, x_622); x_624 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_624, 0, x_623); -lean_ctor_set(x_624, 1, x_622); -x_625 = lean_array_push(x_610, x_624); -x_626 = l___kind_stx____x40_Init_Notation___hyg_7374____closed__2; -lean_inc(x_539); -lean_inc(x_540); -x_627 = l_Lean_addMacroScope(x_540, x_626, x_539); -x_628 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_629 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_629, 0, x_552); -lean_ctor_set(x_629, 1, x_628); -lean_ctor_set(x_629, 2, x_627); -lean_ctor_set(x_629, 3, x_574); -lean_inc(x_629); -x_630 = lean_array_push(x_541, x_629); -x_631 = l_Lean_Elab_Command_expandElab___closed__42; -lean_inc(x_539); -lean_inc(x_540); -x_632 = l_Lean_addMacroScope(x_540, x_631, x_539); -x_633 = l_Lean_Elab_Command_expandElab___closed__41; -x_634 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_634, 0, x_552); -lean_ctor_set(x_634, 1, x_633); -lean_ctor_set(x_634, 2, x_632); -lean_ctor_set(x_634, 3, x_574); -lean_inc(x_634); -x_635 = lean_array_push(x_630, x_634); -x_636 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_636, 0, x_543); -lean_ctor_set(x_636, 1, x_635); -x_637 = lean_array_push(x_541, x_636); -x_638 = l_myMacro____x40_Init_Notation___hyg_5739____closed__19; -x_639 = lean_array_push(x_637, x_638); -x_640 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; -x_641 = lean_array_push(x_640, x_629); -x_642 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_643 = lean_array_push(x_641, x_642); -x_644 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; -x_645 = lean_array_push(x_644, x_56); -x_646 = l_myMacro____x40_Init_Notation___hyg_5739____closed__22; -x_647 = lean_array_push(x_645, x_646); -x_648 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -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_541, x_649); -x_651 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_651, 0, x_543); -lean_ctor_set(x_651, 1, x_650); -x_652 = lean_array_push(x_541, x_651); -x_653 = lean_array_push(x_652, x_638); -x_654 = l_Lean_Elab_Command_expandElab___closed__47; -lean_inc(x_539); -lean_inc(x_540); -x_655 = l_Lean_addMacroScope(x_540, x_654, x_539); -x_656 = l_Lean_Elab_Command_expandElab___closed__45; -x_657 = l_Lean_Elab_Command_expandElab___closed__49; -x_658 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_658, 0, x_552); -lean_ctor_set(x_658, 1, x_656); -lean_ctor_set(x_658, 2, x_655); -lean_ctor_set(x_658, 3, x_657); -x_659 = lean_array_push(x_541, x_658); -x_660 = lean_array_push(x_541, x_634); -x_661 = lean_array_push(x_541, x_538); -x_662 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_662, 0, x_543); -lean_ctor_set(x_662, 1, x_661); -x_663 = lean_array_push(x_541, x_662); -x_664 = lean_array_push(x_663, x_638); -x_665 = lean_array_push(x_664, x_21); -x_666 = l_myMacro____x40_Init_Notation___hyg_5739____closed__17; -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 = l_myMacro____x40_Init_Notation___hyg_5739____closed__15; -x_669 = lean_array_push(x_668, x_667); -x_670 = l_myMacro____x40_Init_Notation___hyg_5739____closed__13; -x_671 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_671, 0, x_670); -lean_ctor_set(x_671, 1, x_669); -x_672 = lean_array_push(x_660, x_671); -x_673 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_673, 0, x_543); -lean_ctor_set(x_673, 1, x_672); -x_674 = lean_array_push(x_659, x_673); -x_675 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +lean_ctor_set(x_624, 0, x_546); +lean_ctor_set(x_624, 1, x_623); +x_625 = lean_array_push(x_594, x_624); +x_626 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; +x_627 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_627, 0, x_626); +lean_ctor_set(x_627, 1, x_625); +x_628 = lean_array_push(x_613, x_627); +x_629 = l___kind_stx____x40_Init_Notation___hyg_7374____closed__2; +lean_inc(x_542); +lean_inc(x_543); +x_630 = l_Lean_addMacroScope(x_543, x_629, x_542); +x_631 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_632 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_632, 0, x_555); +lean_ctor_set(x_632, 1, x_631); +lean_ctor_set(x_632, 2, x_630); +lean_ctor_set(x_632, 3, x_577); +lean_inc(x_632); +x_633 = lean_array_push(x_544, x_632); +x_634 = l_Lean_Elab_Command_expandElab___closed__42; +lean_inc(x_542); +lean_inc(x_543); +x_635 = l_Lean_addMacroScope(x_543, x_634, x_542); +x_636 = l_Lean_Elab_Command_expandElab___closed__41; +x_637 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_637, 0, x_555); +lean_ctor_set(x_637, 1, x_636); +lean_ctor_set(x_637, 2, x_635); +lean_ctor_set(x_637, 3, x_577); +lean_inc(x_637); +x_638 = lean_array_push(x_633, x_637); +x_639 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_639, 0, x_546); +lean_ctor_set(x_639, 1, x_638); +x_640 = lean_array_push(x_544, x_639); +x_641 = l_myMacro____x40_Init_Notation___hyg_5739____closed__19; +x_642 = lean_array_push(x_640, x_641); +x_643 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; +x_644 = lean_array_push(x_643, x_632); +x_645 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_646 = lean_array_push(x_644, x_645); +x_647 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; +x_648 = lean_array_push(x_647, x_56); +x_649 = l_myMacro____x40_Init_Notation___hyg_5739____closed__22; +x_650 = lean_array_push(x_648, x_649); +x_651 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_652 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_652, 0, x_651); +lean_ctor_set(x_652, 1, x_650); +x_653 = lean_array_push(x_544, x_652); +x_654 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_654, 0, x_546); +lean_ctor_set(x_654, 1, x_653); +x_655 = lean_array_push(x_544, x_654); +x_656 = lean_array_push(x_655, x_641); +x_657 = l_Lean_Elab_Command_expandElab___closed__47; +lean_inc(x_542); +lean_inc(x_543); +x_658 = l_Lean_addMacroScope(x_543, x_657, x_542); +x_659 = l_Lean_Elab_Command_expandElab___closed__45; +x_660 = l_Lean_Elab_Command_expandElab___closed__49; +x_661 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_661, 0, x_555); +lean_ctor_set(x_661, 1, x_659); +lean_ctor_set(x_661, 2, x_658); +lean_ctor_set(x_661, 3, x_660); +x_662 = lean_array_push(x_544, x_661); +x_663 = lean_array_push(x_544, x_637); +x_664 = lean_array_push(x_544, x_541); +x_665 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_665, 0, x_546); +lean_ctor_set(x_665, 1, x_664); +x_666 = lean_array_push(x_544, x_665); +x_667 = lean_array_push(x_666, x_641); +x_668 = lean_array_push(x_667, x_21); +x_669 = l_myMacro____x40_Init_Notation___hyg_5739____closed__17; +x_670 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_670, 0, x_669); +lean_ctor_set(x_670, 1, x_668); +x_671 = l_myMacro____x40_Init_Notation___hyg_5739____closed__15; +x_672 = lean_array_push(x_671, x_670); +x_673 = l_myMacro____x40_Init_Notation___hyg_5739____closed__13; +x_674 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_674, 0, x_673); +lean_ctor_set(x_674, 1, x_672); +x_675 = lean_array_push(x_663, x_674); x_676 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_676, 0, x_675); -lean_ctor_set(x_676, 1, x_674); -x_677 = lean_array_push(x_653, x_676); -x_678 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +lean_ctor_set(x_676, 0, x_546); +lean_ctor_set(x_676, 1, x_675); +x_677 = lean_array_push(x_662, x_676); +x_678 = l_myMacro____x40_Init_Notation___hyg_38____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_541, x_679); -x_681 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_682 = lean_array_push(x_680, x_681); -x_683 = l_Lean_Elab_Command_expandElab___closed__19; -x_684 = l_Lean_addMacroScope(x_540, x_683, x_539); -x_685 = l_Lean_Elab_Command_expandElab___closed__18; -x_686 = l_Lean_Elab_Command_expandElab___closed__22; -x_687 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_687, 0, x_552); -lean_ctor_set(x_687, 1, x_685); -lean_ctor_set(x_687, 2, x_684); -lean_ctor_set(x_687, 3, x_686); -x_688 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; -x_689 = lean_array_push(x_688, x_687); -x_690 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_690, 0, x_678); -lean_ctor_set(x_690, 1, x_689); -x_691 = lean_array_push(x_682, x_690); -x_692 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_692, 0, x_543); -lean_ctor_set(x_692, 1, x_691); -x_693 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -x_694 = lean_array_push(x_693, x_692); -x_695 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; -x_696 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_696, 0, x_695); -lean_ctor_set(x_696, 1, x_694); -x_697 = lean_array_push(x_643, x_696); -x_698 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_680 = lean_array_push(x_656, x_679); +x_681 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_682 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_682, 0, x_681); +lean_ctor_set(x_682, 1, x_680); +x_683 = lean_array_push(x_544, x_682); +x_684 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_685 = lean_array_push(x_683, x_684); +x_686 = l_Lean_Elab_Command_expandElab___closed__19; +x_687 = l_Lean_addMacroScope(x_543, x_686, x_542); +x_688 = l_Lean_Elab_Command_expandElab___closed__18; +x_689 = l_Lean_Elab_Command_expandElab___closed__22; +x_690 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_690, 0, x_555); +lean_ctor_set(x_690, 1, x_688); +lean_ctor_set(x_690, 2, x_687); +lean_ctor_set(x_690, 3, x_689); +x_691 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; +x_692 = lean_array_push(x_691, x_690); +x_693 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_693, 0, x_681); +lean_ctor_set(x_693, 1, x_692); +x_694 = lean_array_push(x_685, x_693); +x_695 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_695, 0, x_546); +lean_ctor_set(x_695, 1, x_694); +x_696 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +x_697 = lean_array_push(x_696, x_695); +x_698 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_699 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_699, 0, x_698); lean_ctor_set(x_699, 1, x_697); -x_700 = lean_array_push(x_639, x_699); -x_701 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_701, 0, x_666); -lean_ctor_set(x_701, 1, x_700); -x_702 = lean_array_push(x_668, x_701); -x_703 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_703, 0, x_670); -lean_ctor_set(x_703, 1, x_702); -x_704 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_11379____closed__7; -x_705 = lean_array_push(x_704, x_703); -x_706 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; -x_707 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_707, 0, x_706); -lean_ctor_set(x_707, 1, x_705); -x_708 = lean_array_push(x_625, x_707); -x_709 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; -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_600, x_710); -x_712 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; -x_713 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_713, 0, x_712); -lean_ctor_set(x_713, 1, x_711); -x_714 = lean_array_push(x_571, x_713); -x_715 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_715, 0, x_543); -lean_ctor_set(x_715, 1, x_714); -lean_ctor_set(x_49, 0, x_715); +x_700 = lean_array_push(x_646, x_699); +x_701 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_702 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_702, 0, x_701); +lean_ctor_set(x_702, 1, x_700); +x_703 = lean_array_push(x_642, x_702); +x_704 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_704, 0, x_669); +lean_ctor_set(x_704, 1, x_703); +x_705 = lean_array_push(x_671, x_704); +x_706 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_706, 0, x_673); +lean_ctor_set(x_706, 1, x_705); +x_707 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_11379____closed__7; +x_708 = lean_array_push(x_707, x_706); +x_709 = lean_array_push(x_708, x_596); +x_710 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; +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_628, x_711); +x_713 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; +x_714 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_714, 0, x_713); +lean_ctor_set(x_714, 1, x_712); +x_715 = lean_array_push(x_603, x_714); +x_716 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_717 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_717, 0, x_716); +lean_ctor_set(x_717, 1, x_715); +x_718 = lean_array_push(x_574, x_717); +x_719 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_719, 0, x_546); +lean_ctor_set(x_719, 1, x_718); +lean_ctor_set(x_49, 0, x_719); return x_49; } } } else { -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; uint8_t x_723; -x_716 = lean_ctor_get(x_49, 0); -x_717 = lean_ctor_get(x_49, 1); -lean_inc(x_717); -lean_inc(x_716); +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; uint8_t x_727; +x_720 = lean_ctor_get(x_49, 0); +x_721 = lean_ctor_get(x_49, 1); +lean_inc(x_721); +lean_inc(x_720); lean_dec(x_49); lean_inc(x_24); -x_718 = l_Lean_Name_append(x_1, x_24); -x_719 = lean_array_push(x_39, x_43); -x_720 = l_Array_append___rarg(x_719, x_716); -lean_dec(x_716); -x_721 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_721, 0, x_718); -lean_ctor_set(x_721, 1, x_720); -x_722 = l_Lean_mkIdentFrom(x_2, x_24); -x_723 = l_Lean_Syntax_hasArgs(x_19); -if (x_723 == 0) -{ -lean_object* x_724; uint8_t x_725; -lean_dec(x_19); -x_724 = l___kind_term____x40_Init_Notation___hyg_3____closed__16; -x_725 = lean_name_eq(x_22, x_724); -if (x_725 == 0) -{ -lean_object* x_726; uint8_t x_727; -x_726 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3887____closed__4; -x_727 = lean_name_eq(x_22, x_726); +x_722 = l_Lean_Name_append(x_1, x_24); +x_723 = lean_array_push(x_39, x_43); +x_724 = l_Array_append___rarg(x_723, x_720); +lean_dec(x_720); +x_725 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_725, 0, x_722); +lean_ctor_set(x_725, 1, x_724); +x_726 = l_Lean_mkIdentFrom(x_2, x_24); +x_727 = l_Lean_Syntax_hasArgs(x_19); if (x_727 == 0) { lean_object* x_728; uint8_t x_729; -x_728 = l_Lean_Parser_Tactic_orelse___closed__5; +lean_dec(x_19); +x_728 = l___kind_term____x40_Init_Notation___hyg_3____closed__16; x_729 = lean_name_eq(x_22, x_728); if (x_729 == 0) { -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_dec(x_722); -lean_dec(x_721); +lean_object* x_730; uint8_t x_731; +x_730 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3887____closed__4; +x_731 = lean_name_eq(x_22, x_730); +if (x_731 == 0) +{ +lean_object* x_732; uint8_t x_733; +x_732 = l_Lean_Parser_Tactic_orelse___closed__5; +x_733 = lean_name_eq(x_22, x_732); +if (x_733 == 0) +{ +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_dec(x_726); +lean_dec(x_725); lean_dec(x_41); lean_dec(x_21); lean_dec(x_17); lean_dec(x_10); lean_dec(x_7); -x_730 = l_Lean_Name_toString___closed__1; -x_731 = l_Lean_Name_toStringWithSep(x_730, x_22); -x_732 = l_Lean_Elab_Command_expandElab___closed__1; -x_733 = lean_string_append(x_732, x_731); -lean_dec(x_731); -x_734 = l_instReprChar___closed__1; -x_735 = lean_string_append(x_733, x_734); -x_736 = l_Lean_Macro_throwError___rarg(x_735, x_3, x_717); +x_734 = l_Lean_Name_toString___closed__1; +x_735 = l_Lean_Name_toStringWithSep(x_734, x_22); +x_736 = l_Lean_Elab_Command_expandElab___closed__1; +x_737 = lean_string_append(x_736, x_735); +lean_dec(x_735); +x_738 = l_instReprChar___closed__1; +x_739 = lean_string_append(x_737, x_738); +x_740 = l_Lean_Macro_throwError___rarg(x_739, x_3, x_721); lean_dec(x_3); -return x_736; +return x_740; } else { -lean_object* x_737; lean_object* x_738; lean_object* x_739; lean_object* x_740; lean_object* x_741; lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; lean_object* x_748; lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; lean_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; lean_object* x_774; lean_object* x_775; lean_object* x_776; lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; lean_object* x_786; lean_object* x_787; lean_object* x_788; lean_object* x_789; lean_object* x_790; lean_object* x_791; lean_object* x_792; lean_object* x_793; lean_object* x_794; lean_object* x_795; lean_object* x_796; lean_object* x_797; lean_object* x_798; lean_object* x_799; lean_object* x_800; lean_object* x_801; lean_object* x_802; lean_object* x_803; lean_object* x_804; lean_object* x_805; lean_object* x_806; lean_object* x_807; lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; lean_object* x_812; lean_object* x_813; lean_object* x_814; lean_object* x_815; lean_object* x_816; lean_object* x_817; lean_object* x_818; lean_object* x_819; lean_object* x_820; lean_object* x_821; lean_object* x_822; lean_object* x_823; lean_object* x_824; lean_object* x_825; lean_object* x_826; lean_object* x_827; lean_object* x_828; lean_object* x_829; lean_object* x_830; lean_object* x_831; lean_object* x_832; lean_object* x_833; lean_object* x_834; lean_object* x_835; lean_object* x_836; lean_object* x_837; lean_object* x_838; lean_object* x_839; lean_object* x_840; lean_object* x_841; lean_object* x_842; lean_object* x_843; lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; lean_object* x_850; lean_object* x_851; lean_object* x_852; lean_object* x_853; lean_object* x_854; lean_object* x_855; lean_object* x_856; lean_object* x_857; lean_object* x_858; lean_object* x_859; lean_object* x_860; lean_object* x_861; lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; lean_object* x_867; lean_object* x_868; lean_object* x_869; lean_object* x_870; lean_object* x_871; lean_object* x_872; lean_object* x_873; lean_object* x_874; lean_object* x_875; lean_object* x_876; lean_object* x_877; lean_object* x_878; lean_object* x_879; lean_object* x_880; lean_object* x_881; lean_object* x_882; lean_object* x_883; lean_object* x_884; lean_object* x_885; lean_object* x_886; lean_object* x_887; lean_object* x_888; +lean_object* x_741; lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; lean_object* x_748; lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; lean_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; lean_object* x_774; lean_object* x_775; lean_object* x_776; lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; lean_object* x_786; lean_object* x_787; lean_object* x_788; lean_object* x_789; lean_object* x_790; lean_object* x_791; lean_object* x_792; lean_object* x_793; lean_object* x_794; lean_object* x_795; lean_object* x_796; lean_object* x_797; lean_object* x_798; lean_object* x_799; lean_object* x_800; lean_object* x_801; lean_object* x_802; lean_object* x_803; lean_object* x_804; lean_object* x_805; lean_object* x_806; lean_object* x_807; lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; lean_object* x_812; lean_object* x_813; lean_object* x_814; lean_object* x_815; lean_object* x_816; lean_object* x_817; lean_object* x_818; lean_object* x_819; lean_object* x_820; lean_object* x_821; lean_object* x_822; lean_object* x_823; lean_object* x_824; lean_object* x_825; lean_object* x_826; lean_object* x_827; lean_object* x_828; lean_object* x_829; lean_object* x_830; lean_object* x_831; lean_object* x_832; lean_object* x_833; lean_object* x_834; lean_object* x_835; lean_object* x_836; lean_object* x_837; lean_object* x_838; lean_object* x_839; lean_object* x_840; lean_object* x_841; lean_object* x_842; lean_object* x_843; lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; lean_object* x_850; lean_object* x_851; lean_object* x_852; lean_object* x_853; lean_object* x_854; lean_object* x_855; lean_object* x_856; lean_object* x_857; lean_object* x_858; lean_object* x_859; lean_object* x_860; lean_object* x_861; lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; lean_object* x_867; lean_object* x_868; lean_object* x_869; lean_object* x_870; lean_object* x_871; lean_object* x_872; lean_object* x_873; lean_object* x_874; lean_object* x_875; lean_object* x_876; lean_object* x_877; lean_object* x_878; lean_object* x_879; lean_object* x_880; lean_object* x_881; lean_object* x_882; lean_object* x_883; lean_object* x_884; lean_object* x_885; lean_object* x_886; lean_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_dec(x_22); -x_737 = lean_ctor_get(x_3, 2); -lean_inc(x_737); -x_738 = lean_ctor_get(x_3, 1); -lean_inc(x_738); +x_741 = lean_ctor_get(x_3, 2); +lean_inc(x_741); +x_742 = lean_ctor_get(x_3, 1); +lean_inc(x_742); lean_dec(x_3); -x_739 = l_Array_empty___closed__1; -x_740 = l_Array_appendCore___rarg(x_739, x_7); +x_743 = l_Array_empty___closed__1; +x_744 = l_Array_appendCore___rarg(x_743, x_7); lean_dec(x_7); -x_741 = l_Lean_nullKind___closed__2; -x_742 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_742, 0, x_741); -lean_ctor_set(x_742, 1, x_740); -x_743 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; -x_744 = lean_array_push(x_743, x_742); -x_745 = lean_array_push(x_739, x_722); -x_746 = l_myMacro____x40_Init_Notation___hyg_7791____closed__8; -lean_inc(x_745); -x_747 = lean_array_push(x_745, x_746); -x_748 = l_Nat_repr(x_10); -x_749 = l_Lean_numLitKind; -x_750 = l_Lean_instInhabitedSourceInfo___closed__1; -x_751 = l_Lean_Syntax_mkLit(x_749, x_748, x_750); -x_752 = lean_array_push(x_747, x_751); -x_753 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; -x_754 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_754, 0, x_753); -lean_ctor_set(x_754, 1, x_752); -x_755 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__9; -x_756 = lean_array_push(x_755, x_754); -x_757 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__10; -x_758 = lean_array_push(x_756, x_757); -x_759 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_759, 0, x_741); -lean_ctor_set(x_759, 1, x_758); -x_760 = lean_array_push(x_744, x_759); -x_761 = l_Array_appendCore___rarg(x_739, x_41); +x_745 = l_Lean_nullKind___closed__2; +x_746 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_746, 0, x_745); +lean_ctor_set(x_746, 1, x_744); +x_747 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; +x_748 = lean_array_push(x_747, x_746); +x_749 = lean_array_push(x_743, x_726); +x_750 = l_myMacro____x40_Init_Notation___hyg_7791____closed__8; +lean_inc(x_749); +x_751 = lean_array_push(x_749, x_750); +x_752 = l_Nat_repr(x_10); +x_753 = l_Lean_numLitKind; +x_754 = l_Lean_instInhabitedSourceInfo___closed__1; +x_755 = l_Lean_Syntax_mkLit(x_753, x_752, x_754); +x_756 = lean_array_push(x_751, x_755); +x_757 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; +x_758 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_758, 0, x_757); +lean_ctor_set(x_758, 1, x_756); +x_759 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__9; +x_760 = lean_array_push(x_759, x_758); +x_761 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__10; +x_762 = lean_array_push(x_760, x_761); +x_763 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_763, 0, x_745); +lean_ctor_set(x_763, 1, x_762); +x_764 = lean_array_push(x_748, x_763); +x_765 = l_Array_appendCore___rarg(x_743, x_41); lean_dec(x_41); -x_762 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_762, 0, x_741); -lean_ctor_set(x_762, 1, x_761); -x_763 = lean_array_push(x_760, x_762); -x_764 = l_myMacro____x40_Init_Notation___hyg_8168____closed__10; -x_765 = lean_array_push(x_763, x_764); -x_766 = lean_array_push(x_765, x_17); -x_767 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; -x_768 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_768, 0, x_767); -lean_ctor_set(x_768, 1, x_766); -x_769 = lean_array_push(x_739, x_768); -lean_inc(x_737); -lean_inc(x_738); -x_770 = l_Lean_addMacroScope(x_738, x_728, x_737); -x_771 = lean_box(0); -x_772 = l_Lean_Elab_Command_expandElab___closed__3; -x_773 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_773, 0, x_750); -lean_ctor_set(x_773, 1, x_772); -lean_ctor_set(x_773, 2, x_770); -lean_ctor_set(x_773, 3, x_771); -x_774 = lean_array_push(x_739, x_773); -x_775 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_775, 0, x_741); -lean_ctor_set(x_775, 1, x_745); -x_776 = lean_array_push(x_774, x_775); -x_777 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; -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_739, x_778); -x_780 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_780, 0, x_741); -lean_ctor_set(x_780, 1, x_779); -x_781 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; -x_782 = lean_array_push(x_781, x_780); -x_783 = lean_array_push(x_782, x_757); -x_784 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; -x_785 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_785, 0, x_784); -lean_ctor_set(x_785, 1, x_783); -x_786 = lean_array_push(x_739, x_785); -x_787 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_787, 0, x_741); -lean_ctor_set(x_787, 1, x_786); -x_788 = l_Lean_Elab_Tactic_evalIntro___closed__5; -x_789 = lean_array_push(x_788, x_787); -x_790 = l_myMacro____x40_Init_Notation___hyg_8168____closed__22; -x_791 = lean_array_push(x_789, x_790); -x_792 = lean_array_push(x_791, x_790); -x_793 = lean_array_push(x_792, x_790); -x_794 = lean_array_push(x_793, x_790); -x_795 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; -x_796 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_796, 0, x_795); -lean_ctor_set(x_796, 1, x_794); -x_797 = lean_array_push(x_739, x_796); -x_798 = l_Lean_Elab_Command_expandElab___closed__7; -lean_inc(x_737); -lean_inc(x_738); -x_799 = l_Lean_addMacroScope(x_738, x_798, x_737); -x_800 = l_Lean_Elab_Command_expandElab___closed__6; -x_801 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_801, 0, x_750); -lean_ctor_set(x_801, 1, x_800); -lean_ctor_set(x_801, 2, x_799); -lean_ctor_set(x_801, 3, x_771); -x_802 = lean_array_push(x_739, x_801); -x_803 = lean_array_push(x_802, x_790); -x_804 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; -x_805 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_805, 0, x_804); -lean_ctor_set(x_805, 1, x_803); -x_806 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; -x_807 = lean_array_push(x_806, x_805); -x_808 = l_Lean_Elab_Tactic_mkTacticAttribute___closed__6; -lean_inc(x_737); -lean_inc(x_738); -x_809 = l_Lean_addMacroScope(x_738, x_808, x_737); -x_810 = l_Lean_Elab_Command_expandElab___closed__10; -x_811 = l_Lean_Elab_Command_expandElab___closed__12; -x_812 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_812, 0, x_750); -lean_ctor_set(x_812, 1, x_810); -lean_ctor_set(x_812, 2, x_809); -lean_ctor_set(x_812, 3, x_811); -x_813 = l_myMacro____x40_Init_Notation___hyg_8168____closed__11; -x_814 = lean_array_push(x_813, x_812); -x_815 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_816 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_816, 0, x_815); +x_766 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_766, 0, x_745); +lean_ctor_set(x_766, 1, x_765); +x_767 = lean_array_push(x_764, x_766); +x_768 = l_myMacro____x40_Init_Notation___hyg_8168____closed__10; +x_769 = lean_array_push(x_767, x_768); +x_770 = lean_array_push(x_769, x_17); +x_771 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; +x_772 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_772, 0, x_771); +lean_ctor_set(x_772, 1, x_770); +x_773 = lean_array_push(x_743, x_772); +lean_inc(x_741); +lean_inc(x_742); +x_774 = l_Lean_addMacroScope(x_742, x_732, x_741); +x_775 = lean_box(0); +x_776 = l_Lean_Elab_Command_expandElab___closed__3; +x_777 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_777, 0, x_754); +lean_ctor_set(x_777, 1, x_776); +lean_ctor_set(x_777, 2, x_774); +lean_ctor_set(x_777, 3, x_775); +x_778 = lean_array_push(x_743, x_777); +x_779 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_779, 0, x_745); +lean_ctor_set(x_779, 1, x_749); +x_780 = lean_array_push(x_778, x_779); +x_781 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; +x_782 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_782, 0, x_781); +lean_ctor_set(x_782, 1, x_780); +x_783 = lean_array_push(x_743, x_782); +x_784 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_784, 0, x_745); +lean_ctor_set(x_784, 1, x_783); +x_785 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; +x_786 = lean_array_push(x_785, x_784); +x_787 = lean_array_push(x_786, x_761); +x_788 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; +x_789 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_789, 0, x_788); +lean_ctor_set(x_789, 1, x_787); +x_790 = lean_array_push(x_743, x_789); +x_791 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_791, 0, x_745); +lean_ctor_set(x_791, 1, x_790); +x_792 = l_Lean_Elab_Tactic_evalIntro___closed__5; +x_793 = lean_array_push(x_792, x_791); +x_794 = l_myMacro____x40_Init_Notation___hyg_8168____closed__22; +x_795 = lean_array_push(x_793, x_794); +x_796 = lean_array_push(x_795, x_794); +x_797 = lean_array_push(x_796, x_794); +x_798 = lean_array_push(x_797, x_794); +x_799 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; +x_800 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_800, 0, x_799); +lean_ctor_set(x_800, 1, x_798); +x_801 = lean_array_push(x_743, x_800); +x_802 = l_Lean_Elab_Command_expandElab___closed__7; +lean_inc(x_741); +lean_inc(x_742); +x_803 = l_Lean_addMacroScope(x_742, x_802, x_741); +x_804 = l_Lean_Elab_Command_expandElab___closed__6; +x_805 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_805, 0, x_754); +lean_ctor_set(x_805, 1, x_804); +lean_ctor_set(x_805, 2, x_803); +lean_ctor_set(x_805, 3, x_775); +x_806 = lean_array_push(x_743, x_805); +x_807 = lean_array_push(x_806, x_794); +x_808 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; +x_809 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_809, 0, x_808); +lean_ctor_set(x_809, 1, x_807); +x_810 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; +x_811 = lean_array_push(x_810, x_809); +x_812 = l_Lean_Elab_Tactic_mkTacticAttribute___closed__6; +lean_inc(x_741); +lean_inc(x_742); +x_813 = l_Lean_addMacroScope(x_742, x_812, x_741); +x_814 = l_Lean_Elab_Command_expandElab___closed__10; +x_815 = l_Lean_Elab_Command_expandElab___closed__12; +x_816 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_816, 0, x_754); lean_ctor_set(x_816, 1, x_814); -x_817 = lean_array_push(x_739, x_816); -x_818 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_818, 0, x_741); -lean_ctor_set(x_818, 1, x_817); -x_819 = lean_array_push(x_788, x_818); -x_820 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; -x_821 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_821, 0, x_820); -lean_ctor_set(x_821, 1, x_819); -x_822 = lean_array_push(x_807, x_821); -x_823 = l___kind_stx____x40_Init_Notation___hyg_7374____closed__2; -lean_inc(x_737); -lean_inc(x_738); -x_824 = l_Lean_addMacroScope(x_738, x_823, x_737); -x_825 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_826 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_826, 0, x_750); -lean_ctor_set(x_826, 1, x_825); -lean_ctor_set(x_826, 2, x_824); -lean_ctor_set(x_826, 3, x_771); -lean_inc(x_826); -x_827 = lean_array_push(x_739, x_826); -x_828 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_828, 0, x_741); -lean_ctor_set(x_828, 1, x_827); -x_829 = lean_array_push(x_739, x_828); -x_830 = l_myMacro____x40_Init_Notation___hyg_5739____closed__19; -x_831 = lean_array_push(x_829, x_830); -x_832 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; -x_833 = lean_array_push(x_832, x_826); -x_834 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +lean_ctor_set(x_816, 2, x_813); +lean_ctor_set(x_816, 3, x_815); +x_817 = l_myMacro____x40_Init_Notation___hyg_8168____closed__11; +x_818 = lean_array_push(x_817, x_816); +x_819 = l_Lean_expandExplicitBindersAux_loop___closed__8; +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_743, x_820); +x_822 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_822, 0, x_745); +lean_ctor_set(x_822, 1, x_821); +x_823 = lean_array_push(x_792, x_822); +x_824 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; +x_825 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_825, 0, x_824); +lean_ctor_set(x_825, 1, x_823); +x_826 = lean_array_push(x_811, x_825); +x_827 = l___kind_stx____x40_Init_Notation___hyg_7374____closed__2; +lean_inc(x_741); +lean_inc(x_742); +x_828 = l_Lean_addMacroScope(x_742, x_827, x_741); +x_829 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_830 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_830, 0, x_754); +lean_ctor_set(x_830, 1, x_829); +lean_ctor_set(x_830, 2, x_828); +lean_ctor_set(x_830, 3, x_775); +lean_inc(x_830); +x_831 = lean_array_push(x_743, x_830); +x_832 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_832, 0, x_745); +lean_ctor_set(x_832, 1, x_831); +x_833 = lean_array_push(x_743, x_832); +x_834 = l_myMacro____x40_Init_Notation___hyg_5739____closed__19; x_835 = lean_array_push(x_833, x_834); -x_836 = l_Lean_Elab_Command_expandElab___closed__15; -x_837 = lean_array_push(x_836, x_721); -x_838 = l_myMacro____x40_Init_Notation___hyg_5739____closed__22; +x_836 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; +x_837 = lean_array_push(x_836, x_830); +x_838 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_839 = lean_array_push(x_837, x_838); -x_840 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; -x_841 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_841, 0, x_840); -lean_ctor_set(x_841, 1, x_839); -x_842 = lean_array_push(x_739, x_841); -x_843 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_843, 0, x_741); -lean_ctor_set(x_843, 1, x_842); -x_844 = lean_array_push(x_739, x_843); -x_845 = lean_array_push(x_844, x_830); -x_846 = lean_array_push(x_845, x_21); -x_847 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_848 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_848, 0, x_847); -lean_ctor_set(x_848, 1, x_846); -x_849 = lean_array_push(x_739, x_848); -x_850 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_851 = lean_array_push(x_849, x_850); -x_852 = l_Lean_Elab_Command_expandElab___closed__19; -x_853 = l_Lean_addMacroScope(x_738, x_852, x_737); -x_854 = l_Lean_Elab_Command_expandElab___closed__18; -x_855 = l_Lean_Elab_Command_expandElab___closed__22; -x_856 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_856, 0, x_750); -lean_ctor_set(x_856, 1, x_854); -lean_ctor_set(x_856, 2, x_853); -lean_ctor_set(x_856, 3, x_855); -x_857 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; -x_858 = lean_array_push(x_857, x_856); -x_859 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_859, 0, x_847); -lean_ctor_set(x_859, 1, x_858); -x_860 = lean_array_push(x_851, x_859); -x_861 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_861, 0, x_741); -lean_ctor_set(x_861, 1, x_860); -x_862 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -x_863 = lean_array_push(x_862, x_861); -x_864 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; +x_840 = l_Lean_Elab_Command_expandElab___closed__15; +x_841 = lean_array_push(x_840, x_725); +x_842 = l_myMacro____x40_Init_Notation___hyg_5739____closed__22; +x_843 = lean_array_push(x_841, x_842); +x_844 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; +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 = lean_array_push(x_743, x_845); +x_847 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_847, 0, x_745); +lean_ctor_set(x_847, 1, x_846); +x_848 = lean_array_push(x_743, x_847); +x_849 = lean_array_push(x_848, x_834); +x_850 = lean_array_push(x_849, x_21); +x_851 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_852 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_852, 0, x_851); +lean_ctor_set(x_852, 1, x_850); +x_853 = lean_array_push(x_743, x_852); +x_854 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_855 = lean_array_push(x_853, x_854); +x_856 = l_Lean_Elab_Command_expandElab___closed__19; +x_857 = l_Lean_addMacroScope(x_742, x_856, x_741); +x_858 = l_Lean_Elab_Command_expandElab___closed__18; +x_859 = l_Lean_Elab_Command_expandElab___closed__22; +x_860 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_860, 0, x_754); +lean_ctor_set(x_860, 1, x_858); +lean_ctor_set(x_860, 2, x_857); +lean_ctor_set(x_860, 3, x_859); +x_861 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; +x_862 = lean_array_push(x_861, x_860); +x_863 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_863, 0, x_851); +lean_ctor_set(x_863, 1, x_862); +x_864 = lean_array_push(x_855, x_863); x_865 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_865, 0, x_864); -lean_ctor_set(x_865, 1, x_863); -x_866 = lean_array_push(x_835, x_865); -x_867 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_868 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_868, 0, x_867); -lean_ctor_set(x_868, 1, x_866); -x_869 = lean_array_push(x_831, x_868); -x_870 = l_myMacro____x40_Init_Notation___hyg_5739____closed__17; -x_871 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_871, 0, x_870); -lean_ctor_set(x_871, 1, x_869); -x_872 = l_myMacro____x40_Init_Notation___hyg_5739____closed__15; -x_873 = lean_array_push(x_872, x_871); -x_874 = l_myMacro____x40_Init_Notation___hyg_5739____closed__13; +lean_ctor_set(x_865, 0, x_745); +lean_ctor_set(x_865, 1, x_864); +x_866 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +x_867 = lean_array_push(x_866, x_865); +x_868 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; +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_839, x_869); +x_871 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___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_835, x_872); +x_874 = l_myMacro____x40_Init_Notation___hyg_5739____closed__17; x_875 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_875, 0, x_874); lean_ctor_set(x_875, 1, x_873); -x_876 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_11379____closed__7; +x_876 = l_myMacro____x40_Init_Notation___hyg_5739____closed__15; x_877 = lean_array_push(x_876, x_875); -x_878 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; +x_878 = l_myMacro____x40_Init_Notation___hyg_5739____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); -x_880 = lean_array_push(x_822, x_879); -x_881 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; -x_882 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_882, 0, x_881); -lean_ctor_set(x_882, 1, x_880); -x_883 = lean_array_push(x_797, x_882); -x_884 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; -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_769, x_885); +x_880 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_11379____closed__7; +x_881 = lean_array_push(x_880, x_879); +x_882 = lean_array_push(x_881, x_794); +x_883 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; +x_884 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_884, 0, x_883); +lean_ctor_set(x_884, 1, x_882); +x_885 = lean_array_push(x_826, x_884); +x_886 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; x_887 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_887, 0, x_741); -lean_ctor_set(x_887, 1, x_886); -x_888 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_888, 0, x_887); -lean_ctor_set(x_888, 1, x_717); -return x_888; +lean_ctor_set(x_887, 0, x_886); +lean_ctor_set(x_887, 1, x_885); +x_888 = lean_array_push(x_801, x_887); +x_889 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +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_773, x_890); +x_892 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_892, 0, x_745); +lean_ctor_set(x_892, 1, x_891); +x_893 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_893, 0, x_892); +lean_ctor_set(x_893, 1, x_721); +return x_893; } } else { -lean_object* x_889; lean_object* x_890; lean_object* x_891; lean_object* x_892; lean_object* x_893; lean_object* x_894; lean_object* x_895; lean_object* x_896; lean_object* x_897; lean_object* x_898; lean_object* x_899; lean_object* x_900; lean_object* x_901; lean_object* x_902; lean_object* x_903; lean_object* x_904; lean_object* x_905; lean_object* x_906; lean_object* x_907; lean_object* x_908; lean_object* x_909; lean_object* x_910; lean_object* x_911; lean_object* x_912; lean_object* x_913; lean_object* x_914; lean_object* x_915; lean_object* x_916; lean_object* x_917; lean_object* x_918; lean_object* x_919; lean_object* x_920; lean_object* x_921; lean_object* x_922; lean_object* x_923; lean_object* x_924; lean_object* x_925; lean_object* x_926; lean_object* x_927; lean_object* x_928; lean_object* x_929; lean_object* x_930; lean_object* x_931; lean_object* x_932; lean_object* x_933; lean_object* x_934; lean_object* x_935; lean_object* x_936; lean_object* x_937; lean_object* x_938; lean_object* x_939; lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; lean_object* x_945; lean_object* x_946; lean_object* x_947; lean_object* x_948; lean_object* x_949; lean_object* x_950; lean_object* x_951; lean_object* x_952; lean_object* x_953; lean_object* x_954; lean_object* x_955; lean_object* x_956; lean_object* x_957; lean_object* x_958; lean_object* x_959; lean_object* x_960; lean_object* x_961; lean_object* x_962; lean_object* x_963; lean_object* x_964; lean_object* x_965; lean_object* x_966; lean_object* x_967; lean_object* x_968; lean_object* x_969; lean_object* x_970; lean_object* x_971; lean_object* x_972; lean_object* x_973; lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; lean_object* x_981; lean_object* x_982; lean_object* x_983; lean_object* x_984; lean_object* x_985; lean_object* x_986; lean_object* x_987; lean_object* x_988; lean_object* x_989; lean_object* x_990; lean_object* x_991; lean_object* x_992; lean_object* x_993; lean_object* x_994; lean_object* x_995; lean_object* x_996; lean_object* x_997; lean_object* x_998; lean_object* x_999; lean_object* x_1000; lean_object* x_1001; lean_object* x_1002; lean_object* x_1003; lean_object* x_1004; lean_object* x_1005; lean_object* x_1006; lean_object* x_1007; lean_object* x_1008; lean_object* x_1009; lean_object* x_1010; lean_object* x_1011; lean_object* x_1012; lean_object* x_1013; lean_object* x_1014; lean_object* x_1015; lean_object* x_1016; lean_object* x_1017; lean_object* x_1018; lean_object* x_1019; lean_object* x_1020; lean_object* x_1021; lean_object* x_1022; lean_object* x_1023; lean_object* x_1024; lean_object* x_1025; lean_object* x_1026; lean_object* x_1027; lean_object* x_1028; lean_object* x_1029; lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; lean_object* x_1033; lean_object* x_1034; lean_object* x_1035; lean_object* x_1036; lean_object* x_1037; lean_object* x_1038; lean_object* x_1039; lean_object* x_1040; lean_object* x_1041; +lean_object* x_894; lean_object* x_895; lean_object* x_896; lean_object* x_897; lean_object* x_898; lean_object* x_899; lean_object* x_900; lean_object* x_901; lean_object* x_902; lean_object* x_903; lean_object* x_904; lean_object* x_905; lean_object* x_906; lean_object* x_907; lean_object* x_908; lean_object* x_909; lean_object* x_910; lean_object* x_911; lean_object* x_912; lean_object* x_913; lean_object* x_914; lean_object* x_915; lean_object* x_916; lean_object* x_917; lean_object* x_918; lean_object* x_919; lean_object* x_920; lean_object* x_921; lean_object* x_922; lean_object* x_923; lean_object* x_924; lean_object* x_925; lean_object* x_926; lean_object* x_927; lean_object* x_928; lean_object* x_929; lean_object* x_930; lean_object* x_931; lean_object* x_932; lean_object* x_933; lean_object* x_934; lean_object* x_935; lean_object* x_936; lean_object* x_937; lean_object* x_938; lean_object* x_939; lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; lean_object* x_945; lean_object* x_946; lean_object* x_947; lean_object* x_948; lean_object* x_949; lean_object* x_950; lean_object* x_951; lean_object* x_952; lean_object* x_953; lean_object* x_954; lean_object* x_955; lean_object* x_956; lean_object* x_957; lean_object* x_958; lean_object* x_959; lean_object* x_960; lean_object* x_961; lean_object* x_962; lean_object* x_963; lean_object* x_964; lean_object* x_965; lean_object* x_966; lean_object* x_967; lean_object* x_968; lean_object* x_969; lean_object* x_970; lean_object* x_971; lean_object* x_972; lean_object* x_973; lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; lean_object* x_981; lean_object* x_982; lean_object* x_983; lean_object* x_984; lean_object* x_985; lean_object* x_986; lean_object* x_987; lean_object* x_988; lean_object* x_989; lean_object* x_990; lean_object* x_991; lean_object* x_992; lean_object* x_993; lean_object* x_994; lean_object* x_995; lean_object* x_996; lean_object* x_997; lean_object* x_998; lean_object* x_999; lean_object* x_1000; lean_object* x_1001; lean_object* x_1002; lean_object* x_1003; lean_object* x_1004; lean_object* x_1005; lean_object* x_1006; lean_object* x_1007; lean_object* x_1008; lean_object* x_1009; lean_object* x_1010; lean_object* x_1011; lean_object* x_1012; lean_object* x_1013; lean_object* x_1014; lean_object* x_1015; lean_object* x_1016; lean_object* x_1017; lean_object* x_1018; lean_object* x_1019; lean_object* x_1020; lean_object* x_1021; lean_object* x_1022; lean_object* x_1023; lean_object* x_1024; lean_object* x_1025; lean_object* x_1026; lean_object* x_1027; lean_object* x_1028; lean_object* x_1029; lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; lean_object* x_1033; lean_object* x_1034; lean_object* x_1035; lean_object* x_1036; lean_object* x_1037; lean_object* x_1038; lean_object* x_1039; lean_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_dec(x_22); -x_889 = lean_ctor_get(x_3, 2); -lean_inc(x_889); -x_890 = lean_ctor_get(x_3, 1); -lean_inc(x_890); +x_894 = lean_ctor_get(x_3, 2); +lean_inc(x_894); +x_895 = lean_ctor_get(x_3, 1); +lean_inc(x_895); lean_dec(x_3); -x_891 = l_Array_empty___closed__1; -x_892 = l_Array_appendCore___rarg(x_891, x_7); +x_896 = l_Array_empty___closed__1; +x_897 = l_Array_appendCore___rarg(x_896, x_7); lean_dec(x_7); -x_893 = l_Lean_nullKind___closed__2; -x_894 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_894, 0, x_893); -lean_ctor_set(x_894, 1, x_892); -x_895 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; -x_896 = lean_array_push(x_895, x_894); -x_897 = lean_array_push(x_891, x_722); -x_898 = l_myMacro____x40_Init_Notation___hyg_7791____closed__8; -lean_inc(x_897); -x_899 = lean_array_push(x_897, x_898); -x_900 = l_Nat_repr(x_10); -x_901 = l_Lean_numLitKind; -x_902 = l_Lean_instInhabitedSourceInfo___closed__1; -x_903 = l_Lean_Syntax_mkLit(x_901, x_900, x_902); -x_904 = lean_array_push(x_899, x_903); -x_905 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; -x_906 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_906, 0, x_905); -lean_ctor_set(x_906, 1, x_904); -x_907 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__9; -x_908 = lean_array_push(x_907, x_906); -x_909 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__10; -x_910 = lean_array_push(x_908, x_909); +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___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; +x_901 = lean_array_push(x_900, x_899); +x_902 = lean_array_push(x_896, x_726); +x_903 = l_myMacro____x40_Init_Notation___hyg_7791____closed__8; +lean_inc(x_902); +x_904 = lean_array_push(x_902, x_903); +x_905 = l_Nat_repr(x_10); +x_906 = l_Lean_numLitKind; +x_907 = l_Lean_instInhabitedSourceInfo___closed__1; +x_908 = l_Lean_Syntax_mkLit(x_906, x_905, x_907); +x_909 = lean_array_push(x_904, x_908); +x_910 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; x_911 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_911, 0, x_893); -lean_ctor_set(x_911, 1, x_910); -x_912 = lean_array_push(x_896, x_911); -x_913 = l_Array_appendCore___rarg(x_891, x_41); +lean_ctor_set(x_911, 0, x_910); +lean_ctor_set(x_911, 1, x_909); +x_912 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__9; +x_913 = lean_array_push(x_912, x_911); +x_914 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__10; +x_915 = lean_array_push(x_913, 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 = lean_array_push(x_901, x_916); +x_918 = l_Array_appendCore___rarg(x_896, x_41); lean_dec(x_41); -x_914 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_914, 0, x_893); -lean_ctor_set(x_914, 1, x_913); -x_915 = lean_array_push(x_912, x_914); -x_916 = l_myMacro____x40_Init_Notation___hyg_8168____closed__10; -x_917 = lean_array_push(x_915, x_916); -x_918 = lean_array_push(x_917, x_17); -x_919 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; -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_891, x_920); -x_922 = l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__7; -lean_inc(x_889); -lean_inc(x_890); -x_923 = l_Lean_addMacroScope(x_890, x_922, x_889); -x_924 = lean_box(0); -x_925 = l_Lean_Elab_Command_expandElab___closed__24; -x_926 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_926, 0, x_902); -lean_ctor_set(x_926, 1, x_925); -lean_ctor_set(x_926, 2, x_923); -lean_ctor_set(x_926, 3, x_924); -x_927 = lean_array_push(x_891, x_926); -x_928 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_928, 0, x_893); -lean_ctor_set(x_928, 1, x_897); -x_929 = lean_array_push(x_927, x_928); -x_930 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; -x_931 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_931, 0, x_930); -lean_ctor_set(x_931, 1, x_929); -x_932 = lean_array_push(x_891, x_931); +x_919 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_919, 0, x_898); +lean_ctor_set(x_919, 1, x_918); +x_920 = lean_array_push(x_917, x_919); +x_921 = l_myMacro____x40_Init_Notation___hyg_8168____closed__10; +x_922 = lean_array_push(x_920, x_921); +x_923 = lean_array_push(x_922, x_17); +x_924 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; +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_896, x_925); +x_927 = l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__7; +lean_inc(x_894); +lean_inc(x_895); +x_928 = l_Lean_addMacroScope(x_895, x_927, x_894); +x_929 = lean_box(0); +x_930 = l_Lean_Elab_Command_expandElab___closed__24; +x_931 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_931, 0, x_907); +lean_ctor_set(x_931, 1, x_930); +lean_ctor_set(x_931, 2, x_928); +lean_ctor_set(x_931, 3, x_929); +x_932 = lean_array_push(x_896, x_931); x_933 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_933, 0, x_893); -lean_ctor_set(x_933, 1, x_932); -x_934 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; -x_935 = lean_array_push(x_934, x_933); -x_936 = lean_array_push(x_935, x_909); -x_937 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; +lean_ctor_set(x_933, 0, x_898); +lean_ctor_set(x_933, 1, x_902); +x_934 = lean_array_push(x_932, x_933); +x_935 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; +x_936 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_936, 0, x_935); +lean_ctor_set(x_936, 1, x_934); +x_937 = lean_array_push(x_896, x_936); x_938 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_938, 0, x_937); -lean_ctor_set(x_938, 1, x_936); -x_939 = lean_array_push(x_891, x_938); -x_940 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_940, 0, x_893); -lean_ctor_set(x_940, 1, x_939); -x_941 = l_Lean_Elab_Tactic_evalIntro___closed__5; -x_942 = lean_array_push(x_941, x_940); -x_943 = l_myMacro____x40_Init_Notation___hyg_8168____closed__22; -x_944 = lean_array_push(x_942, x_943); -x_945 = lean_array_push(x_944, x_943); -x_946 = lean_array_push(x_945, x_943); -x_947 = lean_array_push(x_946, x_943); -x_948 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; -x_949 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_949, 0, x_948); -lean_ctor_set(x_949, 1, x_947); -x_950 = lean_array_push(x_891, x_949); -x_951 = l_Lean_Elab_Command_expandElab___closed__7; -lean_inc(x_889); -lean_inc(x_890); -x_952 = l_Lean_addMacroScope(x_890, x_951, x_889); -x_953 = l_Lean_Elab_Command_expandElab___closed__6; -x_954 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_954, 0, x_902); -lean_ctor_set(x_954, 1, x_953); -lean_ctor_set(x_954, 2, x_952); -lean_ctor_set(x_954, 3, x_924); -x_955 = lean_array_push(x_891, x_954); -x_956 = lean_array_push(x_955, x_943); -x_957 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; -x_958 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_958, 0, x_957); -lean_ctor_set(x_958, 1, x_956); -x_959 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; -x_960 = lean_array_push(x_959, x_958); -x_961 = l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__9; -lean_inc(x_889); -lean_inc(x_890); -x_962 = l_Lean_addMacroScope(x_890, x_961, x_889); -x_963 = l_Lean_Elab_Command_expandElab___closed__27; -x_964 = l_Lean_Elab_Command_expandElab___closed__29; -x_965 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_965, 0, x_902); -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_myMacro____x40_Init_Notation___hyg_8168____closed__11; -x_967 = lean_array_push(x_966, x_965); -x_968 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_969 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_969, 0, x_968); -lean_ctor_set(x_969, 1, x_967); -x_970 = lean_array_push(x_891, x_969); -x_971 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_971, 0, x_893); -lean_ctor_set(x_971, 1, x_970); -x_972 = lean_array_push(x_941, x_971); -x_973 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; +lean_ctor_set(x_938, 0, x_898); +lean_ctor_set(x_938, 1, x_937); +x_939 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; +x_940 = lean_array_push(x_939, x_938); +x_941 = lean_array_push(x_940, x_914); +x_942 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; +x_943 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_943, 0, x_942); +lean_ctor_set(x_943, 1, x_941); +x_944 = lean_array_push(x_896, x_943); +x_945 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_945, 0, x_898); +lean_ctor_set(x_945, 1, x_944); +x_946 = l_Lean_Elab_Tactic_evalIntro___closed__5; +x_947 = lean_array_push(x_946, x_945); +x_948 = l_myMacro____x40_Init_Notation___hyg_8168____closed__22; +x_949 = lean_array_push(x_947, x_948); +x_950 = lean_array_push(x_949, x_948); +x_951 = lean_array_push(x_950, x_948); +x_952 = lean_array_push(x_951, x_948); +x_953 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; +x_954 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_954, 0, x_953); +lean_ctor_set(x_954, 1, x_952); +x_955 = lean_array_push(x_896, x_954); +x_956 = l_Lean_Elab_Command_expandElab___closed__7; +lean_inc(x_894); +lean_inc(x_895); +x_957 = l_Lean_addMacroScope(x_895, x_956, x_894); +x_958 = l_Lean_Elab_Command_expandElab___closed__6; +x_959 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_959, 0, x_907); +lean_ctor_set(x_959, 1, x_958); +lean_ctor_set(x_959, 2, x_957); +lean_ctor_set(x_959, 3, x_929); +x_960 = lean_array_push(x_896, x_959); +x_961 = lean_array_push(x_960, x_948); +x_962 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; +x_963 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_963, 0, x_962); +lean_ctor_set(x_963, 1, x_961); +x_964 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; +x_965 = lean_array_push(x_964, x_963); +x_966 = l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__9; +lean_inc(x_894); +lean_inc(x_895); +x_967 = l_Lean_addMacroScope(x_895, x_966, x_894); +x_968 = l_Lean_Elab_Command_expandElab___closed__27; +x_969 = l_Lean_Elab_Command_expandElab___closed__29; +x_970 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_970, 0, x_907); +lean_ctor_set(x_970, 1, x_968); +lean_ctor_set(x_970, 2, x_967); +lean_ctor_set(x_970, 3, x_969); +x_971 = l_myMacro____x40_Init_Notation___hyg_8168____closed__11; +x_972 = lean_array_push(x_971, x_970); +x_973 = l_Lean_expandExplicitBindersAux_loop___closed__8; 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_960, x_974); -x_976 = l___kind_stx____x40_Init_Notation___hyg_7374____closed__2; -lean_inc(x_889); -lean_inc(x_890); -x_977 = l_Lean_addMacroScope(x_890, x_976, x_889); -x_978 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_979 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_979, 0, x_902); -lean_ctor_set(x_979, 1, x_978); -lean_ctor_set(x_979, 2, x_977); -lean_ctor_set(x_979, 3, x_924); -lean_inc(x_979); -x_980 = lean_array_push(x_891, x_979); -x_981 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_981, 0, x_893); -lean_ctor_set(x_981, 1, x_980); -x_982 = lean_array_push(x_891, x_981); -x_983 = l_myMacro____x40_Init_Notation___hyg_5739____closed__19; -x_984 = lean_array_push(x_982, x_983); -x_985 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; -x_986 = lean_array_push(x_985, x_979); -x_987 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_988 = lean_array_push(x_986, x_987); -x_989 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; -x_990 = lean_array_push(x_989, x_721); -x_991 = l_myMacro____x40_Init_Notation___hyg_5739____closed__22; -x_992 = lean_array_push(x_990, x_991); -x_993 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_994 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_994, 0, x_993); -lean_ctor_set(x_994, 1, x_992); -x_995 = lean_array_push(x_891, x_994); -x_996 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_996, 0, x_893); -lean_ctor_set(x_996, 1, x_995); -x_997 = lean_array_push(x_891, x_996); -x_998 = lean_array_push(x_997, x_983); -x_999 = lean_array_push(x_998, x_21); -x_1000 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_975 = lean_array_push(x_896, x_974); +x_976 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_976, 0, x_898); +lean_ctor_set(x_976, 1, x_975); +x_977 = lean_array_push(x_946, x_976); +x_978 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; +x_979 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_979, 0, x_978); +lean_ctor_set(x_979, 1, x_977); +x_980 = lean_array_push(x_965, x_979); +x_981 = l___kind_stx____x40_Init_Notation___hyg_7374____closed__2; +lean_inc(x_894); +lean_inc(x_895); +x_982 = l_Lean_addMacroScope(x_895, x_981, x_894); +x_983 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_984 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_984, 0, x_907); +lean_ctor_set(x_984, 1, x_983); +lean_ctor_set(x_984, 2, x_982); +lean_ctor_set(x_984, 3, x_929); +lean_inc(x_984); +x_985 = lean_array_push(x_896, x_984); +x_986 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_986, 0, x_898); +lean_ctor_set(x_986, 1, x_985); +x_987 = lean_array_push(x_896, x_986); +x_988 = l_myMacro____x40_Init_Notation___hyg_5739____closed__19; +x_989 = lean_array_push(x_987, x_988); +x_990 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; +x_991 = lean_array_push(x_990, x_984); +x_992 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_993 = lean_array_push(x_991, x_992); +x_994 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; +x_995 = lean_array_push(x_994, x_725); +x_996 = l_myMacro____x40_Init_Notation___hyg_5739____closed__22; +x_997 = lean_array_push(x_995, x_996); +x_998 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_999 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_999, 0, x_998); +lean_ctor_set(x_999, 1, x_997); +x_1000 = lean_array_push(x_896, x_999); x_1001 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1001, 0, x_1000); -lean_ctor_set(x_1001, 1, x_999); -x_1002 = lean_array_push(x_891, x_1001); -x_1003 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_1004 = lean_array_push(x_1002, x_1003); -x_1005 = l_Lean_Elab_Command_expandElab___closed__19; -x_1006 = l_Lean_addMacroScope(x_890, x_1005, x_889); -x_1007 = l_Lean_Elab_Command_expandElab___closed__18; -x_1008 = l_Lean_Elab_Command_expandElab___closed__22; -x_1009 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1009, 0, x_902); -lean_ctor_set(x_1009, 1, x_1007); -lean_ctor_set(x_1009, 2, x_1006); -lean_ctor_set(x_1009, 3, x_1008); -x_1010 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; -x_1011 = lean_array_push(x_1010, x_1009); -x_1012 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1012, 0, x_1000); -lean_ctor_set(x_1012, 1, x_1011); -x_1013 = lean_array_push(x_1004, x_1012); -x_1014 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1014, 0, x_893); -lean_ctor_set(x_1014, 1, x_1013); -x_1015 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +lean_ctor_set(x_1001, 0, x_898); +lean_ctor_set(x_1001, 1, x_1000); +x_1002 = lean_array_push(x_896, x_1001); +x_1003 = lean_array_push(x_1002, x_988); +x_1004 = lean_array_push(x_1003, x_21); +x_1005 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_1006 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1006, 0, x_1005); +lean_ctor_set(x_1006, 1, x_1004); +x_1007 = lean_array_push(x_896, x_1006); +x_1008 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1009 = lean_array_push(x_1007, x_1008); +x_1010 = l_Lean_Elab_Command_expandElab___closed__19; +x_1011 = l_Lean_addMacroScope(x_895, x_1010, x_894); +x_1012 = l_Lean_Elab_Command_expandElab___closed__18; +x_1013 = l_Lean_Elab_Command_expandElab___closed__22; +x_1014 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1014, 0, x_907); +lean_ctor_set(x_1014, 1, x_1012); +lean_ctor_set(x_1014, 2, x_1011); +lean_ctor_set(x_1014, 3, x_1013); +x_1015 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; x_1016 = lean_array_push(x_1015, x_1014); -x_1017 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; -x_1018 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1018, 0, x_1017); -lean_ctor_set(x_1018, 1, x_1016); -x_1019 = lean_array_push(x_988, x_1018); -x_1020 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_1021 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1021, 0, x_1020); -lean_ctor_set(x_1021, 1, x_1019); -x_1022 = lean_array_push(x_984, x_1021); -x_1023 = l_myMacro____x40_Init_Notation___hyg_5739____closed__17; -x_1024 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1024, 0, x_1023); -lean_ctor_set(x_1024, 1, x_1022); -x_1025 = l_myMacro____x40_Init_Notation___hyg_5739____closed__15; -x_1026 = lean_array_push(x_1025, x_1024); -x_1027 = l_myMacro____x40_Init_Notation___hyg_5739____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 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_11379____closed__7; -x_1030 = lean_array_push(x_1029, x_1028); -x_1031 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; -x_1032 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1032, 0, x_1031); -lean_ctor_set(x_1032, 1, x_1030); -x_1033 = lean_array_push(x_975, x_1032); -x_1034 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; -x_1035 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1035, 0, x_1034); -lean_ctor_set(x_1035, 1, x_1033); -x_1036 = lean_array_push(x_950, x_1035); -x_1037 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_1017 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1017, 0, x_1005); +lean_ctor_set(x_1017, 1, x_1016); +x_1018 = lean_array_push(x_1009, x_1017); +x_1019 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1019, 0, x_898); +lean_ctor_set(x_1019, 1, x_1018); +x_1020 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +x_1021 = lean_array_push(x_1020, x_1019); +x_1022 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; +x_1023 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1023, 0, x_1022); +lean_ctor_set(x_1023, 1, x_1021); +x_1024 = lean_array_push(x_993, x_1023); +x_1025 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_1026 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1026, 0, x_1025); +lean_ctor_set(x_1026, 1, x_1024); +x_1027 = lean_array_push(x_989, x_1026); +x_1028 = l_myMacro____x40_Init_Notation___hyg_5739____closed__17; +x_1029 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1029, 0, x_1028); +lean_ctor_set(x_1029, 1, x_1027); +x_1030 = l_myMacro____x40_Init_Notation___hyg_5739____closed__15; +x_1031 = lean_array_push(x_1030, x_1029); +x_1032 = l_myMacro____x40_Init_Notation___hyg_5739____closed__13; +x_1033 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1033, 0, x_1032); +lean_ctor_set(x_1033, 1, x_1031); +x_1034 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_11379____closed__7; +x_1035 = lean_array_push(x_1034, x_1033); +x_1036 = lean_array_push(x_1035, x_948); +x_1037 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; x_1038 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1038, 0, x_1037); lean_ctor_set(x_1038, 1, x_1036); -x_1039 = lean_array_push(x_921, x_1038); -x_1040 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1040, 0, x_893); -lean_ctor_set(x_1040, 1, x_1039); -x_1041 = lean_alloc_ctor(0, 2, 0); +x_1039 = lean_array_push(x_980, x_1038); +x_1040 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; +x_1041 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1041, 0, x_1040); -lean_ctor_set(x_1041, 1, x_717); -return x_1041; +lean_ctor_set(x_1041, 1, x_1039); +x_1042 = lean_array_push(x_955, x_1041); +x_1043 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_1044 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1044, 0, x_1043); +lean_ctor_set(x_1044, 1, x_1042); +x_1045 = lean_array_push(x_926, x_1044); +x_1046 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1046, 0, x_898); +lean_ctor_set(x_1046, 1, x_1045); +x_1047 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1047, 0, x_1046); +lean_ctor_set(x_1047, 1, x_721); +return x_1047; } } else { -lean_object* x_1042; lean_object* x_1043; lean_object* x_1044; lean_object* x_1045; lean_object* x_1046; lean_object* x_1047; lean_object* x_1048; lean_object* x_1049; lean_object* x_1050; lean_object* x_1051; lean_object* x_1052; lean_object* x_1053; lean_object* x_1054; lean_object* x_1055; lean_object* x_1056; lean_object* x_1057; lean_object* x_1058; lean_object* x_1059; lean_object* x_1060; lean_object* x_1061; lean_object* x_1062; lean_object* x_1063; lean_object* x_1064; lean_object* x_1065; lean_object* x_1066; lean_object* x_1067; lean_object* x_1068; lean_object* x_1069; lean_object* x_1070; lean_object* x_1071; lean_object* x_1072; lean_object* x_1073; lean_object* x_1074; lean_object* x_1075; lean_object* x_1076; lean_object* x_1077; lean_object* x_1078; lean_object* x_1079; lean_object* x_1080; lean_object* x_1081; lean_object* x_1082; lean_object* x_1083; lean_object* x_1084; lean_object* x_1085; lean_object* x_1086; lean_object* x_1087; lean_object* x_1088; lean_object* x_1089; lean_object* x_1090; lean_object* x_1091; lean_object* x_1092; lean_object* x_1093; lean_object* x_1094; lean_object* x_1095; lean_object* x_1096; lean_object* x_1097; lean_object* x_1098; lean_object* x_1099; lean_object* x_1100; lean_object* x_1101; lean_object* x_1102; lean_object* x_1103; lean_object* x_1104; lean_object* x_1105; lean_object* x_1106; lean_object* x_1107; lean_object* x_1108; lean_object* x_1109; lean_object* x_1110; lean_object* x_1111; lean_object* x_1112; lean_object* x_1113; lean_object* x_1114; lean_object* x_1115; lean_object* x_1116; lean_object* x_1117; lean_object* x_1118; lean_object* x_1119; lean_object* x_1120; lean_object* x_1121; lean_object* x_1122; lean_object* x_1123; lean_object* x_1124; lean_object* x_1125; lean_object* x_1126; lean_object* x_1127; lean_object* x_1128; lean_object* x_1129; lean_object* x_1130; lean_object* x_1131; lean_object* x_1132; lean_object* x_1133; lean_object* x_1134; lean_object* x_1135; lean_object* x_1136; lean_object* x_1137; lean_object* x_1138; lean_object* x_1139; lean_object* x_1140; lean_object* x_1141; lean_object* x_1142; lean_object* x_1143; lean_object* x_1144; lean_object* x_1145; lean_object* x_1146; lean_object* x_1147; lean_object* x_1148; lean_object* x_1149; lean_object* x_1150; lean_object* x_1151; lean_object* x_1152; lean_object* x_1153; lean_object* x_1154; lean_object* x_1155; lean_object* x_1156; lean_object* x_1157; lean_object* x_1158; lean_object* x_1159; lean_object* x_1160; lean_object* x_1161; lean_object* x_1162; lean_object* x_1163; lean_object* x_1164; lean_object* x_1165; lean_object* x_1166; lean_object* x_1167; lean_object* x_1168; lean_object* x_1169; lean_object* x_1170; lean_object* x_1171; lean_object* x_1172; lean_object* x_1173; lean_object* x_1174; lean_object* x_1175; lean_object* x_1176; lean_object* x_1177; lean_object* x_1178; lean_object* x_1179; lean_object* x_1180; lean_object* x_1181; lean_object* x_1182; lean_object* x_1183; lean_object* x_1184; lean_object* x_1185; lean_object* x_1186; lean_object* x_1187; lean_object* x_1188; lean_object* x_1189; lean_object* x_1190; lean_object* x_1191; lean_object* x_1192; lean_object* x_1193; lean_object* x_1194; lean_object* x_1195; lean_object* x_1196; +lean_object* x_1048; lean_object* x_1049; lean_object* x_1050; lean_object* x_1051; lean_object* x_1052; lean_object* x_1053; lean_object* x_1054; lean_object* x_1055; lean_object* x_1056; lean_object* x_1057; lean_object* x_1058; lean_object* x_1059; lean_object* x_1060; lean_object* x_1061; lean_object* x_1062; lean_object* x_1063; lean_object* x_1064; lean_object* x_1065; lean_object* x_1066; lean_object* x_1067; lean_object* x_1068; lean_object* x_1069; lean_object* x_1070; lean_object* x_1071; lean_object* x_1072; lean_object* x_1073; lean_object* x_1074; lean_object* x_1075; lean_object* x_1076; lean_object* x_1077; lean_object* x_1078; lean_object* x_1079; lean_object* x_1080; lean_object* x_1081; lean_object* x_1082; lean_object* x_1083; lean_object* x_1084; lean_object* x_1085; lean_object* x_1086; lean_object* x_1087; lean_object* x_1088; lean_object* x_1089; lean_object* x_1090; lean_object* x_1091; lean_object* x_1092; lean_object* x_1093; lean_object* x_1094; lean_object* x_1095; lean_object* x_1096; lean_object* x_1097; lean_object* x_1098; lean_object* x_1099; lean_object* x_1100; lean_object* x_1101; lean_object* x_1102; lean_object* x_1103; lean_object* x_1104; lean_object* x_1105; lean_object* x_1106; lean_object* x_1107; lean_object* x_1108; lean_object* x_1109; lean_object* x_1110; lean_object* x_1111; lean_object* x_1112; lean_object* x_1113; lean_object* x_1114; lean_object* x_1115; lean_object* x_1116; lean_object* x_1117; lean_object* x_1118; lean_object* x_1119; lean_object* x_1120; lean_object* x_1121; lean_object* x_1122; lean_object* x_1123; lean_object* x_1124; lean_object* x_1125; lean_object* x_1126; lean_object* x_1127; lean_object* x_1128; lean_object* x_1129; lean_object* x_1130; lean_object* x_1131; lean_object* x_1132; lean_object* x_1133; lean_object* x_1134; lean_object* x_1135; lean_object* x_1136; lean_object* x_1137; lean_object* x_1138; lean_object* x_1139; lean_object* x_1140; lean_object* x_1141; lean_object* x_1142; lean_object* x_1143; lean_object* x_1144; lean_object* x_1145; lean_object* x_1146; lean_object* x_1147; lean_object* x_1148; lean_object* x_1149; lean_object* x_1150; lean_object* x_1151; lean_object* x_1152; lean_object* x_1153; lean_object* x_1154; lean_object* x_1155; lean_object* x_1156; lean_object* x_1157; lean_object* x_1158; lean_object* x_1159; lean_object* x_1160; lean_object* x_1161; lean_object* x_1162; lean_object* x_1163; lean_object* x_1164; lean_object* x_1165; lean_object* x_1166; lean_object* x_1167; lean_object* x_1168; lean_object* x_1169; lean_object* x_1170; lean_object* x_1171; lean_object* x_1172; lean_object* x_1173; lean_object* x_1174; lean_object* x_1175; lean_object* x_1176; lean_object* x_1177; lean_object* x_1178; lean_object* x_1179; lean_object* x_1180; lean_object* x_1181; lean_object* x_1182; lean_object* x_1183; lean_object* x_1184; lean_object* x_1185; lean_object* x_1186; lean_object* x_1187; lean_object* x_1188; lean_object* x_1189; lean_object* x_1190; lean_object* x_1191; lean_object* x_1192; lean_object* x_1193; lean_object* x_1194; lean_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_dec(x_22); -x_1042 = lean_ctor_get(x_3, 2); -lean_inc(x_1042); -x_1043 = lean_ctor_get(x_3, 1); -lean_inc(x_1043); +x_1048 = lean_ctor_get(x_3, 2); +lean_inc(x_1048); +x_1049 = lean_ctor_get(x_3, 1); +lean_inc(x_1049); lean_dec(x_3); -x_1044 = l_Array_empty___closed__1; -x_1045 = l_Array_appendCore___rarg(x_1044, x_7); +x_1050 = l_Array_empty___closed__1; +x_1051 = l_Array_appendCore___rarg(x_1050, x_7); lean_dec(x_7); -x_1046 = l_Lean_nullKind___closed__2; -x_1047 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1047, 0, x_1046); -lean_ctor_set(x_1047, 1, x_1045); -x_1048 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; -x_1049 = lean_array_push(x_1048, x_1047); -x_1050 = lean_array_push(x_1044, x_722); -x_1051 = l_myMacro____x40_Init_Notation___hyg_7791____closed__8; -lean_inc(x_1050); -x_1052 = lean_array_push(x_1050, x_1051); -x_1053 = l_Nat_repr(x_10); -x_1054 = l_Lean_numLitKind; -x_1055 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1056 = l_Lean_Syntax_mkLit(x_1054, x_1053, x_1055); -x_1057 = lean_array_push(x_1052, x_1056); -x_1058 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; -x_1059 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1059, 0, x_1058); -lean_ctor_set(x_1059, 1, x_1057); -x_1060 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__9; -x_1061 = lean_array_push(x_1060, x_1059); -x_1062 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__10; -x_1063 = lean_array_push(x_1061, x_1062); -x_1064 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1064, 0, x_1046); -lean_ctor_set(x_1064, 1, x_1063); -x_1065 = lean_array_push(x_1049, x_1064); -x_1066 = l_Array_appendCore___rarg(x_1044, x_41); +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___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; +x_1055 = lean_array_push(x_1054, x_1053); +x_1056 = lean_array_push(x_1050, x_726); +x_1057 = l_myMacro____x40_Init_Notation___hyg_7791____closed__8; +lean_inc(x_1056); +x_1058 = lean_array_push(x_1056, x_1057); +x_1059 = l_Nat_repr(x_10); +x_1060 = l_Lean_numLitKind; +x_1061 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1062 = l_Lean_Syntax_mkLit(x_1060, x_1059, x_1061); +x_1063 = lean_array_push(x_1058, x_1062); +x_1064 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; +x_1065 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1065, 0, x_1064); +lean_ctor_set(x_1065, 1, x_1063); +x_1066 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__9; +x_1067 = lean_array_push(x_1066, x_1065); +x_1068 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__10; +x_1069 = lean_array_push(x_1067, x_1068); +x_1070 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1070, 0, x_1052); +lean_ctor_set(x_1070, 1, x_1069); +x_1071 = lean_array_push(x_1055, x_1070); +x_1072 = l_Array_appendCore___rarg(x_1050, x_41); lean_dec(x_41); -x_1067 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1067, 0, x_1046); -lean_ctor_set(x_1067, 1, x_1066); -x_1068 = lean_array_push(x_1065, x_1067); -x_1069 = l_myMacro____x40_Init_Notation___hyg_8168____closed__10; -x_1070 = lean_array_push(x_1068, x_1069); -x_1071 = lean_array_push(x_1070, x_17); -x_1072 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; x_1073 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1073, 0, x_1072); -lean_ctor_set(x_1073, 1, x_1071); -x_1074 = lean_array_push(x_1044, x_1073); -x_1075 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; -lean_inc(x_1042); -lean_inc(x_1043); -x_1076 = l_Lean_addMacroScope(x_1043, x_1075, x_1042); -x_1077 = lean_box(0); -x_1078 = l_Lean_Elab_Command_expandElab___closed__31; -x_1079 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1079, 0, x_1055); -lean_ctor_set(x_1079, 1, x_1078); -lean_ctor_set(x_1079, 2, x_1076); -lean_ctor_set(x_1079, 3, x_1077); -x_1080 = lean_array_push(x_1044, x_1079); -x_1081 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1081, 0, x_1046); -lean_ctor_set(x_1081, 1, x_1050); -x_1082 = lean_array_push(x_1080, x_1081); -x_1083 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; -x_1084 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1084, 0, x_1083); -lean_ctor_set(x_1084, 1, x_1082); -x_1085 = lean_array_push(x_1044, x_1084); -x_1086 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1086, 0, x_1046); -lean_ctor_set(x_1086, 1, x_1085); -x_1087 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; -x_1088 = lean_array_push(x_1087, x_1086); -x_1089 = lean_array_push(x_1088, x_1062); -x_1090 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; -x_1091 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1091, 0, x_1090); -lean_ctor_set(x_1091, 1, x_1089); -x_1092 = lean_array_push(x_1044, x_1091); -x_1093 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1093, 0, x_1046); -lean_ctor_set(x_1093, 1, x_1092); -x_1094 = l_Lean_Elab_Tactic_evalIntro___closed__5; -x_1095 = lean_array_push(x_1094, x_1093); -x_1096 = l_myMacro____x40_Init_Notation___hyg_8168____closed__22; -x_1097 = lean_array_push(x_1095, x_1096); -x_1098 = lean_array_push(x_1097, x_1096); -x_1099 = lean_array_push(x_1098, x_1096); -x_1100 = lean_array_push(x_1099, x_1096); -x_1101 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; -x_1102 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1102, 0, x_1101); -lean_ctor_set(x_1102, 1, x_1100); -x_1103 = lean_array_push(x_1044, x_1102); -x_1104 = l_Lean_Elab_Command_expandElab___closed__7; -lean_inc(x_1042); -lean_inc(x_1043); -x_1105 = l_Lean_addMacroScope(x_1043, x_1104, x_1042); -x_1106 = l_Lean_Elab_Command_expandElab___closed__6; -x_1107 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1107, 0, x_1055); -lean_ctor_set(x_1107, 1, x_1106); -lean_ctor_set(x_1107, 2, x_1105); -lean_ctor_set(x_1107, 3, x_1077); -x_1108 = lean_array_push(x_1044, x_1107); -x_1109 = lean_array_push(x_1108, x_1096); -x_1110 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; -x_1111 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1111, 0, x_1110); -lean_ctor_set(x_1111, 1, x_1109); -x_1112 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; -x_1113 = lean_array_push(x_1112, x_1111); -x_1114 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; -lean_inc(x_1042); -lean_inc(x_1043); -x_1115 = l_Lean_addMacroScope(x_1043, x_1114, x_1042); -x_1116 = l_Lean_Elab_Command_expandElab___closed__34; -x_1117 = l_Lean_Elab_Command_expandElab___closed__36; -x_1118 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1118, 0, x_1055); -lean_ctor_set(x_1118, 1, x_1116); -lean_ctor_set(x_1118, 2, x_1115); -lean_ctor_set(x_1118, 3, x_1117); -x_1119 = l_myMacro____x40_Init_Notation___hyg_8168____closed__11; -x_1120 = lean_array_push(x_1119, x_1118); -x_1121 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_1122 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1122, 0, x_1121); -lean_ctor_set(x_1122, 1, x_1120); -x_1123 = lean_array_push(x_1044, x_1122); -x_1124 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1124, 0, x_1046); -lean_ctor_set(x_1124, 1, x_1123); -x_1125 = lean_array_push(x_1094, x_1124); -x_1126 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; -x_1127 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1127, 0, x_1126); -lean_ctor_set(x_1127, 1, x_1125); -x_1128 = lean_array_push(x_1113, x_1127); -x_1129 = l___kind_stx____x40_Init_Notation___hyg_7374____closed__2; -lean_inc(x_1042); -lean_inc(x_1043); -x_1130 = l_Lean_addMacroScope(x_1043, x_1129, x_1042); -x_1131 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_1132 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1132, 0, x_1055); -lean_ctor_set(x_1132, 1, x_1131); -lean_ctor_set(x_1132, 2, x_1130); -lean_ctor_set(x_1132, 3, x_1077); -lean_inc(x_1132); -x_1133 = lean_array_push(x_1044, x_1132); -x_1134 = l_myMacro____x40_Init_Notation___hyg_8168____closed__17; -x_1135 = lean_array_push(x_1133, x_1134); -x_1136 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1136, 0, x_1046); -lean_ctor_set(x_1136, 1, x_1135); -x_1137 = lean_array_push(x_1044, x_1136); -x_1138 = l_myMacro____x40_Init_Notation___hyg_5739____closed__19; -x_1139 = lean_array_push(x_1137, x_1138); -x_1140 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; -x_1141 = lean_array_push(x_1140, x_1132); -x_1142 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_1143 = lean_array_push(x_1141, x_1142); -x_1144 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; -x_1145 = lean_array_push(x_1144, x_721); -x_1146 = l_myMacro____x40_Init_Notation___hyg_5739____closed__22; -x_1147 = lean_array_push(x_1145, x_1146); -x_1148 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -x_1149 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1149, 0, x_1148); -lean_ctor_set(x_1149, 1, x_1147); -x_1150 = lean_array_push(x_1044, x_1149); -x_1151 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1151, 0, x_1046); -lean_ctor_set(x_1151, 1, x_1150); -x_1152 = lean_array_push(x_1044, x_1151); -x_1153 = lean_array_push(x_1152, x_1138); -x_1154 = lean_array_push(x_1153, x_21); -x_1155 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -x_1156 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1156, 0, x_1155); -lean_ctor_set(x_1156, 1, x_1154); -x_1157 = lean_array_push(x_1044, x_1156); -x_1158 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_1159 = lean_array_push(x_1157, x_1158); -x_1160 = l_Lean_Elab_Command_expandElab___closed__19; -x_1161 = l_Lean_addMacroScope(x_1043, x_1160, x_1042); -x_1162 = l_Lean_Elab_Command_expandElab___closed__18; -x_1163 = l_Lean_Elab_Command_expandElab___closed__22; -x_1164 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1164, 0, x_1055); -lean_ctor_set(x_1164, 1, x_1162); -lean_ctor_set(x_1164, 2, x_1161); -lean_ctor_set(x_1164, 3, x_1163); -x_1165 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; -x_1166 = lean_array_push(x_1165, x_1164); -x_1167 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1167, 0, x_1155); -lean_ctor_set(x_1167, 1, x_1166); -x_1168 = lean_array_push(x_1159, x_1167); -x_1169 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1169, 0, x_1046); -lean_ctor_set(x_1169, 1, x_1168); -x_1170 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -x_1171 = lean_array_push(x_1170, x_1169); -x_1172 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; +lean_ctor_set(x_1073, 0, x_1052); +lean_ctor_set(x_1073, 1, x_1072); +x_1074 = lean_array_push(x_1071, x_1073); +x_1075 = l_myMacro____x40_Init_Notation___hyg_8168____closed__10; +x_1076 = lean_array_push(x_1074, x_1075); +x_1077 = lean_array_push(x_1076, x_17); +x_1078 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; +x_1079 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1079, 0, x_1078); +lean_ctor_set(x_1079, 1, x_1077); +x_1080 = lean_array_push(x_1050, x_1079); +x_1081 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; +lean_inc(x_1048); +lean_inc(x_1049); +x_1082 = l_Lean_addMacroScope(x_1049, x_1081, x_1048); +x_1083 = lean_box(0); +x_1084 = l_Lean_Elab_Command_expandElab___closed__31; +x_1085 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1085, 0, x_1061); +lean_ctor_set(x_1085, 1, x_1084); +lean_ctor_set(x_1085, 2, x_1082); +lean_ctor_set(x_1085, 3, x_1083); +x_1086 = lean_array_push(x_1050, x_1085); +x_1087 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1087, 0, x_1052); +lean_ctor_set(x_1087, 1, x_1056); +x_1088 = lean_array_push(x_1086, x_1087); +x_1089 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; +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_1050, x_1090); +x_1092 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1092, 0, x_1052); +lean_ctor_set(x_1092, 1, x_1091); +x_1093 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; +x_1094 = lean_array_push(x_1093, x_1092); +x_1095 = lean_array_push(x_1094, x_1068); +x_1096 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; +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_1050, x_1097); +x_1099 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1099, 0, x_1052); +lean_ctor_set(x_1099, 1, x_1098); +x_1100 = l_Lean_Elab_Tactic_evalIntro___closed__5; +x_1101 = lean_array_push(x_1100, x_1099); +x_1102 = l_myMacro____x40_Init_Notation___hyg_8168____closed__22; +x_1103 = lean_array_push(x_1101, x_1102); +x_1104 = lean_array_push(x_1103, x_1102); +x_1105 = lean_array_push(x_1104, x_1102); +x_1106 = lean_array_push(x_1105, x_1102); +x_1107 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; +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_1050, x_1108); +x_1110 = l_Lean_Elab_Command_expandElab___closed__7; +lean_inc(x_1048); +lean_inc(x_1049); +x_1111 = l_Lean_addMacroScope(x_1049, x_1110, x_1048); +x_1112 = l_Lean_Elab_Command_expandElab___closed__6; +x_1113 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1113, 0, x_1061); +lean_ctor_set(x_1113, 1, x_1112); +lean_ctor_set(x_1113, 2, x_1111); +lean_ctor_set(x_1113, 3, x_1083); +x_1114 = lean_array_push(x_1050, x_1113); +x_1115 = lean_array_push(x_1114, x_1102); +x_1116 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; +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 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; +x_1119 = lean_array_push(x_1118, x_1117); +x_1120 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; +lean_inc(x_1048); +lean_inc(x_1049); +x_1121 = l_Lean_addMacroScope(x_1049, x_1120, x_1048); +x_1122 = l_Lean_Elab_Command_expandElab___closed__34; +x_1123 = l_Lean_Elab_Command_expandElab___closed__36; +x_1124 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1124, 0, x_1061); +lean_ctor_set(x_1124, 1, x_1122); +lean_ctor_set(x_1124, 2, x_1121); +lean_ctor_set(x_1124, 3, x_1123); +x_1125 = l_myMacro____x40_Init_Notation___hyg_8168____closed__11; +x_1126 = lean_array_push(x_1125, x_1124); +x_1127 = l_Lean_expandExplicitBindersAux_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_1050, x_1128); +x_1130 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1130, 0, x_1052); +lean_ctor_set(x_1130, 1, x_1129); +x_1131 = lean_array_push(x_1100, x_1130); +x_1132 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; +x_1133 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1133, 0, x_1132); +lean_ctor_set(x_1133, 1, x_1131); +x_1134 = lean_array_push(x_1119, x_1133); +x_1135 = l___kind_stx____x40_Init_Notation___hyg_7374____closed__2; +lean_inc(x_1048); +lean_inc(x_1049); +x_1136 = l_Lean_addMacroScope(x_1049, x_1135, x_1048); +x_1137 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_1138 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1138, 0, x_1061); +lean_ctor_set(x_1138, 1, x_1137); +lean_ctor_set(x_1138, 2, x_1136); +lean_ctor_set(x_1138, 3, x_1083); +lean_inc(x_1138); +x_1139 = lean_array_push(x_1050, x_1138); +x_1140 = l_myMacro____x40_Init_Notation___hyg_8168____closed__17; +x_1141 = lean_array_push(x_1139, x_1140); +x_1142 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1142, 0, x_1052); +lean_ctor_set(x_1142, 1, x_1141); +x_1143 = lean_array_push(x_1050, x_1142); +x_1144 = l_myMacro____x40_Init_Notation___hyg_5739____closed__19; +x_1145 = lean_array_push(x_1143, x_1144); +x_1146 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; +x_1147 = lean_array_push(x_1146, x_1138); +x_1148 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1149 = lean_array_push(x_1147, x_1148); +x_1150 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; +x_1151 = lean_array_push(x_1150, x_725); +x_1152 = l_myMacro____x40_Init_Notation___hyg_5739____closed__22; +x_1153 = lean_array_push(x_1151, x_1152); +x_1154 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_1155 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1155, 0, x_1154); +lean_ctor_set(x_1155, 1, x_1153); +x_1156 = lean_array_push(x_1050, x_1155); +x_1157 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1157, 0, x_1052); +lean_ctor_set(x_1157, 1, x_1156); +x_1158 = lean_array_push(x_1050, x_1157); +x_1159 = lean_array_push(x_1158, x_1144); +x_1160 = lean_array_push(x_1159, x_21); +x_1161 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_1162 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1162, 0, x_1161); +lean_ctor_set(x_1162, 1, x_1160); +x_1163 = lean_array_push(x_1050, x_1162); +x_1164 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1165 = lean_array_push(x_1163, x_1164); +x_1166 = l_Lean_Elab_Command_expandElab___closed__19; +x_1167 = l_Lean_addMacroScope(x_1049, x_1166, x_1048); +x_1168 = l_Lean_Elab_Command_expandElab___closed__18; +x_1169 = l_Lean_Elab_Command_expandElab___closed__22; +x_1170 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1170, 0, x_1061); +lean_ctor_set(x_1170, 1, x_1168); +lean_ctor_set(x_1170, 2, x_1167); +lean_ctor_set(x_1170, 3, x_1169); +x_1171 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; +x_1172 = lean_array_push(x_1171, x_1170); x_1173 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1173, 0, x_1172); -lean_ctor_set(x_1173, 1, x_1171); -x_1174 = lean_array_push(x_1143, x_1173); -x_1175 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; -x_1176 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1176, 0, x_1175); -lean_ctor_set(x_1176, 1, x_1174); -x_1177 = lean_array_push(x_1139, x_1176); -x_1178 = l_myMacro____x40_Init_Notation___hyg_5739____closed__17; +lean_ctor_set(x_1173, 0, x_1161); +lean_ctor_set(x_1173, 1, x_1172); +x_1174 = lean_array_push(x_1165, x_1173); +x_1175 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1175, 0, x_1052); +lean_ctor_set(x_1175, 1, x_1174); +x_1176 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +x_1177 = lean_array_push(x_1176, x_1175); +x_1178 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_1179 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1179, 0, x_1178); lean_ctor_set(x_1179, 1, x_1177); -x_1180 = l_myMacro____x40_Init_Notation___hyg_5739____closed__15; -x_1181 = lean_array_push(x_1180, x_1179); -x_1182 = l_myMacro____x40_Init_Notation___hyg_5739____closed__13; -x_1183 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1183, 0, x_1182); -lean_ctor_set(x_1183, 1, x_1181); -x_1184 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_11379____closed__7; -x_1185 = lean_array_push(x_1184, x_1183); -x_1186 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; -x_1187 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1187, 0, x_1186); -lean_ctor_set(x_1187, 1, x_1185); -x_1188 = lean_array_push(x_1128, x_1187); -x_1189 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; -x_1190 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1190, 0, x_1189); -lean_ctor_set(x_1190, 1, x_1188); -x_1191 = lean_array_push(x_1103, x_1190); -x_1192 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; -x_1193 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1193, 0, x_1192); -lean_ctor_set(x_1193, 1, x_1191); -x_1194 = lean_array_push(x_1074, x_1193); -x_1195 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1195, 0, x_1046); -lean_ctor_set(x_1195, 1, x_1194); -x_1196 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1196, 0, x_1195); -lean_ctor_set(x_1196, 1, x_717); -return x_1196; +x_1180 = lean_array_push(x_1149, x_1179); +x_1181 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +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_1145, x_1182); +x_1184 = l_myMacro____x40_Init_Notation___hyg_5739____closed__17; +x_1185 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1185, 0, x_1184); +lean_ctor_set(x_1185, 1, x_1183); +x_1186 = l_myMacro____x40_Init_Notation___hyg_5739____closed__15; +x_1187 = lean_array_push(x_1186, x_1185); +x_1188 = l_myMacro____x40_Init_Notation___hyg_5739____closed__13; +x_1189 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1189, 0, x_1188); +lean_ctor_set(x_1189, 1, x_1187); +x_1190 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_11379____closed__7; +x_1191 = lean_array_push(x_1190, x_1189); +x_1192 = lean_array_push(x_1191, x_1102); +x_1193 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; +x_1194 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1194, 0, x_1193); +lean_ctor_set(x_1194, 1, x_1192); +x_1195 = lean_array_push(x_1134, x_1194); +x_1196 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; +x_1197 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1197, 0, x_1196); +lean_ctor_set(x_1197, 1, x_1195); +x_1198 = lean_array_push(x_1109, x_1197); +x_1199 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +x_1200 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1200, 0, x_1199); +lean_ctor_set(x_1200, 1, x_1198); +x_1201 = lean_array_push(x_1080, x_1200); +x_1202 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1202, 0, x_1052); +lean_ctor_set(x_1202, 1, x_1201); +x_1203 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1203, 0, x_1202); +lean_ctor_set(x_1203, 1, x_721); +return x_1203; } } else { -lean_object* x_1197; uint8_t x_1198; -x_1197 = l___kind_term____x40_Init_Notation___hyg_3____closed__16; -x_1198 = lean_name_eq(x_22, x_1197); -if (x_1198 == 0) +lean_object* x_1204; uint8_t x_1205; +x_1204 = l___kind_term____x40_Init_Notation___hyg_3____closed__16; +x_1205 = lean_name_eq(x_22, x_1204); +if (x_1205 == 0) { -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_dec(x_722); -lean_dec(x_721); +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_dec(x_726); +lean_dec(x_725); lean_dec(x_41); lean_dec(x_21); lean_dec(x_17); lean_dec(x_10); lean_dec(x_7); -x_1199 = l_Lean_Name_toString___closed__1; -x_1200 = l_Lean_Name_toStringWithSep(x_1199, x_22); -x_1201 = l_Lean_Elab_Command_expandElab___closed__37; -x_1202 = lean_string_append(x_1201, x_1200); -lean_dec(x_1200); -x_1203 = l_Lean_Elab_Command_expandElab___closed__38; -x_1204 = lean_string_append(x_1202, x_1203); -x_1205 = l_Lean_Macro_throwErrorAt___rarg(x_19, x_1204, x_3, x_717); +x_1206 = l_Lean_Name_toString___closed__1; +x_1207 = l_Lean_Name_toStringWithSep(x_1206, x_22); +x_1208 = l_Lean_Elab_Command_expandElab___closed__37; +x_1209 = lean_string_append(x_1208, x_1207); +lean_dec(x_1207); +x_1210 = l_Lean_Elab_Command_expandElab___closed__38; +x_1211 = lean_string_append(x_1209, x_1210); +x_1212 = l_Lean_Macro_throwErrorAt___rarg(x_19, x_1211, x_3, x_721); lean_dec(x_19); -return x_1205; +return x_1212; } else { -lean_object* x_1206; lean_object* x_1207; lean_object* x_1208; lean_object* x_1209; lean_object* x_1210; lean_object* x_1211; lean_object* x_1212; lean_object* x_1213; lean_object* x_1214; lean_object* x_1215; lean_object* x_1216; lean_object* x_1217; lean_object* x_1218; lean_object* x_1219; lean_object* x_1220; lean_object* x_1221; lean_object* x_1222; lean_object* x_1223; lean_object* x_1224; lean_object* x_1225; lean_object* x_1226; lean_object* x_1227; lean_object* x_1228; lean_object* x_1229; lean_object* x_1230; lean_object* x_1231; lean_object* x_1232; lean_object* x_1233; lean_object* x_1234; lean_object* x_1235; lean_object* x_1236; lean_object* x_1237; lean_object* x_1238; lean_object* x_1239; lean_object* x_1240; lean_object* x_1241; lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; lean_object* x_1245; lean_object* x_1246; lean_object* x_1247; lean_object* x_1248; lean_object* x_1249; lean_object* x_1250; lean_object* x_1251; lean_object* x_1252; lean_object* x_1253; lean_object* x_1254; lean_object* x_1255; lean_object* x_1256; lean_object* x_1257; lean_object* x_1258; lean_object* x_1259; lean_object* x_1260; lean_object* x_1261; lean_object* x_1262; lean_object* x_1263; lean_object* x_1264; lean_object* x_1265; lean_object* x_1266; lean_object* x_1267; lean_object* x_1268; lean_object* x_1269; lean_object* x_1270; lean_object* x_1271; lean_object* x_1272; lean_object* x_1273; lean_object* x_1274; lean_object* x_1275; lean_object* x_1276; lean_object* x_1277; lean_object* x_1278; lean_object* x_1279; lean_object* x_1280; lean_object* x_1281; lean_object* x_1282; lean_object* x_1283; lean_object* x_1284; lean_object* x_1285; lean_object* x_1286; lean_object* x_1287; lean_object* x_1288; lean_object* x_1289; lean_object* x_1290; lean_object* x_1291; lean_object* x_1292; lean_object* x_1293; lean_object* x_1294; lean_object* x_1295; lean_object* x_1296; lean_object* x_1297; lean_object* x_1298; lean_object* x_1299; lean_object* x_1300; lean_object* x_1301; lean_object* x_1302; lean_object* x_1303; lean_object* x_1304; lean_object* x_1305; lean_object* x_1306; lean_object* x_1307; lean_object* x_1308; lean_object* x_1309; lean_object* x_1310; lean_object* x_1311; lean_object* x_1312; lean_object* x_1313; lean_object* x_1314; lean_object* x_1315; lean_object* x_1316; lean_object* x_1317; lean_object* x_1318; lean_object* x_1319; lean_object* x_1320; lean_object* x_1321; lean_object* x_1322; lean_object* x_1323; lean_object* x_1324; lean_object* x_1325; lean_object* x_1326; lean_object* x_1327; lean_object* x_1328; lean_object* x_1329; lean_object* x_1330; lean_object* x_1331; lean_object* x_1332; lean_object* x_1333; lean_object* x_1334; lean_object* x_1335; lean_object* x_1336; lean_object* x_1337; lean_object* x_1338; lean_object* x_1339; lean_object* x_1340; lean_object* x_1341; lean_object* x_1342; lean_object* x_1343; lean_object* x_1344; lean_object* x_1345; lean_object* x_1346; lean_object* x_1347; lean_object* x_1348; lean_object* x_1349; lean_object* x_1350; lean_object* x_1351; lean_object* x_1352; lean_object* x_1353; lean_object* x_1354; lean_object* x_1355; lean_object* x_1356; lean_object* x_1357; lean_object* x_1358; lean_object* x_1359; lean_object* x_1360; lean_object* x_1361; lean_object* x_1362; lean_object* x_1363; lean_object* x_1364; lean_object* x_1365; lean_object* x_1366; lean_object* x_1367; lean_object* x_1368; lean_object* x_1369; lean_object* x_1370; lean_object* x_1371; lean_object* x_1372; lean_object* x_1373; lean_object* x_1374; lean_object* x_1375; lean_object* x_1376; lean_object* x_1377; lean_object* x_1378; lean_object* x_1379; lean_object* x_1380; lean_object* x_1381; lean_object* x_1382; lean_object* x_1383; lean_object* x_1384; +lean_object* x_1213; lean_object* x_1214; lean_object* x_1215; lean_object* x_1216; lean_object* x_1217; lean_object* x_1218; lean_object* x_1219; lean_object* x_1220; lean_object* x_1221; lean_object* x_1222; lean_object* x_1223; lean_object* x_1224; lean_object* x_1225; lean_object* x_1226; lean_object* x_1227; lean_object* x_1228; lean_object* x_1229; lean_object* x_1230; lean_object* x_1231; lean_object* x_1232; lean_object* x_1233; lean_object* x_1234; lean_object* x_1235; lean_object* x_1236; lean_object* x_1237; lean_object* x_1238; lean_object* x_1239; lean_object* x_1240; lean_object* x_1241; lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; lean_object* x_1245; lean_object* x_1246; lean_object* x_1247; lean_object* x_1248; lean_object* x_1249; lean_object* x_1250; lean_object* x_1251; lean_object* x_1252; lean_object* x_1253; lean_object* x_1254; lean_object* x_1255; lean_object* x_1256; lean_object* x_1257; lean_object* x_1258; lean_object* x_1259; lean_object* x_1260; lean_object* x_1261; lean_object* x_1262; lean_object* x_1263; lean_object* x_1264; lean_object* x_1265; lean_object* x_1266; lean_object* x_1267; lean_object* x_1268; lean_object* x_1269; lean_object* x_1270; lean_object* x_1271; lean_object* x_1272; lean_object* x_1273; lean_object* x_1274; lean_object* x_1275; lean_object* x_1276; lean_object* x_1277; lean_object* x_1278; lean_object* x_1279; lean_object* x_1280; lean_object* x_1281; lean_object* x_1282; lean_object* x_1283; lean_object* x_1284; lean_object* x_1285; lean_object* x_1286; lean_object* x_1287; lean_object* x_1288; lean_object* x_1289; lean_object* x_1290; lean_object* x_1291; lean_object* x_1292; lean_object* x_1293; lean_object* x_1294; lean_object* x_1295; lean_object* x_1296; lean_object* x_1297; lean_object* x_1298; lean_object* x_1299; lean_object* x_1300; lean_object* x_1301; lean_object* x_1302; lean_object* x_1303; lean_object* x_1304; lean_object* x_1305; lean_object* x_1306; lean_object* x_1307; lean_object* x_1308; lean_object* x_1309; lean_object* x_1310; lean_object* x_1311; lean_object* x_1312; lean_object* x_1313; lean_object* x_1314; lean_object* x_1315; lean_object* x_1316; lean_object* x_1317; lean_object* x_1318; lean_object* x_1319; lean_object* x_1320; lean_object* x_1321; lean_object* x_1322; lean_object* x_1323; lean_object* x_1324; lean_object* x_1325; lean_object* x_1326; lean_object* x_1327; lean_object* x_1328; lean_object* x_1329; lean_object* x_1330; lean_object* x_1331; lean_object* x_1332; lean_object* x_1333; lean_object* x_1334; lean_object* x_1335; lean_object* x_1336; lean_object* x_1337; lean_object* x_1338; lean_object* x_1339; lean_object* x_1340; lean_object* x_1341; lean_object* x_1342; lean_object* x_1343; lean_object* x_1344; lean_object* x_1345; lean_object* x_1346; lean_object* x_1347; lean_object* x_1348; lean_object* x_1349; lean_object* x_1350; lean_object* x_1351; lean_object* x_1352; lean_object* x_1353; lean_object* x_1354; lean_object* x_1355; lean_object* x_1356; lean_object* x_1357; lean_object* x_1358; lean_object* x_1359; lean_object* x_1360; lean_object* x_1361; lean_object* x_1362; lean_object* x_1363; lean_object* x_1364; lean_object* x_1365; lean_object* x_1366; lean_object* x_1367; lean_object* x_1368; lean_object* x_1369; lean_object* x_1370; lean_object* x_1371; lean_object* x_1372; lean_object* x_1373; lean_object* x_1374; lean_object* x_1375; lean_object* x_1376; lean_object* x_1377; lean_object* x_1378; lean_object* x_1379; lean_object* x_1380; lean_object* x_1381; lean_object* x_1382; lean_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_dec(x_22); -x_1206 = l_Lean_Syntax_getArg(x_19, x_5); +x_1213 = l_Lean_Syntax_getArg(x_19, x_5); lean_dec(x_19); -x_1207 = lean_ctor_get(x_3, 2); -lean_inc(x_1207); -x_1208 = lean_ctor_get(x_3, 1); -lean_inc(x_1208); -lean_dec(x_3); -x_1209 = l_Array_empty___closed__1; -x_1210 = l_Array_appendCore___rarg(x_1209, x_7); -lean_dec(x_7); -x_1211 = l_Lean_nullKind___closed__2; -x_1212 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1212, 0, x_1211); -lean_ctor_set(x_1212, 1, x_1210); -x_1213 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; -x_1214 = lean_array_push(x_1213, x_1212); -x_1215 = lean_array_push(x_1209, x_722); -x_1216 = l_myMacro____x40_Init_Notation___hyg_7791____closed__8; +x_1214 = lean_ctor_get(x_3, 2); +lean_inc(x_1214); +x_1215 = lean_ctor_get(x_3, 1); lean_inc(x_1215); -x_1217 = lean_array_push(x_1215, x_1216); -x_1218 = l_Nat_repr(x_10); -x_1219 = l_Lean_numLitKind; -x_1220 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1221 = l_Lean_Syntax_mkLit(x_1219, x_1218, x_1220); -x_1222 = lean_array_push(x_1217, x_1221); -x_1223 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; -x_1224 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1224, 0, x_1223); -lean_ctor_set(x_1224, 1, x_1222); -x_1225 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__9; -x_1226 = lean_array_push(x_1225, x_1224); -x_1227 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__10; -x_1228 = lean_array_push(x_1226, x_1227); -x_1229 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1229, 0, x_1211); -lean_ctor_set(x_1229, 1, x_1228); -x_1230 = lean_array_push(x_1214, x_1229); -x_1231 = l_Array_appendCore___rarg(x_1209, x_41); -lean_dec(x_41); -x_1232 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1232, 0, x_1211); -lean_ctor_set(x_1232, 1, x_1231); -x_1233 = lean_array_push(x_1230, x_1232); -x_1234 = l_myMacro____x40_Init_Notation___hyg_8168____closed__10; +lean_dec(x_3); +x_1216 = l_Array_empty___closed__1; +x_1217 = l_Array_appendCore___rarg(x_1216, x_7); +lean_dec(x_7); +x_1218 = l_Lean_nullKind___closed__2; +x_1219 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1219, 0, x_1218); +lean_ctor_set(x_1219, 1, x_1217); +x_1220 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__2; +x_1221 = lean_array_push(x_1220, x_1219); +x_1222 = lean_array_push(x_1216, x_726); +x_1223 = l_myMacro____x40_Init_Notation___hyg_7791____closed__8; +lean_inc(x_1222); +x_1224 = lean_array_push(x_1222, x_1223); +x_1225 = l_Nat_repr(x_10); +x_1226 = l_Lean_numLitKind; +x_1227 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1228 = l_Lean_Syntax_mkLit(x_1226, x_1225, x_1227); +x_1229 = lean_array_push(x_1224, x_1228); +x_1230 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__6; +x_1231 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1231, 0, x_1230); +lean_ctor_set(x_1231, 1, x_1229); +x_1232 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__9; +x_1233 = lean_array_push(x_1232, x_1231); +x_1234 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3385____closed__10; x_1235 = lean_array_push(x_1233, x_1234); -x_1236 = lean_array_push(x_1235, x_17); -x_1237 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; -x_1238 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1238, 0, x_1237); -lean_ctor_set(x_1238, 1, x_1236); -x_1239 = lean_array_push(x_1209, x_1238); -x_1240 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; -lean_inc(x_1207); -lean_inc(x_1208); -x_1241 = l_Lean_addMacroScope(x_1208, x_1240, x_1207); -x_1242 = lean_box(0); -x_1243 = l_Lean_Elab_Command_expandElab___closed__31; -x_1244 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1244, 0, x_1220); -lean_ctor_set(x_1244, 1, x_1243); -lean_ctor_set(x_1244, 2, x_1241); -lean_ctor_set(x_1244, 3, x_1242); -x_1245 = lean_array_push(x_1209, x_1244); -x_1246 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1246, 0, x_1211); -lean_ctor_set(x_1246, 1, x_1215); -x_1247 = lean_array_push(x_1245, x_1246); -x_1248 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; -x_1249 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1249, 0, x_1248); -lean_ctor_set(x_1249, 1, x_1247); -x_1250 = lean_array_push(x_1209, x_1249); -x_1251 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1251, 0, x_1211); +x_1236 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1236, 0, x_1218); +lean_ctor_set(x_1236, 1, x_1235); +x_1237 = lean_array_push(x_1221, x_1236); +x_1238 = l_Array_appendCore___rarg(x_1216, x_41); +lean_dec(x_41); +x_1239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1239, 0, x_1218); +lean_ctor_set(x_1239, 1, x_1238); +x_1240 = lean_array_push(x_1237, x_1239); +x_1241 = l_myMacro____x40_Init_Notation___hyg_8168____closed__10; +x_1242 = lean_array_push(x_1240, x_1241); +x_1243 = lean_array_push(x_1242, x_17); +x_1244 = l___regBuiltin_Lean_Elab_Command_elabSyntax___closed__1; +x_1245 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1245, 0, x_1244); +lean_ctor_set(x_1245, 1, x_1243); +x_1246 = lean_array_push(x_1216, x_1245); +x_1247 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; +lean_inc(x_1214); +lean_inc(x_1215); +x_1248 = l_Lean_addMacroScope(x_1215, x_1247, x_1214); +x_1249 = lean_box(0); +x_1250 = l_Lean_Elab_Command_expandElab___closed__31; +x_1251 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1251, 0, x_1227); lean_ctor_set(x_1251, 1, x_1250); -x_1252 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; -x_1253 = lean_array_push(x_1252, x_1251); -x_1254 = lean_array_push(x_1253, x_1227); -x_1255 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; +lean_ctor_set(x_1251, 2, x_1248); +lean_ctor_set(x_1251, 3, x_1249); +x_1252 = lean_array_push(x_1216, x_1251); +x_1253 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1253, 0, x_1218); +lean_ctor_set(x_1253, 1, x_1222); +x_1254 = lean_array_push(x_1252, x_1253); +x_1255 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; x_1256 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1256, 0, x_1255); lean_ctor_set(x_1256, 1, x_1254); -x_1257 = lean_array_push(x_1209, x_1256); +x_1257 = lean_array_push(x_1216, x_1256); x_1258 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1258, 0, x_1211); +lean_ctor_set(x_1258, 0, x_1218); lean_ctor_set(x_1258, 1, x_1257); -x_1259 = l_Lean_Elab_Tactic_evalIntro___closed__5; +x_1259 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; x_1260 = lean_array_push(x_1259, x_1258); -x_1261 = l_myMacro____x40_Init_Notation___hyg_8168____closed__22; -x_1262 = lean_array_push(x_1260, x_1261); -x_1263 = lean_array_push(x_1262, x_1261); -x_1264 = lean_array_push(x_1263, x_1261); -x_1265 = lean_array_push(x_1264, x_1261); -x_1266 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; -x_1267 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1267, 0, x_1266); -lean_ctor_set(x_1267, 1, x_1265); -x_1268 = lean_array_push(x_1209, x_1267); -x_1269 = l_Lean_Elab_Command_expandElab___closed__7; -lean_inc(x_1207); -lean_inc(x_1208); -x_1270 = l_Lean_addMacroScope(x_1208, x_1269, x_1207); -x_1271 = l_Lean_Elab_Command_expandElab___closed__6; -x_1272 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1272, 0, x_1220); -lean_ctor_set(x_1272, 1, x_1271); -lean_ctor_set(x_1272, 2, x_1270); -lean_ctor_set(x_1272, 3, x_1242); -x_1273 = lean_array_push(x_1209, x_1272); -x_1274 = lean_array_push(x_1273, x_1261); -x_1275 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; -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 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; -x_1278 = lean_array_push(x_1277, x_1276); -x_1279 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; -lean_inc(x_1207); -lean_inc(x_1208); -x_1280 = l_Lean_addMacroScope(x_1208, x_1279, x_1207); -x_1281 = l_Lean_Elab_Command_expandElab___closed__34; -x_1282 = l_Lean_Elab_Command_expandElab___closed__36; -x_1283 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1283, 0, x_1220); +x_1261 = lean_array_push(x_1260, x_1234); +x_1262 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__8; +x_1263 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1263, 0, x_1262); +lean_ctor_set(x_1263, 1, x_1261); +x_1264 = lean_array_push(x_1216, x_1263); +x_1265 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1265, 0, x_1218); +lean_ctor_set(x_1265, 1, x_1264); +x_1266 = l_Lean_Elab_Tactic_evalIntro___closed__5; +x_1267 = lean_array_push(x_1266, x_1265); +x_1268 = l_myMacro____x40_Init_Notation___hyg_8168____closed__22; +x_1269 = lean_array_push(x_1267, x_1268); +x_1270 = lean_array_push(x_1269, x_1268); +x_1271 = lean_array_push(x_1270, x_1268); +x_1272 = lean_array_push(x_1271, x_1268); +x_1273 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__6; +x_1274 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1274, 0, x_1273); +lean_ctor_set(x_1274, 1, x_1272); +x_1275 = lean_array_push(x_1216, x_1274); +x_1276 = l_Lean_Elab_Command_expandElab___closed__7; +lean_inc(x_1214); +lean_inc(x_1215); +x_1277 = l_Lean_addMacroScope(x_1215, x_1276, x_1214); +x_1278 = l_Lean_Elab_Command_expandElab___closed__6; +x_1279 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1279, 0, x_1227); +lean_ctor_set(x_1279, 1, x_1278); +lean_ctor_set(x_1279, 2, x_1277); +lean_ctor_set(x_1279, 3, x_1249); +x_1280 = lean_array_push(x_1216, x_1279); +x_1281 = lean_array_push(x_1280, x_1268); +x_1282 = l_Lean_Elab_Command_elabMacroRulesAux___closed__4; +x_1283 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1283, 0, x_1282); 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 = l_myMacro____x40_Init_Notation___hyg_8168____closed__11; +x_1284 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; x_1285 = lean_array_push(x_1284, x_1283); -x_1286 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_1287 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1287, 0, x_1286); -lean_ctor_set(x_1287, 1, x_1285); -x_1288 = lean_array_push(x_1209, x_1287); -x_1289 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1289, 0, x_1211); -lean_ctor_set(x_1289, 1, x_1288); -x_1290 = lean_array_push(x_1259, x_1289); -x_1291 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; -x_1292 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1292, 0, x_1291); -lean_ctor_set(x_1292, 1, x_1290); -x_1293 = lean_array_push(x_1278, x_1292); -x_1294 = l___kind_stx____x40_Init_Notation___hyg_7374____closed__2; -lean_inc(x_1207); -lean_inc(x_1208); -x_1295 = l_Lean_addMacroScope(x_1208, x_1294, x_1207); -x_1296 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; -x_1297 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1297, 0, x_1220); -lean_ctor_set(x_1297, 1, x_1296); -lean_ctor_set(x_1297, 2, x_1295); -lean_ctor_set(x_1297, 3, x_1242); -lean_inc(x_1297); -x_1298 = lean_array_push(x_1209, x_1297); -x_1299 = l_Lean_Elab_Command_expandElab___closed__42; -lean_inc(x_1207); -lean_inc(x_1208); -x_1300 = l_Lean_addMacroScope(x_1208, x_1299, x_1207); -x_1301 = l_Lean_Elab_Command_expandElab___closed__41; -x_1302 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1302, 0, x_1220); -lean_ctor_set(x_1302, 1, x_1301); -lean_ctor_set(x_1302, 2, x_1300); -lean_ctor_set(x_1302, 3, x_1242); -lean_inc(x_1302); -x_1303 = lean_array_push(x_1298, x_1302); -x_1304 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1304, 0, x_1211); +x_1286 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; +lean_inc(x_1214); +lean_inc(x_1215); +x_1287 = l_Lean_addMacroScope(x_1215, x_1286, x_1214); +x_1288 = l_Lean_Elab_Command_expandElab___closed__34; +x_1289 = l_Lean_Elab_Command_expandElab___closed__36; +x_1290 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1290, 0, x_1227); +lean_ctor_set(x_1290, 1, x_1288); +lean_ctor_set(x_1290, 2, x_1287); +lean_ctor_set(x_1290, 3, x_1289); +x_1291 = l_myMacro____x40_Init_Notation___hyg_8168____closed__11; +x_1292 = lean_array_push(x_1291, x_1290); +x_1293 = l_Lean_expandExplicitBindersAux_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_1216, x_1294); +x_1296 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1296, 0, x_1218); +lean_ctor_set(x_1296, 1, x_1295); +x_1297 = lean_array_push(x_1266, x_1296); +x_1298 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__20; +x_1299 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1299, 0, x_1298); +lean_ctor_set(x_1299, 1, x_1297); +x_1300 = lean_array_push(x_1285, x_1299); +x_1301 = l___kind_stx____x40_Init_Notation___hyg_7374____closed__2; +lean_inc(x_1214); +lean_inc(x_1215); +x_1302 = l_Lean_addMacroScope(x_1215, x_1301, x_1214); +x_1303 = l_Lean_Elab_Command_elabMacroRulesAux___closed__15; +x_1304 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1304, 0, x_1227); lean_ctor_set(x_1304, 1, x_1303); -x_1305 = lean_array_push(x_1209, x_1304); -x_1306 = l_myMacro____x40_Init_Notation___hyg_5739____closed__19; -x_1307 = lean_array_push(x_1305, x_1306); -x_1308 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; -x_1309 = lean_array_push(x_1308, x_1297); -x_1310 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_1311 = lean_array_push(x_1309, x_1310); -x_1312 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; -x_1313 = lean_array_push(x_1312, x_721); -x_1314 = l_myMacro____x40_Init_Notation___hyg_5739____closed__22; -x_1315 = lean_array_push(x_1313, x_1314); -x_1316 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; -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 = lean_array_push(x_1209, x_1317); -x_1319 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1319, 0, x_1211); -lean_ctor_set(x_1319, 1, x_1318); -x_1320 = lean_array_push(x_1209, x_1319); -x_1321 = lean_array_push(x_1320, x_1306); -x_1322 = l_Lean_Elab_Command_expandElab___closed__47; -lean_inc(x_1207); -lean_inc(x_1208); -x_1323 = l_Lean_addMacroScope(x_1208, x_1322, x_1207); -x_1324 = l_Lean_Elab_Command_expandElab___closed__45; -x_1325 = l_Lean_Elab_Command_expandElab___closed__49; -x_1326 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1326, 0, x_1220); -lean_ctor_set(x_1326, 1, x_1324); -lean_ctor_set(x_1326, 2, x_1323); -lean_ctor_set(x_1326, 3, x_1325); -x_1327 = lean_array_push(x_1209, x_1326); -x_1328 = lean_array_push(x_1209, x_1302); -x_1329 = lean_array_push(x_1209, x_1206); -x_1330 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1330, 0, x_1211); -lean_ctor_set(x_1330, 1, x_1329); -x_1331 = lean_array_push(x_1209, x_1330); -x_1332 = lean_array_push(x_1331, x_1306); -x_1333 = lean_array_push(x_1332, x_21); -x_1334 = l_myMacro____x40_Init_Notation___hyg_5739____closed__17; -x_1335 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1335, 0, x_1334); -lean_ctor_set(x_1335, 1, x_1333); -x_1336 = l_myMacro____x40_Init_Notation___hyg_5739____closed__15; -x_1337 = lean_array_push(x_1336, x_1335); -x_1338 = l_myMacro____x40_Init_Notation___hyg_5739____closed__13; -x_1339 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1339, 0, x_1338); -lean_ctor_set(x_1339, 1, x_1337); -x_1340 = lean_array_push(x_1328, x_1339); -x_1341 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1341, 0, x_1211); -lean_ctor_set(x_1341, 1, x_1340); -x_1342 = lean_array_push(x_1327, x_1341); -x_1343 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; -x_1344 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1344, 0, x_1343); -lean_ctor_set(x_1344, 1, x_1342); -x_1345 = lean_array_push(x_1321, x_1344); -x_1346 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; -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_1209, x_1347); -x_1349 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; -x_1350 = lean_array_push(x_1348, x_1349); -x_1351 = l_Lean_Elab_Command_expandElab___closed__19; -x_1352 = l_Lean_addMacroScope(x_1208, x_1351, x_1207); -x_1353 = l_Lean_Elab_Command_expandElab___closed__18; -x_1354 = l_Lean_Elab_Command_expandElab___closed__22; -x_1355 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1355, 0, x_1220); -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 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; -x_1357 = lean_array_push(x_1356, x_1355); -x_1358 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1358, 0, x_1346); -lean_ctor_set(x_1358, 1, x_1357); -x_1359 = lean_array_push(x_1350, x_1358); -x_1360 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1360, 0, x_1211); -lean_ctor_set(x_1360, 1, x_1359); -x_1361 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; -x_1362 = lean_array_push(x_1361, x_1360); -x_1363 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; -x_1364 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1364, 0, x_1363); -lean_ctor_set(x_1364, 1, x_1362); -x_1365 = lean_array_push(x_1311, x_1364); -x_1366 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +lean_ctor_set(x_1304, 2, x_1302); +lean_ctor_set(x_1304, 3, x_1249); +lean_inc(x_1304); +x_1305 = lean_array_push(x_1216, x_1304); +x_1306 = l_Lean_Elab_Command_expandElab___closed__42; +lean_inc(x_1214); +lean_inc(x_1215); +x_1307 = l_Lean_addMacroScope(x_1215, x_1306, x_1214); +x_1308 = l_Lean_Elab_Command_expandElab___closed__41; +x_1309 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1309, 0, x_1227); +lean_ctor_set(x_1309, 1, x_1308); +lean_ctor_set(x_1309, 2, x_1307); +lean_ctor_set(x_1309, 3, x_1249); +lean_inc(x_1309); +x_1310 = lean_array_push(x_1305, x_1309); +x_1311 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1311, 0, x_1218); +lean_ctor_set(x_1311, 1, x_1310); +x_1312 = lean_array_push(x_1216, x_1311); +x_1313 = l_myMacro____x40_Init_Notation___hyg_5739____closed__19; +x_1314 = lean_array_push(x_1312, x_1313); +x_1315 = l_Lean_Elab_Command_elabMacroRulesAux___closed__17; +x_1316 = lean_array_push(x_1315, x_1304); +x_1317 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1318 = lean_array_push(x_1316, x_1317); +x_1319 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; +x_1320 = lean_array_push(x_1319, x_725); +x_1321 = l_myMacro____x40_Init_Notation___hyg_5739____closed__22; +x_1322 = lean_array_push(x_1320, x_1321); +x_1323 = l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__1; +x_1324 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1324, 0, x_1323); +lean_ctor_set(x_1324, 1, x_1322); +x_1325 = lean_array_push(x_1216, x_1324); +x_1326 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1326, 0, x_1218); +lean_ctor_set(x_1326, 1, x_1325); +x_1327 = lean_array_push(x_1216, x_1326); +x_1328 = lean_array_push(x_1327, x_1313); +x_1329 = l_Lean_Elab_Command_expandElab___closed__47; +lean_inc(x_1214); +lean_inc(x_1215); +x_1330 = l_Lean_addMacroScope(x_1215, x_1329, x_1214); +x_1331 = l_Lean_Elab_Command_expandElab___closed__45; +x_1332 = l_Lean_Elab_Command_expandElab___closed__49; +x_1333 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1333, 0, x_1227); +lean_ctor_set(x_1333, 1, x_1331); +lean_ctor_set(x_1333, 2, x_1330); +lean_ctor_set(x_1333, 3, x_1332); +x_1334 = lean_array_push(x_1216, x_1333); +x_1335 = lean_array_push(x_1216, x_1309); +x_1336 = lean_array_push(x_1216, x_1213); +x_1337 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1337, 0, x_1218); +lean_ctor_set(x_1337, 1, x_1336); +x_1338 = lean_array_push(x_1216, x_1337); +x_1339 = lean_array_push(x_1338, x_1313); +x_1340 = lean_array_push(x_1339, x_21); +x_1341 = l_myMacro____x40_Init_Notation___hyg_5739____closed__17; +x_1342 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1342, 0, x_1341); +lean_ctor_set(x_1342, 1, x_1340); +x_1343 = l_myMacro____x40_Init_Notation___hyg_5739____closed__15; +x_1344 = lean_array_push(x_1343, x_1342); +x_1345 = l_myMacro____x40_Init_Notation___hyg_5739____closed__13; +x_1346 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1346, 0, x_1345); +lean_ctor_set(x_1346, 1, x_1344); +x_1347 = lean_array_push(x_1335, x_1346); +x_1348 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1348, 0, x_1218); +lean_ctor_set(x_1348, 1, x_1347); +x_1349 = lean_array_push(x_1334, x_1348); +x_1350 = l_myMacro____x40_Init_Notation___hyg_38____closed__8; +x_1351 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1351, 0, x_1350); +lean_ctor_set(x_1351, 1, x_1349); +x_1352 = lean_array_push(x_1328, x_1351); +x_1353 = l_Lean_Elab_Term_expandFunBinders_loop___closed__13; +x_1354 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1354, 0, x_1353); +lean_ctor_set(x_1354, 1, x_1352); +x_1355 = lean_array_push(x_1216, x_1354); +x_1356 = l_Lean_Elab_Term_expandFunBinders_loop___closed__9; +x_1357 = lean_array_push(x_1355, x_1356); +x_1358 = l_Lean_Elab_Command_expandElab___closed__19; +x_1359 = l_Lean_addMacroScope(x_1215, x_1358, x_1214); +x_1360 = l_Lean_Elab_Command_expandElab___closed__18; +x_1361 = l_Lean_Elab_Command_expandElab___closed__22; +x_1362 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1362, 0, x_1227); +lean_ctor_set(x_1362, 1, x_1360); +lean_ctor_set(x_1362, 2, x_1359); +lean_ctor_set(x_1362, 3, x_1361); +x_1363 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; +x_1364 = lean_array_push(x_1363, x_1362); +x_1365 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1365, 0, x_1353); +lean_ctor_set(x_1365, 1, x_1364); +x_1366 = lean_array_push(x_1357, x_1365); x_1367 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1367, 0, x_1366); -lean_ctor_set(x_1367, 1, x_1365); -x_1368 = lean_array_push(x_1307, x_1367); -x_1369 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1369, 0, x_1334); -lean_ctor_set(x_1369, 1, x_1368); -x_1370 = lean_array_push(x_1336, x_1369); +lean_ctor_set(x_1367, 0, x_1218); +lean_ctor_set(x_1367, 1, x_1366); +x_1368 = l_Lean_Elab_Term_expandFunBinders_loop___closed__12; +x_1369 = lean_array_push(x_1368, x_1367); +x_1370 = l_Lean_Elab_Term_expandFunBinders_loop___closed__8; x_1371 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1371, 0, x_1338); -lean_ctor_set(x_1371, 1, x_1370); -x_1372 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_11379____closed__7; -x_1373 = lean_array_push(x_1372, x_1371); -x_1374 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; -x_1375 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1375, 0, x_1374); -lean_ctor_set(x_1375, 1, x_1373); -x_1376 = lean_array_push(x_1293, x_1375); -x_1377 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; +lean_ctor_set(x_1371, 0, x_1370); +lean_ctor_set(x_1371, 1, x_1369); +x_1372 = lean_array_push(x_1318, x_1371); +x_1373 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; +x_1374 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1374, 0, x_1373); +lean_ctor_set(x_1374, 1, x_1372); +x_1375 = lean_array_push(x_1314, x_1374); +x_1376 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1376, 0, x_1341); +lean_ctor_set(x_1376, 1, x_1375); +x_1377 = lean_array_push(x_1343, x_1376); x_1378 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1378, 0, x_1377); -lean_ctor_set(x_1378, 1, x_1376); -x_1379 = lean_array_push(x_1268, x_1378); -x_1380 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; -x_1381 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1381, 0, x_1380); -lean_ctor_set(x_1381, 1, x_1379); -x_1382 = lean_array_push(x_1239, x_1381); +lean_ctor_set(x_1378, 0, x_1345); +lean_ctor_set(x_1378, 1, x_1377); +x_1379 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_11379____closed__7; +x_1380 = lean_array_push(x_1379, x_1378); +x_1381 = lean_array_push(x_1380, x_1268); +x_1382 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; x_1383 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1383, 0, x_1211); -lean_ctor_set(x_1383, 1, x_1382); -x_1384 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1384, 0, x_1383); -lean_ctor_set(x_1384, 1, x_717); -return x_1384; +lean_ctor_set(x_1383, 0, x_1382); +lean_ctor_set(x_1383, 1, x_1381); +x_1384 = lean_array_push(x_1300, x_1383); +x_1385 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__16; +x_1386 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1386, 0, x_1385); +lean_ctor_set(x_1386, 1, x_1384); +x_1387 = lean_array_push(x_1275, x_1386); +x_1388 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___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); +x_1390 = lean_array_push(x_1246, x_1389); +x_1391 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1391, 0, x_1218); +lean_ctor_set(x_1391, 1, x_1390); +x_1392 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1392, 0, x_1391); +lean_ctor_set(x_1392, 1, x_721); +return x_1392; } } } } else { -uint8_t x_1385; +uint8_t x_1393; lean_dec(x_43); lean_dec(x_41); lean_dec(x_24); @@ -23238,29 +23253,29 @@ lean_dec(x_17); lean_dec(x_10); lean_dec(x_7); lean_dec(x_3); -x_1385 = !lean_is_exclusive(x_49); -if (x_1385 == 0) +x_1393 = !lean_is_exclusive(x_49); +if (x_1393 == 0) { return x_49; } else { -lean_object* x_1386; lean_object* x_1387; lean_object* x_1388; -x_1386 = lean_ctor_get(x_49, 0); -x_1387 = lean_ctor_get(x_49, 1); -lean_inc(x_1387); -lean_inc(x_1386); +lean_object* x_1394; lean_object* x_1395; lean_object* x_1396; +x_1394 = lean_ctor_get(x_49, 0); +x_1395 = lean_ctor_get(x_49, 1); +lean_inc(x_1395); +lean_inc(x_1394); lean_dec(x_49); -x_1388 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1388, 0, x_1386); -lean_ctor_set(x_1388, 1, x_1387); -return x_1388; +x_1396 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1396, 0, x_1394); +lean_ctor_set(x_1396, 1, x_1395); +return x_1396; } } } else { -uint8_t x_1389; +uint8_t x_1397; lean_dec(x_41); lean_dec(x_31); lean_dec(x_24); @@ -23271,29 +23286,29 @@ lean_dec(x_17); lean_dec(x_10); lean_dec(x_7); lean_dec(x_3); -x_1389 = !lean_is_exclusive(x_42); -if (x_1389 == 0) +x_1397 = !lean_is_exclusive(x_42); +if (x_1397 == 0) { return x_42; } else { -lean_object* x_1390; lean_object* x_1391; lean_object* x_1392; -x_1390 = lean_ctor_get(x_42, 0); -x_1391 = lean_ctor_get(x_42, 1); -lean_inc(x_1391); -lean_inc(x_1390); +lean_object* x_1398; lean_object* x_1399; lean_object* x_1400; +x_1398 = lean_ctor_get(x_42, 0); +x_1399 = lean_ctor_get(x_42, 1); +lean_inc(x_1399); +lean_inc(x_1398); lean_dec(x_42); -x_1392 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1392, 0, x_1390); -lean_ctor_set(x_1392, 1, x_1391); -return x_1392; +x_1400 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1400, 0, x_1398); +lean_ctor_set(x_1400, 1, x_1399); +return x_1400; } } } else { -uint8_t x_1393; +uint8_t x_1401; lean_dec(x_31); lean_dec(x_27); lean_dec(x_24); @@ -23305,29 +23320,29 @@ lean_dec(x_12); lean_dec(x_10); lean_dec(x_7); lean_dec(x_3); -x_1393 = !lean_is_exclusive(x_36); -if (x_1393 == 0) +x_1401 = !lean_is_exclusive(x_36); +if (x_1401 == 0) { return x_36; } else { -lean_object* x_1394; lean_object* x_1395; lean_object* x_1396; -x_1394 = lean_ctor_get(x_36, 0); -x_1395 = lean_ctor_get(x_36, 1); -lean_inc(x_1395); -lean_inc(x_1394); +lean_object* x_1402; lean_object* x_1403; lean_object* x_1404; +x_1402 = lean_ctor_get(x_36, 0); +x_1403 = lean_ctor_get(x_36, 1); +lean_inc(x_1403); +lean_inc(x_1402); lean_dec(x_36); -x_1396 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1396, 0, x_1394); -lean_ctor_set(x_1396, 1, x_1395); -return x_1396; +x_1404 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1404, 0, x_1402); +lean_ctor_set(x_1404, 1, x_1403); +return x_1404; } } } else { -uint8_t x_1397; +uint8_t x_1405; lean_dec(x_24); lean_dec(x_22); lean_dec(x_21); @@ -23338,23 +23353,23 @@ lean_dec(x_12); lean_dec(x_10); lean_dec(x_7); lean_dec(x_3); -x_1397 = !lean_is_exclusive(x_26); -if (x_1397 == 0) +x_1405 = !lean_is_exclusive(x_26); +if (x_1405 == 0) { return x_26; } else { -lean_object* x_1398; lean_object* x_1399; lean_object* x_1400; -x_1398 = lean_ctor_get(x_26, 0); -x_1399 = lean_ctor_get(x_26, 1); -lean_inc(x_1399); -lean_inc(x_1398); +lean_object* x_1406; lean_object* x_1407; lean_object* x_1408; +x_1406 = lean_ctor_get(x_26, 0); +x_1407 = lean_ctor_get(x_26, 1); +lean_inc(x_1407); +lean_inc(x_1406); lean_dec(x_26); -x_1400 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1400, 0, x_1398); -lean_ctor_set(x_1400, 1, x_1399); -return x_1400; +x_1408 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1408, 0, x_1406); +lean_ctor_set(x_1408, 1, x_1407); +return x_1408; } } } @@ -24268,9 +24283,9 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Command_elabMacro___closed__2); res = l___regBuiltin_Lean_Elab_Command_elabMacro(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8934____closed__1 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8934____closed__1(); -lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8934____closed__1); -res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8934_(lean_io_mk_world()); +l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8964____closed__1 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8964____closed__1(); +lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8964____closed__1); +res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_8964_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Elab_Command_withExpectedType___closed__1 = _init_l_Lean_Elab_Command_withExpectedType___closed__1(); diff --git a/stage0/stdlib/Lean/Parser/Command.c b/stage0/stdlib/Lean/Parser/Command.c index 46fee72e65..a98703bb2c 100644 --- a/stage0/stdlib/Lean/Parser/Command.c +++ b/stage0/stdlib/Lean/Parser/Command.c @@ -60,7 +60,6 @@ lean_object* l_Lean_Parser_Command_printAxioms___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_structCtor___closed__8; extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_567____closed__24; lean_object* l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Command_declValEqns_parenthesizer___closed__7; lean_object* l_Lean_Parser_Term_quot_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_structExplicitBinder___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_theorem___closed__9; @@ -151,7 +150,6 @@ lean_object* l_Lean_Parser_Command_extends___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_printAxioms___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_end___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_openRenamingItem___elambda__1___closed__4; -lean_object* l_Lean_Parser_Command_declValEqns_formatter___closed__8; extern lean_object* l_Lean_Parser_Term_forall_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_extends___closed__1; lean_object* l_Lean_Parser_Command_synth_formatter___closed__4; @@ -165,7 +163,6 @@ lean_object* l_Lean_Parser_Command_ctor___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_structCtor___closed__9; lean_object* l_Lean_Parser_Command_structureTk___closed__4; lean_object* l_Lean_Parser_Command_structImplicitBinder___closed__1; -lean_object* l_Lean_Parser_Command_declValEqns___closed__8; lean_object* l_Lean_Parser_Command_declId___closed__5; lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__13; lean_object* l_Lean_Parser_Command_openRenamingItem___elambda__1___closed__8; @@ -185,7 +182,6 @@ lean_object* l_Lean_Parser_Term_quot___closed__2; lean_object* l_Lean_Parser_Command_attribute___closed__7; lean_object* l_Lean_Parser_Command_protected___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_attribute_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Command_declValEqns_formatter___closed__4; lean_object* l_Lean_Parser_Command_noncomputable; lean_object* l_Lean_Parser_Command_initialize___elambda__1___closed__13; lean_object* l_Lean_Parser_Command_section___elambda__1___closed__9; @@ -209,10 +205,8 @@ lean_object* l_Lean_Parser_Command_ctor___elambda__1___closed__15; lean_object* l_Lean_Parser_Command_resolve__name___elambda__1___closed__1; extern lean_object* l_Lean_Parser_Term_explicitUniv_formatter___closed__1; lean_object* l_Lean_Parser_Command_print_formatter___closed__2; -extern lean_object* l_Lean_Parser_Term_fun_formatter___closed__3; lean_object* l_Lean_Parser_Command_declModifiers___boxed(lean_object*); lean_object* l_Lean_Parser_Command_extends_parenthesizer___closed__1; -lean_object* l_Lean_Parser_Command_declValEqns_formatter___closed__5; lean_object* l_Lean_Parser_Command_protected___elambda__1___closed__2; lean_object* l___regBuiltin_Lean_Parser_Term_quot_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_set__option___elambda__1___closed__6; @@ -298,7 +292,6 @@ lean_object* l_Lean_Parser_Command_declaration___closed__7; lean_object* l___regBuiltinParser_Lean_Parser_Command_attribute(lean_object*); lean_object* l_Lean_Parser_Command_section___closed__5; lean_object* l_Lean_Parser_Command_openSimple___elambda__1___closed__3; -lean_object* l_Lean_PrettyPrinter_Formatter_checkInsideQuot_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_ctor_parenthesizer___closed__5; extern lean_object* l_Lean_Parser_Term_attributes_parenthesizer___closed__3; lean_object* l_Lean_Parser_group_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -438,7 +431,6 @@ lean_object* l_Lean_Parser_Command_structFields___closed__4; lean_object* l_Lean_Parser_Command_set__option___elambda__1___closed__3; extern lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_mutual; -lean_object* l_Lean_Parser_Command_declValEqns___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_structure___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_constant___closed__9; lean_object* l_Lean_Parser_Command_structure_formatter___closed__4; @@ -540,7 +532,6 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_toggleInsideQuot_parenthesizer(l lean_object* l_Lean_Parser_Command_printAxioms_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_init__quot___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_def_parenthesizer___closed__1; -lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkOutsideQuot_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__8; lean_object* l_Lean_Parser_Command_visibility_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_exit___closed__6; @@ -674,7 +665,6 @@ extern lean_object* l_Lean_Parser_Term_attributes___closed__8; lean_object* l_Lean_Parser_Command_openRenaming___elambda__1___closed__11; lean_object* l_Lean_Parser_Command_mutual___closed__1; lean_object* l_Lean_Parser_Command_declaration_formatter___closed__20; -lean_object* l_Lean_Parser_Command_declValEqns___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_declId___closed__3; extern lean_object* l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__5; lean_object* l_Lean_Parser_Command_namespace___closed__3; @@ -751,7 +741,6 @@ lean_object* l_Lean_Parser_Term_quot_formatter___closed__2; lean_object* l_Lean_Parser_Command_initialize_formatter___closed__2; lean_object* l_Lean_Parser_Command_structExplicitBinder___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_set__option_formatter___closed__9; -lean_object* l_Lean_Parser_Command_declValEqns_parenthesizer___closed__6; lean_object* l_Lean_Parser_Command_inductive_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_check___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_quot___elambda__1___closed__13; @@ -845,7 +834,6 @@ lean_object* l_Lean_Parser_Command_universes___elambda__1___closed__10; lean_object* l_Lean_Parser_Command_openHiding___elambda__1___closed__7; lean_object* l___regBuiltin_Lean_Parser_Command_synth_formatter(lean_object*); extern lean_object* l_Lean_Parser_Term_binderDefault; -extern lean_object* l_Lean_Parser_checkOutsideQuot___closed__1; lean_object* l_Lean_Parser_Command_structExplicitBinder___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_visibility_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Command_in_parenthesizer(lean_object*); @@ -897,7 +885,6 @@ lean_object* l_Lean_Parser_Command_attribute_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_export_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_declValEqns_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Command_declValEqns___closed__7; lean_object* l_Lean_Parser_Term_quot___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_attribute; lean_object* l_Lean_Parser_Command_docComment___closed__4; @@ -931,7 +918,6 @@ lean_object* l_Lean_Parser_Command_classInductive___closed__5; lean_object* l_Lean_Parser_Command_open___closed__2; lean_object* l_Lean_Parser_Command_printAxioms___elambda__1___closed__11; lean_object* l_Lean_Parser_Command_structCtor___closed__6; -lean_object* l_Lean_Parser_Command_declValEqns_parenthesizer___closed__5; lean_object* l_Lean_Parser_Command_initialize___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_synth___closed__3; lean_object* l_Lean_Parser_nodeInfo(lean_object*, lean_object*); @@ -1512,7 +1498,6 @@ lean_object* l_Lean_Parser_Command_abbrev___closed__2; lean_object* l_Lean_Parser_Command_unsafe___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_openOnly___closed__5; lean_object* l_Lean_Parser_Command_declValSimple_formatter___closed__1; -lean_object* l_Lean_Parser_Command_declValEqns___closed__6; lean_object* l_Lean_Parser_Command_check___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_printAxioms___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_eval___elambda__1___closed__8; @@ -1525,7 +1510,6 @@ lean_object* l_Lean_Parser_Command_init__quot___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__10; lean_object* l_Lean_Parser_withResultOfFn(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_quot_parenthesizer___closed__3; -lean_object* l_Lean_Parser_Command_declValEqns_formatter___closed__7; lean_object* l_Lean_Parser_Command_synth___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_declaration___elambda__1___closed__13; lean_object* l_Lean_Parser_Command_initialize_formatter___closed__5; @@ -1564,10 +1548,8 @@ lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__9; lean_object* l_Lean_Parser_Command_variables_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_classInductive___closed__8; lean_object* l_Lean_Parser_Command_structCtor___closed__7; -extern lean_object* l_Lean_Parser_checkInsideQuot___closed__1; lean_object* l_Lean_Parser_Command_openOnly___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_check_parenthesizer___closed__2; -extern lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__7; lean_object* l_Lean_PrettyPrinter_Formatter_many1_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_openRenaming___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_protected_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1751,7 +1733,6 @@ lean_object* l_Lean_Parser_Command_theorem_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_docComment_formatter___closed__3; lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__16; lean_object* l_Lean_Parser_Command_attribute___closed__2; -lean_object* l_Lean_Parser_Command_declValEqns___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_synth___closed__4; lean_object* l_Lean_Parser_Command_inductive_parenthesizer___closed__5; lean_object* l_Lean_Parser_Command_in_formatter___closed__1; @@ -1828,7 +1809,6 @@ lean_object* l_Lean_Parser_Command_declaration_formatter___closed__2; lean_object* l_Lean_Parser_Command_universe___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_openHiding_formatter___closed__5; lean_object* l_Lean_Parser_Command_check__failure___closed__2; -lean_object* l_Lean_Parser_Command_declValEqns_parenthesizer___closed__8; lean_object* l_Lean_Parser_Command_declaration; lean_object* l_Lean_Parser_Command_builtin__initialize___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_optDeclSig___closed__5; @@ -1904,7 +1884,6 @@ lean_object* l_Lean_Parser_Command_namespace_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__21; extern lean_object* l_Lean_Parser_Term_explicitUniv___closed__1; lean_object* l_Lean_Parser_Command_print___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_Command_declValEqns_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_structImplicitBinder_formatter___closed__4; lean_object* l_Lean_Parser_Command_structure_formatter___closed__13; lean_object* l_Lean_Parser_Command_open___closed__6; @@ -1999,7 +1978,6 @@ lean_object* l_Lean_Parser_Command_openRenamingItem___elambda__1___closed__11; lean_object* l_Lean_Parser_Command_openHiding___closed__2; lean_object* l_Lean_Parser_Command_constant___closed__4; lean_object* l_Lean_Parser_Command_declModifiers_formatter___closed__21; -lean_object* l_Lean_PrettyPrinter_Formatter_checkOutsideQuot_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_universe_formatter___closed__3; lean_object* l_Lean_Parser_Command_partial___closed__2; lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__7; @@ -2138,7 +2116,6 @@ lean_object* l_Lean_Parser_Command_set__option___closed__2; lean_object* l_Lean_Parser_Command_init__quot___elambda__1___closed__6; lean_object* l___regBuiltinParser_Lean_Parser_Command_mutual(lean_object*); lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__17; -lean_object* l_Lean_Parser_Command_declValEqns_formatter___closed__6; lean_object* l_Lean_Parser_Command_openOnly___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_openSimple___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_openOnly___closed__1; @@ -2154,7 +2131,6 @@ lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_declModifiers_formatter___closed__13; lean_object* l_Lean_Parser_Command_variables; lean_object* l_Lean_Parser_Command_builtin__initialize___closed__1; -extern lean_object* l_Lean_Parser_Term_fun_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_export___elambda__1___closed__13; lean_object* l_Lean_Parser_Command_set__option_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_set__option___elambda__1___closed__10; @@ -2426,7 +2402,6 @@ lean_object* l_Lean_Parser_Command_declModifiers_formatter___closed__9; lean_object* l_Lean_Parser_Command_constant___elambda__1___closed__13; lean_object* l_Lean_Parser_Command_abbrev___closed__6; lean_object* l_Lean_Parser_Command_open___closed__9; -lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkInsideQuot_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_example___closed__2; lean_object* l_Lean_Parser_Command_declValEqns_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_mutual___closed__5; @@ -5703,9 +5678,9 @@ static lean_object* _init_l_Lean_Parser_Command_declValEqns___elambda__1___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_checkInsideQuot___closed__1; +x_1 = l_Lean_Parser_Command_declValEqns___elambda__1___closed__2; x_2 = l_Lean_Parser_Term_matchAltsWhereDecls___closed__6; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); +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; @@ -5714,47 +5689,9 @@ return x_3; static lean_object* _init_l_Lean_Parser_Command_declValEqns___elambda__1___closed__6() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_fun___elambda__1___closed__7; -x_2 = lean_ctor_get(x_1, 1); -lean_inc(x_2); -x_3 = l_Lean_Parser_checkOutsideQuot___closed__1; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_4, 0, x_3); -lean_closure_set(x_4, 1, x_2); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Command_declValEqns___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declValEqns___elambda__1___closed__5; -x_2 = l_Lean_Parser_Command_declValEqns___elambda__1___closed__6; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_orelseFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_declValEqns___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declValEqns___elambda__1___closed__2; -x_2 = l_Lean_Parser_Command_declValEqns___elambda__1___closed__7; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_declValEqns___elambda__1___closed__9() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Level_paren___elambda__1___closed__8; -x_2 = l_Lean_Parser_Command_declValEqns___elambda__1___closed__8; +x_2 = l_Lean_Parser_Command_declValEqns___elambda__1___closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -5768,7 +5705,7 @@ lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; lean_object* x_3 = l_Lean_Parser_Command_declValEqns___elambda__1___closed__4; x_4 = lean_ctor_get(x_3, 1); lean_inc(x_4); -x_5 = l_Lean_Parser_Command_declValEqns___elambda__1___closed__9; +x_5 = l_Lean_Parser_Command_declValEqns___elambda__1___closed__6; x_6 = 1; x_7 = l_Lean_Parser_orelseFnCore(x_4, x_5, x_6, x_1, x_2); return x_7; @@ -5781,66 +5718,34 @@ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Term_matchAltsWhereDecls; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); -x_3 = l_Lean_Parser_epsilonInfo; -x_4 = l_Lean_Parser_andthenInfo(x_3, x_2); +x_3 = l_Lean_Parser_Command_declValEqns___elambda__1___closed__2; +x_4 = l_Lean_Parser_nodeInfo(x_3, x_2); return x_4; } } static lean_object* _init_l_Lean_Parser_Command_declValEqns___closed__2() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_fun___elambda__1___closed__7; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_epsilonInfo; -x_4 = l_Lean_Parser_andthenInfo(x_3, x_2); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Command_declValEqns___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declValEqns___closed__1; -x_2 = l_Lean_Parser_Command_declValEqns___closed__2; -x_3 = l_Lean_Parser_orelseInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_declValEqns___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declValEqns___elambda__1___closed__2; -x_2 = l_Lean_Parser_Command_declValEqns___closed__3; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_declValEqns___closed__5() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Command_declValEqns___closed__4; +x_2 = l_Lean_Parser_Command_declValEqns___closed__1; x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_declValEqns___closed__6() { +static lean_object* _init_l_Lean_Parser_Command_declValEqns___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Command_declValEqns___elambda__1___closed__4; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); -x_3 = l_Lean_Parser_Command_declValEqns___closed__5; +x_3 = l_Lean_Parser_Command_declValEqns___closed__2; x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Command_declValEqns___closed__7() { +static lean_object* _init_l_Lean_Parser_Command_declValEqns___closed__4() { _start: { lean_object* x_1; @@ -5848,12 +5753,12 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_declValEqns___elambda__1) return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_declValEqns___closed__8() { +static lean_object* _init_l_Lean_Parser_Command_declValEqns___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declValEqns___closed__6; -x_2 = l_Lean_Parser_Command_declValEqns___closed__7; +x_1 = l_Lean_Parser_Command_declValEqns___closed__3; +x_2 = l_Lean_Parser_Command_declValEqns___closed__4; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); @@ -5864,7 +5769,7 @@ static lean_object* _init_l_Lean_Parser_Command_declValEqns() { _start: { lean_object* x_1; -x_1 = l_Lean_Parser_Command_declValEqns___closed__8; +x_1 = l_Lean_Parser_Command_declValEqns___closed__5; return x_1; } } @@ -5873,7 +5778,7 @@ _start: { lean_object* x_3; lean_object* x_4; uint8_t x_5; lean_object* x_6; x_3 = l_Lean_Parser_Command_declValSimple___closed__7; -x_4 = l_Lean_Parser_Command_declValEqns___closed__7; +x_4 = l_Lean_Parser_Command_declValEqns___closed__4; x_5 = 1; x_6 = l_Lean_Parser_orelseFnCore(x_3, x_4, x_5, x_1, x_2); return x_6; @@ -12069,69 +11974,17 @@ static lean_object* _init_l_Lean_Parser_Command_declValEqns_formatter___closed__ _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_checkInsideQuot_formatter___boxed), 4, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_matchAltsWhereDecls_formatter), 5, 0); return x_1; } } static lean_object* _init_l_Lean_Parser_Command_declValEqns_formatter___closed__3() { _start: { -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_matchAltsWhereDecls_formatter), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Command_declValEqns_formatter___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declValEqns_formatter___closed__2; -x_2 = l_Lean_Parser_Command_declValEqns_formatter___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_declValEqns_formatter___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_checkOutsideQuot_formatter___boxed), 4, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Command_declValEqns_formatter___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declValEqns_formatter___closed__5; -x_2 = l_Lean_Parser_Term_fun_formatter___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_declValEqns_formatter___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declValEqns_formatter___closed__4; -x_2 = l_Lean_Parser_Command_declValEqns_formatter___closed__6; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_orelse_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_declValEqns_formatter___closed__8() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Command_declValEqns___elambda__1___closed__2; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Command_declValEqns_formatter___closed__7; +x_3 = l_Lean_Parser_Command_declValEqns_formatter___closed__2; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); lean_closure_set(x_4, 0, x_1); lean_closure_set(x_4, 1, x_2); @@ -12144,7 +11997,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_Command_declValEqns_formatter___closed__1; -x_7 = l_Lean_Parser_Command_declValEqns_formatter___closed__8; +x_7 = l_Lean_Parser_Command_declValEqns_formatter___closed__3; x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -15208,69 +15061,17 @@ static lean_object* _init_l_Lean_Parser_Command_declValEqns_parenthesizer___clos _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_checkInsideQuot_parenthesizer___boxed), 4, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_matchAltsWhereDecls_parenthesizer), 5, 0); return x_1; } } static lean_object* _init_l_Lean_Parser_Command_declValEqns_parenthesizer___closed__3() { _start: { -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_matchAltsWhereDecls_parenthesizer), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Command_declValEqns_parenthesizer___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declValEqns_parenthesizer___closed__2; -x_2 = l_Lean_Parser_Command_declValEqns_parenthesizer___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_declValEqns_parenthesizer___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_checkOutsideQuot_parenthesizer___boxed), 4, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Command_declValEqns_parenthesizer___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declValEqns_parenthesizer___closed__5; -x_2 = l_Lean_Parser_Term_fun_parenthesizer___closed__2; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_declValEqns_parenthesizer___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declValEqns_parenthesizer___closed__4; -x_2 = l_Lean_Parser_Command_declValEqns_parenthesizer___closed__6; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_declValEqns_parenthesizer___closed__8() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Command_declValEqns___elambda__1___closed__2; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Command_declValEqns_parenthesizer___closed__7; +x_3 = l_Lean_Parser_Command_declValEqns_parenthesizer___closed__2; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); lean_closure_set(x_4, 0, x_1); lean_closure_set(x_4, 1, x_2); @@ -15283,7 +15084,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_Command_declValEqns_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Command_declValEqns_parenthesizer___closed__8; +x_7 = l_Lean_Parser_Command_declValEqns_parenthesizer___closed__3; x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -29151,12 +28952,6 @@ l_Lean_Parser_Command_declValEqns___elambda__1___closed__5 = _init_l_Lean_Parser lean_mark_persistent(l_Lean_Parser_Command_declValEqns___elambda__1___closed__5); l_Lean_Parser_Command_declValEqns___elambda__1___closed__6 = _init_l_Lean_Parser_Command_declValEqns___elambda__1___closed__6(); lean_mark_persistent(l_Lean_Parser_Command_declValEqns___elambda__1___closed__6); -l_Lean_Parser_Command_declValEqns___elambda__1___closed__7 = _init_l_Lean_Parser_Command_declValEqns___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Command_declValEqns___elambda__1___closed__7); -l_Lean_Parser_Command_declValEqns___elambda__1___closed__8 = _init_l_Lean_Parser_Command_declValEqns___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Command_declValEqns___elambda__1___closed__8); -l_Lean_Parser_Command_declValEqns___elambda__1___closed__9 = _init_l_Lean_Parser_Command_declValEqns___elambda__1___closed__9(); -lean_mark_persistent(l_Lean_Parser_Command_declValEqns___elambda__1___closed__9); l_Lean_Parser_Command_declValEqns___closed__1 = _init_l_Lean_Parser_Command_declValEqns___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_declValEqns___closed__1); l_Lean_Parser_Command_declValEqns___closed__2 = _init_l_Lean_Parser_Command_declValEqns___closed__2(); @@ -29167,12 +28962,6 @@ l_Lean_Parser_Command_declValEqns___closed__4 = _init_l_Lean_Parser_Command_decl lean_mark_persistent(l_Lean_Parser_Command_declValEqns___closed__4); l_Lean_Parser_Command_declValEqns___closed__5 = _init_l_Lean_Parser_Command_declValEqns___closed__5(); lean_mark_persistent(l_Lean_Parser_Command_declValEqns___closed__5); -l_Lean_Parser_Command_declValEqns___closed__6 = _init_l_Lean_Parser_Command_declValEqns___closed__6(); -lean_mark_persistent(l_Lean_Parser_Command_declValEqns___closed__6); -l_Lean_Parser_Command_declValEqns___closed__7 = _init_l_Lean_Parser_Command_declValEqns___closed__7(); -lean_mark_persistent(l_Lean_Parser_Command_declValEqns___closed__7); -l_Lean_Parser_Command_declValEqns___closed__8 = _init_l_Lean_Parser_Command_declValEqns___closed__8(); -lean_mark_persistent(l_Lean_Parser_Command_declValEqns___closed__8); l_Lean_Parser_Command_declValEqns = _init_l_Lean_Parser_Command_declValEqns(); lean_mark_persistent(l_Lean_Parser_Command_declValEqns); l_Lean_Parser_Command_declVal___closed__1 = _init_l_Lean_Parser_Command_declVal___closed__1(); @@ -30262,16 +30051,6 @@ l_Lean_Parser_Command_declValEqns_formatter___closed__2 = _init_l_Lean_Parser_Co lean_mark_persistent(l_Lean_Parser_Command_declValEqns_formatter___closed__2); l_Lean_Parser_Command_declValEqns_formatter___closed__3 = _init_l_Lean_Parser_Command_declValEqns_formatter___closed__3(); lean_mark_persistent(l_Lean_Parser_Command_declValEqns_formatter___closed__3); -l_Lean_Parser_Command_declValEqns_formatter___closed__4 = _init_l_Lean_Parser_Command_declValEqns_formatter___closed__4(); -lean_mark_persistent(l_Lean_Parser_Command_declValEqns_formatter___closed__4); -l_Lean_Parser_Command_declValEqns_formatter___closed__5 = _init_l_Lean_Parser_Command_declValEqns_formatter___closed__5(); -lean_mark_persistent(l_Lean_Parser_Command_declValEqns_formatter___closed__5); -l_Lean_Parser_Command_declValEqns_formatter___closed__6 = _init_l_Lean_Parser_Command_declValEqns_formatter___closed__6(); -lean_mark_persistent(l_Lean_Parser_Command_declValEqns_formatter___closed__6); -l_Lean_Parser_Command_declValEqns_formatter___closed__7 = _init_l_Lean_Parser_Command_declValEqns_formatter___closed__7(); -lean_mark_persistent(l_Lean_Parser_Command_declValEqns_formatter___closed__7); -l_Lean_Parser_Command_declValEqns_formatter___closed__8 = _init_l_Lean_Parser_Command_declValEqns_formatter___closed__8(); -lean_mark_persistent(l_Lean_Parser_Command_declValEqns_formatter___closed__8); l_Lean_Parser_Command_declVal_formatter___closed__1 = _init_l_Lean_Parser_Command_declVal_formatter___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_declVal_formatter___closed__1); l_Lean_Parser_Command_declVal_formatter___closed__2 = _init_l_Lean_Parser_Command_declVal_formatter___closed__2(); @@ -30741,16 +30520,6 @@ l_Lean_Parser_Command_declValEqns_parenthesizer___closed__2 = _init_l_Lean_Parse lean_mark_persistent(l_Lean_Parser_Command_declValEqns_parenthesizer___closed__2); l_Lean_Parser_Command_declValEqns_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_declValEqns_parenthesizer___closed__3(); lean_mark_persistent(l_Lean_Parser_Command_declValEqns_parenthesizer___closed__3); -l_Lean_Parser_Command_declValEqns_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_declValEqns_parenthesizer___closed__4(); -lean_mark_persistent(l_Lean_Parser_Command_declValEqns_parenthesizer___closed__4); -l_Lean_Parser_Command_declValEqns_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_declValEqns_parenthesizer___closed__5(); -lean_mark_persistent(l_Lean_Parser_Command_declValEqns_parenthesizer___closed__5); -l_Lean_Parser_Command_declValEqns_parenthesizer___closed__6 = _init_l_Lean_Parser_Command_declValEqns_parenthesizer___closed__6(); -lean_mark_persistent(l_Lean_Parser_Command_declValEqns_parenthesizer___closed__6); -l_Lean_Parser_Command_declValEqns_parenthesizer___closed__7 = _init_l_Lean_Parser_Command_declValEqns_parenthesizer___closed__7(); -lean_mark_persistent(l_Lean_Parser_Command_declValEqns_parenthesizer___closed__7); -l_Lean_Parser_Command_declValEqns_parenthesizer___closed__8 = _init_l_Lean_Parser_Command_declValEqns_parenthesizer___closed__8(); -lean_mark_persistent(l_Lean_Parser_Command_declValEqns_parenthesizer___closed__8); l_Lean_Parser_Command_declVal_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_declVal_parenthesizer___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_declVal_parenthesizer___closed__1); l_Lean_Parser_Command_declVal_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_declVal_parenthesizer___closed__2();